Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for js (0.17 sec)

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            return getPath(StringUtil.EMPTY, "css", names);
        }
    
        public static Path getJavaScriptPath(final String... names) {
            return getPath(StringUtil.EMPTY, "js", names);
        }
    
        public static Path getEnvPath(final String envName, final String... names) {
            return getPath("WEB-INF/", "env/" + envName, names);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  2. README.md

    *[Fess Site Search](https://github.com/codelibs/fess-site-search)* is a free alternative to [Google Site Search](https://enterprise.google.com/search/products/gss.html). For more details, see the [FSS JS Generator documentation](https://fss-generator.codelibs.org/docs/manual).
    
    ## Website
    
    [fess.codelibs.org](https://fess.codelibs.org/)
    
    ## Issues/Questions
    
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

                    && checkFileType(uploadedFileName, fessConfig.getSupportedUploadedJsExtentionsAsArray())) {
                uploadFile = new File(getServletContext().getRealPath("/js/" + fileName));
            } else if (fessConfig.isSupportedUploadedFile(fileName) || fessConfig.isSupportedUploadedFile(uploadedFileName)) {
                uploadFile = ResourceUtil.getResourceAsFileNoException(fileName);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 50 */
        String ADAPTIVE_LOAD_CONTROL = "adaptive.load.control";
    
        /** The key of the configuration. e.g. js */
        String SUPPORTED_UPLOADED_JS_EXTENTIONS = "supported.uploaded.js.extentions";
    
        /** The key of the configuration. e.g. css */
        String SUPPORTED_UPLOADED_CSS_EXTENTIONS = "supported.uploaded.css.extentions";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  5. src/main/resources/fess_config.properties

    job.default.script=groovy
    
    processors=0
    java.command.path=java
    python.command.path=python
    path.encoding=UTF-8
    use.own.tmp.dir=true
    max.log.output.length=4000
    adaptive.load.control=50
    supported.uploaded.js.extentions=js
    supported.uploaded.css.extentions=css
    supported.uploaded.media.extentions=jpg,jpeg,gif,png,swf
    supported.uploaded.files=license.properties
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

                            Files.createDirectories(path.getParent());
                            Files.copy(zis, path, StandardCopyOption.REPLACE_EXISTING);
                        } else if ("js".equals(names[0])) {
                            names[0] = themeName;
                            final Path path = ResourceUtil.getJavaScriptPath(names);
                            Files.createDirectories(path.getParent());
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  7. pom.xml

    					<nosuffix>true</nosuffix>
    					<webappDirectory>${project.build.directory}/${project.build.finalName}-compress</webappDirectory>
    					<excludes>
    						<exclude>**/*min.js</exclude>
    						<exclude>**/*min.css</exclude>
    						<exclude>**/plugins/**/*.js</exclude>
    						<exclude>**/WEB-INF/site/**</exclude>
    					</excludes>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.dbflute</groupId>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
Back to top