Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isCrawlerIgnoreRobotsTags (0.09 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            final String ignore = configMap.get(Config.IGNORE_ROBOTS_TAGS);
            if (ignore == null) {
                if (fessConfig.isCrawlerIgnoreRobotsTags()) {
                    return;
                }
            } else if (Boolean.parseBoolean(ignore)) {
                return;
            }
    
            // meta tag
            try {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Whether to ignore robots meta tags during crawling.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isCrawlerIgnoreRobotsTags();
    
        /**
         * Get the value for the key 'crawler.ignore.content.exception'. <br>
         * The value is, e.g. true <br>
         * comment: Whether to ignore content exceptions during crawling.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
Back to top