- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 333 for fieldset (0.66 sec)
-
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
public class FessHtmlPathTest extends UnitFessTestCase { public void test_allPathsInitialized() throws Exception { // Get all public static final fields of HtmlNext type Field[] fields = FessHtmlPath.class.getDeclaredFields(); for (Field field : fields) { int modifiers = field.getModifiers(); if (Modifier.isPublic(modifiers) && Modifier.isStatic(modifiers) && Modifier.isFinal(modifiers)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java
* allowing the error page to display relevant information and preserve search context. */ public class ErrorForm { /** Map of form fields and their validation error messages */ public Map<String, String[]> fields = new HashMap<>(); /** Search query parameter that caused the error */ public String q; /** URL parameter associated with the error */ public String url;
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/base/SearchForm.java
* Provides form fields and methods for handling search requests in the web interface. * Contains validation constraints and convenience methods for parameter processing. */ public class SearchForm extends SearchRequestParams { /** * Map of additional search fields with their values. */ public Map<String, String[]> fields = new HashMap<>(); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
module.xml
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java
*/ public String sort; /** * The language setting for error page display. */ public String lang; /** * Additional search fields for error page display. */ public Map<String, String[]> fields = new HashMap<>(); /** * Default constructor for ThumbnailForm. */ public ThumbnailForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
} public void test_fields() { final Map<String, String[]> fields = Collections.singletonMap("title", new String[] { "test" }); assertEquals("title:\"test\"", getQuery("", new String[0], fields, Collections.emptyMap(), false)); final Map<String, String[]> multiFields = Collections.singletonMap("content", new String[] { "value1", "value2" });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
} /** * Generates hidden HTML form fields for facet filtering. * * @return HTML string containing hidden input fields for facet parameters */ public static String facetForm() { return createForm(Constants.FACET_FORM, FACET_PREFIX); } /** * Generates hidden HTML form fields for geographic filtering. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoForm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0)