- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getRoutingPath (0.3 sec)
-
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
assertEquals("/index.jsp", FessHtmlPath.path_IndexJsp.getRoutingPath()); assertEquals("/search.jsp", FessHtmlPath.path_SearchJsp.getRoutingPath()); assertEquals("/error/error.jsp", FessHtmlPath.path_Error_ErrorJsp.getRoutingPath()); assertEquals("/login/index.jsp", FessHtmlPath.path_Login_IndexJsp.getRoutingPath());
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/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java
HtmlNext result = virtualHostHelper.getVirtualHostPath(page); assertEquals("/search", result.getRoutingPath()); // Matching host header request.addHeader("Host", "example.com"); result = virtualHostHelper.getVirtualHostPath(page); assertEquals("/site1/search", result.getRoutingPath()); // The header remains for subsequent tests due to static request handling
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/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
public HtmlNext getVirtualHostPath(final HtmlNext page) { return processVirtualHost(s -> { final String basePath = getVirtualHostBasePath(s, page); return new HtmlNext(basePath + page.getRoutingPath()); }, page); } /** * Gets the base path for virtual host based on the virtual host key and page. * * @param s The virtual host key * @param page The HTML page
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0)