- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getCanonicalURL (0.08 sec)
-
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
Document document = getDocument(data); String value = transformer.getCanonicalUrl(responseData, document); assertNull(value); data = "<html><head><link rel=\"canonical\" href=\"http://example.com/\"></head><body>aaa</body></html>"; document = getDocument(data); value = transformer.getCanonicalUrl(responseData, document); assertEquals("http://example.com/", value);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 41.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
protected Map<String, Object> processAdditionalData(final Map<String, Object> dataMap, final ResponseData responseData, final Document document) { // canonical final String canonicalUrl = getCanonicalUrl(responseData, document); if (canonicalUrl != null && !canonicalUrl.equalsIgnoreCase(responseData.getUrl()) && isValidUrl(canonicalUrl) && isValidCanonicalUrl(responseData.getUrl(), canonicalUrl)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* Returns the Windows UNC style path with backslashes instead of forward slashes. * * @return The UNC path. */ public String getCanonicalUncPath () { return this.fileLocator.getCanonicalURL(); } /** * If the path of this <code>SmbFile</code> falls within a DFS volume, * this method will return the referral path to which it maps. Otherwise
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)