- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 43 for renderWith (0.1 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
} @Execute @Secured({ ROLE }) public HtmlResponse installplugin() { saveToken(); return asHtml(path_AdminPlugin_AdminPluginInstallpluginJsp).renderWith(data -> { final List<Map<String, String>> result = new ArrayList<>(); final Map<String, String> map = new HashMap<>(); map.put("id", UPLOAD); map.put("name", "");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dashboard/AdminDashboardAction.java
@Execute @Secured({ ROLE }) public HtmlResponse index() { searchEngineApiManager.saveToken(); return asHtml(path_AdminDashboard_AdminDashboardJsp).renderWith(data -> { RenderDataUtil.register(data, "serverPath", searchEngineApiManager.getServerPath()); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java
return name.endsWith(".log") || name.endsWith(".log.gz"); } private HtmlResponse asIndexHtml() { return asHtml(path_AdminLog_AdminLogJsp).renderWith(data -> { RenderDataUtil.register(data, "logFileItems", getLogFileItems()); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/RootAction.java
} 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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/help/HelpAction.java
} return asHtml(virtualHost(path_HelpJsp)).useForm(SearchForm.class, op -> { op.setup(form -> { buildFormParams(form); }); }).renderWith(data -> { buildInitParams(); RenderDataUtil.register(data, "helpPage", viewHelper.getPagePath("common/help")); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
public HtmlResponse advance(final SearchForm form) { if (isLoginRequired()) { return redirectToLogin(); } validate(form, messages -> {}, () -> asHtml(virtualHost(path_IndexJsp)).renderWith(data -> { buildInitParams(); RenderDataUtil.register(data, "notification", fessConfig.getNotificationSearchTop()); })); if (!form.hasConditionQuery()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/AdminDictAction.java
// ============== @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { return asHtml(path_AdminDict_AdminDictJsp).renderWith(data -> { final DictionaryFile<? extends DictionaryItem>[] dictFiles = dictionaryManager.getDictionaryFiles(); RenderDataUtil.register(data, "dictFiles", dictFiles); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
} private HtmlResponse asIndexPage(final LoginForm form) { if (form != null) { form.clearSecurityInfo(); } return asHtml(virtualHost(path_Login_IndexJsp)).renderWith(data -> { RenderDataUtil.register(data, "notification", fessConfig.getNotificationLogin()); saveToken(); }); } @Execute public HtmlResponse login(final LoginForm form) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
@Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { return asHtml(path_AdminSysteminfo_AdminSysteminfoJsp).renderWith(data -> { registerEnvItems(data); registerPropItems(data); registerFessPropItems(data); registerBugReportItems(data); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
} private HtmlResponse asListHtml(final String path) { return asHtml(path_AdminStorage_AdminStorageJsp).useForm(ItemForm.class).renderWith(data -> { RenderDataUtil.register(data, "endpoint", fessConfig.getStorageEndpoint()); RenderDataUtil.register(data, "bucket", fessConfig.getStorageBucket());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 19.9K bytes - Viewed (0)