- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for attrValue (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
String attrValue = attrNode.getNodeValue(); if (StringUtil.isNotBlank(attrValue)) { // if starting with www, append a protocol if (attrValue.startsWith("www.")) { attrValue = "http://" + attrValue; } return attrValue; } }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Oct 24 12:16:00 UTC 2024 - 19.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} return new HashMap<String, Object>(); } @Override protected void addChildUrlFromTagAttribute(final List<String> urlList, final URL url, final String attrValue, final String encoding) { final String urlValue = attrValue.trim(); URL childUrl; String u = null; try { childUrl = new URL(url, urlValue.startsWith(":") ? url.getProtocol() + urlValue : urlValue);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0)