- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for encodeURL (0.88 sec)
-
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
url = "file:/" + encodeUrl("ホーム") + "/user"; exp = "localhost"; assertEquals(exp, transformer.getHostOnFile(url)); url = "file:/c:/" + encodeUrl("ホーム") + "/user"; exp = "localhost"; assertEquals(exp, transformer.getHostOnFile(url)); url = "file:////" + encodeUrl("サーバー") + "/home/user"; exp = "サーバー";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
assertEquals("test#value", DocumentUtil.encodeUrl("test#value")); } public void test_encodeUrl_already_encoded() { assertEquals("hello", DocumentUtil.encodeUrl("hello")); assertEquals("hello-world", DocumentUtil.encodeUrl("hello-world")); assertEquals("hello_world", DocumentUtil.encodeUrl("hello_world"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
} } else { hash = StringUtil.EMPTY; } if (!isFileSystemPath(targetUrl)) { return HtmlResponse.fromRedirectPathAsIs(DocumentUtil.encodeUrl(targetUrl + hash)); } if (!fessConfig.isSearchFileProxyEnabled()) { return HtmlResponse.fromRedirectPathAsIs(targetUrl + hash); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
if (FUNCTION_ENCODEURL_MATCHER.equals(replacement)) { return (u, m) -> DocumentUtil.encodeUrl(u); } if (!replacement.startsWith(GROOVY_MATCHER)) { return (u, m) -> m.replaceAll(replacement); } final String template = replacement.substring(GROOVY_MATCHER.length());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
* * @param url the URL to encode * @return the encoded URL with non-URL-safe characters properly encoded */ public static String encodeUrl(final String url) { final String enc = LaRequestUtil.getOptionalRequest() .filter(req -> req.getCharacterEncoding() != null) .map(HttpServletRequest::getCharacterEncoding)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
} @Override public boolean containsHeader(String name) { return false; } @Override public String encodeURL(String url) { return url; } @Override public String encodeRedirectURL(String url) { return url; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
} } catch (final ExecutionException e) { logger.debug("Failed to access {}", input, e); } } return LaResponseUtil.getResponse().encodeURL(sb.toString()); } /** * Encodes a string for similar document hash processing. * * @param input the string to encode * @return encoded string, or the original input if blank
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
} @Override public boolean containsHeader(String name) { return false; } @Override public String encodeURL(String url) { return url; } @Override public String encodeRedirectURL(String url) { return url; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java
} @Override public boolean containsHeader(String name) { return false; } @Override public String encodeURL(String url) { return null; } @Override public String encodeRedirectURL(String url) { return null; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
} @Override public boolean containsHeader(String name) { return headers.containsKey(name); } @Override public String encodeURL(String url) { return url; } @Override public String encodeRedirectURL(String url) { return url; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0)