- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getSitePath (0.07 sec)
-
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
urlLink = "://www.qwerty.jp"; sitePath = "www.qwerty.jp"; docMap.put(fieldName, urlLink); assertEquals(sitePath, viewHelper.getSitePath(docMap)); urlLink = "www.google.com"; sitePath = "www.google.com"; docMap.put(fieldName, urlLink); assertEquals(sitePath, viewHelper.getSitePath(docMap));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
docMap.put(fessConfig.getResponseFieldUrlLink(), viewHelper.getUrlLink(docMap)); docMap.put(fessConfig.getResponseFieldSitePath(), viewHelper.getSitePath(docMap)); } if (!docMap.containsKey(Constants.SCORE)) { final float score = searchHit.getScore(); if (Float.isFinite(score)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
assertNotNull(thumbPath); assertTrue(thumbPath.toString().contains("thumbnails")); } public void test_getSitePath() { Path sitePath = ResourceUtil.getSitePath("site.xml"); assertNotNull(sitePath); assertTrue(sitePath.toString().contains("site")); } public void test_getPluginPath() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
} else if (lowerPath.endsWith("/")) { response.setContentType("text/html;charset=utf-8"); } } Path filePath = ResourceUtil.getSitePath(path.replaceAll("\\.\\.+", StringUtil.EMPTY).replaceAll("/+", "/").split("/")); if (Files.isDirectory(filePath)) { filePath = filePath.resolve("index.html"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
docMap.put(fessConfig.getResponseFieldUrlLink(), viewHelper.getUrlLink(docMap)); docMap.put(fessConfig.getResponseFieldSitePath(), viewHelper.getSitePath(docMap)); } if (!docMap.containsKey(Constants.SCORE)) { final float score = hit.getScore(); if (Float.isFinite(score)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* Extracts and formats the site path from document URL. * * @param docMap the document data map * @return the formatted site path */ public Object getSitePath(final Map<String, Object> docMap) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final Object siteValue = docMap.get(fessConfig.getIndexFieldSite()); if (siteValue != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)