Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,422 for theme (0.02 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. docs/en/docs/how-to/configure-swagger-ui.md

    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## Change the Theme { #change-the-theme }
    
    The same way you could set the syntax highlighting theme with the key `"syntaxHighlight.theme"` (notice that it has a dot in the middle):
    
    {* ../../docs_src/configure_swagger_ui/tutorial002.py hl[3] *}
    
    That configuration would change the syntax highlighting color theme:
    
    <img src="/img/tutorial/extending-openapi/image04.png">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  4. _config.yml

    theme: jekyll-theme-minimal...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jun 18 17:41:54 UTC 2021
    - 27 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. docs/de/docs/how-to/configure-swagger-ui.md

    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## Das Theme ändern
    
    Auf die gleiche Weise könnten Sie das Theme der Syntaxhervorhebung mit dem Schlüssel `syntaxHighlight.theme` festlegen (beachten Sie, dass er einen Punkt in der Mitte hat):
    
    {* ../../docs_src/configure_swagger_ui/tutorial002.py hl[3] *}
    
    Obige Konfiguration würde das Theme für die Farbe der Syntaxhervorhebung ändern:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 10:02:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top