nokogiri-fitzsimmons 1.5.5.3-java
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +26 -0
- data/.gemtest +0 -0
- data/CHANGELOG.ja.rdoc +666 -0
- data/CHANGELOG.rdoc +659 -0
- data/C_CODING_STYLE.rdoc +33 -0
- data/Manifest.txt +295 -0
- data/README.ja.rdoc +106 -0
- data/README.rdoc +178 -0
- data/ROADMAP.md +86 -0
- data/Rakefile +194 -0
- data/STANDARD_RESPONSES.md +47 -0
- data/Y_U_NO_GEMSPEC.md +155 -0
- data/bin/nokogiri +63 -0
- data/build_all +58 -0
- data/ext/java/nokogiri/EncodingHandler.java +124 -0
- data/ext/java/nokogiri/HtmlDocument.java +163 -0
- data/ext/java/nokogiri/HtmlElementDescription.java +145 -0
- data/ext/java/nokogiri/HtmlEntityLookup.java +79 -0
- data/ext/java/nokogiri/HtmlSaxParserContext.java +259 -0
- data/ext/java/nokogiri/NokogiriService.java +598 -0
- data/ext/java/nokogiri/XmlAttr.java +190 -0
- data/ext/java/nokogiri/XmlAttributeDecl.java +130 -0
- data/ext/java/nokogiri/XmlCdata.java +84 -0
- data/ext/java/nokogiri/XmlComment.java +95 -0
- data/ext/java/nokogiri/XmlDocument.java +580 -0
- data/ext/java/nokogiri/XmlDocumentFragment.java +234 -0
- data/ext/java/nokogiri/XmlDtd.java +469 -0
- data/ext/java/nokogiri/XmlElement.java +97 -0
- data/ext/java/nokogiri/XmlElementContent.java +382 -0
- data/ext/java/nokogiri/XmlElementDecl.java +152 -0
- data/ext/java/nokogiri/XmlEntityDecl.java +162 -0
- data/ext/java/nokogiri/XmlEntityReference.java +97 -0
- data/ext/java/nokogiri/XmlNamespace.java +215 -0
- data/ext/java/nokogiri/XmlNode.java +1534 -0
- data/ext/java/nokogiri/XmlNodeSet.java +270 -0
- data/ext/java/nokogiri/XmlProcessingInstruction.java +99 -0
- data/ext/java/nokogiri/XmlReader.java +456 -0
- data/ext/java/nokogiri/XmlRelaxng.java +144 -0
- data/ext/java/nokogiri/XmlSaxParserContext.java +356 -0
- data/ext/java/nokogiri/XmlSaxPushParser.java +215 -0
- data/ext/java/nokogiri/XmlSchema.java +324 -0
- data/ext/java/nokogiri/XmlSyntaxError.java +136 -0
- data/ext/java/nokogiri/XmlText.java +119 -0
- data/ext/java/nokogiri/XmlXpathContext.java +203 -0
- data/ext/java/nokogiri/XsltStylesheet.java +360 -0
- data/ext/java/nokogiri/internals/HtmlDomParserContext.java +243 -0
- data/ext/java/nokogiri/internals/NokogiriDocumentCache.java +73 -0
- data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +86 -0
- data/ext/java/nokogiri/internals/NokogiriHandler.java +333 -0
- data/ext/java/nokogiri/internals/NokogiriHelpers.java +800 -0
- data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +163 -0
- data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +130 -0
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +74 -0
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +121 -0
- data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +79 -0
- data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +141 -0
- data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +73 -0
- data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +67 -0
- data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +87 -0
- data/ext/java/nokogiri/internals/ParserContext.java +288 -0
- data/ext/java/nokogiri/internals/ReaderNode.java +531 -0
- data/ext/java/nokogiri/internals/SaveContextVisitor.java +775 -0
- data/ext/java/nokogiri/internals/SchemaErrorHandler.java +76 -0
- data/ext/java/nokogiri/internals/XmlDeclHandler.java +42 -0
- data/ext/java/nokogiri/internals/XmlDomParser.java +105 -0
- data/ext/java/nokogiri/internals/XmlDomParserContext.java +266 -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 +142 -0
- data/ext/nokogiri/html_document.c +170 -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 +116 -0
- data/ext/nokogiri/html_sax_parser_context.h +11 -0
- data/ext/nokogiri/html_sax_push_parser.c +87 -0
- data/ext/nokogiri/html_sax_push_parser.h +9 -0
- data/ext/nokogiri/nokogiri.c +133 -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 +576 -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 +56 -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 +78 -0
- data/ext/nokogiri/xml_namespace.h +13 -0
- data/ext/nokogiri/xml_node.c +1480 -0
- data/ext/nokogiri/xml_node.h +13 -0
- data/ext/nokogiri/xml_node_set.c +467 -0
- data/ext/nokogiri/xml_node_set.h +14 -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 +293 -0
- data/ext/nokogiri/xml_sax_parser.h +39 -0
- data/ext/nokogiri/xml_sax_parser_context.c +222 -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 +52 -0
- data/ext/nokogiri/xml_text.h +9 -0
- data/ext/nokogiri/xml_xpath_context.c +319 -0
- data/ext/nokogiri/xml_xpath_context.h +10 -0
- data/ext/nokogiri/xslt_stylesheet.c +270 -0
- data/ext/nokogiri/xslt_stylesheet.h +14 -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 +127 -0
- data/lib/nokogiri/css.rb +27 -0
- data/lib/nokogiri/css/node.rb +102 -0
- data/lib/nokogiri/css/parser.rb +720 -0
- data/lib/nokogiri/css/parser.y +258 -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 +37 -0
- data/lib/nokogiri/html/builder.rb +35 -0
- data/lib/nokogiri/html/document.rb +254 -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/html/sax/push_parser.rb +16 -0
- data/lib/nokogiri/nokogiri.jar +0 -0
- data/lib/nokogiri/syntax_error.rb +4 -0
- data/lib/nokogiri/version.rb +88 -0
- data/lib/nokogiri/xml.rb +73 -0
- data/lib/nokogiri/xml/attr.rb +14 -0
- data/lib/nokogiri/xml/attribute_decl.rb +18 -0
- data/lib/nokogiri/xml/builder.rb +431 -0
- data/lib/nokogiri/xml/cdata.rb +11 -0
- data/lib/nokogiri/xml/character_data.rb +7 -0
- data/lib/nokogiri/xml/document.rb +267 -0
- data/lib/nokogiri/xml/document_fragment.rb +103 -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 +946 -0
- data/lib/nokogiri/xml/node/save_options.rb +61 -0
- data/lib/nokogiri/xml/node_set.rb +357 -0
- data/lib/nokogiri/xml/notation.rb +6 -0
- data/lib/nokogiri/xml/parse_options.rb +98 -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 +63 -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 +56 -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 +153 -0
- data/tasks/nokogiri.org.rb +24 -0
- data/tasks/test.rb +95 -0
- data/test/css/test_nthiness.rb +159 -0
- data/test/css/test_parser.rb +341 -0
- data/test/css/test_tokenizer.rb +198 -0
- data/test/css/test_xpath_visitor.rb +91 -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/encoding.html +82 -0
- data/test/files/encoding.xhtml +84 -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/metacharset.html +10 -0
- data/test/files/noencoding.html +47 -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/to_be_xincluded.xml +2 -0
- data/test/files/valid_bar.xml +2 -0
- data/test/files/xinclude.xml +4 -0
- data/test/helper.rb +147 -0
- data/test/html/sax/test_parser.rb +138 -0
- data/test/html/sax/test_parser_context.rb +46 -0
- data/test/html/test_builder.rb +164 -0
- data/test/html/test_document.rb +529 -0
- data/test/html/test_document_encoding.rb +138 -0
- data/test/html/test_document_fragment.rb +254 -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 +188 -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 +152 -0
- data/test/test_nokogiri.rb +132 -0
- data/test/test_reader.rb +488 -0
- data/test/test_soap4r_sax.rb +52 -0
- data/test/test_xslt_transforms.rb +254 -0
- data/test/xml/node/test_save_options.rb +28 -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 +106 -0
- data/test/xml/sax/test_push_parser.rb +157 -0
- data/test/xml/test_attr.rb +64 -0
- data/test/xml/test_attribute_decl.rb +86 -0
- data/test/xml/test_builder.rb +248 -0
- data/test/xml/test_c14n.rb +151 -0
- data/test/xml/test_cdata.rb +48 -0
- data/test/xml/test_comment.rb +29 -0
- data/test/xml/test_document.rb +742 -0
- data/test/xml/test_document_encoding.rb +28 -0
- data/test/xml/test_document_fragment.rb +216 -0
- data/test/xml/test_dtd.rb +103 -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 +235 -0
- data/test/xml/test_namespace.rb +75 -0
- data/test/xml/test_node.rb +1029 -0
- data/test/xml/test_node_attributes.rb +53 -0
- data/test/xml/test_node_encoding.rb +107 -0
- data/test/xml/test_node_inheritance.rb +32 -0
- data/test/xml/test_node_reparenting.rb +374 -0
- data/test/xml/test_node_set.rb +755 -0
- data/test/xml/test_parse_options.rb +64 -0
- data/test/xml/test_processing_instruction.rb +30 -0
- data/test/xml/test_reader_encoding.rb +142 -0
- data/test/xml/test_relax_ng.rb +60 -0
- data/test/xml/test_schema.rb +94 -0
- data/test/xml/test_syntax_error.rb +12 -0
- data/test/xml/test_text.rb +45 -0
- data/test/xml/test_unparented_node.rb +413 -0
- data/test/xml/test_xinclude.rb +83 -0
- data/test/xml/test_xpath.rb +295 -0
- data/test/xslt/test_custom_functions.rb +129 -0
- data/test/xslt/test_exception_handling.rb +37 -0
- data/test_all +84 -0
- metadata +571 -0
@@ -0,0 +1,360 @@
|
|
1
|
+
/**
|
2
|
+
* (The MIT License)
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008 - 2011:
|
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;
|
34
|
+
|
35
|
+
import static nokogiri.internals.NokogiriHelpers.getNokogiriClass;
|
36
|
+
import static nokogiri.internals.NokogiriHelpers.stringOrBlank;
|
37
|
+
|
38
|
+
import java.io.IOException;
|
39
|
+
import java.io.PipedReader;
|
40
|
+
import java.io.PipedWriter;
|
41
|
+
import java.io.StringReader;
|
42
|
+
import java.nio.CharBuffer;
|
43
|
+
import java.util.HashMap;
|
44
|
+
import java.util.Map;
|
45
|
+
import java.util.Set;
|
46
|
+
import java.util.regex.Matcher;
|
47
|
+
import java.util.regex.Pattern;
|
48
|
+
|
49
|
+
import javax.xml.transform.Templates;
|
50
|
+
import javax.xml.transform.Transformer;
|
51
|
+
import javax.xml.transform.TransformerConfigurationException;
|
52
|
+
import javax.xml.transform.TransformerException;
|
53
|
+
import javax.xml.transform.TransformerFactory;
|
54
|
+
import javax.xml.transform.dom.DOMResult;
|
55
|
+
import javax.xml.transform.dom.DOMSource;
|
56
|
+
import javax.xml.transform.stream.StreamResult;
|
57
|
+
import javax.xml.transform.stream.StreamSource;
|
58
|
+
|
59
|
+
import nokogiri.internals.NokogiriXsltErrorListener;
|
60
|
+
|
61
|
+
import org.jruby.Ruby;
|
62
|
+
import org.jruby.RubyArray;
|
63
|
+
import org.jruby.RubyClass;
|
64
|
+
import org.jruby.RubyHash;
|
65
|
+
import org.jruby.RubyObject;
|
66
|
+
import org.jruby.RubyString;
|
67
|
+
import org.jruby.anno.JRubyClass;
|
68
|
+
import org.jruby.anno.JRubyMethod;
|
69
|
+
import org.jruby.javasupport.util.RuntimeHelpers;
|
70
|
+
import org.jruby.runtime.ThreadContext;
|
71
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
72
|
+
import org.w3c.dom.Document;
|
73
|
+
|
74
|
+
/**
|
75
|
+
* Class for Nokogiri::XSLT::Stylesheet
|
76
|
+
*
|
77
|
+
* @author sergio
|
78
|
+
* @author Yoko Harada <yokolet@gmail.com>
|
79
|
+
*/
|
80
|
+
@JRubyClass(name="Nokogiri::XSLT::Stylesheet")
|
81
|
+
public class XsltStylesheet extends RubyObject {
|
82
|
+
private static Map<String, Object> registry = new HashMap<String, Object>();
|
83
|
+
private TransformerFactory factory = null;
|
84
|
+
private Templates sheet = null;
|
85
|
+
private IRubyObject stylesheet = null;
|
86
|
+
private boolean htmlish = false;
|
87
|
+
|
88
|
+
public static Map<String, Object> getRegistry() {
|
89
|
+
return registry;
|
90
|
+
}
|
91
|
+
|
92
|
+
public XsltStylesheet(Ruby ruby, RubyClass rubyClass) {
|
93
|
+
super(ruby, rubyClass);
|
94
|
+
}
|
95
|
+
|
96
|
+
/**
|
97
|
+
* Create and return a copy of this object.
|
98
|
+
*
|
99
|
+
* @return a clone of this object
|
100
|
+
*/
|
101
|
+
@Override
|
102
|
+
public Object clone() throws CloneNotSupportedException {
|
103
|
+
return super.clone();
|
104
|
+
}
|
105
|
+
|
106
|
+
private void addParametersToTransformer(ThreadContext context, Transformer transf, IRubyObject parameters) {
|
107
|
+
Ruby runtime = context.getRuntime();
|
108
|
+
|
109
|
+
if (parameters instanceof RubyHash) {
|
110
|
+
setHashParameters(transf, (RubyHash)parameters);
|
111
|
+
} else if (parameters instanceof RubyArray) {
|
112
|
+
setArrayParameters(transf, runtime, (RubyArray)parameters);
|
113
|
+
} else {
|
114
|
+
throw runtime.newTypeError("parameters should be given either Array or Hash");
|
115
|
+
}
|
116
|
+
}
|
117
|
+
|
118
|
+
private void setHashParameters(Transformer transformer, RubyHash hash) {
|
119
|
+
Set<String> keys = hash.keySet();
|
120
|
+
for (String key : keys) {
|
121
|
+
String value = (String)hash.get(key);
|
122
|
+
transformer.setParameter(key, unparseValue(value));
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
private void setArrayParameters(Transformer transformer, Ruby runtime, RubyArray params) {
|
127
|
+
int limit = params.getLength();
|
128
|
+
if(limit % 2 == 1) limit--;
|
129
|
+
|
130
|
+
for(int i = 0; i < limit; i+=2) {
|
131
|
+
String name = params.aref(runtime.newFixnum(i)).asJavaString();
|
132
|
+
String value = params.aref(runtime.newFixnum(i+1)).asJavaString();
|
133
|
+
transformer.setParameter(name, unparseValue(value));
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
private Pattern p = Pattern.compile("'.{1,}'");
|
138
|
+
|
139
|
+
private String unparseValue(String orig) {
|
140
|
+
Matcher m = p.matcher(orig);
|
141
|
+
if ((orig.startsWith("\"") && orig.endsWith("\"")) || m.matches()) {
|
142
|
+
orig = orig.substring(1, orig.length()-1);
|
143
|
+
}
|
144
|
+
|
145
|
+
return orig;
|
146
|
+
}
|
147
|
+
|
148
|
+
@JRubyMethod(meta = true, rest = true)
|
149
|
+
public static IRubyObject parse_stylesheet_doc(ThreadContext context, IRubyObject klazz, IRubyObject[] args) {
|
150
|
+
|
151
|
+
Ruby runtime = context.getRuntime();
|
152
|
+
|
153
|
+
ensureFirstArgIsDocument(runtime, args[0]);
|
154
|
+
|
155
|
+
XmlDocument xmlDoc = (XmlDocument) args[0];
|
156
|
+
ensureDocumentHasNoError(context, xmlDoc);
|
157
|
+
|
158
|
+
Document doc = ((XmlDocument) xmlDoc.dup_implementation(context, true)).getDocument();
|
159
|
+
|
160
|
+
XsltStylesheet xslt =
|
161
|
+
(XsltStylesheet) NokogiriService.XSLT_STYLESHEET_ALLOCATOR.allocate(runtime, (RubyClass)klazz);
|
162
|
+
|
163
|
+
try {
|
164
|
+
xslt.init(args[1], doc);
|
165
|
+
} catch (TransformerConfigurationException ex) {
|
166
|
+
throw runtime.newRuntimeError("could not parse xslt stylesheet");
|
167
|
+
}
|
168
|
+
|
169
|
+
return xslt;
|
170
|
+
}
|
171
|
+
|
172
|
+
private void init(IRubyObject stylesheet, Document document) throws TransformerConfigurationException {
|
173
|
+
this.stylesheet = stylesheet; // either RubyString or RubyFile
|
174
|
+
if (factory == null) factory = TransformerFactory.newInstance();
|
175
|
+
NokogiriXsltErrorListener elistener = new NokogiriXsltErrorListener();
|
176
|
+
factory.setErrorListener(elistener);
|
177
|
+
sheet = factory.newTemplates(new DOMSource(document));
|
178
|
+
}
|
179
|
+
|
180
|
+
private static void ensureFirstArgIsDocument(Ruby runtime, IRubyObject arg) {
|
181
|
+
if (arg instanceof XmlDocument) {
|
182
|
+
return;
|
183
|
+
} else {
|
184
|
+
throw runtime.newArgumentError("doc must be a Nokogiri::XML::Document instance");
|
185
|
+
}
|
186
|
+
}
|
187
|
+
|
188
|
+
private static void ensureDocumentHasNoError(ThreadContext context, XmlDocument xmlDoc) {
|
189
|
+
Ruby runtime = context.getRuntime();
|
190
|
+
RubyArray errors_of_xmlDoc = (RubyArray) xmlDoc.getInstanceVariable("@errors");
|
191
|
+
if (!errors_of_xmlDoc.isEmpty()) {
|
192
|
+
throw runtime.newRuntimeError(errors_of_xmlDoc.first().asJavaString());
|
193
|
+
}
|
194
|
+
}
|
195
|
+
|
196
|
+
@JRubyMethod
|
197
|
+
public IRubyObject serialize(ThreadContext context, IRubyObject doc) {
|
198
|
+
return RuntimeHelpers.invoke(context,
|
199
|
+
RuntimeHelpers.invoke(context, doc, "root"),
|
200
|
+
"to_s");
|
201
|
+
}
|
202
|
+
|
203
|
+
@JRubyMethod(rest = true, required=1, optional=2)
|
204
|
+
public IRubyObject transform(ThreadContext context, IRubyObject[] args) {
|
205
|
+
Ruby runtime = context.getRuntime();
|
206
|
+
|
207
|
+
argumentTypeCheck(runtime, args[0]);
|
208
|
+
|
209
|
+
NokogiriXsltErrorListener elistener = new NokogiriXsltErrorListener();
|
210
|
+
DOMSource domSource = new DOMSource(((XmlDocument) args[0]).getDocument());
|
211
|
+
DOMResult result = null;
|
212
|
+
String stringResult = null;
|
213
|
+
try{
|
214
|
+
result = tryXsltTransformation(context, args, domSource, elistener); // DOMResult
|
215
|
+
if (result.getNode().getFirstChild() == null) {
|
216
|
+
stringResult = retryXsltTransformation(context, args, domSource, elistener); // StreamResult
|
217
|
+
}
|
218
|
+
} catch(TransformerConfigurationException ex) {
|
219
|
+
throw runtime.newRuntimeError(ex.getMessage());
|
220
|
+
} catch(TransformerException ex) {
|
221
|
+
throw runtime.newRuntimeError(ex.getMessage());
|
222
|
+
} catch (IOException ex) {
|
223
|
+
throw runtime.newRuntimeError(ex.getMessage());
|
224
|
+
}
|
225
|
+
|
226
|
+
switch (elistener.getErrorType()) {
|
227
|
+
case ERROR:
|
228
|
+
case FATAL:
|
229
|
+
throw runtime.newRuntimeError(elistener.getErrorMessage());
|
230
|
+
case WARNING:
|
231
|
+
default:
|
232
|
+
// no-op
|
233
|
+
}
|
234
|
+
|
235
|
+
if (stringResult == null) {
|
236
|
+
return createDocumentFromDomResult(context, runtime, result);
|
237
|
+
} else {
|
238
|
+
return createDocumentFromString(context, runtime, stringResult);
|
239
|
+
}
|
240
|
+
}
|
241
|
+
|
242
|
+
private DOMResult tryXsltTransformation(ThreadContext context, IRubyObject[] args, DOMSource domSource, NokogiriXsltErrorListener elistener) throws TransformerException {
|
243
|
+
Transformer transf = sheet.newTransformer();
|
244
|
+
transf.reset();
|
245
|
+
transf.setErrorListener(elistener);
|
246
|
+
if (args.length > 1) {
|
247
|
+
addParametersToTransformer(context, transf, args[1]);
|
248
|
+
}
|
249
|
+
|
250
|
+
DOMResult result = new DOMResult();
|
251
|
+
transf.transform(domSource, result);
|
252
|
+
return result;
|
253
|
+
}
|
254
|
+
|
255
|
+
private String retryXsltTransformation(ThreadContext context,
|
256
|
+
IRubyObject[] args,
|
257
|
+
DOMSource domSource,
|
258
|
+
NokogiriXsltErrorListener elistener)
|
259
|
+
throws TransformerException, IOException {
|
260
|
+
Templates templates = getTemplatesFromStreamSource();
|
261
|
+
Transformer transf = templates.newTransformer();
|
262
|
+
transf.setErrorListener(elistener);
|
263
|
+
if (args.length > 1) {
|
264
|
+
addParametersToTransformer(context, transf, args[1]);
|
265
|
+
}
|
266
|
+
PipedWriter pwriter = new PipedWriter();
|
267
|
+
PipedReader preader = new PipedReader();
|
268
|
+
pwriter.connect(preader);
|
269
|
+
StreamResult result = new StreamResult(pwriter);
|
270
|
+
transf.transform(domSource, result);
|
271
|
+
char[] cbuf = new char[1024];
|
272
|
+
int len = preader.read(cbuf, 0, 1024);
|
273
|
+
StringBuilder builder = new StringBuilder();
|
274
|
+
builder.append(CharBuffer.wrap(cbuf, 0, len));
|
275
|
+
htmlish = isHtml(builder.toString()); // judge from the first chunk
|
276
|
+
|
277
|
+
while (len == 1024) {
|
278
|
+
len = preader.read(cbuf, 0, 1024);
|
279
|
+
if (len > 0) {
|
280
|
+
builder.append(CharBuffer.wrap(cbuf, 0, len));
|
281
|
+
}
|
282
|
+
}
|
283
|
+
|
284
|
+
preader.close();
|
285
|
+
pwriter.close();
|
286
|
+
|
287
|
+
return builder.toString();
|
288
|
+
}
|
289
|
+
|
290
|
+
private IRubyObject createDocumentFromDomResult(ThreadContext context, Ruby runtime, DOMResult domResult) {
|
291
|
+
if ("html".equals(domResult.getNode().getFirstChild().getNodeName())) {
|
292
|
+
HtmlDocument htmlDocument = (HtmlDocument) getNokogiriClass(runtime, "Nokogiri::HTML::Document").allocate();
|
293
|
+
htmlDocument.setDocumentNode(context, (Document) domResult.getNode());
|
294
|
+
return htmlDocument;
|
295
|
+
} else {
|
296
|
+
XmlDocument xmlDocument = (XmlDocument) NokogiriService.XML_DOCUMENT_ALLOCATOR.allocate(runtime, getNokogiriClass(runtime, "Nokogiri::XML::Document"));
|
297
|
+
xmlDocument.setDocumentNode(context, (Document) domResult.getNode());
|
298
|
+
return xmlDocument;
|
299
|
+
}
|
300
|
+
}
|
301
|
+
|
302
|
+
private Templates getTemplatesFromStreamSource() throws TransformerConfigurationException {
|
303
|
+
if (stylesheet instanceof RubyString) {
|
304
|
+
StringReader reader = new StringReader((String)stylesheet.toJava(String.class));
|
305
|
+
StreamSource xsltStreamSource = new StreamSource(reader);
|
306
|
+
return factory.newTemplates(xsltStreamSource);
|
307
|
+
}
|
308
|
+
return null;
|
309
|
+
}
|
310
|
+
|
311
|
+
private static Pattern html_tag =
|
312
|
+
Pattern.compile("<(%s)*html", Pattern.CASE_INSENSITIVE);
|
313
|
+
|
314
|
+
private boolean isHtml(String chunk) {
|
315
|
+
Matcher m = XsltStylesheet.html_tag.matcher(chunk);
|
316
|
+
if (m.find()) return true;
|
317
|
+
else return false;
|
318
|
+
}
|
319
|
+
|
320
|
+
private IRubyObject createDocumentFromString(ThreadContext context, Ruby runtime, String stringResult) {
|
321
|
+
IRubyObject[] args = new IRubyObject[4];
|
322
|
+
args[0] = stringOrBlank(runtime, stringResult);
|
323
|
+
args[1] = runtime.getNil(); // url
|
324
|
+
args[2] = runtime.getNil(); // encoding
|
325
|
+
RubyClass parse_options = (RubyClass)runtime.getClassFromPath("Nokogiri::XML::ParseOptions");
|
326
|
+
if (htmlish) {
|
327
|
+
args[3] = parse_options.getConstant("DEFAULT_HTML");
|
328
|
+
RubyClass htmlDocumentClass = getNokogiriClass(runtime, "Nokogiri::HTML::Document");
|
329
|
+
return RuntimeHelpers.invoke(context, htmlDocumentClass, "parse", args);
|
330
|
+
} else {
|
331
|
+
args[3] = parse_options.getConstant("DEFAULT_XML");
|
332
|
+
RubyClass xmlDocumentClass = getNokogiriClass(runtime, "Nokogiri::XML::Document");
|
333
|
+
XmlDocument xmlDocument = (XmlDocument) RuntimeHelpers.invoke(context, xmlDocumentClass, "parse", args);
|
334
|
+
if (((Document)xmlDocument.getNode()).getDocumentElement() == null) {
|
335
|
+
RubyArray errors = (RubyArray) xmlDocument.getInstanceVariable("@errors");
|
336
|
+
RuntimeHelpers.invoke(context, errors, "<<", args[0]);
|
337
|
+
}
|
338
|
+
return xmlDocument;
|
339
|
+
}
|
340
|
+
}
|
341
|
+
|
342
|
+
private void argumentTypeCheck(Ruby runtime, IRubyObject arg) {
|
343
|
+
if (arg instanceof XmlDocument) {
|
344
|
+
return;
|
345
|
+
} else {
|
346
|
+
throw runtime.newArgumentError("argument must be a Nokogiri::XML::Document");
|
347
|
+
}
|
348
|
+
}
|
349
|
+
|
350
|
+
@JRubyMethod(name = {"registr", "register"}, meta = true)
|
351
|
+
public static IRubyObject register(ThreadContext context, IRubyObject cls, IRubyObject uri, IRubyObject receiver) {
|
352
|
+
throw context.getRuntime().newNotImplementedError("Nokogiri::XSLT.register method is not implemented");
|
353
|
+
/* When API conflict is solved, this method should be below:
|
354
|
+
// ThreadContext is used while executing xslt extension function
|
355
|
+
registry.put("context", context);
|
356
|
+
registry.put("receiver", receiver);
|
357
|
+
return context.getRuntime().getNil();
|
358
|
+
*/
|
359
|
+
}
|
360
|
+
}
|
@@ -0,0 +1,243 @@
|
|
1
|
+
/**
|
2
|
+
* (The MIT License)
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008 - 2012:
|
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
|
+
import static nokogiri.internals.NokogiriHelpers.stringOrNil;
|
38
|
+
import nokogiri.HtmlDocument;
|
39
|
+
import nokogiri.NokogiriService;
|
40
|
+
import nokogiri.XmlDocument;
|
41
|
+
|
42
|
+
import org.apache.xerces.parsers.DOMParser;
|
43
|
+
import org.apache.xerces.xni.Augmentations;
|
44
|
+
import org.apache.xerces.xni.QName;
|
45
|
+
import org.apache.xerces.xni.XMLAttributes;
|
46
|
+
import org.apache.xerces.xni.XNIException;
|
47
|
+
import org.apache.xerces.xni.parser.XMLDocumentFilter;
|
48
|
+
import org.apache.xerces.xni.parser.XMLParserConfiguration;
|
49
|
+
import org.cyberneko.html.HTMLConfiguration;
|
50
|
+
import org.cyberneko.html.filters.DefaultFilter;
|
51
|
+
import org.jruby.Ruby;
|
52
|
+
import org.jruby.RubyClass;
|
53
|
+
import org.jruby.runtime.ThreadContext;
|
54
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
55
|
+
import org.w3c.dom.Document;
|
56
|
+
import org.w3c.dom.NamedNodeMap;
|
57
|
+
import org.w3c.dom.NodeList;
|
58
|
+
|
59
|
+
/**
|
60
|
+
* Parser for HtmlDocument. This class actually parses HtmlDocument using NekoHtml.
|
61
|
+
*
|
62
|
+
* @author sergio
|
63
|
+
* @author Patrick Mahoney <pat@polycrystal.org>
|
64
|
+
* @author Yoko Harada <yokolet@gmail.com>
|
65
|
+
*/
|
66
|
+
public class HtmlDomParserContext extends XmlDomParserContext {
|
67
|
+
|
68
|
+
public HtmlDomParserContext(Ruby runtime, IRubyObject options) {
|
69
|
+
super(runtime, options);
|
70
|
+
}
|
71
|
+
|
72
|
+
public HtmlDomParserContext(Ruby runtime, IRubyObject encoding, IRubyObject options) {
|
73
|
+
super(runtime, encoding, options);
|
74
|
+
}
|
75
|
+
|
76
|
+
@Override
|
77
|
+
protected void initErrorHandler() {
|
78
|
+
if (options.strict) {
|
79
|
+
errorHandler = new NokogiriStrictErrorHandler(options.noError, options.noWarning);
|
80
|
+
} else {
|
81
|
+
errorHandler = new NokogiriNonStrictErrorHandler4NekoHtml(options.noError, options.noWarning);
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
@Override
|
86
|
+
protected void initParser(Ruby runtime) {
|
87
|
+
XMLParserConfiguration config = new HTMLConfiguration();
|
88
|
+
XMLDocumentFilter removeNSAttrsFilter = new RemoveNSAttrsFilter();
|
89
|
+
XMLDocumentFilter elementValidityCheckFilter = new ElementValidityCheckFilter(errorHandler);
|
90
|
+
//XMLDocumentFilter[] filters = { removeNSAttrsFilter, elementValidityCheckFilter};
|
91
|
+
XMLDocumentFilter[] filters = { elementValidityCheckFilter};
|
92
|
+
|
93
|
+
config.setErrorHandler(this.errorHandler);
|
94
|
+
parser = new DOMParser(config);
|
95
|
+
|
96
|
+
// see http://nekohtml.sourceforge.net/settings.html for details
|
97
|
+
setProperty("http://cyberneko.org/html/properties/default-encoding", java_encoding);
|
98
|
+
setProperty("http://cyberneko.org/html/properties/names/elems", "lower");
|
99
|
+
setProperty("http://cyberneko.org/html/properties/names/attrs", "lower");
|
100
|
+
setProperty("http://cyberneko.org/html/properties/filters", filters);
|
101
|
+
setFeature("http://cyberneko.org/html/features/report-errors", true);
|
102
|
+
setFeature("http://xml.org/sax/features/namespaces", false);
|
103
|
+
setFeature("http://cyberneko.org/html/features/insert-doctype", true);
|
104
|
+
}
|
105
|
+
|
106
|
+
/**
|
107
|
+
* Enable NekoHTML feature for balancing tags in a document fragment.
|
108
|
+
*
|
109
|
+
* This method is used in XmlNode#in_context method.
|
110
|
+
*/
|
111
|
+
public void enableDocumentFragment() {
|
112
|
+
setFeature("http://cyberneko.org/html/features/balance-tags/document-fragment", true);
|
113
|
+
}
|
114
|
+
|
115
|
+
@Override
|
116
|
+
protected XmlDocument getNewEmptyDocument(ThreadContext context) {
|
117
|
+
IRubyObject[] args = new IRubyObject[0];
|
118
|
+
return (XmlDocument) XmlDocument.rbNew(context, getNokogiriClass(context.getRuntime(), "Nokogiri::HTML::Document"), args);
|
119
|
+
}
|
120
|
+
|
121
|
+
@Override
|
122
|
+
protected XmlDocument wrapDocument(ThreadContext context,
|
123
|
+
RubyClass klazz,
|
124
|
+
Document document) {
|
125
|
+
HtmlDocument htmlDocument = (HtmlDocument) NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate(context.getRuntime(), klazz);
|
126
|
+
htmlDocument.setDocumentNode(context, document);
|
127
|
+
if (ruby_encoding.isNil()) {
|
128
|
+
// ruby_encoding might have detected by HtmlDocument::EncodingReader
|
129
|
+
if (detected_encoding != null && !detected_encoding.isNil()) {
|
130
|
+
ruby_encoding = detected_encoding;
|
131
|
+
} else {
|
132
|
+
// no encoding given & no encoding detected, then try to get it
|
133
|
+
String charset = tryGetCharsetFromHtml5MetaTag(document);
|
134
|
+
ruby_encoding = stringOrNil(context.getRuntime(), charset);
|
135
|
+
}
|
136
|
+
}
|
137
|
+
htmlDocument.setEncoding(ruby_encoding);
|
138
|
+
htmlDocument.setParsedEncoding(java_encoding);
|
139
|
+
return htmlDocument;
|
140
|
+
}
|
141
|
+
|
142
|
+
// NekoHtml doesn't understand HTML5 meta tag format. This fails to detect charset
|
143
|
+
// from an HTML5 style meta tag. Luckily, the meta tag and charset exists in DOM tree
|
144
|
+
// so, this method attempts to find the charset.
|
145
|
+
private String tryGetCharsetFromHtml5MetaTag(Document document) {
|
146
|
+
if (!"html".equalsIgnoreCase(document.getDocumentElement().getNodeName())) return null;
|
147
|
+
NodeList list = document.getDocumentElement().getChildNodes();
|
148
|
+
for (int i = 0; i < list.getLength(); i++) {
|
149
|
+
if ("head".equalsIgnoreCase(list.item(i).getNodeName())) {
|
150
|
+
NodeList headers = list.item(i).getChildNodes();
|
151
|
+
for (int j = 0; j < headers.getLength(); j++) {
|
152
|
+
if ("meta".equalsIgnoreCase(headers.item(j).getNodeName())) {
|
153
|
+
NamedNodeMap nodeMap = headers.item(j).getAttributes();
|
154
|
+
for (int k = 0; k < nodeMap.getLength(); k++) {
|
155
|
+
if ("charset".equalsIgnoreCase(nodeMap.item(k).getNodeName())) {
|
156
|
+
return nodeMap.item(k).getNodeValue();
|
157
|
+
}
|
158
|
+
}
|
159
|
+
}
|
160
|
+
}
|
161
|
+
}
|
162
|
+
}
|
163
|
+
return null;
|
164
|
+
}
|
165
|
+
|
166
|
+
/**
|
167
|
+
* Filter to strip out attributes that pertain to XML namespaces.
|
168
|
+
*/
|
169
|
+
public static class RemoveNSAttrsFilter extends DefaultFilter {
|
170
|
+
@Override
|
171
|
+
public void startElement(QName element, XMLAttributes attrs,
|
172
|
+
Augmentations augs) throws XNIException {
|
173
|
+
int i;
|
174
|
+
for (i = 0; i < attrs.getLength(); ++i) {
|
175
|
+
if (isNamespace(attrs.getQName(i))) {
|
176
|
+
attrs.removeAttributeAt(i);
|
177
|
+
--i;
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
element.uri = null;
|
182
|
+
super.startElement(element, attrs, augs);
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
public static class ElementValidityCheckFilter extends DefaultFilter {
|
187
|
+
private NokogiriErrorHandler errorHandler;
|
188
|
+
|
189
|
+
private ElementValidityCheckFilter(NokogiriErrorHandler errorHandler) {
|
190
|
+
this.errorHandler = errorHandler;
|
191
|
+
}
|
192
|
+
|
193
|
+
// element names from xhtml1-strict.dtd
|
194
|
+
private static String[][] element_names = {
|
195
|
+
{"a", "abbr", "acronym", "address", "area"},
|
196
|
+
{"b", "base", "basefont", "bdo", "big", "blockquote", "body", "br", "button"},
|
197
|
+
{"caption", "cite", "code", "col", "colgroup"},
|
198
|
+
{"dd", "del", "dfn", "div", "dl", "dt"},
|
199
|
+
{"em"},
|
200
|
+
{"fieldset", "font", "form", "frame", "frameset"},
|
201
|
+
{}, // g
|
202
|
+
{"h1", "h2", "h3", "h4", "h5", "h6", "head", "hr", "html"},
|
203
|
+
{"i", "iframe", "img", "input", "ins"},
|
204
|
+
{}, // j
|
205
|
+
{"kbd"},
|
206
|
+
{"label", "legend", "li", "link"},
|
207
|
+
{"map", "meta"},
|
208
|
+
{"noframes", "noscript"},
|
209
|
+
{"object", "ol", "optgroup", "option"},
|
210
|
+
{"p", "param", "pre"},
|
211
|
+
{"q"},
|
212
|
+
{}, // r
|
213
|
+
{"s", "samp", "script", "select", "small", "span", "strike", "strong", "style", "sub", "sup"},
|
214
|
+
{"table", "tbody", "td", "textarea", "tfoot", "th", "thead", "title", "tr", "tt"},
|
215
|
+
{"u", "ul"},
|
216
|
+
{"var"},
|
217
|
+
{}, // w
|
218
|
+
{}, // x
|
219
|
+
{}, // y
|
220
|
+
{} // z
|
221
|
+
};
|
222
|
+
|
223
|
+
private boolean isValid(String testee) {
|
224
|
+
char[] c = testee.toCharArray();
|
225
|
+
int index = new Integer(c[0]) - 97;
|
226
|
+
if (index > 25) return false;
|
227
|
+
for (int i=0; i<element_names[index].length; i++) {
|
228
|
+
if (testee.equals(element_names[index][i])) {
|
229
|
+
return true;
|
230
|
+
}
|
231
|
+
}
|
232
|
+
return false;
|
233
|
+
}
|
234
|
+
|
235
|
+
@Override
|
236
|
+
public void startElement(QName name, XMLAttributes attrs, Augmentations augs) throws XNIException {
|
237
|
+
if (!isValid(name.rawname)) {
|
238
|
+
errorHandler.getErrors().add(new Exception("Tag " + name.rawname + " invalid"));
|
239
|
+
}
|
240
|
+
super.startElement(name, attrs, augs);
|
241
|
+
}
|
242
|
+
}
|
243
|
+
}
|