- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 360 for pagh (0.13 sec)
-
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
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java
} final String path; if (values[1].startsWith("/")) { path = values[1]; } else { path = "/" + values[1]; } final CurlHelper curlHelper = ComponentUtil.getCurlHelper(); switch (values[0].toUpperCase(Locale.ROOT)) { case "GET": return curlHelper.get(path); case "POST":
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/admin/pathmap/AdminPathmapAction.java
/** * Displays the main path mapping administration page. * * @param form the search form containing search criteria * @return HTML response for the path mapping list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index(final SearchForm form) { return asListHtml(); } /** * Displays the path mapping list with pagination support. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
} /** * Returns the page size (number of records per page). * * @return the page size */ public int getPageSize() { return pageSize; } /** * Returns the current page number (1-based). * * @return the current page number */ public int getCurrentPageNumber() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
public void test_getServletPath_withSAStrutsMethodInMiddle_returnsSuperPath() { final String originalPath = "/original/path"; final String customPath = "/api/v1/search"; mockRequest.setServletPath(originalPath); mockRequest.setQueryString("query=test&SAStruts.method=execute&page=1"); webApiRequest = new WebApiRequest(mockRequest, customPath);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java
if (StringUtil.isNotBlank(logFilePath) && isLogFilename(filename)) { final Path path = Paths.get(logFilePath, filename); return asStream(filename).contentTypeOctetStream().stream(out -> { try (InputStream in = Files.newInputStream(path)) { out.write(in); } }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
return asHtml(path_AdminDictMapping_AdminDictMappingJsp).renderWith(data -> { searchPaging(data, form); }); } /** * Show the list page. * @param pageNumber The page number. * @param form The search form. * @return The HTML response. */ @Execute @Secured({ ROLE, ROLE + VIEW })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.advance_search_filetype_powerpoint=MS PowerPoint labels.advance_search_occt=Occurence labels.advance_search_occt_default=Anywhere in the page labels.advance_search_occt_allintitle=in the title of the page labels.advance_search_occt_allinurl=in the URL of the page labels.advance_search_sitesearch=Site or domain labels.advance_search_timestamp=Last update labels.advance_search_timestamp_default=Anytime
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/resources/fess_config.properties
page.keymatch.max.fetch.size=1000 # Maximum number of labeltype records to fetch per page. page.labeltype.max.fetch.size=1000 # Maximum number of roletype records to fetch per page. page.roletype.max.fetch.size=1000 # Maximum number of user records to fetch per page. page.user.max.fetch.size=1000 # Maximum number of role records to fetch per page. page.role.max.fetch.size=1000
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)