nokogiri-backupify 1.5.0.beta.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +26 -0
- data/CHANGELOG.ja.rdoc +509 -0
- data/CHANGELOG.rdoc +490 -0
- data/Manifest.txt +274 -0
- data/README.ja.rdoc +106 -0
- data/README.rdoc +150 -0
- data/Rakefile +217 -0
- data/bin/nokogiri +54 -0
- data/deps.rip +5 -0
- data/ext/java/nokogiri/EncodingHandler.java +124 -0
- data/ext/java/nokogiri/HtmlDocument.java +146 -0
- data/ext/java/nokogiri/HtmlElementDescription.java +145 -0
- data/ext/java/nokogiri/HtmlEntityLookup.java +79 -0
- data/ext/java/nokogiri/HtmlSaxParserContext.java +256 -0
- data/ext/java/nokogiri/NokogiriService.java +466 -0
- data/ext/java/nokogiri/XmlAttr.java +183 -0
- data/ext/java/nokogiri/XmlAttributeDecl.java +130 -0
- data/ext/java/nokogiri/XmlCdata.java +89 -0
- data/ext/java/nokogiri/XmlComment.java +84 -0
- data/ext/java/nokogiri/XmlDocument.java +514 -0
- data/ext/java/nokogiri/XmlDocumentFragment.java +216 -0
- data/ext/java/nokogiri/XmlDtd.java +464 -0
- data/ext/java/nokogiri/XmlElement.java +221 -0
- data/ext/java/nokogiri/XmlElementContent.java +382 -0
- data/ext/java/nokogiri/XmlElementDecl.java +147 -0
- data/ext/java/nokogiri/XmlEntityDecl.java +161 -0
- data/ext/java/nokogiri/XmlEntityReference.java +75 -0
- data/ext/java/nokogiri/XmlNamespace.java +127 -0
- data/ext/java/nokogiri/XmlNode.java +1392 -0
- data/ext/java/nokogiri/XmlNodeSet.java +284 -0
- data/ext/java/nokogiri/XmlProcessingInstruction.java +103 -0
- data/ext/java/nokogiri/XmlReader.java +409 -0
- data/ext/java/nokogiri/XmlRelaxng.java +199 -0
- data/ext/java/nokogiri/XmlSaxParserContext.java +353 -0
- data/ext/java/nokogiri/XmlSaxPushParser.java +182 -0
- data/ext/java/nokogiri/XmlSchema.java +175 -0
- data/ext/java/nokogiri/XmlSyntaxError.java +114 -0
- data/ext/java/nokogiri/XmlText.java +135 -0
- data/ext/java/nokogiri/XmlXpathContext.java +175 -0
- data/ext/java/nokogiri/XsltStylesheet.java +181 -0
- data/ext/java/nokogiri/internals/HtmlDomParserContext.java +205 -0
- data/ext/java/nokogiri/internals/NokogiriDocumentCache.java +73 -0
- data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +80 -0
- data/ext/java/nokogiri/internals/NokogiriHandler.java +326 -0
- data/ext/java/nokogiri/internals/NokogiriHelpers.java +583 -0
- data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +170 -0
- data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +118 -0
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +73 -0
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +121 -0
- data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +78 -0
- data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +120 -0
- data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +56 -0
- data/ext/java/nokogiri/internals/ParserContext.java +278 -0
- data/ext/java/nokogiri/internals/PushInputStream.java +411 -0
- data/ext/java/nokogiri/internals/ReaderNode.java +473 -0
- data/ext/java/nokogiri/internals/SaveContext.java +282 -0
- data/ext/java/nokogiri/internals/SchemaErrorHandler.java +68 -0
- data/ext/java/nokogiri/internals/XmlDeclHandler.java +42 -0
- data/ext/java/nokogiri/internals/XmlDomParser.java +77 -0
- data/ext/java/nokogiri/internals/XmlDomParserContext.java +233 -0
- data/ext/java/nokogiri/internals/XmlSaxParser.java +65 -0
- data/ext/java/nokogiri/internals/XsltExtensionFunction.java +72 -0
- data/ext/nokogiri/depend +358 -0
- data/ext/nokogiri/extconf.rb +124 -0
- data/ext/nokogiri/html_document.c +154 -0
- data/ext/nokogiri/html_document.h +10 -0
- data/ext/nokogiri/html_element_description.c +276 -0
- data/ext/nokogiri/html_element_description.h +10 -0
- data/ext/nokogiri/html_entity_lookup.c +32 -0
- data/ext/nokogiri/html_entity_lookup.h +8 -0
- data/ext/nokogiri/html_sax_parser_context.c +94 -0
- data/ext/nokogiri/html_sax_parser_context.h +11 -0
- data/ext/nokogiri/nokogiri.c +92 -0
- data/ext/nokogiri/nokogiri.h +160 -0
- data/ext/nokogiri/xml_attr.c +94 -0
- data/ext/nokogiri/xml_attr.h +9 -0
- data/ext/nokogiri/xml_attribute_decl.c +70 -0
- data/ext/nokogiri/xml_attribute_decl.h +9 -0
- data/ext/nokogiri/xml_cdata.c +56 -0
- data/ext/nokogiri/xml_cdata.h +9 -0
- data/ext/nokogiri/xml_comment.c +54 -0
- data/ext/nokogiri/xml_comment.h +9 -0
- data/ext/nokogiri/xml_document.c +478 -0
- data/ext/nokogiri/xml_document.h +23 -0
- data/ext/nokogiri/xml_document_fragment.c +48 -0
- data/ext/nokogiri/xml_document_fragment.h +10 -0
- data/ext/nokogiri/xml_dtd.c +202 -0
- data/ext/nokogiri/xml_dtd.h +10 -0
- data/ext/nokogiri/xml_element_content.c +123 -0
- data/ext/nokogiri/xml_element_content.h +10 -0
- data/ext/nokogiri/xml_element_decl.c +69 -0
- data/ext/nokogiri/xml_element_decl.h +9 -0
- data/ext/nokogiri/xml_encoding_handler.c +79 -0
- data/ext/nokogiri/xml_encoding_handler.h +8 -0
- data/ext/nokogiri/xml_entity_decl.c +110 -0
- data/ext/nokogiri/xml_entity_decl.h +10 -0
- data/ext/nokogiri/xml_entity_reference.c +52 -0
- data/ext/nokogiri/xml_entity_reference.h +9 -0
- data/ext/nokogiri/xml_io.c +31 -0
- data/ext/nokogiri/xml_io.h +11 -0
- data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
- data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
- data/ext/nokogiri/xml_namespace.c +84 -0
- data/ext/nokogiri/xml_namespace.h +13 -0
- data/ext/nokogiri/xml_node.c +1384 -0
- data/ext/nokogiri/xml_node.h +13 -0
- data/ext/nokogiri/xml_node_set.c +418 -0
- data/ext/nokogiri/xml_node_set.h +9 -0
- data/ext/nokogiri/xml_processing_instruction.c +56 -0
- data/ext/nokogiri/xml_processing_instruction.h +9 -0
- data/ext/nokogiri/xml_reader.c +684 -0
- data/ext/nokogiri/xml_reader.h +10 -0
- data/ext/nokogiri/xml_relax_ng.c +161 -0
- data/ext/nokogiri/xml_relax_ng.h +9 -0
- data/ext/nokogiri/xml_sax_parser.c +288 -0
- data/ext/nokogiri/xml_sax_parser.h +39 -0
- data/ext/nokogiri/xml_sax_parser_context.c +199 -0
- data/ext/nokogiri/xml_sax_parser_context.h +10 -0
- data/ext/nokogiri/xml_sax_push_parser.c +115 -0
- data/ext/nokogiri/xml_sax_push_parser.h +9 -0
- data/ext/nokogiri/xml_schema.c +205 -0
- data/ext/nokogiri/xml_schema.h +9 -0
- data/ext/nokogiri/xml_syntax_error.c +58 -0
- data/ext/nokogiri/xml_syntax_error.h +13 -0
- data/ext/nokogiri/xml_text.c +50 -0
- data/ext/nokogiri/xml_text.h +9 -0
- data/ext/nokogiri/xml_xpath_context.c +309 -0
- data/ext/nokogiri/xml_xpath_context.h +9 -0
- data/ext/nokogiri/xslt_stylesheet.c +258 -0
- data/ext/nokogiri/xslt_stylesheet.h +9 -0
- data/lib/isorelax.jar +0 -0
- data/lib/jing.jar +0 -0
- data/lib/nekodtd.jar +0 -0
- data/lib/nekohtml.jar +0 -0
- data/lib/nokogiri.rb +143 -0
- data/lib/nokogiri/css.rb +23 -0
- data/lib/nokogiri/css/node.rb +99 -0
- data/lib/nokogiri/css/parser.rb +677 -0
- data/lib/nokogiri/css/parser.y +237 -0
- data/lib/nokogiri/css/parser_extras.rb +91 -0
- data/lib/nokogiri/css/syntax_error.rb +7 -0
- data/lib/nokogiri/css/tokenizer.rb +152 -0
- data/lib/nokogiri/css/tokenizer.rex +55 -0
- data/lib/nokogiri/css/xpath_visitor.rb +171 -0
- data/lib/nokogiri/decorators/slop.rb +35 -0
- data/lib/nokogiri/html.rb +36 -0
- data/lib/nokogiri/html/builder.rb +35 -0
- data/lib/nokogiri/html/document.rb +221 -0
- data/lib/nokogiri/html/document_fragment.rb +41 -0
- data/lib/nokogiri/html/element_description.rb +23 -0
- data/lib/nokogiri/html/element_description_defaults.rb +671 -0
- data/lib/nokogiri/html/entity_lookup.rb +13 -0
- data/lib/nokogiri/html/sax/parser.rb +52 -0
- data/lib/nokogiri/html/sax/parser_context.rb +16 -0
- data/lib/nokogiri/syntax_error.rb +4 -0
- data/lib/nokogiri/version.rb +35 -0
- data/lib/nokogiri/xml.rb +67 -0
- data/lib/nokogiri/xml/attr.rb +14 -0
- data/lib/nokogiri/xml/attribute_decl.rb +18 -0
- data/lib/nokogiri/xml/builder.rb +418 -0
- data/lib/nokogiri/xml/cdata.rb +11 -0
- data/lib/nokogiri/xml/character_data.rb +7 -0
- data/lib/nokogiri/xml/document.rb +218 -0
- data/lib/nokogiri/xml/document_fragment.rb +84 -0
- data/lib/nokogiri/xml/dtd.rb +22 -0
- data/lib/nokogiri/xml/element_content.rb +36 -0
- data/lib/nokogiri/xml/element_decl.rb +13 -0
- data/lib/nokogiri/xml/entity_decl.rb +19 -0
- data/lib/nokogiri/xml/namespace.rb +13 -0
- data/lib/nokogiri/xml/node.rb +907 -0
- data/lib/nokogiri/xml/node/save_options.rb +45 -0
- data/lib/nokogiri/xml/node_set.rb +350 -0
- data/lib/nokogiri/xml/notation.rb +6 -0
- data/lib/nokogiri/xml/parse_options.rb +85 -0
- data/lib/nokogiri/xml/pp.rb +2 -0
- data/lib/nokogiri/xml/pp/character_data.rb +18 -0
- data/lib/nokogiri/xml/pp/node.rb +56 -0
- data/lib/nokogiri/xml/processing_instruction.rb +8 -0
- data/lib/nokogiri/xml/reader.rb +112 -0
- data/lib/nokogiri/xml/relax_ng.rb +32 -0
- data/lib/nokogiri/xml/sax.rb +4 -0
- data/lib/nokogiri/xml/sax/document.rb +164 -0
- data/lib/nokogiri/xml/sax/parser.rb +115 -0
- data/lib/nokogiri/xml/sax/parser_context.rb +16 -0
- data/lib/nokogiri/xml/sax/push_parser.rb +60 -0
- data/lib/nokogiri/xml/schema.rb +57 -0
- data/lib/nokogiri/xml/syntax_error.rb +47 -0
- data/lib/nokogiri/xml/text.rb +9 -0
- data/lib/nokogiri/xml/xpath.rb +10 -0
- data/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
- data/lib/nokogiri/xml/xpath_context.rb +16 -0
- data/lib/nokogiri/xslt.rb +52 -0
- data/lib/nokogiri/xslt/stylesheet.rb +25 -0
- data/lib/xercesImpl.jar +0 -0
- data/lib/xsd/xmlparser/nokogiri.rb +90 -0
- data/tasks/cross_compile.rb +177 -0
- data/tasks/test.rb +94 -0
- data/test/css/test_nthiness.rb +159 -0
- data/test/css/test_parser.rb +303 -0
- data/test/css/test_tokenizer.rb +198 -0
- data/test/css/test_xpath_visitor.rb +85 -0
- data/test/decorators/test_slop.rb +16 -0
- data/test/files/2ch.html +108 -0
- data/test/files/address_book.rlx +12 -0
- data/test/files/address_book.xml +10 -0
- data/test/files/bar/bar.xsd +4 -0
- data/test/files/dont_hurt_em_why.xml +422 -0
- data/test/files/exslt.xml +8 -0
- data/test/files/exslt.xslt +35 -0
- data/test/files/foo/foo.xsd +4 -0
- data/test/files/po.xml +32 -0
- data/test/files/po.xsd +66 -0
- data/test/files/shift_jis.html +10 -0
- data/test/files/shift_jis.xml +5 -0
- data/test/files/snuggles.xml +3 -0
- data/test/files/staff.dtd +10 -0
- data/test/files/staff.xml +59 -0
- data/test/files/staff.xslt +32 -0
- data/test/files/tlm.html +850 -0
- data/test/files/valid_bar.xml +2 -0
- data/test/helper.rb +171 -0
- data/test/html/sax/test_parser.rb +136 -0
- data/test/html/sax/test_parser_context.rb +48 -0
- data/test/html/test_builder.rb +164 -0
- data/test/html/test_document.rb +457 -0
- data/test/html/test_document_encoding.rb +123 -0
- data/test/html/test_document_fragment.rb +255 -0
- data/test/html/test_element_description.rb +100 -0
- data/test/html/test_named_characters.rb +14 -0
- data/test/html/test_node.rb +190 -0
- data/test/html/test_node_encoding.rb +27 -0
- data/test/test_convert_xpath.rb +135 -0
- data/test/test_css_cache.rb +45 -0
- data/test/test_encoding_handler.rb +46 -0
- data/test/test_memory_leak.rb +52 -0
- data/test/test_nokogiri.rb +132 -0
- data/test/test_reader.rb +403 -0
- data/test/test_soap4r_sax.rb +52 -0
- data/test/test_xslt_transforms.rb +189 -0
- data/test/xml/node/test_save_options.rb +20 -0
- data/test/xml/node/test_subclass.rb +44 -0
- data/test/xml/sax/test_parser.rb +338 -0
- data/test/xml/sax/test_parser_context.rb +113 -0
- data/test/xml/sax/test_push_parser.rb +156 -0
- data/test/xml/test_attr.rb +65 -0
- data/test/xml/test_attribute_decl.rb +86 -0
- data/test/xml/test_builder.rb +210 -0
- data/test/xml/test_cdata.rb +50 -0
- data/test/xml/test_comment.rb +29 -0
- data/test/xml/test_document.rb +675 -0
- data/test/xml/test_document_encoding.rb +26 -0
- data/test/xml/test_document_fragment.rb +192 -0
- data/test/xml/test_dtd.rb +107 -0
- data/test/xml/test_dtd_encoding.rb +33 -0
- data/test/xml/test_element_content.rb +56 -0
- data/test/xml/test_element_decl.rb +73 -0
- data/test/xml/test_entity_decl.rb +122 -0
- data/test/xml/test_entity_reference.rb +21 -0
- data/test/xml/test_namespace.rb +70 -0
- data/test/xml/test_node.rb +899 -0
- data/test/xml/test_node_attributes.rb +34 -0
- data/test/xml/test_node_encoding.rb +107 -0
- data/test/xml/test_node_reparenting.rb +321 -0
- data/test/xml/test_node_set.rb +708 -0
- data/test/xml/test_parse_options.rb +52 -0
- data/test/xml/test_processing_instruction.rb +30 -0
- data/test/xml/test_reader_encoding.rb +126 -0
- data/test/xml/test_relax_ng.rb +60 -0
- data/test/xml/test_schema.rb +89 -0
- data/test/xml/test_syntax_error.rb +12 -0
- data/test/xml/test_text.rb +47 -0
- data/test/xml/test_unparented_node.rb +381 -0
- data/test/xml/test_xpath.rb +237 -0
- data/test/xslt/test_custom_functions.rb +94 -0
- metadata +525 -0
@@ -0,0 +1,170 @@
|
|
1
|
+
/**
|
2
|
+
* (The MIT License)
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008 - 2010:
|
5
|
+
*
|
6
|
+
* * {Aaron Patterson}[http://tenderlovemaking.com]
|
7
|
+
* * {Mike Dalessio}[http://mike.daless.io]
|
8
|
+
* * {Charles Nutter}[http://blog.headius.com]
|
9
|
+
* * {Sergio Arbeo}[http://www.serabe.com]
|
10
|
+
* * {Patrick Mahoney}[http://polycrystal.org]
|
11
|
+
* * {Yoko Harada}[http://yokolet.blogspot.com]
|
12
|
+
*
|
13
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
14
|
+
* a copy of this software and associated documentation files (the
|
15
|
+
* 'Software'), to deal in the Software without restriction, including
|
16
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
17
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
18
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
19
|
+
* the following conditions:
|
20
|
+
*
|
21
|
+
* The above copyright notice and this permission notice shall be
|
22
|
+
* included in all copies or substantial portions of the Software.
|
23
|
+
*
|
24
|
+
* THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
25
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
26
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
27
|
+
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
28
|
+
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
29
|
+
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
30
|
+
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
package nokogiri.internals;
|
34
|
+
|
35
|
+
import static nokogiri.internals.NokogiriHelpers.getNokogiriClass;
|
36
|
+
import static nokogiri.internals.NokogiriHelpers.isNamespace;
|
37
|
+
|
38
|
+
import java.util.ArrayList;
|
39
|
+
import java.util.LinkedHashMap;
|
40
|
+
import java.util.List;
|
41
|
+
import java.util.Map;
|
42
|
+
|
43
|
+
import nokogiri.XmlDocument;
|
44
|
+
import nokogiri.XmlNamespace;
|
45
|
+
|
46
|
+
import org.jruby.Ruby;
|
47
|
+
import org.w3c.dom.Attr;
|
48
|
+
import org.w3c.dom.NamedNodeMap;
|
49
|
+
import org.w3c.dom.Node;
|
50
|
+
|
51
|
+
/**
|
52
|
+
* Cache of namespages of each node. XmlDocument has one cache of this class.
|
53
|
+
*
|
54
|
+
* @author sergio
|
55
|
+
* @author Yoko Harada <yokolet@gmail.com>
|
56
|
+
*/
|
57
|
+
public class NokogiriNamespaceCache {
|
58
|
+
|
59
|
+
private List<Long> keys; // order matters.
|
60
|
+
private Map<Integer, CacheEntry> cache; // pair of the index of a given key and entry
|
61
|
+
private XmlNamespace defaultNamespace = null;
|
62
|
+
|
63
|
+
public NokogiriNamespaceCache() {
|
64
|
+
keys = new ArrayList<Long>();
|
65
|
+
cache = new LinkedHashMap<Integer, CacheEntry>();
|
66
|
+
}
|
67
|
+
|
68
|
+
private Long hashCode(String prefix, String href) {
|
69
|
+
long prefix_hash = prefix.hashCode();
|
70
|
+
long href_hash = href.hashCode();
|
71
|
+
return prefix_hash << 31 | href_hash;
|
72
|
+
}
|
73
|
+
|
74
|
+
public XmlNamespace get(String prefix, String href) {
|
75
|
+
// prefix should not be null.
|
76
|
+
// In case of a default namespace, an empty string should be given to prefix argument.
|
77
|
+
if (prefix == null || href == null) return null;
|
78
|
+
Long hash = hashCode(prefix, href);
|
79
|
+
Integer index = keys.indexOf(hash);
|
80
|
+
if (index != -1) return cache.get(index).namespace;
|
81
|
+
return null;
|
82
|
+
}
|
83
|
+
|
84
|
+
public XmlNamespace getDefault() {
|
85
|
+
return defaultNamespace;
|
86
|
+
}
|
87
|
+
|
88
|
+
public XmlNamespace get(String prefix) {
|
89
|
+
if (prefix == null) return defaultNamespace;
|
90
|
+
long h = prefix.hashCode();
|
91
|
+
Long hash = h << 31;
|
92
|
+
Long mask = 0xFF00L;
|
93
|
+
for (int i=0; i < keys.size(); i++) {
|
94
|
+
if ((keys.get(i) & mask) == hash) {
|
95
|
+
return cache.get(i).namespace;
|
96
|
+
}
|
97
|
+
}
|
98
|
+
return null;
|
99
|
+
}
|
100
|
+
|
101
|
+
public List<XmlNamespace> get(Node node) {
|
102
|
+
List<XmlNamespace> namespaces = new ArrayList<XmlNamespace>();
|
103
|
+
for (int i=0; i < keys.size(); i++) {
|
104
|
+
CacheEntry entry = cache.get(i);
|
105
|
+
if (entry.node == node) {
|
106
|
+
namespaces.add(entry.namespace);
|
107
|
+
}
|
108
|
+
}
|
109
|
+
return namespaces;
|
110
|
+
}
|
111
|
+
|
112
|
+
public XmlNamespace put(Ruby ruby, String prefix, String href, Node node, XmlDocument document) {
|
113
|
+
// prefix should not be null.
|
114
|
+
// In case of a default namespace, an empty string should be given to prefix argument.
|
115
|
+
if (prefix == null || href == null) return null;
|
116
|
+
Long hash = hashCode(prefix, href);
|
117
|
+
Integer index;
|
118
|
+
if ((index = keys.indexOf(hash)) != -1) {
|
119
|
+
return cache.get(index).namespace;
|
120
|
+
} else {
|
121
|
+
keys.add(hash);
|
122
|
+
index = keys.size() - 1;
|
123
|
+
String actualPrefix = (prefix.equals("")) ? null : prefix;
|
124
|
+
XmlNamespace namespace = (XmlNamespace) getNokogiriClass(ruby, "Nokogiri::XML::Namespace").allocate();
|
125
|
+
namespace.setDefinition(ruby, actualPrefix, href);
|
126
|
+
namespace.setDocument(document);
|
127
|
+
CacheEntry entry = new CacheEntry(namespace, node);
|
128
|
+
cache.put(index, entry);
|
129
|
+
if ("".equals(prefix)) defaultNamespace = namespace;
|
130
|
+
return namespace;
|
131
|
+
}
|
132
|
+
}
|
133
|
+
|
134
|
+
public void remove(String prefix, String href) {
|
135
|
+
if (prefix == null || href == null) return;
|
136
|
+
Long hash = hashCode(prefix, href);
|
137
|
+
Integer index = keys.indexOf(hash);
|
138
|
+
if (index != -1) {
|
139
|
+
cache.remove(index);
|
140
|
+
}
|
141
|
+
keys.remove(index);
|
142
|
+
}
|
143
|
+
|
144
|
+
public void clear() {
|
145
|
+
// removes namespace declarations from node
|
146
|
+
for (int i=0; i < keys.size(); i++) {
|
147
|
+
CacheEntry entry = cache.get(i);
|
148
|
+
NamedNodeMap attributes = entry.node.getAttributes();
|
149
|
+
for (int j=0; j<attributes.getLength(); j++) {
|
150
|
+
String name = ((Attr)attributes.item(j)).getName();
|
151
|
+
if (isNamespace(name)) {
|
152
|
+
attributes.removeNamedItem(name);
|
153
|
+
}
|
154
|
+
}
|
155
|
+
}
|
156
|
+
keys.clear();
|
157
|
+
cache.clear();
|
158
|
+
defaultNamespace = null;
|
159
|
+
}
|
160
|
+
|
161
|
+
private class CacheEntry {
|
162
|
+
private XmlNamespace namespace;
|
163
|
+
private Node node;
|
164
|
+
|
165
|
+
CacheEntry(XmlNamespace namespace, Node node) {
|
166
|
+
this.namespace = namespace;
|
167
|
+
this.node = node;
|
168
|
+
}
|
169
|
+
}
|
170
|
+
}
|
@@ -0,0 +1,118 @@
|
|
1
|
+
/**
|
2
|
+
* (The MIT License)
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008 - 2010:
|
5
|
+
*
|
6
|
+
* * {Aaron Patterson}[http://tenderlovemaking.com]
|
7
|
+
* * {Mike Dalessio}[http://mike.daless.io]
|
8
|
+
* * {Charles Nutter}[http://blog.headius.com]
|
9
|
+
* * {Sergio Arbeo}[http://www.serabe.com]
|
10
|
+
* * {Patrick Mahoney}[http://polycrystal.org]
|
11
|
+
* * {Yoko Harada}[http://yokolet.blogspot.com]
|
12
|
+
*
|
13
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
14
|
+
* a copy of this software and associated documentation files (the
|
15
|
+
* 'Software'), to deal in the Software without restriction, including
|
16
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
17
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
18
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
19
|
+
* the following conditions:
|
20
|
+
*
|
21
|
+
* The above copyright notice and this permission notice shall be
|
22
|
+
* included in all copies or substantial portions of the Software.
|
23
|
+
*
|
24
|
+
* THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
25
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
26
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
27
|
+
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
28
|
+
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
29
|
+
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
30
|
+
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
package nokogiri.internals;
|
34
|
+
|
35
|
+
import java.util.ArrayList;
|
36
|
+
import java.util.Hashtable;
|
37
|
+
import java.util.Iterator;
|
38
|
+
import java.util.List;
|
39
|
+
import java.util.Set;
|
40
|
+
import java.util.Map.Entry;
|
41
|
+
|
42
|
+
import javax.xml.XMLConstants;
|
43
|
+
import javax.xml.namespace.NamespaceContext;
|
44
|
+
|
45
|
+
/**
|
46
|
+
* Holder of each node's namespace.
|
47
|
+
*
|
48
|
+
* @author Yoko Harada <yokolet@gmail.com>
|
49
|
+
*
|
50
|
+
*/
|
51
|
+
|
52
|
+
public class NokogiriNamespaceContext implements NamespaceContext {
|
53
|
+
public static final String NOKOGIRI_PREFIX = "nokogiri";
|
54
|
+
public static final String NOKOGIRI_URI = "http://www.nokogiri.org/default_ns/ruby/extensions_functions";
|
55
|
+
public static final String NOKOGIRI_TEMPORARY_ROOT_TAG = "nokogiri-temporary-root-tag";
|
56
|
+
|
57
|
+
private Hashtable<String,String> register;
|
58
|
+
|
59
|
+
public NokogiriNamespaceContext() {
|
60
|
+
this.register = new Hashtable<String,String>();
|
61
|
+
register.put(NOKOGIRI_PREFIX, NOKOGIRI_URI);
|
62
|
+
register.put("xml", "http://www.w3.org/XML/1998/namespace");
|
63
|
+
register.put("xhtml", "http://www.w3.org/1999/xhtml");
|
64
|
+
}
|
65
|
+
|
66
|
+
public String getNamespaceURI(String prefix) {
|
67
|
+
if (prefix == null) {
|
68
|
+
throw new IllegalArgumentException();
|
69
|
+
}
|
70
|
+
String uri = this.register.get(prefix);
|
71
|
+
if (uri != null) {
|
72
|
+
return uri;
|
73
|
+
}
|
74
|
+
|
75
|
+
if (prefix.equals(XMLConstants.XMLNS_ATTRIBUTE)) {
|
76
|
+
uri = this.register.get(XMLConstants.XMLNS_ATTRIBUTE);
|
77
|
+
return (uri == null) ? XMLConstants.XMLNS_ATTRIBUTE_NS_URI : uri;
|
78
|
+
}
|
79
|
+
|
80
|
+
return XMLConstants.NULL_NS_URI;
|
81
|
+
}
|
82
|
+
|
83
|
+
public String getPrefix(String uri) {
|
84
|
+
if (uri == null) {
|
85
|
+
throw new IllegalArgumentException("uri is null");
|
86
|
+
} else {
|
87
|
+
Set<Entry<String, String>> entries = register.entrySet();
|
88
|
+
for (Entry<String, String> entry : entries) {
|
89
|
+
if (uri.equals(entry.getValue())) {
|
90
|
+
return entry.getKey();
|
91
|
+
}
|
92
|
+
}
|
93
|
+
}
|
94
|
+
return null;
|
95
|
+
}
|
96
|
+
|
97
|
+
public Iterator<String> getPrefixes(String uri) {
|
98
|
+
if (register == null) return null;
|
99
|
+
Set<Entry<String, String>> entries = register.entrySet();
|
100
|
+
List<String> list = new ArrayList<String>();
|
101
|
+
for (Entry<String, String> entry : entries) {
|
102
|
+
if (uri.equals(entry.getValue())) {
|
103
|
+
list.add(entry.getKey());
|
104
|
+
}
|
105
|
+
}
|
106
|
+
return list.iterator();
|
107
|
+
}
|
108
|
+
|
109
|
+
public Set<String> getAllPrefixes() {
|
110
|
+
if (register == null) return null;
|
111
|
+
return register.keySet();
|
112
|
+
}
|
113
|
+
|
114
|
+
public void registerNamespace(String prefix, String uri) {
|
115
|
+
if("xmlns".equals(prefix)) prefix = "";
|
116
|
+
this.register.put(prefix, uri);
|
117
|
+
}
|
118
|
+
}
|
@@ -0,0 +1,73 @@
|
|
1
|
+
/**
|
2
|
+
* (The MIT License)
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008 - 2010:
|
5
|
+
*
|
6
|
+
* * {Aaron Patterson}[http://tenderlovemaking.com]
|
7
|
+
* * {Mike Dalessio}[http://mike.daless.io]
|
8
|
+
* * {Charles Nutter}[http://blog.headius.com]
|
9
|
+
* * {Sergio Arbeo}[http://www.serabe.com]
|
10
|
+
* * {Patrick Mahoney}[http://polycrystal.org]
|
11
|
+
* * {Yoko Harada}[http://yokolet.blogspot.com]
|
12
|
+
*
|
13
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
14
|
+
* a copy of this software and associated documentation files (the
|
15
|
+
* 'Software'), to deal in the Software without restriction, including
|
16
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
17
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
18
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
19
|
+
* the following conditions:
|
20
|
+
*
|
21
|
+
* The above copyright notice and this permission notice shall be
|
22
|
+
* included in all copies or substantial portions of the Software.
|
23
|
+
*
|
24
|
+
* THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
25
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
26
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
27
|
+
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
28
|
+
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
29
|
+
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
30
|
+
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
package nokogiri.internals;
|
34
|
+
|
35
|
+
import org.apache.xerces.xni.parser.XMLParseException;
|
36
|
+
import org.xml.sax.SAXException;
|
37
|
+
import org.xml.sax.SAXParseException;
|
38
|
+
|
39
|
+
/**
|
40
|
+
* Error Handler for XML document when recover is true (default).
|
41
|
+
*
|
42
|
+
* @author sergio
|
43
|
+
*/
|
44
|
+
public class NokogiriNonStrictErrorHandler extends NokogiriErrorHandler{
|
45
|
+
public NokogiriNonStrictErrorHandler(boolean noerror, boolean nowarning) {
|
46
|
+
super(noerror, nowarning);
|
47
|
+
}
|
48
|
+
|
49
|
+
public void warning(SAXParseException ex) throws SAXException {
|
50
|
+
errors.add(ex);
|
51
|
+
}
|
52
|
+
|
53
|
+
public void error(SAXParseException ex) throws SAXException {
|
54
|
+
errors.add(ex);
|
55
|
+
}
|
56
|
+
|
57
|
+
public void fatalError(SAXParseException ex) throws SAXException {
|
58
|
+
errors.add(ex);
|
59
|
+
}
|
60
|
+
|
61
|
+
public void error(String domain, String key, XMLParseException e) {
|
62
|
+
errors.add(e);
|
63
|
+
}
|
64
|
+
|
65
|
+
public void fatalError(String domain, String key, XMLParseException e) {
|
66
|
+
errors.add(e);
|
67
|
+
}
|
68
|
+
|
69
|
+
public void warning(String domain, String key, XMLParseException e) {
|
70
|
+
errors.add(e);
|
71
|
+
}
|
72
|
+
|
73
|
+
}
|
@@ -0,0 +1,121 @@
|
|
1
|
+
/**
|
2
|
+
* (The MIT License)
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008 - 2010:
|
5
|
+
*
|
6
|
+
* * {Aaron Patterson}[http://tenderlovemaking.com]
|
7
|
+
* * {Mike Dalessio}[http://mike.daless.io]
|
8
|
+
* * {Charles Nutter}[http://blog.headius.com]
|
9
|
+
* * {Sergio Arbeo}[http://www.serabe.com]
|
10
|
+
* * {Patrick Mahoney}[http://polycrystal.org]
|
11
|
+
* * {Yoko Harada}[http://yokolet.blogspot.com]
|
12
|
+
*
|
13
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
14
|
+
* a copy of this software and associated documentation files (the
|
15
|
+
* 'Software'), to deal in the Software without restriction, including
|
16
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
17
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
18
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
19
|
+
* the following conditions:
|
20
|
+
*
|
21
|
+
* The above copyright notice and this permission notice shall be
|
22
|
+
* included in all copies or substantial portions of the Software.
|
23
|
+
*
|
24
|
+
* THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
25
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
26
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
27
|
+
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
28
|
+
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
29
|
+
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
30
|
+
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
package nokogiri.internals;
|
34
|
+
|
35
|
+
import org.apache.xerces.xni.parser.XMLParseException;
|
36
|
+
import org.xml.sax.SAXException;
|
37
|
+
import org.xml.sax.SAXParseException;
|
38
|
+
|
39
|
+
/**
|
40
|
+
* Non-strict error handler for NekoHtml.
|
41
|
+
*
|
42
|
+
* NekoHtml adds too many warnings, which makes later processing hard. For example,
|
43
|
+
* Nokogiri wants to know whether number of errors have been increased or not to judge
|
44
|
+
* availability of creating NodeSet from a given fragment. When the fragment nodes
|
45
|
+
* are to be created from HTML document, which means NekoHtml is used, always errors
|
46
|
+
* increases. As a result, even though the given fragment is correct HTML, NodeSet
|
47
|
+
* base on the given fragment won't be created. This is why all warnings are eliminated.
|
48
|
+
*
|
49
|
+
* @author Yoko Harada <yokolet@gmail.com>
|
50
|
+
*/
|
51
|
+
public class NokogiriNonStrictErrorHandler4NekoHtml extends NokogiriErrorHandler {
|
52
|
+
|
53
|
+
public NokogiriNonStrictErrorHandler4NekoHtml(boolean nowarning) {
|
54
|
+
super(false, nowarning);
|
55
|
+
}
|
56
|
+
|
57
|
+
public NokogiriNonStrictErrorHandler4NekoHtml(boolean noerror, boolean nowarning) {
|
58
|
+
super(noerror, nowarning);
|
59
|
+
}
|
60
|
+
|
61
|
+
public void warning(SAXParseException ex) throws SAXException {
|
62
|
+
//noop. NekoHtml adds too many warnings.
|
63
|
+
}
|
64
|
+
|
65
|
+
public void error(SAXParseException ex) throws SAXException {
|
66
|
+
errors.add(ex);
|
67
|
+
}
|
68
|
+
|
69
|
+
public void fatalError(SAXParseException ex) throws SAXException {
|
70
|
+
errors.add(ex);
|
71
|
+
}
|
72
|
+
|
73
|
+
/**
|
74
|
+
* Implementation of org.apache.xerces.xni.parser.XMLErrorHandler. This method
|
75
|
+
* is invoked during parsing fired by HtmlDomParserContext and is a NekoHtml requirement.
|
76
|
+
*
|
77
|
+
* @param domain The domain of the error. The domain can be any string but is
|
78
|
+
* suggested to be a valid URI. The domain can be used to conveniently
|
79
|
+
* specify a web site location of the relevant specification or
|
80
|
+
* document pertaining to this warning.
|
81
|
+
* @param key The error key. This key can be any string and is implementation
|
82
|
+
* dependent.
|
83
|
+
* @param e Exception.
|
84
|
+
*/
|
85
|
+
public void error(String domain, String key, XMLParseException e) {
|
86
|
+
errors.add(e);
|
87
|
+
}
|
88
|
+
|
89
|
+
/**
|
90
|
+
* Implementation of org.apache.xerces.xni.parser.XMLErrorHandler. This method
|
91
|
+
* is invoked during parsing fired by HtmlDomParserContext and is a NekoHtml requirement.
|
92
|
+
*
|
93
|
+
* @param domain The domain of the fatal error. The domain can be any string but is
|
94
|
+
* suggested to be a valid URI. The domain can be used to conveniently
|
95
|
+
* specify a web site location of the relevant specification or
|
96
|
+
* document pertaining to this warning.
|
97
|
+
* @param key The fatal error key. This key can be any string and is implementation
|
98
|
+
* dependent.
|
99
|
+
* @param e Exception.
|
100
|
+
*/
|
101
|
+
public void fatalError(String domain, String key, XMLParseException e) {
|
102
|
+
errors.add(e);
|
103
|
+
}
|
104
|
+
|
105
|
+
/**
|
106
|
+
* Implementation of org.apache.xerces.xni.parser.XMLErrorHandler. This method
|
107
|
+
* is invoked during parsing fired by HtmlDomParserContext and is a NekoHtml requirement.
|
108
|
+
*
|
109
|
+
* @param domain The domain of the warning. The domain can be any string but is
|
110
|
+
* suggested to be a valid URI. The domain can be used to conveniently
|
111
|
+
* specify a web site location of the relevant specification or
|
112
|
+
* document pertaining to this warning.
|
113
|
+
* @param key The warning key. This key can be any string and is implementation
|
114
|
+
* dependent.
|
115
|
+
* @param e Exception.
|
116
|
+
*/
|
117
|
+
public void warning(String domain, String key, XMLParseException e) {
|
118
|
+
//noop. NekoHtml adds too many warnings.
|
119
|
+
}
|
120
|
+
|
121
|
+
}
|