- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 86 for THEME (0.01 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/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) -
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) -
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/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) -
src/main/java/org/codelibs/fess/app/web/admin/group/CreateForm.java
package org.codelibs.fess.app.web.admin.group; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.app.web.CrudMode; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * The create form for Group. * */ public class CreateForm { /** * Creates a new CreateForm instance.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
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) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java
*/ package org.codelibs.fess.app.web.admin.dict.stopwords; import org.codelibs.fess.app.web.CrudMode; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for creating new stopwords dictionary entries. * This form handles the creation of stopwords that should be
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)