nokogiri 1.10.7 → 1.16.0

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 (224) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +42 -0
  3. data/LICENSE-DEPENDENCIES.md +1632 -1022
  4. data/LICENSE.md +1 -1
  5. data/README.md +188 -96
  6. data/bin/nokogiri +63 -50
  7. data/dependencies.yml +34 -66
  8. data/ext/nokogiri/depend +38 -358
  9. data/ext/nokogiri/extconf.rb +862 -421
  10. data/ext/nokogiri/gumbo.c +594 -0
  11. data/ext/nokogiri/html4_document.c +165 -0
  12. data/ext/nokogiri/html4_element_description.c +299 -0
  13. data/ext/nokogiri/html4_entity_lookup.c +37 -0
  14. data/ext/nokogiri/html4_sax_parser_context.c +108 -0
  15. data/ext/nokogiri/html4_sax_push_parser.c +95 -0
  16. data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
  17. data/ext/nokogiri/nokogiri.c +251 -105
  18. data/ext/nokogiri/nokogiri.h +222 -90
  19. data/ext/nokogiri/test_global_handlers.c +40 -0
  20. data/ext/nokogiri/xml_attr.c +17 -17
  21. data/ext/nokogiri/xml_attribute_decl.c +22 -22
  22. data/ext/nokogiri/xml_cdata.c +39 -31
  23. data/ext/nokogiri/xml_comment.c +20 -27
  24. data/ext/nokogiri/xml_document.c +408 -243
  25. data/ext/nokogiri/xml_document_fragment.c +13 -17
  26. data/ext/nokogiri/xml_dtd.c +64 -58
  27. data/ext/nokogiri/xml_element_content.c +63 -55
  28. data/ext/nokogiri/xml_element_decl.c +31 -31
  29. data/ext/nokogiri/xml_encoding_handler.c +54 -21
  30. data/ext/nokogiri/xml_entity_decl.c +37 -35
  31. data/ext/nokogiri/xml_entity_reference.c +17 -19
  32. data/ext/nokogiri/xml_namespace.c +131 -61
  33. data/ext/nokogiri/xml_node.c +1343 -674
  34. data/ext/nokogiri/xml_node_set.c +246 -216
  35. data/ext/nokogiri/xml_processing_instruction.c +18 -20
  36. data/ext/nokogiri/xml_reader.c +305 -213
  37. data/ext/nokogiri/xml_relax_ng.c +87 -78
  38. data/ext/nokogiri/xml_sax_parser.c +149 -124
  39. data/ext/nokogiri/xml_sax_parser_context.c +149 -103
  40. data/ext/nokogiri/xml_sax_push_parser.c +65 -37
  41. data/ext/nokogiri/xml_schema.c +138 -82
  42. data/ext/nokogiri/xml_syntax_error.c +42 -21
  43. data/ext/nokogiri/xml_text.c +35 -26
  44. data/ext/nokogiri/xml_xpath_context.c +363 -178
  45. data/ext/nokogiri/xslt_stylesheet.c +335 -189
  46. data/gumbo-parser/CHANGES.md +63 -0
  47. data/gumbo-parser/Makefile +126 -0
  48. data/gumbo-parser/THANKS +27 -0
  49. data/gumbo-parser/src/Makefile +34 -0
  50. data/gumbo-parser/src/README.md +41 -0
  51. data/gumbo-parser/src/ascii.c +75 -0
  52. data/gumbo-parser/src/ascii.h +115 -0
  53. data/gumbo-parser/src/attribute.c +42 -0
  54. data/gumbo-parser/src/attribute.h +17 -0
  55. data/gumbo-parser/src/char_ref.c +22225 -0
  56. data/gumbo-parser/src/char_ref.h +29 -0
  57. data/gumbo-parser/src/char_ref.rl +2154 -0
  58. data/gumbo-parser/src/error.c +630 -0
  59. data/gumbo-parser/src/error.h +148 -0
  60. data/gumbo-parser/src/foreign_attrs.c +103 -0
  61. data/gumbo-parser/src/foreign_attrs.gperf +27 -0
  62. data/gumbo-parser/src/insertion_mode.h +33 -0
  63. data/gumbo-parser/src/macros.h +91 -0
  64. data/gumbo-parser/src/nokogiri_gumbo.h +944 -0
  65. data/gumbo-parser/src/parser.c +4891 -0
  66. data/gumbo-parser/src/parser.h +41 -0
  67. data/gumbo-parser/src/replacement.h +33 -0
  68. data/gumbo-parser/src/string_buffer.c +103 -0
  69. data/gumbo-parser/src/string_buffer.h +68 -0
  70. data/gumbo-parser/src/string_piece.c +48 -0
  71. data/gumbo-parser/src/svg_attrs.c +174 -0
  72. data/gumbo-parser/src/svg_attrs.gperf +77 -0
  73. data/gumbo-parser/src/svg_tags.c +137 -0
  74. data/gumbo-parser/src/svg_tags.gperf +55 -0
  75. data/gumbo-parser/src/tag.c +223 -0
  76. data/gumbo-parser/src/tag_lookup.c +382 -0
  77. data/gumbo-parser/src/tag_lookup.gperf +170 -0
  78. data/gumbo-parser/src/tag_lookup.h +13 -0
  79. data/gumbo-parser/src/token_buffer.c +79 -0
  80. data/gumbo-parser/src/token_buffer.h +71 -0
  81. data/gumbo-parser/src/token_type.h +17 -0
  82. data/gumbo-parser/src/tokenizer.c +3464 -0
  83. data/gumbo-parser/src/tokenizer.h +112 -0
  84. data/gumbo-parser/src/tokenizer_states.h +339 -0
  85. data/gumbo-parser/src/utf8.c +245 -0
  86. data/gumbo-parser/src/utf8.h +164 -0
  87. data/gumbo-parser/src/util.c +66 -0
  88. data/gumbo-parser/src/util.h +34 -0
  89. data/gumbo-parser/src/vector.c +111 -0
  90. data/gumbo-parser/src/vector.h +45 -0
  91. data/lib/nokogiri/class_resolver.rb +67 -0
  92. data/lib/nokogiri/css/node.rb +10 -8
  93. data/lib/nokogiri/css/parser.rb +397 -377
  94. data/lib/nokogiri/css/parser.y +250 -245
  95. data/lib/nokogiri/css/parser_extras.rb +54 -49
  96. data/lib/nokogiri/css/syntax_error.rb +3 -1
  97. data/lib/nokogiri/css/tokenizer.rb +5 -3
  98. data/lib/nokogiri/css/tokenizer.rex +3 -2
  99. data/lib/nokogiri/css/xpath_visitor.rb +205 -96
  100. data/lib/nokogiri/css.rb +56 -17
  101. data/lib/nokogiri/decorators/slop.rb +9 -7
  102. data/lib/nokogiri/encoding_handler.rb +57 -0
  103. data/lib/nokogiri/extension.rb +32 -0
  104. data/lib/nokogiri/gumbo.rb +15 -0
  105. data/lib/nokogiri/html.rb +38 -27
  106. data/lib/nokogiri/{html → html4}/builder.rb +4 -2
  107. data/lib/nokogiri/html4/document.rb +214 -0
  108. data/lib/nokogiri/html4/document_fragment.rb +54 -0
  109. data/lib/nokogiri/{html → html4}/element_description.rb +3 -1
  110. data/lib/nokogiri/html4/element_description_defaults.rb +2040 -0
  111. data/lib/nokogiri/html4/encoding_reader.rb +121 -0
  112. data/lib/nokogiri/{html → html4}/entity_lookup.rb +4 -2
  113. data/lib/nokogiri/{html → html4}/sax/parser.rb +17 -16
  114. data/lib/nokogiri/html4/sax/parser_context.rb +20 -0
  115. data/lib/nokogiri/{html → html4}/sax/push_parser.rb +12 -11
  116. data/lib/nokogiri/html4.rb +47 -0
  117. data/lib/nokogiri/html5/document.rb +168 -0
  118. data/lib/nokogiri/html5/document_fragment.rb +90 -0
  119. data/lib/nokogiri/html5/node.rb +103 -0
  120. data/lib/nokogiri/html5.rb +326 -0
  121. data/lib/nokogiri/jruby/dependencies.rb +3 -0
  122. data/lib/nokogiri/jruby/nokogiri_jars.rb +43 -0
  123. data/lib/nokogiri/syntax_error.rb +2 -0
  124. data/lib/nokogiri/version/constant.rb +6 -0
  125. data/lib/nokogiri/version/info.rb +224 -0
  126. data/lib/nokogiri/version.rb +3 -108
  127. data/lib/nokogiri/xml/attr.rb +55 -3
  128. data/lib/nokogiri/xml/attribute_decl.rb +6 -2
  129. data/lib/nokogiri/xml/builder.rb +75 -34
  130. data/lib/nokogiri/xml/cdata.rb +3 -1
  131. data/lib/nokogiri/xml/character_data.rb +2 -0
  132. data/lib/nokogiri/xml/document.rb +312 -127
  133. data/lib/nokogiri/xml/document_fragment.rb +93 -48
  134. data/lib/nokogiri/xml/dtd.rb +4 -2
  135. data/lib/nokogiri/xml/element_content.rb +12 -2
  136. data/lib/nokogiri/xml/element_decl.rb +6 -2
  137. data/lib/nokogiri/xml/entity_decl.rb +7 -3
  138. data/lib/nokogiri/xml/entity_reference.rb +2 -0
  139. data/lib/nokogiri/xml/namespace.rb +44 -0
  140. data/lib/nokogiri/xml/node/save_options.rb +23 -8
  141. data/lib/nokogiri/xml/node.rb +1096 -419
  142. data/lib/nokogiri/xml/node_set.rb +137 -61
  143. data/lib/nokogiri/xml/notation.rb +13 -0
  144. data/lib/nokogiri/xml/parse_options.rb +145 -52
  145. data/lib/nokogiri/xml/pp/character_data.rb +9 -6
  146. data/lib/nokogiri/xml/pp/node.rb +42 -30
  147. data/lib/nokogiri/xml/pp.rb +4 -2
  148. data/lib/nokogiri/xml/processing_instruction.rb +4 -1
  149. data/lib/nokogiri/xml/reader.rb +21 -28
  150. data/lib/nokogiri/xml/relax_ng.rb +8 -2
  151. data/lib/nokogiri/xml/sax/document.rb +45 -49
  152. data/lib/nokogiri/xml/sax/parser.rb +39 -36
  153. data/lib/nokogiri/xml/sax/parser_context.rb +8 -3
  154. data/lib/nokogiri/xml/sax/push_parser.rb +6 -5
  155. data/lib/nokogiri/xml/sax.rb +6 -4
  156. data/lib/nokogiri/xml/schema.rb +19 -9
  157. data/lib/nokogiri/xml/searchable.rb +120 -72
  158. data/lib/nokogiri/xml/syntax_error.rb +7 -5
  159. data/lib/nokogiri/xml/text.rb +2 -0
  160. data/lib/nokogiri/xml/xpath/syntax_error.rb +4 -2
  161. data/lib/nokogiri/xml/xpath.rb +15 -4
  162. data/lib/nokogiri/xml/xpath_context.rb +3 -3
  163. data/lib/nokogiri/xml.rb +39 -38
  164. data/lib/nokogiri/xslt/stylesheet.rb +3 -1
  165. data/lib/nokogiri/xslt.rb +101 -22
  166. data/lib/nokogiri.rb +59 -75
  167. data/lib/xsd/xmlparser/nokogiri.rb +29 -25
  168. data/patches/libxml2/{0004-libxml2.la-is-in-top_builddir.patch → 0003-libxml2.la-is-in-top_builddir.patch} +1 -1
  169. data/patches/libxml2/0009-allow-wildcard-namespaces.patch +77 -0
  170. data/patches/libxml2/0010-update-config.guess-and-config.sub-for-libxml2.patch +224 -0
  171. data/patches/libxml2/0011-rip-out-libxml2-s-libc_single_threaded-support.patch +30 -0
  172. data/patches/libxslt/0001-update-config.guess-and-config.sub-for-libxslt.patch +224 -0
  173. data/ports/archives/libxml2-2.12.3.tar.xz +0 -0
  174. data/ports/archives/libxslt-1.1.39.tar.xz +0 -0
  175. metadata +121 -291
  176. data/ext/nokogiri/html_document.c +0 -170
  177. data/ext/nokogiri/html_document.h +0 -10
  178. data/ext/nokogiri/html_element_description.c +0 -279
  179. data/ext/nokogiri/html_element_description.h +0 -10
  180. data/ext/nokogiri/html_entity_lookup.c +0 -32
  181. data/ext/nokogiri/html_entity_lookup.h +0 -8
  182. data/ext/nokogiri/html_sax_parser_context.c +0 -116
  183. data/ext/nokogiri/html_sax_parser_context.h +0 -11
  184. data/ext/nokogiri/html_sax_push_parser.c +0 -87
  185. data/ext/nokogiri/html_sax_push_parser.h +0 -9
  186. data/ext/nokogiri/xml_attr.h +0 -9
  187. data/ext/nokogiri/xml_attribute_decl.h +0 -9
  188. data/ext/nokogiri/xml_cdata.h +0 -9
  189. data/ext/nokogiri/xml_comment.h +0 -9
  190. data/ext/nokogiri/xml_document.h +0 -23
  191. data/ext/nokogiri/xml_document_fragment.h +0 -10
  192. data/ext/nokogiri/xml_dtd.h +0 -10
  193. data/ext/nokogiri/xml_element_content.h +0 -10
  194. data/ext/nokogiri/xml_element_decl.h +0 -9
  195. data/ext/nokogiri/xml_encoding_handler.h +0 -8
  196. data/ext/nokogiri/xml_entity_decl.h +0 -10
  197. data/ext/nokogiri/xml_entity_reference.h +0 -9
  198. data/ext/nokogiri/xml_io.c +0 -61
  199. data/ext/nokogiri/xml_io.h +0 -11
  200. data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
  201. data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
  202. data/ext/nokogiri/xml_namespace.h +0 -14
  203. data/ext/nokogiri/xml_node.h +0 -13
  204. data/ext/nokogiri/xml_node_set.h +0 -12
  205. data/ext/nokogiri/xml_processing_instruction.h +0 -9
  206. data/ext/nokogiri/xml_reader.h +0 -10
  207. data/ext/nokogiri/xml_relax_ng.h +0 -9
  208. data/ext/nokogiri/xml_sax_parser.h +0 -39
  209. data/ext/nokogiri/xml_sax_parser_context.h +0 -10
  210. data/ext/nokogiri/xml_sax_push_parser.h +0 -9
  211. data/ext/nokogiri/xml_schema.h +0 -9
  212. data/ext/nokogiri/xml_syntax_error.h +0 -13
  213. data/ext/nokogiri/xml_text.h +0 -9
  214. data/ext/nokogiri/xml_xpath_context.h +0 -10
  215. data/ext/nokogiri/xslt_stylesheet.h +0 -14
  216. data/lib/nokogiri/html/document.rb +0 -335
  217. data/lib/nokogiri/html/document_fragment.rb +0 -49
  218. data/lib/nokogiri/html/element_description_defaults.rb +0 -671
  219. data/lib/nokogiri/html/sax/parser_context.rb +0 -16
  220. data/patches/libxml2/0001-Revert-Do-not-URI-escape-in-server-side-includes.patch +0 -78
  221. data/ports/archives/libxml2-2.9.10.tar.gz +0 -0
  222. data/ports/archives/libxslt-1.1.34.tar.gz +0 -0
  223. /data/patches/libxml2/{0002-Remove-script-macro-support.patch → 0001-Remove-script-macro-support.patch} +0 -0
  224. /data/patches/libxml2/{0003-Update-entities-to-remove-handling-of-ssi.patch → 0002-Update-entities-to-remove-handling-of-ssi.patch} +0 -0
@@ -1,11 +1,13 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Nokogiri
2
4
  module XML
3
5
  class << self
4
6
  ###
5
7
  # Create a new Nokogiri::XML::Schema object using a +string_or_io+
6
8
  # object.
7
- def Schema string_or_io
8
- Schema.new(string_or_io)
9
+ def Schema(string_or_io, options = ParseOptions::DEFAULT_SCHEMA)
10
+ Schema.new(string_or_io, options)
9
11
  end
10
12
  end
11
13
 
@@ -26,15 +28,23 @@ module Nokogiri
26
28
  # end
27
29
  #
28
30
  # The list of errors are Nokogiri::XML::SyntaxError objects.
31
+ #
32
+ # NOTE: As of v1.11.0, Schema treats inputs as UNTRUSTED by default, and so external entities
33
+ # are not resolved from the network (`http://` or `ftp://`). Previously, parsing treated
34
+ # documents as "trusted" by default which was counter to Nokogiri's "untrusted by default"
35
+ # security policy. If a document is trusted, then the caller may turn off the NONET option via
36
+ # the ParseOptions to re-enable external entity resolution over a network connection.
29
37
  class Schema
30
38
  # Errors while parsing the schema file
31
39
  attr_accessor :errors
40
+ # The Nokogiri::XML::ParseOptions used to parse the schema
41
+ attr_accessor :parse_options
32
42
 
33
43
  ###
34
44
  # Create a new Nokogiri::XML::Schema object using a +string_or_io+
35
45
  # object.
36
- def self.new string_or_io
37
- from_document Nokogiri::XML(string_or_io)
46
+ def self.new(string_or_io, options = ParseOptions::DEFAULT_SCHEMA)
47
+ from_document(Nokogiri::XML(string_or_io), options)
38
48
  end
39
49
 
40
50
  ###
@@ -42,9 +52,9 @@ module Nokogiri
42
52
  # Nokogiri::XML::Document object, or a filename. An Array of
43
53
  # Nokogiri::XML::SyntaxError objects found while validating the
44
54
  # +thing+ is returned.
45
- def validate thing
46
- if thing.is_a?(Nokogiri::XML::Document)
47
- validate_document(thing)
55
+ def validate(thing)
56
+ if thing.is_a?(Nokogiri::XML::Document)
57
+ validate_document(thing)
48
58
  elsif File.file?(thing)
49
59
  validate_file(thing)
50
60
  else
@@ -55,8 +65,8 @@ module Nokogiri
55
65
  ###
56
66
  # Returns true if +thing+ is a valid Nokogiri::XML::Document or
57
67
  # file.
58
- def valid? thing
59
- validate(thing).length == 0
68
+ def valid?(thing)
69
+ validate(thing).empty?
60
70
  end
61
71
  end
62
72
  end
@@ -1,19 +1,25 @@
1
+ # coding: utf-8
2
+ # frozen_string_literal: true
3
+
1
4
  module Nokogiri
2
5
  module XML
3
6
  #
4
7
  # The Searchable module declares the interface used for searching your DOM.
5
8
  #
6
- # It implements the public methods `search`, `css`, and `xpath`,
9
+ # It implements the public methods #search, #css, and #xpath,
7
10
  # as well as allowing specific implementations to specialize some
8
11
  # of the important behaviors.
9
12
  #
10
13
  module Searchable
11
14
  # Regular expression used by Searchable#search to determine if a query
12
15
  # string is CSS or XPath
13
- LOOKS_LIKE_XPATH = /^(\.\/|\/|\.\.|\.$)/
14
-
16
+ LOOKS_LIKE_XPATH = %r{^(\./|/|\.\.|\.$)}
17
+
18
+ # :section: Searching via XPath or CSS Queries
19
+
15
20
  ###
16
- # call-seq: search *paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class]
21
+ # call-seq:
22
+ # search(*paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class])
17
23
  #
18
24
  # Search this object for +paths+. +paths+ must be one or more XPath or CSS queries:
19
25
  #
@@ -24,52 +30,56 @@ module Nokogiri
24
30
  # node.search('.//bike:tire', {'bike' => 'http://schwinn.com/'})
25
31
  # node.search('bike|tire', {'bike' => 'http://schwinn.com/'})
26
32
  #
27
- # For XPath queries, a hash of variable bindings may also be
28
- # appended to the namespace bindings. For example:
33
+ # For XPath queries, a hash of variable bindings may also be appended to the namespace
34
+ # bindings. For example:
29
35
  #
30
36
  # node.search('.//address[@domestic=$value]', nil, {:value => 'Yes'})
31
37
  #
32
- # Custom XPath functions and CSS pseudo-selectors may also be
33
- # defined. To define custom functions create a class and
34
- # implement the function you want to define. The first argument
35
- # to the method will be the current matching NodeSet. Any other
36
- # arguments are ones that you pass in. Note that this class may
37
- # appear anywhere in the argument list. For example:
38
- #
39
- # node.search('.//title[regex(., "\w+")]', 'div.employee:regex("[0-9]+")'
40
- # Class.new {
41
- # def regex node_set, regex
42
- # node_set.find_all { |node| node['some_attribute'] =~ /#{regex}/ }
43
- # end
44
- # }.new
45
- # )
38
+ # 💡 Custom XPath functions and CSS pseudo-selectors may also be defined. To define custom
39
+ # functions create a class and implement the function you want to define, which will be in the
40
+ # `nokogiri` namespace in XPath queries.
41
+ #
42
+ # The first argument to the method will be the current matching NodeSet. Any other arguments
43
+ # are ones that you pass in. Note that this class may appear anywhere in the argument
44
+ # list. For example:
45
+ #
46
+ # handler = Class.new {
47
+ # def regex node_set, regex
48
+ # node_set.find_all { |node| node['some_attribute'] =~ /#{regex}/ }
49
+ # end
50
+ # }.new
51
+ # node.search('.//title[nokogiri:regex(., "\w+")]', 'div.employee:regex("[0-9]+")', handler)
46
52
  #
47
53
  # See Searchable#xpath and Searchable#css for further usage help.
48
- def search *args
54
+ def search(*args)
49
55
  paths, handler, ns, binds = extract_params(args)
50
56
 
51
57
  xpaths = paths.map(&:to_s).map do |path|
52
- (path =~ LOOKS_LIKE_XPATH) ? path : xpath_query_from_css_rule(path, ns)
58
+ LOOKS_LIKE_XPATH.match?(path) ? path : xpath_query_from_css_rule(path, ns)
53
59
  end.flatten.uniq
54
60
 
55
61
  xpath(*(xpaths + [ns, handler, binds].compact))
56
62
  end
57
- alias :/ :search
63
+
64
+ alias_method :/, :search
58
65
 
59
66
  ###
60
- # call-seq: search *paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class]
67
+ # call-seq:
68
+ # at(*paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class])
61
69
  #
62
70
  # Search this object for +paths+, and return only the first
63
71
  # result. +paths+ must be one or more XPath or CSS queries.
64
72
  #
65
73
  # See Searchable#search for more information.
66
- def at *args
74
+ def at(*args)
67
75
  search(*args).first
68
76
  end
69
- alias :% :at
77
+
78
+ alias_method :%, :at
70
79
 
71
80
  ###
72
- # call-seq: css *rules, [namespace-bindings, custom-pseudo-class]
81
+ # call-seq:
82
+ # css(*rules, [namespace-bindings, custom-pseudo-class])
73
83
  #
74
84
  # Search this object for CSS +rules+. +rules+ must be one or more CSS
75
85
  # selectors. For example:
@@ -82,44 +92,61 @@ module Nokogiri
82
92
  #
83
93
  # node.css('bike|tire', {'bike' => 'http://schwinn.com/'})
84
94
  #
85
- # Custom CSS pseudo classes may also be defined. To define
86
- # custom pseudo classes, create a class and implement the custom
87
- # pseudo class you want defined. The first argument to the
88
- # method will be the current matching NodeSet. Any other
89
- # arguments are ones that you pass in. For example:
95
+ # 💡 Custom CSS pseudo classes may also be defined which are mapped to a custom XPath
96
+ # function. To define custom pseudo classes, create a class and implement the custom pseudo
97
+ # class you want defined. The first argument to the method will be the matching context
98
+ # NodeSet. Any other arguments are ones that you pass in. For example:
90
99
  #
91
- # node.css('title:regex("\w+")', Class.new {
92
- # def regex node_set, regex
100
+ # handler = Class.new {
101
+ # def regex(node_set, regex)
93
102
  # node_set.find_all { |node| node['some_attribute'] =~ /#{regex}/ }
94
103
  # end
95
- # }.new)
104
+ # }.new
105
+ # node.css('title:regex("\w+")', handler)
106
+ #
107
+ # 💡 Some XPath syntax is supported in CSS queries. For example, to query for an attribute:
96
108
  #
97
- # Note that the CSS query string is case-sensitive with regards
98
- # to your document type. That is, if you're looking for "H1" in
99
- # an HTML document, you'll never find anything, since HTML tags
100
- # will match only lowercase CSS queries. However, "H1" might be
101
- # found in an XML document, where tags names are case-sensitive
102
- # (e.g., "H1" is distinct from "h1").
109
+ # node.css('img > @href') # returns all +href+ attributes on an +img+ element
110
+ # node.css('img / @href') # same
103
111
  #
104
- def css *args
112
+ # # this returns +class+ attributes from all +div+ elements AND THEIR CHILDREN!
113
+ # node.css('div @class')
114
+ #
115
+ # node.css
116
+ #
117
+ # 💡 Array-like syntax is supported in CSS queries as an alternative to using +:nth-child()+.
118
+ #
119
+ # ⚠ NOTE that indices are 1-based like +:nth-child+ and not 0-based like Ruby Arrays. For
120
+ # example:
121
+ #
122
+ # # equivalent to 'li:nth-child(2)'
123
+ # node.css('li[2]') # retrieve the second li element in a list
124
+ #
125
+ # ⚠ NOTE that the CSS query string is case-sensitive with regards to your document type. HTML
126
+ # tags will match only lowercase CSS queries, so if you search for "H1" in an HTML document,
127
+ # you'll never find anything. However, "H1" might be found in an XML document, where tags
128
+ # names are case-sensitive (e.g., "H1" is distinct from "h1").
129
+ def css(*args)
105
130
  rules, handler, ns, _ = extract_params(args)
106
131
 
107
- css_internal self, rules, handler, ns
132
+ css_internal(self, rules, handler, ns)
108
133
  end
109
134
 
110
135
  ##
111
- # call-seq: css *rules, [namespace-bindings, custom-pseudo-class]
136
+ # call-seq:
137
+ # at_css(*rules, [namespace-bindings, custom-pseudo-class])
112
138
  #
113
139
  # Search this object for CSS +rules+, and return only the first
114
140
  # match. +rules+ must be one or more CSS selectors.
115
141
  #
116
142
  # See Searchable#css for more information.
117
- def at_css *args
143
+ def at_css(*args)
118
144
  css(*args).first
119
145
  end
120
146
 
121
147
  ###
122
- # call-seq: xpath *paths, [namespace-bindings, variable-bindings, custom-handler-class]
148
+ # call-seq:
149
+ # xpath(*paths, [namespace-bindings, variable-bindings, custom-handler-class])
123
150
  #
124
151
  # Search this node for XPath +paths+. +paths+ must be one or more XPath
125
152
  # queries.
@@ -135,43 +162,56 @@ module Nokogiri
135
162
  #
136
163
  # node.xpath('.//address[@domestic=$value]', nil, {:value => 'Yes'})
137
164
  #
138
- # Custom XPath functions may also be defined. To define custom
139
- # functions create a class and implement the function you want
140
- # to define. The first argument to the method will be the
141
- # current matching NodeSet. Any other arguments are ones that
142
- # you pass in. Note that this class may appear anywhere in the
143
- # argument list. For example:
165
+ # 💡 Custom XPath functions may also be defined. To define custom functions create a class and
166
+ # implement the function you want to define, which will be in the `nokogiri` namespace.
144
167
  #
145
- # node.xpath('.//title[regex(., "\w+")]', Class.new {
146
- # def regex node_set, regex
168
+ # The first argument to the method will be the current matching NodeSet. Any other arguments
169
+ # are ones that you pass in. Note that this class may appear anywhere in the argument
170
+ # list. For example:
171
+ #
172
+ # handler = Class.new {
173
+ # def regex(node_set, regex)
147
174
  # node_set.find_all { |node| node['some_attribute'] =~ /#{regex}/ }
148
175
  # end
149
- # }.new)
176
+ # }.new
177
+ # node.xpath('.//title[nokogiri:regex(., "\w+")]', handler)
150
178
  #
151
- def xpath *args
179
+ def xpath(*args)
152
180
  paths, handler, ns, binds = extract_params(args)
153
181
 
154
- xpath_internal self, paths, handler, ns, binds
182
+ xpath_internal(self, paths, handler, ns, binds)
155
183
  end
156
184
 
157
185
  ##
158
- # call-seq: xpath *paths, [namespace-bindings, variable-bindings, custom-handler-class]
186
+ # call-seq:
187
+ # at_xpath(*paths, [namespace-bindings, variable-bindings, custom-handler-class])
159
188
  #
160
189
  # Search this node for XPath +paths+, and return only the first
161
190
  # match. +paths+ must be one or more XPath queries.
162
191
  #
163
192
  # See Searchable#xpath for more information.
164
- def at_xpath *args
193
+ def at_xpath(*args)
165
194
  xpath(*args).first
166
195
  end
167
196
 
197
+ # :call-seq:
198
+ # >(selector) → NodeSet
199
+ #
200
+ # Search this node's immediate children using CSS selector +selector+
201
+ def >(selector) # rubocop:disable Naming/BinaryOperatorParameterName
202
+ ns = document.root&.namespaces || {}
203
+ xpath(CSS.xpath_for(selector, prefix: "./", ns: ns).first)
204
+ end
205
+
206
+ # :section:
207
+
168
208
  private
169
209
 
170
- def css_internal node, rules, handler, ns
171
- xpath_internal node, css_rules_to_xpath(rules, ns), handler, ns, nil
210
+ def css_internal(node, rules, handler, ns)
211
+ xpath_internal(node, css_rules_to_xpath(rules, ns), handler, ns, nil)
172
212
  end
173
213
 
174
- def xpath_internal node, paths, handler, ns, binds
214
+ def xpath_internal(node, paths, handler, ns, binds)
175
215
  document = node.document
176
216
  return NodeSet.new(document) unless document
177
217
 
@@ -186,14 +226,14 @@ module Nokogiri
186
226
  end
187
227
  end
188
228
 
189
- def xpath_impl node, path, handler, ns, binds
229
+ def xpath_impl(node, path, handler, ns, binds)
190
230
  ctx = XPathContext.new(node)
191
231
  ctx.register_namespaces(ns)
192
- path = path.gsub(/xmlns:/, ' :') unless Nokogiri.uses_libxml?
232
+ path = path.gsub("xmlns:", " :") unless Nokogiri.uses_libxml?
193
233
 
194
- binds.each do |key,value|
195
- ctx.register_variable key.to_s, value
196
- end if binds
234
+ binds&.each do |key, value|
235
+ ctx.register_variable(key.to_s, value)
236
+ end
197
237
 
198
238
  ctx.evaluate(path, handler)
199
239
  end
@@ -202,13 +242,21 @@ module Nokogiri
202
242
  rules.map { |rule| xpath_query_from_css_rule(rule, ns) }
203
243
  end
204
244
 
205
- def xpath_query_from_css_rule rule, ns
245
+ def xpath_query_from_css_rule(rule, ns)
246
+ visitor = Nokogiri::CSS::XPathVisitor.new(
247
+ builtins: Nokogiri::CSS::XPathVisitor::BuiltinsConfig::OPTIMAL,
248
+ doctype: document.xpath_doctype,
249
+ )
206
250
  self.class::IMPLIED_XPATH_CONTEXTS.map do |implied_xpath_context|
207
- CSS.xpath_for(rule.to_s, :prefix => implied_xpath_context, :ns => ns)
208
- end.join(' | ')
251
+ CSS.xpath_for(rule.to_s, {
252
+ prefix: implied_xpath_context,
253
+ ns: ns,
254
+ visitor: visitor,
255
+ })
256
+ end.join(" | ")
209
257
  end
210
258
 
211
- def extract_params params # :nodoc:
259
+ def extract_params(params) # :nodoc:
212
260
  handler = params.find do |param|
213
261
  ![Hash, String, Symbol].include?(param.class)
214
262
  end
@@ -221,7 +269,7 @@ module Nokogiri
221
269
  end
222
270
  ns, binds = hashes.reverse
223
271
 
224
- ns ||= document.root ? document.root.namespaces : {}
272
+ ns ||= document.root&.namespaces || {}
225
273
 
226
274
  [params, handler, ns, binds]
227
275
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Nokogiri
2
4
  module XML
3
5
  ###
@@ -41,9 +43,9 @@ module Nokogiri
41
43
 
42
44
  def to_s
43
45
  message = super.chomp
44
- [location_to_s, level_to_s, message].
45
- compact.join(": ").
46
- force_encoding(message.encoding)
46
+ [location_to_s, level_to_s, message]
47
+ .compact.join(": ")
48
+ .force_encoding(message.encoding)
47
49
  end
48
50
 
49
51
  private
@@ -53,7 +55,6 @@ module Nokogiri
53
55
  when 3 then "FATAL"
54
56
  when 2 then "ERROR"
55
57
  when 1 then "WARNING"
56
- else nil
57
58
  end
58
59
  end
59
60
 
@@ -62,7 +63,8 @@ module Nokogiri
62
63
  end
63
64
 
64
65
  def location_to_s
65
- return nil if nil_or_zero?(line) && nil_or_zero?(column)
66
+ return if nil_or_zero?(line) && nil_or_zero?(column)
67
+
66
68
  "#{line}:#{column}"
67
69
  end
68
70
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Nokogiri
2
4
  module XML
3
5
  class Text < Nokogiri::XML::CharacterData
@@ -1,9 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Nokogiri
2
4
  module XML
3
- class XPath
5
+ module XPath
4
6
  class SyntaxError < XML::SyntaxError
5
7
  def to_s
6
- [super.chomp, str1].compact.join(': ')
8
+ [super.chomp, str1].compact.join(": ")
7
9
  end
8
10
  end
9
11
  end
@@ -1,10 +1,21 @@
1
- require 'nokogiri/xml/xpath/syntax_error'
1
+ # frozen_string_literal: true
2
2
 
3
3
  module Nokogiri
4
4
  module XML
5
- class XPath
6
- # The Nokogiri::XML::Document tied to this XPath instance
7
- attr_accessor :document
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 = ".//"
8
17
  end
9
18
  end
10
19
  end
20
+
21
+ require_relative "xpath/syntax_error"
@@ -1,16 +1,16 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Nokogiri
2
4
  module XML
3
5
  class XPathContext
4
-
5
6
  ###
6
7
  # Register namespaces in +namespaces+
7
8
  def register_namespaces(namespaces)
8
9
  namespaces.each do |k, v|
9
- k = k.to_s.gsub(/.*:/,'') # strip off 'xmlns:' or 'xml:'
10
+ k = k.to_s.gsub(/.*:/, "") # strip off 'xmlns:' or 'xml:'
10
11
  register_ns(k, v)
11
12
  end
12
13
  end
13
-
14
14
  end
15
15
  end
16
16
  end
data/lib/nokogiri/xml.rb CHANGED
@@ -1,75 +1,76 @@
1
- require 'nokogiri/xml/pp'
2
- require 'nokogiri/xml/parse_options'
3
- require 'nokogiri/xml/sax'
4
- require 'nokogiri/xml/searchable'
5
- require 'nokogiri/xml/node'
6
- require 'nokogiri/xml/attribute_decl'
7
- require 'nokogiri/xml/element_decl'
8
- require 'nokogiri/xml/element_content'
9
- require 'nokogiri/xml/character_data'
10
- require 'nokogiri/xml/namespace'
11
- require 'nokogiri/xml/attr'
12
- require 'nokogiri/xml/dtd'
13
- require 'nokogiri/xml/cdata'
14
- require 'nokogiri/xml/text'
15
- require 'nokogiri/xml/document'
16
- require 'nokogiri/xml/document_fragment'
17
- require 'nokogiri/xml/processing_instruction'
18
- require 'nokogiri/xml/node_set'
19
- require 'nokogiri/xml/syntax_error'
20
- require 'nokogiri/xml/xpath'
21
- require 'nokogiri/xml/xpath_context'
22
- require 'nokogiri/xml/builder'
23
- require 'nokogiri/xml/reader'
24
- require 'nokogiri/xml/notation'
25
- require 'nokogiri/xml/entity_decl'
26
- require 'nokogiri/xml/entity_reference'
27
- require 'nokogiri/xml/schema'
28
- require 'nokogiri/xml/relax_ng'
1
+ # frozen_string_literal: true
29
2
 
30
3
  module Nokogiri
31
4
  class << self
32
5
  ###
33
6
  # Parse XML. Convenience method for Nokogiri::XML::Document.parse
34
- def XML thing, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_XML, &block
7
+ def XML(thing, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_XML, &block)
35
8
  Nokogiri::XML::Document.parse(thing, url, encoding, options, &block)
36
9
  end
37
10
  end
38
11
 
39
12
  module XML
40
13
  # Original C14N 1.0 spec canonicalization
41
- XML_C14N_1_0 = 0
14
+ XML_C14N_1_0 = 0
42
15
  # Exclusive C14N 1.0 spec canonicalization
43
- XML_C14N_EXCLUSIVE_1_0 = 1
16
+ XML_C14N_EXCLUSIVE_1_0 = 1
44
17
  # C14N 1.1 spec canonicalization
45
18
  XML_C14N_1_1 = 2
46
19
  class << self
47
20
  ###
48
21
  # Parse an XML document using the Nokogiri::XML::Reader API. See
49
22
  # Nokogiri::XML::Reader for mor information
50
- def Reader string_or_io, url = nil, encoding = nil, options = ParseOptions::STRICT
51
-
23
+ def Reader(string_or_io, url = nil, encoding = nil, options = ParseOptions::STRICT)
52
24
  options = Nokogiri::XML::ParseOptions.new(options) if Integer === options
53
- # Give the options to the user
54
25
  yield options if block_given?
55
26
 
56
- if string_or_io.respond_to? :read
27
+ if string_or_io.respond_to?(:read)
57
28
  return Reader.from_io(string_or_io, url, encoding, options.to_i)
58
29
  end
30
+
59
31
  Reader.from_memory(string_or_io, url, encoding, options.to_i)
60
32
  end
61
33
 
62
34
  ###
63
35
  # Parse XML. Convenience method for Nokogiri::XML::Document.parse
64
- def parse thing, url = nil, encoding = nil, options = ParseOptions::DEFAULT_XML, &block
36
+ def parse(thing, url = nil, encoding = nil, options = ParseOptions::DEFAULT_XML, &block)
65
37
  Document.parse(thing, url, encoding, options, &block)
66
38
  end
67
39
 
68
40
  ####
69
41
  # Parse a fragment from +string+ in to a NodeSet.
70
- def fragment string
71
- XML::DocumentFragment.parse(string)
42
+ def fragment(string, options = ParseOptions::DEFAULT_XML, &block)
43
+ XML::DocumentFragment.parse(string, options, &block)
72
44
  end
73
45
  end
74
46
  end
75
47
  end
48
+
49
+ require_relative "xml/pp"
50
+ require_relative "xml/parse_options"
51
+ require_relative "xml/sax"
52
+ require_relative "xml/searchable"
53
+ require_relative "xml/node"
54
+ require_relative "xml/attribute_decl"
55
+ require_relative "xml/element_decl"
56
+ require_relative "xml/element_content"
57
+ require_relative "xml/character_data"
58
+ require_relative "xml/namespace"
59
+ require_relative "xml/attr"
60
+ require_relative "xml/dtd"
61
+ require_relative "xml/cdata"
62
+ require_relative "xml/text"
63
+ require_relative "xml/document"
64
+ require_relative "xml/document_fragment"
65
+ require_relative "xml/processing_instruction"
66
+ require_relative "xml/node_set"
67
+ require_relative "xml/syntax_error"
68
+ require_relative "xml/xpath"
69
+ require_relative "xml/xpath_context"
70
+ require_relative "xml/builder"
71
+ require_relative "xml/reader"
72
+ require_relative "xml/notation"
73
+ require_relative "xml/entity_decl"
74
+ require_relative "xml/entity_reference"
75
+ require_relative "xml/schema"
76
+ require_relative "xml/relax_ng"
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Nokogiri
2
4
  module XSLT
3
5
  ###
@@ -17,7 +19,7 @@ module Nokogiri
17
19
  # Apply an XSLT stylesheet to an XML::Document.
18
20
  # +params+ is an array of strings used as XSLT parameters.
19
21
  # returns serialized document
20
- def apply_to document, params = []
22
+ def apply_to(document, params = [])
21
23
  serialize(transform(document, params))
22
24
  end
23
25
  end