Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 780 for theme (0.01 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/theme-default.min.css

    Shinsuke Sugaya <******@****.***> 1514783567 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 33.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

        }
    
        /**
         * Extracts the theme name from the artifact name.
         *
         * @param artifact the theme artifact
         * @return the theme name
         * @throws ThemeException if theme name cannot be determined
         */
        protected String getThemeName(final Artifact artifact) {
            final String themeName = artifact.getName().substring(ArtifactType.THEME.getId().length() + 1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

            RuntimeException middleCause = new RuntimeException("Processing failed", innerCause);
            ThemeException exception = new ThemeException("Theme operation failed", middleCause);
    
            assertNotNull(exception);
            assertEquals("Theme operation failed", exception.getMessage());
            assertNotNull(exception.getCause());
            assertEquals(middleCause, exception.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. src/test/resources/plugin/repo3/index.html

    <a href="fess-theme-classic/" title="fess-theme-classic/">fess-theme-classic/</a>                                              -         -      
    <a href="fess-theme-codesearch/" title="fess-theme-codesearch/">fess-theme-codesearch/</a>                                           -         -      
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

        }
    
        public void test_getThemeName() {
            Artifact artifact = new Artifact("fess-theme-simple", "1.0.0");
            String themeName = themeHelper.getThemeName(artifact);
            assertEquals("simple", themeName);
        }
    
        public void test_getThemeName_multiPart() {
            Artifact artifact = new Artifact("fess-theme-elegant-modern", "1.0.0");
            String themeName = themeHelper.getThemeName(artifact);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  6. README.md

     - [SharePoint](https://github.com/codelibs/fess-ds-sharepoint)
     - [Slack](https://github.com/codelibs/fess-ds-slack)
    
    ## Theme
    
     - [Simple](https://github.com/codelibs/fess-theme-simple)
     - [Classic](https://github.com/codelibs/fess-theme-classic)
    
    ## Ingest
    
     - [Logger](https://github.com/codelibs/fess-ingest-logger)
     - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson)
    
    ## Script
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  7. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            Artifact dsArtifact = new Artifact("fess-ds-test", "1.0.0");
            assertEquals(ArtifactType.DATA_STORE, dsArtifact.getType());
    
            Artifact themeArtifact = new Artifact("fess-theme-test", "1.0.0");
            assertEquals(ArtifactType.THEME, themeArtifact.getType());
    
            Artifact ingestArtifact = new Artifact("fess-ingest-test", "1.0.0");
            assertEquals(ArtifactType.INGEST, ingestArtifact.getType());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/ThemeException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown when theme-related operations fail.
     * This exception is used for errors during theme installation, uninstallation, or configuration.
     */
    public class ThemeException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         */
        public enum ArtifactType {
            /** Data store plugins */
            DATA_STORE("fess-ds"), //
            /** Theme plugins */
            THEME("fess-theme"), //
            /** Ingest processor plugins */
            INGEST("fess-ingest"), //
            /** Script plugins */
            SCRIPT("fess-script"), //
            /** Web application plugins */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. test_docs.sh

    #!/bin/bash
    
    # The website is built using MkDocs with the Material theme.
    # https://squidfunk.github.io/mkdocs-material/
    # It requires Python to run.
    # Install the packages with the following command:
    # pip install mkdocs mkdocs-material mkdocs-redirects
    
    set -ex
    
    # Test generating the javadoc jars
    ./gradlew publishToMavenLocal -DRELEASE_SIGNING_ENABLED=false
    
    # Generate the API docs
    ./gradlew dokkaHtmlMultiModule
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Apr 17 13:52:16 UTC 2024
    - 718 bytes
    - Viewed (1)
Back to top