Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for encodeUrlFilter (0.18 sec)

  1. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 25K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Encodes a URL path for filtering.
         *
         * @param path The path to encode.
         * @return The encoded path.
         */
        public String encodeUrlFilter(final String path) {
            if (filterPathEncoding == null || path == null) {
                return path;
            }
    
            try {
                final StringBuilder buf = new StringBuilder(path.length() + 100);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top