- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for normalizeConfigPath (0.06 sec)
-
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
public void test_normalizeConfigPath() { assertEquals("", systemHelper.normalizeConfigPath("")); assertEquals("", systemHelper.normalizeConfigPath("#hash")); assertEquals(".*\\Qwww.domain.com/test\\E.*", systemHelper.normalizeConfigPath("contains:www.domain.com/test")); assertEquals(".*\\Q/test/\\E.*", systemHelper.normalizeConfigPath("contains:/test/"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
split = '|'; } else { buf.append(split); } final String normalizePath = systemHelper.normalizeConfigPath(path); if (StringUtil.isNotBlank(normalizePath)) { buf.append(normalizePath); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} } /** * Normalizes a configuration path. * * @param path The path to normalize. * @return The normalized path. */ public String normalizeConfigPath(final String path) { if (StringUtil.isBlank(path)) { return StringUtils.EMPTY; } final String p = path.trim(); if (p.startsWith("#")) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0)