- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 610 for forem (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java
}); } /** * Searches job logs based on the form criteria. * * @param form the search form * @return HTML response for the search results */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse search(final SearchForm form) { saveToken(); copyBeanToBean(form, jobLogPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java
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 * excluded from search indexing and analysis. * */ 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.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
final String jspType = "view"; final File jspFile = getJspFile(form.fileName, jspType); if (form.content == null) { form.content = StringUtil.EMPTY; } validate(form, messages -> {}, () -> asEditHtml(form)); verifyToken(() -> asEditHtml(form)); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java
return asHtml(path_AdminFailureurl_AdminFailureurlJsp).renderWith(data -> { searchPaging(data, form); }); } /** * Sets up pagination data and restores search form values from the pager. * * @param data the render data to populate with failure URL items * @param form the search form to restore values into */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_edit.jsp
<la:text styleId="name" property="name" styleClass="form-control"/> </div> </div> <div class="form-group row"> <label for="handlerName" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.handler_name"/></label>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 9.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp
<div class="form-inline col-sm-9"> <la:errors property="popularWord"/> <div class="form-check"> <la:checkbox styleId="popularWord" styleClass="form-check-input" property="popularWord"/> <label for="popularWord" class="form-check-label">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java
import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for creating new stemmer override dictionary entries. * This form handles the creation of stemmer override rules that modify * the stemming behavior for specific words. * */ public class CreateForm { /**
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/mapping/AdminDictMappingAction.java
validate(form, messages -> {}, () -> asListHtml(form.dictId)); charMappingService.getCharMappingItem(form.dictId, form.id).ifPresent(entity -> { form.inputs = entity.getInputsValue(); form.output = entity.getOutput(); }).orElse(() -> { throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.getDisplayId()),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_edit.jsp
<la:text styleId="name" property="name" styleClass="form-control"/> </div> </div> <div class="form-group row"> <label for="value" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.labeltype_value"/></label>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
} /** * Displays the form for editing an existing user. * * @param form the edit form containing user ID * @return HTML response for the user edit form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, this::asListHtml); final String id = form.id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.5K bytes - Viewed (0)