- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 731 for theme (0.03 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.dict.protwords; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * Form class for editing protected words dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing protected words entries.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0)