- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for encodeUrlFilter (0.11 sec)
-
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
String path = null; assertNull(systemHelper.encodeUrlFilter(path)); path = "abc"; assertEquals(path, systemHelper.encodeUrlFilter(path)); path = "あいう"; assertEquals("%E3%81%82%E3%81%84%E3%81%86", systemHelper.encodeUrlFilter(path)); path = "[]^$.*+?,{}|%\\"; assertEquals(path, systemHelper.encodeUrlFilter(path)); systemHelper.filterPathEncoding = null;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
urlValue = line; urlEncodeDisabled.set(false); } else { urlValue = systemHelper.encodeUrlFilter(line); } crawler.addIncludeFilter(urlValue); if (logger.isInfoEnabled()) { logger.info("Included URL: {}", urlValue);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java
final String v = systemHelper.normalizeConfigPath(u); if (StringUtil.isNotBlank(v)) { pathPatterList.add(Pattern.compile(systemHelper.encodeUrlFilter(v))); } } includedDocPathPatterns = pathPatterList.toArray(new Pattern[pathPatterList.size()]); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
final String userDir = System.getProperty("user.dir"); final File targetDir = new File(userDir, "target"); return new File(targetDir, "logs").getAbsolutePath(); } public String encodeUrlFilter(final String path) { if (filterPathEncoding == null || path == null) { return path; } try { final StringBuilder buf = new StringBuilder(path.length() + 100);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0)