nokogiri 1.13.0-aarch64-linux

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 (198) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +5 -0
  3. data/LICENSE-DEPENDENCIES.md +1903 -0
  4. data/LICENSE.md +9 -0
  5. data/README.md +280 -0
  6. data/bin/nokogiri +131 -0
  7. data/dependencies.yml +73 -0
  8. data/ext/nokogiri/depend +38 -0
  9. data/ext/nokogiri/extconf.rb +1000 -0
  10. data/ext/nokogiri/gumbo.c +584 -0
  11. data/ext/nokogiri/html4_document.c +166 -0
  12. data/ext/nokogiri/html4_element_description.c +294 -0
  13. data/ext/nokogiri/html4_entity_lookup.c +37 -0
  14. data/ext/nokogiri/html4_sax_parser_context.c +120 -0
  15. data/ext/nokogiri/html4_sax_push_parser.c +95 -0
  16. data/ext/nokogiri/include/libexslt/exslt.h +102 -0
  17. data/ext/nokogiri/include/libexslt/exsltconfig.h +70 -0
  18. data/ext/nokogiri/include/libexslt/exsltexports.h +140 -0
  19. data/ext/nokogiri/include/libxml2/libxml/DOCBparser.h +96 -0
  20. data/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +306 -0
  21. data/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +147 -0
  22. data/ext/nokogiri/include/libxml2/libxml/SAX.h +173 -0
  23. data/ext/nokogiri/include/libxml2/libxml/SAX2.h +178 -0
  24. data/ext/nokogiri/include/libxml2/libxml/c14n.h +128 -0
  25. data/ext/nokogiri/include/libxml2/libxml/catalog.h +182 -0
  26. data/ext/nokogiri/include/libxml2/libxml/chvalid.h +230 -0
  27. data/ext/nokogiri/include/libxml2/libxml/debugXML.h +217 -0
  28. data/ext/nokogiri/include/libxml2/libxml/dict.h +79 -0
  29. data/ext/nokogiri/include/libxml2/libxml/encoding.h +245 -0
  30. data/ext/nokogiri/include/libxml2/libxml/entities.h +151 -0
  31. data/ext/nokogiri/include/libxml2/libxml/globals.h +508 -0
  32. data/ext/nokogiri/include/libxml2/libxml/hash.h +236 -0
  33. data/ext/nokogiri/include/libxml2/libxml/list.h +137 -0
  34. data/ext/nokogiri/include/libxml2/libxml/nanoftp.h +163 -0
  35. data/ext/nokogiri/include/libxml2/libxml/nanohttp.h +81 -0
  36. data/ext/nokogiri/include/libxml2/libxml/parser.h +1243 -0
  37. data/ext/nokogiri/include/libxml2/libxml/parserInternals.h +644 -0
  38. data/ext/nokogiri/include/libxml2/libxml/pattern.h +100 -0
  39. data/ext/nokogiri/include/libxml2/libxml/relaxng.h +217 -0
  40. data/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +958 -0
  41. data/ext/nokogiri/include/libxml2/libxml/schematron.h +142 -0
  42. data/ext/nokogiri/include/libxml2/libxml/threads.h +89 -0
  43. data/ext/nokogiri/include/libxml2/libxml/tree.h +1311 -0
  44. data/ext/nokogiri/include/libxml2/libxml/uri.h +94 -0
  45. data/ext/nokogiri/include/libxml2/libxml/valid.h +458 -0
  46. data/ext/nokogiri/include/libxml2/libxml/xinclude.h +129 -0
  47. data/ext/nokogiri/include/libxml2/libxml/xlink.h +189 -0
  48. data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +368 -0
  49. data/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +146 -0
  50. data/ext/nokogiri/include/libxml2/libxml/xmlerror.h +946 -0
  51. data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +77 -0
  52. data/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +224 -0
  53. data/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +57 -0
  54. data/ext/nokogiri/include/libxml2/libxml/xmlreader.h +428 -0
  55. data/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +222 -0
  56. data/ext/nokogiri/include/libxml2/libxml/xmlsave.h +88 -0
  57. data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +246 -0
  58. data/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +151 -0
  59. data/ext/nokogiri/include/libxml2/libxml/xmlstring.h +140 -0
  60. data/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +202 -0
  61. data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +485 -0
  62. data/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +488 -0
  63. data/ext/nokogiri/include/libxml2/libxml/xpath.h +564 -0
  64. data/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +632 -0
  65. data/ext/nokogiri/include/libxml2/libxml/xpointer.h +114 -0
  66. data/ext/nokogiri/include/libxslt/attributes.h +38 -0
  67. data/ext/nokogiri/include/libxslt/documents.h +93 -0
  68. data/ext/nokogiri/include/libxslt/extensions.h +262 -0
  69. data/ext/nokogiri/include/libxslt/extra.h +72 -0
  70. data/ext/nokogiri/include/libxslt/functions.h +78 -0
  71. data/ext/nokogiri/include/libxslt/imports.h +75 -0
  72. data/ext/nokogiri/include/libxslt/keys.h +53 -0
  73. data/ext/nokogiri/include/libxslt/namespaces.h +68 -0
  74. data/ext/nokogiri/include/libxslt/numbersInternals.h +73 -0
  75. data/ext/nokogiri/include/libxslt/pattern.h +84 -0
  76. data/ext/nokogiri/include/libxslt/preproc.h +43 -0
  77. data/ext/nokogiri/include/libxslt/security.h +104 -0
  78. data/ext/nokogiri/include/libxslt/templates.h +77 -0
  79. data/ext/nokogiri/include/libxslt/transform.h +207 -0
  80. data/ext/nokogiri/include/libxslt/variables.h +118 -0
  81. data/ext/nokogiri/include/libxslt/xslt.h +110 -0
  82. data/ext/nokogiri/include/libxslt/xsltInternals.h +1978 -0
  83. data/ext/nokogiri/include/libxslt/xsltconfig.h +180 -0
  84. data/ext/nokogiri/include/libxslt/xsltexports.h +142 -0
  85. data/ext/nokogiri/include/libxslt/xsltlocale.h +76 -0
  86. data/ext/nokogiri/include/libxslt/xsltutils.h +313 -0
  87. data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
  88. data/ext/nokogiri/nokogiri.c +278 -0
  89. data/ext/nokogiri/nokogiri.h +223 -0
  90. data/ext/nokogiri/test_global_handlers.c +40 -0
  91. data/ext/nokogiri/xml_attr.c +103 -0
  92. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  93. data/ext/nokogiri/xml_cdata.c +57 -0
  94. data/ext/nokogiri/xml_comment.c +62 -0
  95. data/ext/nokogiri/xml_document.c +680 -0
  96. data/ext/nokogiri/xml_document_fragment.c +44 -0
  97. data/ext/nokogiri/xml_dtd.c +208 -0
  98. data/ext/nokogiri/xml_element_content.c +128 -0
  99. data/ext/nokogiri/xml_element_decl.c +69 -0
  100. data/ext/nokogiri/xml_encoding_handler.c +104 -0
  101. data/ext/nokogiri/xml_entity_decl.c +112 -0
  102. data/ext/nokogiri/xml_entity_reference.c +50 -0
  103. data/ext/nokogiri/xml_namespace.c +120 -0
  104. data/ext/nokogiri/xml_node.c +2144 -0
  105. data/ext/nokogiri/xml_node_set.c +498 -0
  106. data/ext/nokogiri/xml_processing_instruction.c +54 -0
  107. data/ext/nokogiri/xml_reader.c +719 -0
  108. data/ext/nokogiri/xml_relax_ng.c +185 -0
  109. data/ext/nokogiri/xml_sax_parser.c +310 -0
  110. data/ext/nokogiri/xml_sax_parser_context.c +281 -0
  111. data/ext/nokogiri/xml_sax_push_parser.c +168 -0
  112. data/ext/nokogiri/xml_schema.c +284 -0
  113. data/ext/nokogiri/xml_syntax_error.c +85 -0
  114. data/ext/nokogiri/xml_text.c +48 -0
  115. data/ext/nokogiri/xml_xpath_context.c +406 -0
  116. data/ext/nokogiri/xslt_stylesheet.c +264 -0
  117. data/gumbo-parser/CHANGES.md +63 -0
  118. data/gumbo-parser/Makefile +101 -0
  119. data/gumbo-parser/THANKS +27 -0
  120. data/lib/nokogiri/2.6/nokogiri.so +0 -0
  121. data/lib/nokogiri/2.7/nokogiri.so +0 -0
  122. data/lib/nokogiri/3.0/nokogiri.so +0 -0
  123. data/lib/nokogiri/3.1/nokogiri.so +0 -0
  124. data/lib/nokogiri/class_resolver.rb +67 -0
  125. data/lib/nokogiri/css/node.rb +54 -0
  126. data/lib/nokogiri/css/parser.rb +759 -0
  127. data/lib/nokogiri/css/parser.y +280 -0
  128. data/lib/nokogiri/css/parser_extras.rb +94 -0
  129. data/lib/nokogiri/css/syntax_error.rb +9 -0
  130. data/lib/nokogiri/css/tokenizer.rb +155 -0
  131. data/lib/nokogiri/css/tokenizer.rex +56 -0
  132. data/lib/nokogiri/css/xpath_visitor.rb +359 -0
  133. data/lib/nokogiri/css.rb +60 -0
  134. data/lib/nokogiri/decorators/slop.rb +44 -0
  135. data/lib/nokogiri/extension.rb +31 -0
  136. data/lib/nokogiri/gumbo.rb +15 -0
  137. data/lib/nokogiri/html.rb +48 -0
  138. data/lib/nokogiri/html4/builder.rb +37 -0
  139. data/lib/nokogiri/html4/document.rb +331 -0
  140. data/lib/nokogiri/html4/document_fragment.rb +54 -0
  141. data/lib/nokogiri/html4/element_description.rb +25 -0
  142. data/lib/nokogiri/html4/element_description_defaults.rb +578 -0
  143. data/lib/nokogiri/html4/entity_lookup.rb +15 -0
  144. data/lib/nokogiri/html4/sax/parser.rb +61 -0
  145. data/lib/nokogiri/html4/sax/parser_context.rb +20 -0
  146. data/lib/nokogiri/html4/sax/push_parser.rb +37 -0
  147. data/lib/nokogiri/html4.rb +46 -0
  148. data/lib/nokogiri/html5/document.rb +88 -0
  149. data/lib/nokogiri/html5/document_fragment.rb +83 -0
  150. data/lib/nokogiri/html5/node.rb +96 -0
  151. data/lib/nokogiri/html5.rb +477 -0
  152. data/lib/nokogiri/jruby/dependencies.rb +21 -0
  153. data/lib/nokogiri/syntax_error.rb +6 -0
  154. data/lib/nokogiri/version/constant.rb +6 -0
  155. data/lib/nokogiri/version/info.rb +221 -0
  156. data/lib/nokogiri/version.rb +4 -0
  157. data/lib/nokogiri/xml/attr.rb +17 -0
  158. data/lib/nokogiri/xml/attribute_decl.rb +20 -0
  159. data/lib/nokogiri/xml/builder.rb +485 -0
  160. data/lib/nokogiri/xml/cdata.rb +13 -0
  161. data/lib/nokogiri/xml/character_data.rb +9 -0
  162. data/lib/nokogiri/xml/document.rb +418 -0
  163. data/lib/nokogiri/xml/document_fragment.rb +162 -0
  164. data/lib/nokogiri/xml/dtd.rb +34 -0
  165. data/lib/nokogiri/xml/element_content.rb +38 -0
  166. data/lib/nokogiri/xml/element_decl.rb +15 -0
  167. data/lib/nokogiri/xml/entity_decl.rb +21 -0
  168. data/lib/nokogiri/xml/entity_reference.rb +20 -0
  169. data/lib/nokogiri/xml/namespace.rb +16 -0
  170. data/lib/nokogiri/xml/node/save_options.rb +65 -0
  171. data/lib/nokogiri/xml/node.rb +1402 -0
  172. data/lib/nokogiri/xml/node_set.rb +364 -0
  173. data/lib/nokogiri/xml/notation.rb +19 -0
  174. data/lib/nokogiri/xml/parse_options.rb +133 -0
  175. data/lib/nokogiri/xml/pp/character_data.rb +21 -0
  176. data/lib/nokogiri/xml/pp/node.rb +55 -0
  177. data/lib/nokogiri/xml/pp.rb +4 -0
  178. data/lib/nokogiri/xml/processing_instruction.rb +10 -0
  179. data/lib/nokogiri/xml/reader.rb +107 -0
  180. data/lib/nokogiri/xml/relax_ng.rb +38 -0
  181. data/lib/nokogiri/xml/sax/document.rb +167 -0
  182. data/lib/nokogiri/xml/sax/parser.rb +125 -0
  183. data/lib/nokogiri/xml/sax/parser_context.rb +21 -0
  184. data/lib/nokogiri/xml/sax/push_parser.rb +61 -0
  185. data/lib/nokogiri/xml/sax.rb +6 -0
  186. data/lib/nokogiri/xml/schema.rb +73 -0
  187. data/lib/nokogiri/xml/searchable.rb +259 -0
  188. data/lib/nokogiri/xml/syntax_error.rb +71 -0
  189. data/lib/nokogiri/xml/text.rb +11 -0
  190. data/lib/nokogiri/xml/xpath/syntax_error.rb +13 -0
  191. data/lib/nokogiri/xml/xpath.rb +21 -0
  192. data/lib/nokogiri/xml/xpath_context.rb +16 -0
  193. data/lib/nokogiri/xml.rb +75 -0
  194. data/lib/nokogiri/xslt/stylesheet.rb +27 -0
  195. data/lib/nokogiri/xslt.rb +58 -0
  196. data/lib/nokogiri.rb +128 -0
  197. data/lib/xsd/xmlparser/nokogiri.rb +104 -0
  198. metadata +539 -0
@@ -0,0 +1,259 @@
1
+ # coding: utf-8
2
+ # frozen_string_literal: true
3
+
4
+ module Nokogiri
5
+ module XML
6
+ #
7
+ # The Searchable module declares the interface used for searching your DOM.
8
+ #
9
+ # It implements the public methods `search`, `css`, and `xpath`,
10
+ # as well as allowing specific implementations to specialize some
11
+ # of the important behaviors.
12
+ #
13
+ module Searchable
14
+ # Regular expression used by Searchable#search to determine if a query
15
+ # string is CSS or XPath
16
+ LOOKS_LIKE_XPATH = %r{^(\./|/|\.\.|\.$)}
17
+
18
+ # :section: Searching via XPath or CSS Queries
19
+
20
+ ###
21
+ # call-seq:
22
+ # search(*paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class])
23
+ #
24
+ # Search this object for +paths+. +paths+ must be one or more XPath or CSS queries:
25
+ #
26
+ # node.search("div.employee", ".//title")
27
+ #
28
+ # A hash of namespace bindings may be appended:
29
+ #
30
+ # node.search('.//bike:tire', {'bike' => 'http://schwinn.com/'})
31
+ # node.search('bike|tire', {'bike' => 'http://schwinn.com/'})
32
+ #
33
+ # For XPath queries, a hash of variable bindings may also be
34
+ # appended to the namespace bindings. For example:
35
+ #
36
+ # node.search('.//address[@domestic=$value]', nil, {:value => 'Yes'})
37
+ #
38
+ # Custom XPath functions and CSS pseudo-selectors may also be
39
+ # defined. To define custom functions create a class and
40
+ # implement the function you want to define. The first argument
41
+ # to the method will be the current matching NodeSet. Any other
42
+ # arguments are ones that you pass in. Note that this class may
43
+ # appear anywhere in the argument list. For example:
44
+ #
45
+ # node.search('.//title[regex(., "\w+")]', 'div.employee:regex("[0-9]+")'
46
+ # Class.new {
47
+ # def regex node_set, regex
48
+ # node_set.find_all { |node| node['some_attribute'] =~ /#{regex}/ }
49
+ # end
50
+ # }.new
51
+ # )
52
+ #
53
+ # See Searchable#xpath and Searchable#css for further usage help.
54
+ def search(*args)
55
+ paths, handler, ns, binds = extract_params(args)
56
+
57
+ xpaths = paths.map(&:to_s).map do |path|
58
+ LOOKS_LIKE_XPATH.match?(path) ? path : xpath_query_from_css_rule(path, ns)
59
+ end.flatten.uniq
60
+
61
+ xpath(*(xpaths + [ns, handler, binds].compact))
62
+ end
63
+
64
+ alias_method :/, :search
65
+
66
+ ###
67
+ # call-seq:
68
+ # at(*paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class])
69
+ #
70
+ # Search this object for +paths+, and return only the first
71
+ # result. +paths+ must be one or more XPath or CSS queries.
72
+ #
73
+ # See Searchable#search for more information.
74
+ def at(*args)
75
+ search(*args).first
76
+ end
77
+
78
+ alias_method :%, :at
79
+
80
+ ###
81
+ # call-seq:
82
+ # css(*rules, [namespace-bindings, custom-pseudo-class])
83
+ #
84
+ # Search this object for CSS +rules+. +rules+ must be one or more CSS
85
+ # selectors. For example:
86
+ #
87
+ # node.css('title')
88
+ # node.css('body h1.bold')
89
+ # node.css('div + p.green', 'div#one')
90
+ #
91
+ # A hash of namespace bindings may be appended. For example:
92
+ #
93
+ # node.css('bike|tire', {'bike' => 'http://schwinn.com/'})
94
+ #
95
+ # Custom CSS pseudo classes may also be defined. To define
96
+ # custom pseudo classes, create a class and implement the custom
97
+ # pseudo class you want defined. The first argument to the
98
+ # method will be the current matching NodeSet. Any other
99
+ # arguments are ones that you pass in. For example:
100
+ #
101
+ # node.css('title:regex("\w+")', Class.new {
102
+ # def regex node_set, regex
103
+ # node_set.find_all { |node| node['some_attribute'] =~ /#{regex}/ }
104
+ # end
105
+ # }.new)
106
+ #
107
+ # Note that the CSS query string is case-sensitive with regards
108
+ # to your document type. That is, if you're looking for "H1" in
109
+ # an HTML document, you'll never find anything, since HTML tags
110
+ # will match only lowercase CSS queries. However, "H1" might be
111
+ # found in an XML document, where tags names are case-sensitive
112
+ # (e.g., "H1" is distinct from "h1").
113
+ #
114
+ def css(*args)
115
+ rules, handler, ns, _ = extract_params(args)
116
+
117
+ css_internal(self, rules, handler, ns)
118
+ end
119
+
120
+ ##
121
+ # call-seq:
122
+ # at_css(*rules, [namespace-bindings, custom-pseudo-class])
123
+ #
124
+ # Search this object for CSS +rules+, and return only the first
125
+ # match. +rules+ must be one or more CSS selectors.
126
+ #
127
+ # See Searchable#css for more information.
128
+ def at_css(*args)
129
+ css(*args).first
130
+ end
131
+
132
+ ###
133
+ # call-seq:
134
+ # xpath(*paths, [namespace-bindings, variable-bindings, custom-handler-class])
135
+ #
136
+ # Search this node for XPath +paths+. +paths+ must be one or more XPath
137
+ # queries.
138
+ #
139
+ # node.xpath('.//title')
140
+ #
141
+ # A hash of namespace bindings may be appended. For example:
142
+ #
143
+ # node.xpath('.//foo:name', {'foo' => 'http://example.org/'})
144
+ # node.xpath('.//xmlns:name', node.root.namespaces)
145
+ #
146
+ # A hash of variable bindings may also be appended to the namespace bindings. For example:
147
+ #
148
+ # node.xpath('.//address[@domestic=$value]', nil, {:value => 'Yes'})
149
+ #
150
+ # Custom XPath functions may also be defined. To define custom
151
+ # functions create a class and implement the function you want
152
+ # to define. The first argument to the method will be the
153
+ # current matching NodeSet. Any other arguments are ones that
154
+ # you pass in. Note that this class may appear anywhere in the
155
+ # argument list. For example:
156
+ #
157
+ # node.xpath('.//title[regex(., "\w+")]', Class.new {
158
+ # def regex node_set, regex
159
+ # node_set.find_all { |node| node['some_attribute'] =~ /#{regex}/ }
160
+ # end
161
+ # }.new)
162
+ #
163
+ def xpath(*args)
164
+ paths, handler, ns, binds = extract_params(args)
165
+
166
+ xpath_internal(self, paths, handler, ns, binds)
167
+ end
168
+
169
+ ##
170
+ # call-seq:
171
+ # at_xpath(*paths, [namespace-bindings, variable-bindings, custom-handler-class])
172
+ #
173
+ # Search this node for XPath +paths+, and return only the first
174
+ # match. +paths+ must be one or more XPath queries.
175
+ #
176
+ # See Searchable#xpath for more information.
177
+ def at_xpath(*args)
178
+ xpath(*args).first
179
+ end
180
+
181
+ # :call-seq:
182
+ # >(selector) → NodeSet
183
+ #
184
+ # Search this node's immediate children using CSS selector +selector+
185
+ def >(selector) # rubocop:disable Naming/BinaryOperatorParameterName
186
+ ns = (document.root&.namespaces || {})
187
+ xpath(CSS.xpath_for(selector, prefix: "./", ns: ns).first)
188
+ end
189
+
190
+ # :section:
191
+
192
+ private
193
+
194
+ def css_internal(node, rules, handler, ns)
195
+ xpath_internal(node, css_rules_to_xpath(rules, ns), handler, ns, nil)
196
+ end
197
+
198
+ def xpath_internal(node, paths, handler, ns, binds)
199
+ document = node.document
200
+ return NodeSet.new(document) unless document
201
+
202
+ if paths.length == 1
203
+ return xpath_impl(node, paths.first, handler, ns, binds)
204
+ end
205
+
206
+ NodeSet.new(document) do |combined|
207
+ paths.each do |path|
208
+ xpath_impl(node, path, handler, ns, binds).each { |set| combined << set }
209
+ end
210
+ end
211
+ end
212
+
213
+ def xpath_impl(node, path, handler, ns, binds)
214
+ ctx = XPathContext.new(node)
215
+ ctx.register_namespaces(ns)
216
+ path = path.gsub(/xmlns:/, " :") unless Nokogiri.uses_libxml?
217
+
218
+ binds&.each do |key, value|
219
+ ctx.register_variable(key.to_s, value)
220
+ end
221
+
222
+ ctx.evaluate(path, handler)
223
+ end
224
+
225
+ def css_rules_to_xpath(rules, ns)
226
+ rules.map { |rule| xpath_query_from_css_rule(rule, ns) }
227
+ end
228
+
229
+ def xpath_query_from_css_rule(rule, ns)
230
+ visitor = Nokogiri::CSS::XPathVisitor.new(
231
+ builtins: Nokogiri::CSS::XPathVisitor::BuiltinsConfig::OPTIMAL,
232
+ doctype: document.xpath_doctype,
233
+ )
234
+ self.class::IMPLIED_XPATH_CONTEXTS.map do |implied_xpath_context|
235
+ CSS.xpath_for(rule.to_s, { prefix: implied_xpath_context, ns: ns,
236
+ visitor: visitor, })
237
+ end.join(" | ")
238
+ end
239
+
240
+ def extract_params(params) # :nodoc:
241
+ handler = params.find do |param|
242
+ ![Hash, String, Symbol].include?(param.class)
243
+ end
244
+ params -= [handler] if handler
245
+
246
+ hashes = []
247
+ while Hash === params.last || params.last.nil?
248
+ hashes << params.pop
249
+ break if params.empty?
250
+ end
251
+ ns, binds = hashes.reverse
252
+
253
+ ns ||= (document.root&.namespaces || {})
254
+
255
+ [params, handler, ns, binds]
256
+ end
257
+ end
258
+ end
259
+ end
@@ -0,0 +1,71 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nokogiri
4
+ module XML
5
+ ###
6
+ # This class provides information about XML SyntaxErrors. These
7
+ # exceptions are typically stored on Nokogiri::XML::Document#errors.
8
+ class SyntaxError < ::Nokogiri::SyntaxError
9
+ attr_reader :domain
10
+ attr_reader :code
11
+ attr_reader :level
12
+ attr_reader :file
13
+ attr_reader :line
14
+ attr_reader :str1
15
+ attr_reader :str2
16
+ attr_reader :str3
17
+ attr_reader :int1
18
+ attr_reader :column
19
+
20
+ ###
21
+ # return true if this is a non error
22
+ def none?
23
+ level == 0
24
+ end
25
+
26
+ ###
27
+ # return true if this is a warning
28
+ def warning?
29
+ level == 1
30
+ end
31
+
32
+ ###
33
+ # return true if this is an error
34
+ def error?
35
+ level == 2
36
+ end
37
+
38
+ ###
39
+ # return true if this error is fatal
40
+ def fatal?
41
+ level == 3
42
+ end
43
+
44
+ def to_s
45
+ message = super.chomp
46
+ [location_to_s, level_to_s, message]
47
+ .compact.join(": ")
48
+ .force_encoding(message.encoding)
49
+ end
50
+
51
+ private
52
+
53
+ def level_to_s
54
+ case level
55
+ when 3 then "FATAL"
56
+ when 2 then "ERROR"
57
+ when 1 then "WARNING"
58
+ end
59
+ end
60
+
61
+ def nil_or_zero?(attribute)
62
+ attribute.nil? || attribute.zero?
63
+ end
64
+
65
+ def location_to_s
66
+ return nil if nil_or_zero?(line) && nil_or_zero?(column)
67
+ "#{line}:#{column}"
68
+ end
69
+ end
70
+ end
71
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nokogiri
4
+ module XML
5
+ class Text < Nokogiri::XML::CharacterData
6
+ def content=(string)
7
+ self.native_content = string.to_s
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nokogiri
4
+ module XML
5
+ module XPath
6
+ class SyntaxError < XML::SyntaxError
7
+ def to_s
8
+ [super.chomp, str1].compact.join(": ")
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nokogiri
4
+ module XML
5
+ module XPath
6
+ # The XPath search prefix to search globally, +//+
7
+ GLOBAL_SEARCH_PREFIX = "//"
8
+
9
+ # The XPath search prefix to search direct descendants of the root element, +/+
10
+ ROOT_SEARCH_PREFIX = "/"
11
+
12
+ # The XPath search prefix to search direct descendants of the current element, +./+
13
+ CURRENT_SEARCH_PREFIX = "./"
14
+
15
+ # The XPath search prefix to search anywhere in the current element's subtree, +.//+
16
+ SUBTREE_SEARCH_PREFIX = ".//"
17
+ end
18
+ end
19
+ end
20
+
21
+ require_relative "xpath/syntax_error"
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nokogiri
4
+ module XML
5
+ class XPathContext
6
+ ###
7
+ # Register namespaces in +namespaces+
8
+ def register_namespaces(namespaces)
9
+ namespaces.each do |k, v|
10
+ k = k.to_s.gsub(/.*:/, "") # strip off 'xmlns:' or 'xml:'
11
+ register_ns(k, v)
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,75 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nokogiri
4
+ class << self
5
+ ###
6
+ # Parse XML. Convenience method for Nokogiri::XML::Document.parse
7
+ def XML(thing, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_XML, &block)
8
+ Nokogiri::XML::Document.parse(thing, url, encoding, options, &block)
9
+ end
10
+ end
11
+
12
+ module XML
13
+ # Original C14N 1.0 spec canonicalization
14
+ XML_C14N_1_0 = 0
15
+ # Exclusive C14N 1.0 spec canonicalization
16
+ XML_C14N_EXCLUSIVE_1_0 = 1
17
+ # C14N 1.1 spec canonicalization
18
+ XML_C14N_1_1 = 2
19
+ class << self
20
+ ###
21
+ # Parse an XML document using the Nokogiri::XML::Reader API. See
22
+ # Nokogiri::XML::Reader for mor information
23
+ def Reader(string_or_io, url = nil, encoding = nil, options = ParseOptions::STRICT)
24
+ options = Nokogiri::XML::ParseOptions.new(options) if Integer === options
25
+ yield options if block_given?
26
+
27
+ if string_or_io.respond_to?(:read)
28
+ return Reader.from_io(string_or_io, url, encoding, options.to_i)
29
+ end
30
+ Reader.from_memory(string_or_io, url, encoding, options.to_i)
31
+ end
32
+
33
+ ###
34
+ # Parse XML. Convenience method for Nokogiri::XML::Document.parse
35
+ def parse(thing, url = nil, encoding = nil, options = ParseOptions::DEFAULT_XML, &block)
36
+ Document.parse(thing, url, encoding, options, &block)
37
+ end
38
+
39
+ ####
40
+ # Parse a fragment from +string+ in to a NodeSet.
41
+ def fragment(string, options = ParseOptions::DEFAULT_XML, &block)
42
+ XML::DocumentFragment.parse(string, options, &block)
43
+ end
44
+ end
45
+ end
46
+ end
47
+
48
+ require_relative "xml/pp"
49
+ require_relative "xml/parse_options"
50
+ require_relative "xml/sax"
51
+ require_relative "xml/searchable"
52
+ require_relative "xml/node"
53
+ require_relative "xml/attribute_decl"
54
+ require_relative "xml/element_decl"
55
+ require_relative "xml/element_content"
56
+ require_relative "xml/character_data"
57
+ require_relative "xml/namespace"
58
+ require_relative "xml/attr"
59
+ require_relative "xml/dtd"
60
+ require_relative "xml/cdata"
61
+ require_relative "xml/text"
62
+ require_relative "xml/document"
63
+ require_relative "xml/document_fragment"
64
+ require_relative "xml/processing_instruction"
65
+ require_relative "xml/node_set"
66
+ require_relative "xml/syntax_error"
67
+ require_relative "xml/xpath"
68
+ require_relative "xml/xpath_context"
69
+ require_relative "xml/builder"
70
+ require_relative "xml/reader"
71
+ require_relative "xml/notation"
72
+ require_relative "xml/entity_decl"
73
+ require_relative "xml/entity_reference"
74
+ require_relative "xml/schema"
75
+ require_relative "xml/relax_ng"
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nokogiri
4
+ module XSLT
5
+ ###
6
+ # A Stylesheet represents an XSLT Stylesheet object. Stylesheet creation
7
+ # is done through Nokogiri.XSLT. Here is an example of transforming
8
+ # an XML::Document with a Stylesheet:
9
+ #
10
+ # doc = Nokogiri::XML(File.read('some_file.xml'))
11
+ # xslt = Nokogiri::XSLT(File.read('some_transformer.xslt'))
12
+ #
13
+ # puts xslt.transform(doc)
14
+ #
15
+ # See Nokogiri::XSLT::Stylesheet#transform for more transformation
16
+ # information.
17
+ class Stylesheet
18
+ ###
19
+ # Apply an XSLT stylesheet to an XML::Document.
20
+ # +params+ is an array of strings used as XSLT parameters.
21
+ # returns serialized document
22
+ def apply_to(document, params = [])
23
+ serialize(transform(document, params))
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nokogiri
4
+ class << self
5
+ ###
6
+ # Create a Nokogiri::XSLT::Stylesheet with +stylesheet+.
7
+ #
8
+ # Example:
9
+ #
10
+ # xslt = Nokogiri::XSLT(File.read(ARGV[0]))
11
+ #
12
+ def XSLT(stylesheet, modules = {})
13
+ XSLT.parse(stylesheet, modules)
14
+ end
15
+ end
16
+
17
+ ###
18
+ # See Nokogiri::XSLT::Stylesheet for creating and manipulating
19
+ # Stylesheet object.
20
+ module XSLT
21
+ class << self
22
+ ###
23
+ # Parse the stylesheet in +string+, register any +modules+
24
+ def parse(string, modules = {})
25
+ modules.each do |url, klass|
26
+ XSLT.register(url, klass)
27
+ end
28
+
29
+ doc = XML::Document.parse(string, nil, nil, XML::ParseOptions::DEFAULT_XSLT)
30
+ if Nokogiri.jruby?
31
+ Stylesheet.parse_stylesheet_doc(doc, string)
32
+ else
33
+ Stylesheet.parse_stylesheet_doc(doc)
34
+ end
35
+ end
36
+
37
+ ###
38
+ # Quote parameters in +params+ for stylesheet safety
39
+ def quote_params(params)
40
+ parray = (params.instance_of?(Hash) ? params.to_a.flatten : params).dup
41
+ parray.each_with_index do |v, i|
42
+ parray[i] = if i % 2 > 0
43
+ if /'/.match?(v)
44
+ "concat('#{v.gsub(/'/, %q{', "'", '})}')"
45
+ else
46
+ "'#{v}'"
47
+ end
48
+ else
49
+ v.to_s
50
+ end
51
+ end
52
+ parray.flatten
53
+ end
54
+ end
55
+ end
56
+ end
57
+
58
+ require_relative "xslt/stylesheet"
data/lib/nokogiri.rb ADDED
@@ -0,0 +1,128 @@
1
+ # coding: utf-8
2
+ # frozen_string_literal: true
3
+
4
+ require "rbconfig"
5
+
6
+ if defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
7
+ require_relative "nokogiri/jruby/dependencies"
8
+ end
9
+
10
+ require_relative "nokogiri/extension"
11
+
12
+ # Nokogiri parses and searches XML/HTML very quickly, and also has
13
+ # correctly implemented CSS3 selector support as well as XPath 1.0
14
+ # support.
15
+ #
16
+ # Parsing a document returns either a Nokogiri::XML::Document, or a
17
+ # Nokogiri::HTML4::Document depending on the kind of document you parse.
18
+ #
19
+ # Here is an example:
20
+ #
21
+ # require 'nokogiri'
22
+ # require 'open-uri'
23
+ #
24
+ # # Get a Nokogiri::HTML4::Document for the page we’re interested in...
25
+ #
26
+ # doc = Nokogiri::HTML4(URI.open('http://www.google.com/search?q=tenderlove'))
27
+ #
28
+ # # Do funky things with it using Nokogiri::XML::Node methods...
29
+ #
30
+ # ####
31
+ # # Search for nodes by css
32
+ # doc.css('h3.r a.l').each do |link|
33
+ # puts link.content
34
+ # end
35
+ #
36
+ # See also:
37
+ #
38
+ # - Nokogiri::XML::Searchable#css for more information about CSS searching
39
+ # - Nokogiri::XML::Searchable#xpath for more information about XPath searching
40
+ module Nokogiri
41
+ class << self
42
+ ###
43
+ # Parse an HTML or XML document. +string+ contains the document.
44
+ def parse(string, url = nil, encoding = nil, options = nil)
45
+ if string.respond_to?(:read) ||
46
+ /^\s*<(?:!DOCTYPE\s+)?html[\s>]/i.match?(string[0, 512])
47
+ # Expect an HTML indicator to appear within the first 512
48
+ # characters of a document. (<?xml ?> + <?xml-stylesheet ?>
49
+ # shouldn't be that long)
50
+ Nokogiri.HTML4(string, url, encoding,
51
+ options || XML::ParseOptions::DEFAULT_HTML)
52
+ else
53
+ Nokogiri.XML(string, url, encoding,
54
+ options || XML::ParseOptions::DEFAULT_XML)
55
+ end.tap do |doc|
56
+ yield doc if block_given?
57
+ end
58
+ end
59
+
60
+ ###
61
+ # Create a new Nokogiri::XML::DocumentFragment
62
+ def make(input = nil, opts = {}, &blk)
63
+ if input
64
+ Nokogiri::HTML4.fragment(input).children.first
65
+ else
66
+ Nokogiri(&blk)
67
+ end
68
+ end
69
+
70
+ ###
71
+ # Parse a document and add the Slop decorator. The Slop decorator
72
+ # implements method_missing such that methods may be used instead of CSS
73
+ # or XPath. For example:
74
+ #
75
+ # doc = Nokogiri::Slop(<<-eohtml)
76
+ # <html>
77
+ # <body>
78
+ # <p>first</p>
79
+ # <p>second</p>
80
+ # </body>
81
+ # </html>
82
+ # eohtml
83
+ # assert_equal('second', doc.html.body.p[1].text)
84
+ #
85
+ def Slop(*args, &block)
86
+ Nokogiri(*args, &block).slop!
87
+ end
88
+
89
+ # :nodoc:
90
+ def install_default_aliases
91
+ # Make sure to support some popular encoding aliases not known by
92
+ # all iconv implementations.
93
+ {
94
+ "Windows-31J" => "CP932", # Windows-31J is the IANA registered name of CP932.
95
+ }.each do |alias_name, name|
96
+ EncodingHandler.alias(name, alias_name) if EncodingHandler[alias_name].nil?
97
+ end
98
+ end
99
+ end
100
+
101
+ Nokogiri.install_default_aliases
102
+ end
103
+
104
+ ###
105
+ # Parse a document contained in +args+. Nokogiri will try to guess what type of document you are
106
+ # attempting to parse. For more information, see Nokogiri.parse
107
+ #
108
+ # To specify the type of document, use {Nokogiri.XML}, {Nokogiri.HTML4}, or {Nokogiri.HTML5}.
109
+ def Nokogiri(*args, &block)
110
+ if block
111
+ Nokogiri::HTML4::Builder.new(&block).doc.root
112
+ else
113
+ Nokogiri.parse(*args)
114
+ end
115
+ end
116
+
117
+ require_relative "nokogiri/version"
118
+ require_relative "nokogiri/class_resolver"
119
+ require_relative "nokogiri/syntax_error"
120
+ require_relative "nokogiri/xml"
121
+ require_relative "nokogiri/xslt"
122
+ require_relative "nokogiri/html4"
123
+ require_relative "nokogiri/html"
124
+ require_relative "nokogiri/decorators/slop"
125
+ require_relative "nokogiri/css"
126
+ require_relative "nokogiri/html4/builder"
127
+
128
+ require_relative "nokogiri/html5" if Nokogiri.uses_gumbo?