- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for HtmlNext (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
HtmlNext path_AdminBadword_AdminBadwordDownloadJsp = new HtmlNext("/admin/badword/admin_badword_download.jsp"); /** The path of the HTML: /admin/badword/admin_badword_edit.jsp */ HtmlNext path_AdminBadword_AdminBadwordEditJsp = new HtmlNext("/admin/badword/admin_badword_edit.jsp"); /** The path of the HTML: /admin/badword/admin_badword_upload.jsp */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Feb 10 04:24:02 GMT 2026 - 26.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
if (baseField != null) { HtmlNext htmlNext = (HtmlNext) baseField.get(null); assertTrue("Base path should match pattern", htmlNext.getRoutingPath().startsWith(basePath)); } if (detailsField != null) { HtmlNext htmlNext = (HtmlNext) detailsField.get(null); assertTrue("Details path should match pattern", htmlNext.getRoutingPath().contains("_details.jsp")); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
* @return The HTML page with updated virtual host path */ public HtmlNext getVirtualHostPath(final HtmlNext page) { return processVirtualHost(s -> { final String basePath = getVirtualHostBasePath(s, page); return new HtmlNext(basePath + page.getRoutingPath()); }, page); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
* virtual host configurations and path modifications. * * @param path the HTML path to process * @return the processed path with virtual host handling applied */ protected HtmlNext virtualHost(final HtmlNext path) { return ComponentUtil.getVirtualHostHelper().getVirtualHostPath(path); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 18 04:42:56 GMT 2026 - 14K bytes - Click Count (0)