Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 29 for webapp (0.05 seconds)

  1. src/test/java/org/codelibs/fess/webapp/WebXmlTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.webapp;
    
    import java.io.InputStream;
    
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 09:08:35 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  2. CLAUDE.md

    ├── fess_label_*.properties    # UI labels (i18n)
    ├── fess_message_*.properties  # Validation messages (i18n)
    └── fess_indices/              # OpenSearch index mappings
    
    src/main/webapp/WEB-INF/view/  # JSP templates
    src/test/java/.../it/          # Integration tests (*Tests.java)
    ```
    
    ## Architecture Patterns
    
    ### Action (Controller)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

            webappDir = Files.createDirectories(tempDir.resolve("webapp"));
            confDir = Files.createDirectories(tempDir.resolve("conf"));
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            System.clearProperty("fess.var.path");
            System.clearProperty("fess.webapp.path");
            System.clearProperty("fess.conf.path");
            if (tempDir != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            /** Ingest processor plugins */
            INGEST("fess-ingest"), //
            /** Script plugins */
            SCRIPT("fess-script"), //
            /** Web application plugins */
            WEBAPP("fess-webapp"), //
            /** Thumbnail generator plugins */
            THUMBNAIL("fess-thumbnail"), //
            /** Crawler plugins */
            CRAWLER("fess-crawler"), //
            /** LLM plugins */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            Artifact scriptArtifact = new Artifact("fess-script-test", "1.0.0");
            assertEquals(ArtifactType.SCRIPT, scriptArtifact.getType());
    
            Artifact webappArtifact = new Artifact("fess-webapp-test", "1.0.0");
            assertEquals(ArtifactType.WEBAPP, webappArtifact.getType());
    
            Artifact thumbnailArtifact = new Artifact("fess-thumbnail-test", "1.0.0");
            assertEquals(ArtifactType.THUMBNAIL, thumbnailArtifact.getType());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java

            @Override
            public String getRealPath(String path) {
                if (tempDir != null) {
                    return new File(tempDir, path).getAbsolutePath();
                }
                return new File("/test/webapp", path).getAbsolutePath();
            }
    
            // Other methods return null or default values
            @Override
            public Object getAttribute(String name) {
                return null;
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 19K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/job/PythonJobTest.java

            @Override
            public String getOutput() {
                return output;
            }
        }
    
        private static class TestServletContext implements ServletContext {
            File parentFile = new File("/test/webapp");
    
            @Override
            public String getRealPath(String path) {
                if (path != null && path.contains("WEB-INF")) {
                    return new File(parentFile, "WEB-INF").getAbsolutePath();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  8. pom.xml

    						<exclude>**/*min.js</exclude>
    						<exclude>**/*min.css</exclude>
    						<exclude>**/plugins/**/*.js</exclude>
    						<exclude>**/WEB-INF/site/**</exclude>
    					</excludes>
    					<sourceDirectory>src/main/webapp/js</sourceDirectory>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.dbflute</groupId>
    				<artifactId>dbflute-maven-plugin</artifactId>
    				<configuration>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

                }
                final File file = filePath.toFile();
                final String canonicalPath = file.getCanonicalPath();
                final String[] allowedPathProperties = { "fess.var.path", "fess.webapp.path", "fess.conf.path" };
                boolean isAllowed = false;
                final List<String> allowedPaths = new ArrayList<>();
                for (final String prop : allowedPathProperties) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 13:57:12 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_en.properties

    labels.facet_filetype_ogg=OGG Audio
    labels.facet_filetype_wav=WAV Audio
    labels.facet_filetype_webp=WebP Audio
    labels.facet_filetype_aif=AIF Audio
    labels.facet_filetype_midi=MIDI Audio
    labels.facet_filetype_mpga=MPGA Audio
    labels.facet_filetype_mp4a=MP4A Audio
    labels.facet_filetype_oga=OGA Audio
    labels.facet_filetype_wepb=WEBP Image
    labels.facet_filetype_bmp=BMP Image
    labels.facet_filetype_ico=ICO Image
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
Back to Top