- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for HtmlNext (0.82 sec)
-
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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java
} }); MockletHttpServletRequest request = getMockRequest(); HtmlNext page = new HtmlNext("/search"); // No matching host header HtmlNext result = virtualHostHelper.getVirtualHostPath(page); assertEquals("/search", result.getRoutingPath()); // Matching host header
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11.5K bytes - Viewed (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")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (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); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0)