Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCrawlerDocumentHtmlCanonicalXpath (2.23 sec)

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

            String xpath = configMap.get(Config.HTML_CANONICAL_XPATH);
            if (xpath == null) {
                xpath = fessConfig.getCrawlerDocumentHtmlCanonicalXpath();
            }
            if (StringUtil.isBlank(xpath)) {
                return null;
            }
            final String canonicalUrl = getSingleNodeValue(document, xpath, node -> node);
    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: XPath to extract canonical URL from HTML documents.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerDocumentHtmlCanonicalXpath();
    
        /**
         * Get the value for the key 'crawler.document.html.pruned.tags'. <br>
         * The value is, e.g. noscript,script,style,header,footer,aside,nav,a[rel=nofollow] <br>
    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