- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getNodeValue (0.16 sec)
-
src/main/java/org/codelibs/fess/util/PrunedTag.java
if (tag.equalsIgnoreCase(node.getNodeName())) { if (attrName != null) { final Node attr = node.getAttributes().getNamedItem(attrName); if (attr == null || !attrValue.equals(attr.getNodeValue())) { return false; } } if (id == null) { if (css == null) { return true; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
final Node classAttr = attributes.getNamedItem("class"); if (classAttr != null) { final String value = classAttr.getNodeValue(); if (StringUtil.isNotBlank(value)) { final String[] values = value.split("\\."); nameSet.add(values[values.length - 1]);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
final Node node = list.get(0); final Node attrNode = node.getAttributes().getNamedItem("href"); if (attrNode != null) { String attrValue = attrNode.getNodeValue(); if (StringUtil.isNotBlank(attrValue)) { // if starting with www, append a protocol if (attrValue.startsWith("www.")) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Oct 24 12:16:00 UTC 2024 - 19.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 17.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
for (int i = 0; i < nodeList.getLength(); i++) { final Node childNode = nodeList.item(i); if (childNode.getNodeType() == Node.COMMENT_NODE) { final String comment = childNode.getNodeValue().trim(); if (comment.startsWith("googleoff:")) { flag.setValue(false); } else if (comment.startsWith("googleon:")) { flag.setValue(true);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0)