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.
- checksums.yaml +4 -4
- data/Gemfile +42 -0
- data/LICENSE-DEPENDENCIES.md +1632 -1022
- data/LICENSE.md +1 -1
- data/README.md +188 -96
- data/bin/nokogiri +63 -50
- data/dependencies.yml +34 -66
- data/ext/nokogiri/depend +38 -358
- data/ext/nokogiri/extconf.rb +862 -421
- data/ext/nokogiri/gumbo.c +594 -0
- data/ext/nokogiri/html4_document.c +165 -0
- data/ext/nokogiri/html4_element_description.c +299 -0
- data/ext/nokogiri/html4_entity_lookup.c +37 -0
- data/ext/nokogiri/html4_sax_parser_context.c +108 -0
- data/ext/nokogiri/html4_sax_push_parser.c +95 -0
- data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
- data/ext/nokogiri/nokogiri.c +251 -105
- data/ext/nokogiri/nokogiri.h +222 -90
- data/ext/nokogiri/test_global_handlers.c +40 -0
- data/ext/nokogiri/xml_attr.c +17 -17
- data/ext/nokogiri/xml_attribute_decl.c +22 -22
- data/ext/nokogiri/xml_cdata.c +39 -31
- data/ext/nokogiri/xml_comment.c +20 -27
- data/ext/nokogiri/xml_document.c +408 -243
- data/ext/nokogiri/xml_document_fragment.c +13 -17
- data/ext/nokogiri/xml_dtd.c +64 -58
- data/ext/nokogiri/xml_element_content.c +63 -55
- data/ext/nokogiri/xml_element_decl.c +31 -31
- data/ext/nokogiri/xml_encoding_handler.c +54 -21
- data/ext/nokogiri/xml_entity_decl.c +37 -35
- data/ext/nokogiri/xml_entity_reference.c +17 -19
- data/ext/nokogiri/xml_namespace.c +131 -61
- data/ext/nokogiri/xml_node.c +1343 -674
- data/ext/nokogiri/xml_node_set.c +246 -216
- data/ext/nokogiri/xml_processing_instruction.c +18 -20
- data/ext/nokogiri/xml_reader.c +305 -213
- data/ext/nokogiri/xml_relax_ng.c +87 -78
- data/ext/nokogiri/xml_sax_parser.c +149 -124
- data/ext/nokogiri/xml_sax_parser_context.c +149 -103
- data/ext/nokogiri/xml_sax_push_parser.c +65 -37
- data/ext/nokogiri/xml_schema.c +138 -82
- data/ext/nokogiri/xml_syntax_error.c +42 -21
- data/ext/nokogiri/xml_text.c +35 -26
- data/ext/nokogiri/xml_xpath_context.c +363 -178
- data/ext/nokogiri/xslt_stylesheet.c +335 -189
- data/gumbo-parser/CHANGES.md +63 -0
- data/gumbo-parser/Makefile +126 -0
- data/gumbo-parser/THANKS +27 -0
- data/gumbo-parser/src/Makefile +34 -0
- data/gumbo-parser/src/README.md +41 -0
- data/gumbo-parser/src/ascii.c +75 -0
- data/gumbo-parser/src/ascii.h +115 -0
- data/gumbo-parser/src/attribute.c +42 -0
- data/gumbo-parser/src/attribute.h +17 -0
- data/gumbo-parser/src/char_ref.c +22225 -0
- data/gumbo-parser/src/char_ref.h +29 -0
- data/gumbo-parser/src/char_ref.rl +2154 -0
- data/gumbo-parser/src/error.c +630 -0
- data/gumbo-parser/src/error.h +148 -0
- data/gumbo-parser/src/foreign_attrs.c +103 -0
- data/gumbo-parser/src/foreign_attrs.gperf +27 -0
- data/gumbo-parser/src/insertion_mode.h +33 -0
- data/gumbo-parser/src/macros.h +91 -0
- data/gumbo-parser/src/nokogiri_gumbo.h +944 -0
- data/gumbo-parser/src/parser.c +4891 -0
- data/gumbo-parser/src/parser.h +41 -0
- data/gumbo-parser/src/replacement.h +33 -0
- data/gumbo-parser/src/string_buffer.c +103 -0
- data/gumbo-parser/src/string_buffer.h +68 -0
- data/gumbo-parser/src/string_piece.c +48 -0
- data/gumbo-parser/src/svg_attrs.c +174 -0
- data/gumbo-parser/src/svg_attrs.gperf +77 -0
- data/gumbo-parser/src/svg_tags.c +137 -0
- data/gumbo-parser/src/svg_tags.gperf +55 -0
- data/gumbo-parser/src/tag.c +223 -0
- data/gumbo-parser/src/tag_lookup.c +382 -0
- data/gumbo-parser/src/tag_lookup.gperf +170 -0
- data/gumbo-parser/src/tag_lookup.h +13 -0
- data/gumbo-parser/src/token_buffer.c +79 -0
- data/gumbo-parser/src/token_buffer.h +71 -0
- data/gumbo-parser/src/token_type.h +17 -0
- data/gumbo-parser/src/tokenizer.c +3464 -0
- data/gumbo-parser/src/tokenizer.h +112 -0
- data/gumbo-parser/src/tokenizer_states.h +339 -0
- data/gumbo-parser/src/utf8.c +245 -0
- data/gumbo-parser/src/utf8.h +164 -0
- data/gumbo-parser/src/util.c +66 -0
- data/gumbo-parser/src/util.h +34 -0
- data/gumbo-parser/src/vector.c +111 -0
- data/gumbo-parser/src/vector.h +45 -0
- data/lib/nokogiri/class_resolver.rb +67 -0
- data/lib/nokogiri/css/node.rb +10 -8
- data/lib/nokogiri/css/parser.rb +397 -377
- data/lib/nokogiri/css/parser.y +250 -245
- data/lib/nokogiri/css/parser_extras.rb +54 -49
- data/lib/nokogiri/css/syntax_error.rb +3 -1
- data/lib/nokogiri/css/tokenizer.rb +5 -3
- data/lib/nokogiri/css/tokenizer.rex +3 -2
- data/lib/nokogiri/css/xpath_visitor.rb +205 -96
- data/lib/nokogiri/css.rb +56 -17
- data/lib/nokogiri/decorators/slop.rb +9 -7
- data/lib/nokogiri/encoding_handler.rb +57 -0
- data/lib/nokogiri/extension.rb +32 -0
- data/lib/nokogiri/gumbo.rb +15 -0
- data/lib/nokogiri/html.rb +38 -27
- data/lib/nokogiri/{html → html4}/builder.rb +4 -2
- data/lib/nokogiri/html4/document.rb +214 -0
- data/lib/nokogiri/html4/document_fragment.rb +54 -0
- data/lib/nokogiri/{html → html4}/element_description.rb +3 -1
- data/lib/nokogiri/html4/element_description_defaults.rb +2040 -0
- data/lib/nokogiri/html4/encoding_reader.rb +121 -0
- data/lib/nokogiri/{html → html4}/entity_lookup.rb +4 -2
- data/lib/nokogiri/{html → html4}/sax/parser.rb +17 -16
- data/lib/nokogiri/html4/sax/parser_context.rb +20 -0
- data/lib/nokogiri/{html → html4}/sax/push_parser.rb +12 -11
- data/lib/nokogiri/html4.rb +47 -0
- data/lib/nokogiri/html5/document.rb +168 -0
- data/lib/nokogiri/html5/document_fragment.rb +90 -0
- data/lib/nokogiri/html5/node.rb +103 -0
- data/lib/nokogiri/html5.rb +326 -0
- data/lib/nokogiri/jruby/dependencies.rb +3 -0
- data/lib/nokogiri/jruby/nokogiri_jars.rb +43 -0
- data/lib/nokogiri/syntax_error.rb +2 -0
- data/lib/nokogiri/version/constant.rb +6 -0
- data/lib/nokogiri/version/info.rb +224 -0
- data/lib/nokogiri/version.rb +3 -108
- data/lib/nokogiri/xml/attr.rb +55 -3
- data/lib/nokogiri/xml/attribute_decl.rb +6 -2
- data/lib/nokogiri/xml/builder.rb +75 -34
- data/lib/nokogiri/xml/cdata.rb +3 -1
- data/lib/nokogiri/xml/character_data.rb +2 -0
- data/lib/nokogiri/xml/document.rb +312 -127
- data/lib/nokogiri/xml/document_fragment.rb +93 -48
- data/lib/nokogiri/xml/dtd.rb +4 -2
- data/lib/nokogiri/xml/element_content.rb +12 -2
- data/lib/nokogiri/xml/element_decl.rb +6 -2
- data/lib/nokogiri/xml/entity_decl.rb +7 -3
- data/lib/nokogiri/xml/entity_reference.rb +2 -0
- data/lib/nokogiri/xml/namespace.rb +44 -0
- data/lib/nokogiri/xml/node/save_options.rb +23 -8
- data/lib/nokogiri/xml/node.rb +1096 -419
- data/lib/nokogiri/xml/node_set.rb +137 -61
- data/lib/nokogiri/xml/notation.rb +13 -0
- data/lib/nokogiri/xml/parse_options.rb +145 -52
- data/lib/nokogiri/xml/pp/character_data.rb +9 -6
- data/lib/nokogiri/xml/pp/node.rb +42 -30
- data/lib/nokogiri/xml/pp.rb +4 -2
- data/lib/nokogiri/xml/processing_instruction.rb +4 -1
- data/lib/nokogiri/xml/reader.rb +21 -28
- data/lib/nokogiri/xml/relax_ng.rb +8 -2
- data/lib/nokogiri/xml/sax/document.rb +45 -49
- data/lib/nokogiri/xml/sax/parser.rb +39 -36
- data/lib/nokogiri/xml/sax/parser_context.rb +8 -3
- data/lib/nokogiri/xml/sax/push_parser.rb +6 -5
- data/lib/nokogiri/xml/sax.rb +6 -4
- data/lib/nokogiri/xml/schema.rb +19 -9
- data/lib/nokogiri/xml/searchable.rb +120 -72
- data/lib/nokogiri/xml/syntax_error.rb +7 -5
- data/lib/nokogiri/xml/text.rb +2 -0
- data/lib/nokogiri/xml/xpath/syntax_error.rb +4 -2
- data/lib/nokogiri/xml/xpath.rb +15 -4
- data/lib/nokogiri/xml/xpath_context.rb +3 -3
- data/lib/nokogiri/xml.rb +39 -38
- data/lib/nokogiri/xslt/stylesheet.rb +3 -1
- data/lib/nokogiri/xslt.rb +101 -22
- data/lib/nokogiri.rb +59 -75
- data/lib/xsd/xmlparser/nokogiri.rb +29 -25
- data/patches/libxml2/{0004-libxml2.la-is-in-top_builddir.patch → 0003-libxml2.la-is-in-top_builddir.patch} +1 -1
- data/patches/libxml2/0009-allow-wildcard-namespaces.patch +77 -0
- data/patches/libxml2/0010-update-config.guess-and-config.sub-for-libxml2.patch +224 -0
- data/patches/libxml2/0011-rip-out-libxml2-s-libc_single_threaded-support.patch +30 -0
- data/patches/libxslt/0001-update-config.guess-and-config.sub-for-libxslt.patch +224 -0
- data/ports/archives/libxml2-2.12.3.tar.xz +0 -0
- data/ports/archives/libxslt-1.1.39.tar.xz +0 -0
- metadata +121 -291
- data/ext/nokogiri/html_document.c +0 -170
- data/ext/nokogiri/html_document.h +0 -10
- data/ext/nokogiri/html_element_description.c +0 -279
- data/ext/nokogiri/html_element_description.h +0 -10
- data/ext/nokogiri/html_entity_lookup.c +0 -32
- data/ext/nokogiri/html_entity_lookup.h +0 -8
- data/ext/nokogiri/html_sax_parser_context.c +0 -116
- data/ext/nokogiri/html_sax_parser_context.h +0 -11
- data/ext/nokogiri/html_sax_push_parser.c +0 -87
- data/ext/nokogiri/html_sax_push_parser.h +0 -9
- data/ext/nokogiri/xml_attr.h +0 -9
- data/ext/nokogiri/xml_attribute_decl.h +0 -9
- data/ext/nokogiri/xml_cdata.h +0 -9
- data/ext/nokogiri/xml_comment.h +0 -9
- data/ext/nokogiri/xml_document.h +0 -23
- data/ext/nokogiri/xml_document_fragment.h +0 -10
- data/ext/nokogiri/xml_dtd.h +0 -10
- data/ext/nokogiri/xml_element_content.h +0 -10
- data/ext/nokogiri/xml_element_decl.h +0 -9
- data/ext/nokogiri/xml_encoding_handler.h +0 -8
- data/ext/nokogiri/xml_entity_decl.h +0 -10
- data/ext/nokogiri/xml_entity_reference.h +0 -9
- data/ext/nokogiri/xml_io.c +0 -61
- data/ext/nokogiri/xml_io.h +0 -11
- data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
- data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
- data/ext/nokogiri/xml_namespace.h +0 -14
- data/ext/nokogiri/xml_node.h +0 -13
- data/ext/nokogiri/xml_node_set.h +0 -12
- data/ext/nokogiri/xml_processing_instruction.h +0 -9
- data/ext/nokogiri/xml_reader.h +0 -10
- data/ext/nokogiri/xml_relax_ng.h +0 -9
- data/ext/nokogiri/xml_sax_parser.h +0 -39
- data/ext/nokogiri/xml_sax_parser_context.h +0 -10
- data/ext/nokogiri/xml_sax_push_parser.h +0 -9
- data/ext/nokogiri/xml_schema.h +0 -9
- data/ext/nokogiri/xml_syntax_error.h +0 -13
- data/ext/nokogiri/xml_text.h +0 -9
- data/ext/nokogiri/xml_xpath_context.h +0 -10
- data/ext/nokogiri/xslt_stylesheet.h +0 -14
- data/lib/nokogiri/html/document.rb +0 -335
- data/lib/nokogiri/html/document_fragment.rb +0 -49
- data/lib/nokogiri/html/element_description_defaults.rb +0 -671
- data/lib/nokogiri/html/sax/parser_context.rb +0 -16
- data/patches/libxml2/0001-Revert-Do-not-URI-escape-in-server-side-includes.patch +0 -78
- data/ports/archives/libxml2-2.9.10.tar.gz +0 -0
- data/ports/archives/libxslt-1.1.34.tar.gz +0 -0
- /data/patches/libxml2/{0002-Remove-script-macro-support.patch → 0001-Remove-script-macro-support.patch} +0 -0
- /data/patches/libxml2/{0003-Update-entities-to-remove-handling-of-ssi.patch → 0002-Update-entities-to-remove-handling-of-ssi.patch} +0 -0
data/lib/nokogiri/xml/schema.rb
CHANGED
@@ -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
|
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
|
37
|
-
from_document
|
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
|
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?
|
59
|
-
validate(thing).
|
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
|
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:
|
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
|
-
#
|
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
|
-
#
|
34
|
-
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
# appear anywhere in the argument
|
38
|
-
#
|
39
|
-
#
|
40
|
-
#
|
41
|
-
#
|
42
|
-
#
|
43
|
-
#
|
44
|
-
#
|
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
|
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
|
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
|
-
|
63
|
+
|
64
|
+
alias_method :/, :search
|
58
65
|
|
59
66
|
###
|
60
|
-
# call-seq:
|
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
|
74
|
+
def at(*args)
|
67
75
|
search(*args).first
|
68
76
|
end
|
69
|
-
|
77
|
+
|
78
|
+
alias_method :%, :at
|
70
79
|
|
71
80
|
###
|
72
|
-
# call-seq:
|
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
|
86
|
-
# custom pseudo classes, create a class and implement the custom
|
87
|
-
#
|
88
|
-
#
|
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
|
-
#
|
92
|
-
# def 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
|
-
#
|
98
|
-
#
|
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
|
-
|
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
|
132
|
+
css_internal(self, rules, handler, ns)
|
108
133
|
end
|
109
134
|
|
110
135
|
##
|
111
|
-
# call-seq:
|
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
|
143
|
+
def at_css(*args)
|
118
144
|
css(*args).first
|
119
145
|
end
|
120
146
|
|
121
147
|
###
|
122
|
-
# call-seq:
|
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.
|
139
|
-
#
|
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
|
-
#
|
146
|
-
#
|
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
|
179
|
+
def xpath(*args)
|
152
180
|
paths, handler, ns, binds = extract_params(args)
|
153
181
|
|
154
|
-
xpath_internal
|
182
|
+
xpath_internal(self, paths, handler, ns, binds)
|
155
183
|
end
|
156
184
|
|
157
185
|
##
|
158
|
-
# call-seq:
|
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
|
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
|
171
|
-
xpath_internal
|
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
|
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
|
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(
|
232
|
+
path = path.gsub("xmlns:", " :") unless Nokogiri.uses_libxml?
|
193
233
|
|
194
|
-
binds
|
195
|
-
ctx.register_variable
|
196
|
-
end
|
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
|
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,
|
208
|
-
|
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
|
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
|
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
|
66
|
+
return if nil_or_zero?(line) && nil_or_zero?(column)
|
67
|
+
|
66
68
|
"#{line}:#{column}"
|
67
69
|
end
|
68
70
|
end
|
data/lib/nokogiri/xml/text.rb
CHANGED
data/lib/nokogiri/xml/xpath.rb
CHANGED
@@ -1,10 +1,21 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module Nokogiri
|
4
4
|
module XML
|
5
|
-
|
6
|
-
# The
|
7
|
-
|
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(/.*:/,
|
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
|
-
|
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
|
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 =
|
14
|
+
XML_C14N_1_0 = 0
|
42
15
|
# Exclusive C14N 1.0 spec canonicalization
|
43
|
-
XML_C14N_EXCLUSIVE_1_0 =
|
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
|
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?
|
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
|
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
|
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
|
22
|
+
def apply_to(document, params = [])
|
21
23
|
serialize(transform(document, params))
|
22
24
|
end
|
23
25
|
end
|