nokogiri 1.11.0.rc3-java → 1.11.4-java

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

Files changed (187) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -0
  3. data/LICENSE-DEPENDENCIES.md +1015 -947
  4. data/LICENSE.md +1 -1
  5. data/README.md +168 -91
  6. data/dependencies.yml +12 -12
  7. data/ext/java/nokogiri/EncodingHandler.java +76 -89
  8. data/ext/java/nokogiri/HtmlDocument.java +135 -144
  9. data/ext/java/nokogiri/HtmlElementDescription.java +102 -117
  10. data/ext/java/nokogiri/HtmlEntityLookup.java +33 -60
  11. data/ext/java/nokogiri/HtmlSaxParserContext.java +218 -222
  12. data/ext/java/nokogiri/HtmlSaxPushParser.java +162 -169
  13. data/ext/java/nokogiri/NokogiriService.java +595 -556
  14. data/ext/java/nokogiri/XmlAttr.java +118 -126
  15. data/ext/java/nokogiri/XmlAttributeDecl.java +95 -106
  16. data/ext/java/nokogiri/XmlCdata.java +35 -58
  17. data/ext/java/nokogiri/XmlComment.java +46 -67
  18. data/ext/java/nokogiri/XmlDocument.java +645 -572
  19. data/ext/java/nokogiri/XmlDocumentFragment.java +125 -137
  20. data/ext/java/nokogiri/XmlDtd.java +448 -414
  21. data/ext/java/nokogiri/XmlElement.java +23 -48
  22. data/ext/java/nokogiri/XmlElementContent.java +343 -316
  23. data/ext/java/nokogiri/XmlElementDecl.java +124 -125
  24. data/ext/java/nokogiri/XmlEntityDecl.java +119 -127
  25. data/ext/java/nokogiri/XmlEntityReference.java +49 -72
  26. data/ext/java/nokogiri/XmlNamespace.java +175 -175
  27. data/ext/java/nokogiri/XmlNode.java +1843 -1622
  28. data/ext/java/nokogiri/XmlNodeSet.java +361 -331
  29. data/ext/java/nokogiri/XmlProcessingInstruction.java +47 -69
  30. data/ext/java/nokogiri/XmlReader.java +513 -450
  31. data/ext/java/nokogiri/XmlRelaxng.java +89 -101
  32. data/ext/java/nokogiri/XmlSaxParserContext.java +328 -310
  33. data/ext/java/nokogiri/XmlSaxPushParser.java +227 -220
  34. data/ext/java/nokogiri/XmlSchema.java +335 -242
  35. data/ext/java/nokogiri/XmlSyntaxError.java +113 -119
  36. data/ext/java/nokogiri/XmlText.java +55 -76
  37. data/ext/java/nokogiri/XmlXpathContext.java +242 -210
  38. data/ext/java/nokogiri/XsltStylesheet.java +280 -269
  39. data/ext/java/nokogiri/internals/ClosedStreamException.java +5 -2
  40. data/ext/java/nokogiri/internals/HtmlDomParserContext.java +201 -190
  41. data/ext/java/nokogiri/internals/IgnoreSchemaErrorsErrorHandler.java +17 -10
  42. data/ext/java/nokogiri/internals/NokogiriBlockingQueueInputStream.java +43 -16
  43. data/ext/java/nokogiri/internals/NokogiriDomParser.java +63 -80
  44. data/ext/java/nokogiri/internals/NokogiriEntityResolver.java +107 -88
  45. data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +27 -52
  46. data/ext/java/nokogiri/internals/NokogiriHandler.java +316 -286
  47. data/ext/java/nokogiri/internals/NokogiriHelpers.java +736 -652
  48. data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +184 -173
  49. data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +79 -89
  50. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +64 -79
  51. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +84 -99
  52. data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +48 -65
  53. data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +119 -78
  54. data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +34 -54
  55. data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +23 -46
  56. data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +55 -72
  57. data/ext/java/nokogiri/internals/ParserContext.java +206 -211
  58. data/ext/java/nokogiri/internals/ReaderNode.java +478 -403
  59. data/ext/java/nokogiri/internals/SaveContextVisitor.java +822 -739
  60. data/ext/java/nokogiri/internals/SchemaErrorHandler.java +31 -54
  61. data/ext/java/nokogiri/internals/XalanDTMManagerPatch.java +129 -123
  62. data/ext/java/nokogiri/internals/XmlDeclHandler.java +3 -34
  63. data/ext/java/nokogiri/internals/XmlDomParserContext.java +206 -207
  64. data/ext/java/nokogiri/internals/XmlSaxParser.java +22 -47
  65. data/ext/java/nokogiri/internals/c14n/AttrCompare.java +71 -68
  66. data/ext/java/nokogiri/internals/c14n/C14nHelper.java +137 -118
  67. data/ext/java/nokogiri/internals/c14n/CanonicalFilter.java +27 -21
  68. data/ext/java/nokogiri/internals/c14n/CanonicalizationException.java +74 -61
  69. data/ext/java/nokogiri/internals/c14n/Canonicalizer.java +230 -205
  70. data/ext/java/nokogiri/internals/c14n/Canonicalizer11.java +572 -547
  71. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_OmitComments.java +17 -10
  72. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_WithComments.java +17 -10
  73. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315.java +323 -302
  74. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315Excl.java +232 -219
  75. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclOmitComments.java +22 -15
  76. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclWithComments.java +23 -16
  77. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315OmitComments.java +23 -16
  78. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315WithComments.java +22 -15
  79. data/ext/java/nokogiri/internals/c14n/CanonicalizerBase.java +575 -545
  80. data/ext/java/nokogiri/internals/c14n/CanonicalizerPhysical.java +141 -120
  81. data/ext/java/nokogiri/internals/c14n/CanonicalizerSpi.java +39 -38
  82. data/ext/java/nokogiri/internals/c14n/Constants.java +13 -10
  83. data/ext/java/nokogiri/internals/c14n/ElementProxy.java +279 -247
  84. data/ext/java/nokogiri/internals/c14n/HelperNodeList.java +66 -53
  85. data/ext/java/nokogiri/internals/c14n/IgnoreAllErrorHandler.java +44 -37
  86. data/ext/java/nokogiri/internals/c14n/InclusiveNamespaces.java +135 -120
  87. data/ext/java/nokogiri/internals/c14n/InvalidCanonicalizerException.java +59 -48
  88. data/ext/java/nokogiri/internals/c14n/NameSpaceSymbTable.java +384 -334
  89. data/ext/java/nokogiri/internals/c14n/NodeFilter.java +25 -24
  90. data/ext/java/nokogiri/internals/c14n/UtfHelpper.java +151 -140
  91. data/ext/java/nokogiri/internals/c14n/XMLUtils.java +456 -423
  92. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTM.java +1466 -1500
  93. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java +626 -574
  94. data/ext/nokogiri/depend +37 -358
  95. data/ext/nokogiri/extconf.rb +581 -374
  96. data/ext/nokogiri/html_document.c +78 -82
  97. data/ext/nokogiri/html_element_description.c +84 -71
  98. data/ext/nokogiri/html_entity_lookup.c +21 -16
  99. data/ext/nokogiri/html_sax_parser_context.c +69 -66
  100. data/ext/nokogiri/html_sax_push_parser.c +42 -34
  101. data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
  102. data/ext/nokogiri/nokogiri.c +192 -93
  103. data/ext/nokogiri/test_global_handlers.c +40 -0
  104. data/ext/nokogiri/xml_attr.c +15 -15
  105. data/ext/nokogiri/xml_attribute_decl.c +18 -18
  106. data/ext/nokogiri/xml_cdata.c +13 -18
  107. data/ext/nokogiri/xml_comment.c +19 -26
  108. data/ext/nokogiri/xml_document.c +246 -188
  109. data/ext/nokogiri/xml_document_fragment.c +13 -15
  110. data/ext/nokogiri/xml_dtd.c +54 -48
  111. data/ext/nokogiri/xml_element_content.c +30 -27
  112. data/ext/nokogiri/xml_element_decl.c +22 -22
  113. data/ext/nokogiri/xml_encoding_handler.c +17 -11
  114. data/ext/nokogiri/xml_entity_decl.c +32 -30
  115. data/ext/nokogiri/xml_entity_reference.c +16 -18
  116. data/ext/nokogiri/xml_namespace.c +56 -49
  117. data/ext/nokogiri/xml_node.c +371 -320
  118. data/ext/nokogiri/xml_node_set.c +168 -156
  119. data/ext/nokogiri/xml_processing_instruction.c +17 -19
  120. data/ext/nokogiri/xml_reader.c +191 -157
  121. data/ext/nokogiri/xml_relax_ng.c +52 -28
  122. data/ext/nokogiri/xml_sax_parser.c +118 -118
  123. data/ext/nokogiri/xml_sax_parser_context.c +103 -86
  124. data/ext/nokogiri/xml_sax_push_parser.c +36 -27
  125. data/ext/nokogiri/xml_schema.c +95 -47
  126. data/ext/nokogiri/xml_syntax_error.c +42 -21
  127. data/ext/nokogiri/xml_text.c +13 -17
  128. data/ext/nokogiri/xml_xpath_context.c +206 -123
  129. data/ext/nokogiri/xslt_stylesheet.c +158 -161
  130. data/lib/nokogiri.rb +3 -7
  131. data/lib/nokogiri/css/parser.rb +3 -3
  132. data/lib/nokogiri/css/parser.y +2 -2
  133. data/lib/nokogiri/css/xpath_visitor.rb +70 -42
  134. data/lib/nokogiri/extension.rb +26 -0
  135. data/lib/nokogiri/html/document.rb +12 -26
  136. data/lib/nokogiri/html/document_fragment.rb +15 -15
  137. data/lib/nokogiri/nokogiri.jar +0 -0
  138. data/lib/nokogiri/version.rb +2 -149
  139. data/lib/nokogiri/version/constant.rb +5 -0
  140. data/lib/nokogiri/version/info.rb +205 -0
  141. data/lib/nokogiri/xml/document.rb +91 -35
  142. data/lib/nokogiri/xml/document_fragment.rb +4 -6
  143. data/lib/nokogiri/xml/node.rb +89 -69
  144. data/lib/nokogiri/xml/parse_options.rb +6 -0
  145. data/lib/nokogiri/xml/reader.rb +2 -9
  146. data/lib/nokogiri/xml/relax_ng.rb +6 -2
  147. data/lib/nokogiri/xml/schema.rb +12 -4
  148. data/lib/nokogiri/xml/searchable.rb +3 -1
  149. data/lib/nokogiri/xml/xpath.rb +1 -3
  150. data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
  151. metadata +86 -177
  152. data/ext/nokogiri/html_document.h +0 -10
  153. data/ext/nokogiri/html_element_description.h +0 -10
  154. data/ext/nokogiri/html_entity_lookup.h +0 -8
  155. data/ext/nokogiri/html_sax_parser_context.h +0 -11
  156. data/ext/nokogiri/html_sax_push_parser.h +0 -9
  157. data/ext/nokogiri/nokogiri.h +0 -134
  158. data/ext/nokogiri/xml_attr.h +0 -9
  159. data/ext/nokogiri/xml_attribute_decl.h +0 -9
  160. data/ext/nokogiri/xml_cdata.h +0 -9
  161. data/ext/nokogiri/xml_comment.h +0 -9
  162. data/ext/nokogiri/xml_document.h +0 -23
  163. data/ext/nokogiri/xml_document_fragment.h +0 -10
  164. data/ext/nokogiri/xml_dtd.h +0 -10
  165. data/ext/nokogiri/xml_element_content.h +0 -10
  166. data/ext/nokogiri/xml_element_decl.h +0 -9
  167. data/ext/nokogiri/xml_encoding_handler.h +0 -8
  168. data/ext/nokogiri/xml_entity_decl.h +0 -10
  169. data/ext/nokogiri/xml_entity_reference.h +0 -9
  170. data/ext/nokogiri/xml_io.c +0 -63
  171. data/ext/nokogiri/xml_io.h +0 -11
  172. data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
  173. data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
  174. data/ext/nokogiri/xml_namespace.h +0 -14
  175. data/ext/nokogiri/xml_node.h +0 -13
  176. data/ext/nokogiri/xml_node_set.h +0 -12
  177. data/ext/nokogiri/xml_processing_instruction.h +0 -9
  178. data/ext/nokogiri/xml_reader.h +0 -10
  179. data/ext/nokogiri/xml_relax_ng.h +0 -9
  180. data/ext/nokogiri/xml_sax_parser.h +0 -39
  181. data/ext/nokogiri/xml_sax_parser_context.h +0 -10
  182. data/ext/nokogiri/xml_sax_push_parser.h +0 -9
  183. data/ext/nokogiri/xml_schema.h +0 -9
  184. data/ext/nokogiri/xml_syntax_error.h +0 -13
  185. data/ext/nokogiri/xml_text.h +0 -9
  186. data/ext/nokogiri/xml_xpath_context.h +0 -10
  187. data/ext/nokogiri/xslt_stylesheet.h +0 -14
@@ -1,35 +1,3 @@
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
1
  package nokogiri.internals;
34
2
 
35
3
  import org.apache.xerces.xni.parser.XMLParseException;
@@ -38,63 +6,80 @@ import org.xml.sax.SAXParseException;
38
6
 
39
7
  /**
40
8
  * Error Handler for XML document when recover is true (default).
41
- *
9
+ *
42
10
  * @author sergio
43
11
  * @author Yoko Harada <yokolet@gmail.com>
44
12
  */
45
- public class NokogiriNonStrictErrorHandler extends NokogiriErrorHandler{
46
- public NokogiriNonStrictErrorHandler(boolean noerror, boolean nowarning) {
47
- super(noerror, nowarning);
48
- }
13
+ public class NokogiriNonStrictErrorHandler extends NokogiriErrorHandler
14
+ {
15
+ public
16
+ NokogiriNonStrictErrorHandler(boolean noerror, boolean nowarning)
17
+ {
18
+ super(noerror, nowarning);
19
+ }
49
20
 
50
- public void warning(SAXParseException ex) throws SAXException {
51
- errors.add(ex);
52
- }
21
+ public void
22
+ warning(SAXParseException ex) throws SAXException
23
+ {
24
+ errors.add(ex);
25
+ }
53
26
 
54
- public void error(SAXParseException ex) throws SAXException {
55
- errors.add(ex);
56
- }
27
+ public void
28
+ error(SAXParseException ex) throws SAXException
29
+ {
30
+ errors.add(ex);
31
+ }
57
32
 
58
- public void fatalError(SAXParseException ex) throws SAXException {
59
- // fix #837
60
- // Xerces won't skip the reference entity (and other invalid) constructs
61
- // found in the prolog, instead it will keep calling this method and we'll
62
- // keep inserting the error in the document errors array until we run
63
- // out of memory
64
- errors.add(ex);
65
- String message = ex.getMessage();
33
+ public void
34
+ fatalError(SAXParseException ex) throws SAXException
35
+ {
36
+ // fix #837
37
+ // Xerces won't skip the reference entity (and other invalid) constructs
38
+ // found in the prolog, instead it will keep calling this method and we'll
39
+ // keep inserting the error in the document errors array until we run
40
+ // out of memory
41
+ errors.add(ex);
42
+ String message = ex.getMessage();
66
43
 
67
- // The problem with Xerces is that some errors will cause the
68
- // parser not to advance the reader and it will keep reporting
69
- // the same error over and over, which will cause the parser
70
- // to enter an infinite loop unless we throw the exception.
71
- if (message != null && isFatal(message)) {
72
- throw ex;
73
- }
44
+ // The problem with Xerces is that some errors will cause the
45
+ // parser not to advance the reader and it will keep reporting
46
+ // the same error over and over, which will cause the parser
47
+ // to enter an infinite loop unless we throw the exception.
48
+ if (message != null && isFatal(message)) {
49
+ throw ex;
74
50
  }
51
+ }
75
52
 
76
- public void error(String domain, String key, XMLParseException e) {
77
- errors.add(e);
78
- }
53
+ public void
54
+ error(String domain, String key, XMLParseException e)
55
+ {
56
+ errors.add(e);
57
+ }
79
58
 
80
- public void fatalError(String domain, String key, XMLParseException e) {
81
- errors.add(e);
82
- }
59
+ public void
60
+ fatalError(String domain, String key, XMLParseException e)
61
+ {
62
+ errors.add(e);
63
+ }
83
64
 
84
- public void warning(String domain, String key, XMLParseException e) {
85
- errors.add(e);
86
- }
65
+ public void
66
+ warning(String domain, String key, XMLParseException e)
67
+ {
68
+ errors.add(e);
69
+ }
87
70
 
88
- /*
89
- * Determine whether this is a fatal error that should cause
90
- * the parsing to stop, or an error that can be ignored.
91
- */
92
- private static boolean isFatal(String msg) {
93
- String msgLowerCase = msg.toLowerCase();
94
- return
95
- msgLowerCase.contains("in prolog") ||
96
- msgLowerCase.contains("limit") ||
97
- msgLowerCase.contains("preceding the root element must be well-formed") ||
98
- msgLowerCase.contains("following the root element must be well-formed");
99
- }
71
+ /*
72
+ * Determine whether this is a fatal error that should cause
73
+ * the parsing to stop, or an error that can be ignored.
74
+ */
75
+ private static boolean
76
+ isFatal(String msg)
77
+ {
78
+ String msgLowerCase = msg.toLowerCase();
79
+ return
80
+ msgLowerCase.contains("in prolog") ||
81
+ msgLowerCase.contains("limit") ||
82
+ msgLowerCase.contains("preceding the root element must be well-formed") ||
83
+ msgLowerCase.contains("following the root element must be well-formed");
84
+ }
100
85
  }
@@ -1,35 +1,3 @@
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
1
  package nokogiri.internals;
34
2
 
35
3
  import org.apache.xerces.xni.parser.XMLParseException;
@@ -38,84 +6,101 @@ import org.xml.sax.SAXParseException;
38
6
 
39
7
  /**
40
8
  * Non-strict error handler for NekoHtml.
41
- *
9
+ *
42
10
  * 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
11
+ * Nokogiri wants to know whether number of errors have been increased or not to judge
12
+ * availability of creating NodeSet from a given fragment. When the fragment nodes
45
13
  * are to be created from HTML document, which means NekoHtml is used, always errors
46
14
  * increases. As a result, even though the given fragment is correct HTML, NodeSet
47
15
  * base on the given fragment won't be created. This is why all warnings are eliminated.
48
- *
16
+ *
49
17
  * @author Yoko Harada <yokolet@gmail.com>
50
18
  */
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
- }
19
+ public class NokogiriNonStrictErrorHandler4NekoHtml extends NokogiriErrorHandler
20
+ {
21
+
22
+ public
23
+ NokogiriNonStrictErrorHandler4NekoHtml(boolean nowarning)
24
+ {
25
+ super(false, nowarning);
26
+ }
27
+
28
+ public
29
+ NokogiriNonStrictErrorHandler4NekoHtml(boolean noerror, boolean nowarning)
30
+ {
31
+ super(noerror, nowarning);
32
+ }
60
33
 
61
- public void warning(SAXParseException ex) throws SAXException {
62
- //noop. NekoHtml adds too many warnings.
63
- }
34
+ public void
35
+ warning(SAXParseException ex) throws SAXException
36
+ {
37
+ //noop. NekoHtml adds too many warnings.
38
+ }
64
39
 
65
- public void error(SAXParseException ex) throws SAXException {
66
- errors.add(ex);
67
- }
40
+ public void
41
+ error(SAXParseException ex) throws SAXException
42
+ {
43
+ errors.add(ex);
44
+ }
68
45
 
69
- public void fatalError(SAXParseException ex) throws SAXException {
70
- errors.add(ex);
71
- }
46
+ public void
47
+ fatalError(SAXParseException ex) throws SAXException
48
+ {
49
+ errors.add(ex);
50
+ }
72
51
 
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
- }
52
+ /**
53
+ * Implementation of org.apache.xerces.xni.parser.XMLErrorHandler. This method
54
+ * is invoked during parsing fired by HtmlDomParserContext and is a NekoHtml requirement.
55
+ *
56
+ * @param domain The domain of the error. The domain can be any string but is
57
+ * suggested to be a valid URI. The domain can be used to conveniently
58
+ * specify a web site location of the relevant specification or
59
+ * document pertaining to this warning.
60
+ * @param key The error key. This key can be any string and is implementation
61
+ * dependent.
62
+ * @param e Exception.
63
+ */
64
+ public void
65
+ error(String domain, String key, XMLParseException e)
66
+ {
67
+ errors.add(e);
68
+ }
88
69
 
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
- }
70
+ /**
71
+ * Implementation of org.apache.xerces.xni.parser.XMLErrorHandler. This method
72
+ * is invoked during parsing fired by HtmlDomParserContext and is a NekoHtml requirement.
73
+ *
74
+ * @param domain The domain of the fatal error. The domain can be any string but is
75
+ * suggested to be a valid URI. The domain can be used to conveniently
76
+ * specify a web site location of the relevant specification or
77
+ * document pertaining to this warning.
78
+ * @param key The fatal error key. This key can be any string and is implementation
79
+ * dependent.
80
+ * @param e Exception.
81
+ */
82
+ public void
83
+ fatalError(String domain, String key, XMLParseException e)
84
+ {
85
+ errors.add(e);
86
+ }
104
87
 
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
- errors.add(e);
119
- }
88
+ /**
89
+ * Implementation of org.apache.xerces.xni.parser.XMLErrorHandler. This method
90
+ * is invoked during parsing fired by HtmlDomParserContext and is a NekoHtml requirement.
91
+ *
92
+ * @param domain The domain of the warning. The domain can be any string but is
93
+ * suggested to be a valid URI. The domain can be used to conveniently
94
+ * specify a web site location of the relevant specification or
95
+ * document pertaining to this warning.
96
+ * @param key The warning key. This key can be any string and is implementation
97
+ * dependent.
98
+ * @param e Exception.
99
+ */
100
+ public void
101
+ warning(String domain, String key, XMLParseException e)
102
+ {
103
+ errors.add(e);
104
+ }
120
105
 
121
106
  }
@@ -1,35 +1,3 @@
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
1
  package nokogiri.internals;
34
2
 
35
3
  import org.apache.xerces.xni.parser.XMLParseException;
@@ -39,40 +7,55 @@ import org.xml.sax.SAXParseException;
39
7
  /**
40
8
  * Strict error handler. Even though strict is specified, Nokogiri allows to go further
41
9
  * when NOERROR or/both NOWARNING is/are true.
42
- *
10
+ *
43
11
  * @author sergio
44
12
  * @author Yoko Harada <yokolet@gmail.com>
45
13
  */
46
- public class NokogiriStrictErrorHandler extends NokogiriErrorHandler {
47
- public NokogiriStrictErrorHandler(boolean noerror, boolean nowarning) {
48
- super(noerror, nowarning);
49
- }
50
-
51
- public void warning(SAXParseException spex) throws SAXException {
52
- if (!nowarning) throw spex;
53
- else errors.add(spex);
54
- }
55
-
56
- public void error(SAXParseException spex) throws SAXException {
57
- if (!noerror) throw spex;
58
- else errors.add(spex);
59
- }
60
-
61
- public void fatalError(SAXParseException spex) throws SAXException {
62
- throw spex;
63
- }
64
-
65
- public void error(String domain, String key, XMLParseException e) throws XMLParseException {
66
- if (!noerror) throw e;
67
- else errors.add(e);
68
- }
69
-
70
- public void fatalError(String domain, String key, XMLParseException e) throws XMLParseException {
71
- throw e;
72
- }
73
-
74
- public void warning(String domain, String key, XMLParseException e) throws XMLParseException {
75
- if (!nowarning) throw e;
76
- if (!usesNekoHtml(domain)) errors.add(e);
77
- }
14
+ public class NokogiriStrictErrorHandler extends NokogiriErrorHandler
15
+ {
16
+ public
17
+ NokogiriStrictErrorHandler(boolean noerror, boolean nowarning)
18
+ {
19
+ super(noerror, nowarning);
20
+ }
21
+
22
+ public void
23
+ warning(SAXParseException spex) throws SAXException
24
+ {
25
+ if (!nowarning) { throw spex; }
26
+ else { errors.add(spex); }
27
+ }
28
+
29
+ public void
30
+ error(SAXParseException spex) throws SAXException
31
+ {
32
+ if (!noerror) { throw spex; }
33
+ else { errors.add(spex); }
34
+ }
35
+
36
+ public void
37
+ fatalError(SAXParseException spex) throws SAXException
38
+ {
39
+ throw spex;
40
+ }
41
+
42
+ public void
43
+ error(String domain, String key, XMLParseException e) throws XMLParseException
44
+ {
45
+ if (!noerror) { throw e; }
46
+ else { errors.add(e); }
47
+ }
48
+
49
+ public void
50
+ fatalError(String domain, String key, XMLParseException e) throws XMLParseException
51
+ {
52
+ throw e;
53
+ }
54
+
55
+ public void
56
+ warning(String domain, String key, XMLParseException e) throws XMLParseException
57
+ {
58
+ if (!nowarning) { throw e; }
59
+ if (!usesNekoHtml(domain)) { errors.add(e); }
60
+ }
78
61
  }