- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 783 for forem (0.02 sec)
-
src/main/java/org/codelibs/core/net/URLUtil.java
* Converts a string into <code>application/x-www-form-urlencoded</code> * format using the specified encoding scheme. * * @param s * The string to be converted. Must not be {@literal null} or empty. * @param enc * The encoding scheme. Must not be {@literal null} or empty. * @return The string encoded in <code>application/x-www-form-urlencoded</code> format. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/RootAction.java
if (isLoginRequired()) { return redirectToLogin(); } return asHtml(virtualHost(path_IndexJsp)).useForm(SearchForm.class, op -> { op.setup(form -> { buildFormParams(form); }); }).renderWith(data -> { buildInitParams(); RenderDataUtil.register(data, "notification", fessConfig.getNotificationSearchTop()); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java
*/ package org.codelibs.fess.app.web.admin.badword; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading bad word files to the Fess search engine. * This form is used in the admin interface to upload bad word dictionary files * that contain words to be filtered from search results. */ public class UploadForm { /**
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/app/web/admin/dict/kuromoji/UploadForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading Kuromoji dictionary files to the Fess search engine. * Kuromoji is a Japanese morphological analyzer used for tokenizing Japanese text. * This form is used in the admin interface to upload custom user dictionaries for Kuromoji. */ public class UploadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java
import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for editing scheduled job configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing scheduler entries, * including tracking information for optimistic locking.
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/wizard/CrawlingConfigForm.java
import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Size; /** * Form class for crawling configuration wizard in the admin interface. * Contains validation constraints for creating new crawling configurations. */ public class CrawlingConfigForm { /** * Creates a new form instance. */ public CrawlingConfigForm() { // 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/main/webapp/WEB-INF/fe.tld
<description> Returns a hidden form for Facet. </description> <name>facetForm</name> <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.lang.String facetForm()</function-signature> <example> ${fe:facetForm()} </example> </function> <function> <description> Returns a hidden form for More Like This. </description>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:38:54 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java
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. * Protected words are terms that should not be stemmed or modified during text analysis. *
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/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords_edit.jsp
<la:errors property="_global"/> </div> <div class="form-group row"> <label for="input" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.dict_stopwords_source"/></label> <div class="col-sm-9">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/InstallForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; /** * Form for plugin installation through the admin web interface. * This class represents the form data structure for installing a plugin * via file upload through the admin UI. */ public class InstallForm { /** Plugin identifier (required, max 400 characters) */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0)