- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 813 for shtml (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java
}, validationErrorLambda); return null; }); } /** * Returns the index HTML response. * * @return the HTML response */ protected HtmlResponse asIndexHtml() { return getUserBean().map(u -> asHtml(virtualHost(path_Profile_IndexJsp)).useForm(ProfileForm.class)) .orElseGet(() -> redirect(LoginAction.class)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorAction.java
/** * Displays the general error page. * * @param form the error form containing error information * @return HTML response for the error page */ @Execute public HtmlResponse index(final ErrorForm form) { return asHtml(virtualHost(path_Error_ErrorJsp)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorSystemerrorAction.java
/** * Displays the system error page. * * @param form the error form containing error information * @return HTML response for the system error page */ @Execute public HtmlResponse index(final ErrorForm form) { return asHtml(virtualHost(path_Error_SystemJsp)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
* * @param form the edit form containing updated settings * @return HTML response after updating settings */ @Execute @Secured({ ROLE }) public HtmlResponse update(final EditForm form) { validate(form, messages -> {}, () -> asHtml(path_AdminGeneral_AdminGeneralJsp)); verifyToken(() -> asHtml(path_AdminGeneral_AdminGeneralJsp)); updateConfig(fessConfig, form);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java
/** * Returns the appropriate HTML response for login handling. * If a user is already authenticated, redirects to the appropriate admin interface. * Otherwise, displays the login page. * * @return HTML response for login page or redirect to admin interface */ protected HtmlResponse getHtmlResponse() { return getUserBean().map(this::redirectByUser).orElse(asHtml(virtualHost(path_Login_IndexJsp))); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorBadrequrestAction.java
/** * Displays the bad request error page. * * @param form the error form containing error information * @return HTML response for the bad request error page */ @Execute public HtmlResponse index(final ErrorForm form) { return asHtml(virtualHost(path_Error_BadRequestJsp)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/RootAction.java
/** * The index page. * @return The HTML response for the index page. */ @Execute public HtmlResponse index() { if (isLoginRequired()) { return redirectToLogin(); } return asHtml(virtualHost(path_IndexJsp)).useForm(SearchForm.class, op -> { op.setup(form -> {
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/dashboard/AdminDashboardAction.java
// ============== /** * Show the index page. * @return The HTML response. */ @Execute @Secured({ ROLE }) public HtmlResponse index() { searchEngineApiManager.saveToken(); return asHtml(path_AdminDashboard_AdminDashboardJsp).renderWith(data -> {
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/app/web/admin/sereq/AdminSereqAction.java
default: break; } return null; } /** * Creates an HTML response for the list page with optional pre-processing. * * @param runnable optional runnable to execute before rendering (can be null) * @return HTML response for the search request list page */ private HtmlResponse asListHtml(final Runnable runnable) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorNotfoundAction.java
/** * Displays the not found error page. * * @param form the error form containing error information * @return HTML response for the not found error page */ @Execute public HtmlResponse index(final ErrorForm form) { return asHtml(virtualHost(path_Error_NotFoundJsp)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0)