nokogiri 1.11.0.rc3-x86-linux → 1.11.0.rc4-x86-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.
- checksums.yaml +4 -4
- data/LICENSE-DEPENDENCIES.md +1015 -947
- data/README.md +1 -1
- data/ext/nokogiri/depend +476 -357
- data/ext/nokogiri/extconf.rb +441 -321
- data/ext/nokogiri/html_document.c +79 -78
- data/ext/nokogiri/html_sax_parser_context.c +2 -2
- data/ext/nokogiri/include/libexslt/exslt.h +102 -0
- data/ext/nokogiri/include/libexslt/exsltconfig.h +70 -0
- data/ext/nokogiri/include/libexslt/exsltexports.h +140 -0
- data/ext/nokogiri/include/libxml2/libxml/DOCBparser.h +96 -0
- data/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +306 -0
- data/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +147 -0
- data/ext/nokogiri/include/libxml2/libxml/SAX.h +173 -0
- data/ext/nokogiri/include/libxml2/libxml/SAX2.h +178 -0
- data/ext/nokogiri/include/libxml2/libxml/c14n.h +126 -0
- data/ext/nokogiri/include/libxml2/libxml/catalog.h +182 -0
- data/ext/nokogiri/include/libxml2/libxml/chvalid.h +230 -0
- data/ext/nokogiri/include/libxml2/libxml/debugXML.h +217 -0
- data/ext/nokogiri/include/libxml2/libxml/dict.h +79 -0
- data/ext/nokogiri/include/libxml2/libxml/encoding.h +245 -0
- data/ext/nokogiri/include/libxml2/libxml/entities.h +151 -0
- data/ext/nokogiri/include/libxml2/libxml/globals.h +508 -0
- data/ext/nokogiri/include/libxml2/libxml/hash.h +236 -0
- data/ext/nokogiri/include/libxml2/libxml/list.h +137 -0
- data/ext/nokogiri/include/libxml2/libxml/nanoftp.h +163 -0
- data/ext/nokogiri/include/libxml2/libxml/nanohttp.h +81 -0
- data/ext/nokogiri/include/libxml2/libxml/parser.h +1241 -0
- data/ext/nokogiri/include/libxml2/libxml/parserInternals.h +644 -0
- data/ext/nokogiri/include/libxml2/libxml/pattern.h +100 -0
- data/ext/nokogiri/include/libxml2/libxml/relaxng.h +217 -0
- data/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +958 -0
- data/ext/nokogiri/include/libxml2/libxml/schematron.h +142 -0
- data/ext/nokogiri/include/libxml2/libxml/threads.h +89 -0
- data/ext/nokogiri/include/libxml2/libxml/tree.h +1311 -0
- data/ext/nokogiri/include/libxml2/libxml/uri.h +94 -0
- data/ext/nokogiri/include/libxml2/libxml/valid.h +458 -0
- data/ext/nokogiri/include/libxml2/libxml/xinclude.h +129 -0
- data/ext/nokogiri/include/libxml2/libxml/xlink.h +189 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +366 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +146 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlerror.h +945 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +153 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +224 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +57 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlreader.h +428 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +222 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlsave.h +88 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +246 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +151 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlstring.h +140 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +202 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +485 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +488 -0
- data/ext/nokogiri/include/libxml2/libxml/xpath.h +566 -0
- data/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +632 -0
- data/ext/nokogiri/include/libxml2/libxml/xpointer.h +114 -0
- data/ext/nokogiri/include/libxslt/attributes.h +38 -0
- data/ext/nokogiri/include/libxslt/documents.h +93 -0
- data/ext/nokogiri/include/libxslt/extensions.h +262 -0
- data/ext/nokogiri/include/libxslt/extra.h +72 -0
- data/ext/nokogiri/include/libxslt/functions.h +78 -0
- data/ext/nokogiri/include/libxslt/imports.h +75 -0
- data/ext/nokogiri/include/libxslt/keys.h +53 -0
- data/ext/nokogiri/include/libxslt/namespaces.h +68 -0
- data/ext/nokogiri/include/libxslt/numbersInternals.h +73 -0
- data/ext/nokogiri/include/libxslt/pattern.h +84 -0
- data/ext/nokogiri/include/libxslt/preproc.h +43 -0
- data/ext/nokogiri/include/libxslt/security.h +104 -0
- data/ext/nokogiri/include/libxslt/templates.h +77 -0
- data/ext/nokogiri/include/libxslt/transform.h +207 -0
- data/ext/nokogiri/include/libxslt/variables.h +118 -0
- data/ext/nokogiri/include/libxslt/xslt.h +110 -0
- data/ext/nokogiri/include/libxslt/xsltInternals.h +1978 -0
- data/ext/nokogiri/include/libxslt/xsltconfig.h +180 -0
- data/ext/nokogiri/include/libxslt/xsltexports.h +142 -0
- data/ext/nokogiri/include/libxslt/xsltlocale.h +76 -0
- data/ext/nokogiri/include/libxslt/xsltutils.h +313 -0
- data/ext/nokogiri/nokogiri.c +34 -46
- data/ext/nokogiri/nokogiri.h +22 -26
- data/ext/nokogiri/xml_document.c +2 -2
- data/ext/nokogiri/xml_node.c +1 -1
- data/ext/nokogiri/xml_node_set.c +1 -1
- data/ext/nokogiri/xml_relax_ng.c +29 -11
- data/ext/nokogiri/xml_sax_parser.c +2 -7
- data/ext/nokogiri/xml_sax_parser_context.c +2 -2
- data/ext/nokogiri/xml_schema.c +55 -13
- data/ext/nokogiri/xml_xpath_context.c +80 -4
- data/ext/nokogiri/xslt_stylesheet.c +1 -4
- data/lib/nokogiri.rb +1 -1
- data/lib/nokogiri/2.5/nokogiri.so +0 -0
- data/lib/nokogiri/2.6/nokogiri.so +0 -0
- data/lib/nokogiri/2.7/nokogiri.so +0 -0
- data/lib/nokogiri/3.0/nokogiri.so +0 -0
- data/lib/nokogiri/css/parser.rb +3 -3
- data/lib/nokogiri/css/parser.y +2 -2
- data/lib/nokogiri/css/xpath_visitor.rb +70 -42
- data/lib/nokogiri/html/document.rb +12 -26
- data/lib/nokogiri/version.rb +2 -149
- data/lib/nokogiri/version/constant.rb +5 -0
- data/lib/nokogiri/version/info.rb +182 -0
- data/lib/nokogiri/xml/document.rb +17 -7
- data/lib/nokogiri/xml/document_fragment.rb +4 -6
- data/lib/nokogiri/xml/node.rb +50 -27
- data/lib/nokogiri/xml/parse_options.rb +6 -0
- data/lib/nokogiri/xml/relax_ng.rb +6 -2
- data/lib/nokogiri/xml/schema.rb +12 -4
- data/lib/nokogiri/xml/searchable.rb +3 -1
- metadata +105 -28
- data/lib/nokogiri/2.4/nokogiri.so +0 -0
@@ -1,6 +1,11 @@
|
|
1
1
|
#include <xml_xpath_context.h>
|
2
2
|
|
3
|
-
|
3
|
+
/*
|
4
|
+
* these constants have matching declarations in
|
5
|
+
* ext/java/nokogiri/internals/NokogiriNamespaceContext.java
|
6
|
+
*/
|
7
|
+
static const xmlChar *NOKOGIRI_BUILTIN_PREFIX = (const xmlChar *)"nokogiri-builtin";
|
8
|
+
static const xmlChar *NOKOGIRI_BUILTIN_URI = (const xmlChar *)"https://www.nokogiri.org/default_ns/ruby/builtins";
|
4
9
|
|
5
10
|
static void deallocate(xmlXPathContextPtr ctx)
|
6
11
|
{
|
@@ -9,6 +14,73 @@ static void deallocate(xmlXPathContextPtr ctx)
|
|
9
14
|
NOKOGIRI_DEBUG_END(ctx);
|
10
15
|
}
|
11
16
|
|
17
|
+
/* find a CSS class in an HTML element's `class` attribute */
|
18
|
+
const xmlChar* builtin_css_class(const xmlChar* str, const xmlChar *val)
|
19
|
+
{
|
20
|
+
int val_len;
|
21
|
+
|
22
|
+
if (str == NULL) { return(NULL); }
|
23
|
+
if (val == NULL) { return(NULL); }
|
24
|
+
|
25
|
+
val_len = xmlStrlen(val);
|
26
|
+
if (val_len == 0) { return(str); }
|
27
|
+
|
28
|
+
while (*str != 0) {
|
29
|
+
if ((*str == *val) && !xmlStrncmp(str, val, val_len)) {
|
30
|
+
const xmlChar* next_byte = str + val_len;
|
31
|
+
|
32
|
+
/* only match if the next byte is whitespace or end of string */
|
33
|
+
if ((*next_byte == 0) || (IS_BLANK_CH(*next_byte))) {
|
34
|
+
return((const xmlChar*)str);
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
/* advance str to whitespace */
|
39
|
+
while ((*str != 0) && !IS_BLANK_CH(*str)) {
|
40
|
+
str++;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* advance str to start of next word or end of string */
|
44
|
+
while ((*str != 0) && IS_BLANK_CH(*str)) {
|
45
|
+
str++;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
return(NULL);
|
50
|
+
}
|
51
|
+
|
52
|
+
/* xmlXPathFunction to wrap builtin_css_class() */
|
53
|
+
static void xpath_builtin_css_class(xmlXPathParserContextPtr ctxt, int nargs)
|
54
|
+
{
|
55
|
+
xmlXPathObjectPtr hay, needle;
|
56
|
+
|
57
|
+
CHECK_ARITY(2);
|
58
|
+
|
59
|
+
CAST_TO_STRING;
|
60
|
+
needle = valuePop(ctxt);
|
61
|
+
if ((needle == NULL) || (needle->type != XPATH_STRING)) {
|
62
|
+
xmlXPathFreeObject(needle);
|
63
|
+
XP_ERROR(XPATH_INVALID_TYPE);
|
64
|
+
}
|
65
|
+
|
66
|
+
CAST_TO_STRING;
|
67
|
+
hay = valuePop(ctxt);
|
68
|
+
if ((hay == NULL) || (hay->type != XPATH_STRING)) {
|
69
|
+
xmlXPathFreeObject(hay);
|
70
|
+
xmlXPathFreeObject(needle);
|
71
|
+
XP_ERROR(XPATH_INVALID_TYPE);
|
72
|
+
}
|
73
|
+
|
74
|
+
if (builtin_css_class(hay->stringval, needle->stringval)) {
|
75
|
+
valuePush(ctxt, xmlXPathNewBoolean(1));
|
76
|
+
} else {
|
77
|
+
valuePush(ctxt, xmlXPathNewBoolean(0));
|
78
|
+
}
|
79
|
+
|
80
|
+
xmlXPathFreeObject(hay);
|
81
|
+
xmlXPathFreeObject(needle);
|
82
|
+
}
|
83
|
+
|
12
84
|
/*
|
13
85
|
* call-seq:
|
14
86
|
* register_ns(prefix, uri)
|
@@ -263,14 +335,18 @@ static VALUE new(VALUE klass, VALUE nodeobj)
|
|
263
335
|
xmlXPathContextPtr ctx;
|
264
336
|
VALUE self;
|
265
337
|
|
266
|
-
xmlXPathInit();
|
267
|
-
|
268
338
|
Data_Get_Struct(nodeobj, xmlNode, node);
|
269
339
|
|
340
|
+
xmlXPathInit();
|
341
|
+
|
270
342
|
ctx = xmlXPathNewContext(node->doc);
|
271
343
|
ctx->node = node;
|
344
|
+
|
345
|
+
xmlXPathRegisterNs(ctx, NOKOGIRI_BUILTIN_PREFIX, NOKOGIRI_BUILTIN_URI);
|
346
|
+
xmlXPathRegisterFuncNS(ctx, (const xmlChar *)"css-class", NOKOGIRI_BUILTIN_URI,
|
347
|
+
xpath_builtin_css_class);
|
348
|
+
|
272
349
|
self = Data_Wrap_Struct(klass, 0, deallocate, ctx);
|
273
|
-
/*rb_iv_set(self, "@xpath_handler", Qnil); */
|
274
350
|
return self;
|
275
351
|
}
|
276
352
|
|
@@ -7,9 +7,6 @@
|
|
7
7
|
|
8
8
|
VALUE xslt;
|
9
9
|
|
10
|
-
int vasprintf (char **strp, const char *fmt, va_list ap);
|
11
|
-
void vasprintf_free (void *p);
|
12
|
-
|
13
10
|
static void mark(nokogiriXsltStylesheetTuple *wrapper)
|
14
11
|
{
|
15
12
|
rb_gc_mark(wrapper->func_instances);
|
@@ -37,7 +34,7 @@ static void xslt_generic_error_handler(void * ctx, const char *msg, ...)
|
|
37
34
|
|
38
35
|
rb_str_cat2((VALUE)ctx, message);
|
39
36
|
|
40
|
-
|
37
|
+
free(message);
|
41
38
|
}
|
42
39
|
|
43
40
|
VALUE Nokogiri_wrap_xslt_stylesheet(xsltStylesheetPtr ss)
|
data/lib/nokogiri.rb
CHANGED
@@ -113,7 +113,7 @@ module Nokogiri
|
|
113
113
|
end
|
114
114
|
|
115
115
|
###
|
116
|
-
#
|
116
|
+
# Parse a document contained in +args+. Nokogiri will try to guess what
|
117
117
|
# type of document you are attempting to parse. For more information, see
|
118
118
|
# Nokogiri.parse
|
119
119
|
#
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/nokogiri/css/parser.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
#
|
3
3
|
# DO NOT MODIFY!!!!
|
4
|
-
# This file is automatically generated by Racc 1.
|
4
|
+
# This file is automatically generated by Racc 1.5.1
|
5
5
|
# from Racc grammar file "".
|
6
6
|
#
|
7
7
|
|
@@ -476,7 +476,7 @@ def _reduce_26(val, _values, result)
|
|
476
476
|
end
|
477
477
|
|
478
478
|
def _reduce_27(val, _values, result)
|
479
|
-
#
|
479
|
+
# non-standard, from hpricot
|
480
480
|
result = Node.new(:PSEUDO_CLASS,
|
481
481
|
[Node.new(:FUNCTION, ['nth-child(', val[1]])]
|
482
482
|
)
|
@@ -558,7 +558,7 @@ def _reduce_40(val, _values, result)
|
|
558
558
|
when 'n'
|
559
559
|
result = Node.new(:NTH, ['1','n','+','0'])
|
560
560
|
else
|
561
|
-
#
|
561
|
+
# non-standard to support custom functions:
|
562
562
|
# assert_xpath("//a[foo(., @href)]", @parser.parse('a:foo(@href)'))
|
563
563
|
# assert_xpath("//a[foo(., @a, b)]", @parser.parse('a:foo(@a, b)'))
|
564
564
|
# assert_xpath("//a[foo(., a, 10)]", @parser.parse('a:foo(a, 10)'))
|
data/lib/nokogiri/css/parser.y
CHANGED
@@ -88,7 +88,7 @@ rule
|
|
88
88
|
)
|
89
89
|
}
|
90
90
|
| LSQUARE NUMBER RSQUARE {
|
91
|
-
#
|
91
|
+
# non-standard, from hpricot
|
92
92
|
result = Node.new(:PSEUDO_CLASS,
|
93
93
|
[Node.new(:FUNCTION, ['nth-child(', val[1]])]
|
94
94
|
)
|
@@ -139,7 +139,7 @@ rule
|
|
139
139
|
when 'n'
|
140
140
|
result = Node.new(:NTH, ['1','n','+','0'])
|
141
141
|
else
|
142
|
-
#
|
142
|
+
# non-standard to support custom functions:
|
143
143
|
# assert_xpath("//a[foo(., @href)]", @parser.parse('a:foo(@href)'))
|
144
144
|
# assert_xpath("//a[foo(., @a, b)]", @parser.parse('a:foo(@a, b)'))
|
145
145
|
# assert_xpath("//a[foo(., a, 10)]", @parser.parse('a:foo(a, 10)'))
|
@@ -3,7 +3,6 @@ module Nokogiri
|
|
3
3
|
module CSS
|
4
4
|
class XPathVisitor # :nodoc:
|
5
5
|
def visit_function node
|
6
|
-
|
7
6
|
msg = :"visit_function_#{node.value.first.gsub(/[(]/, '')}"
|
8
7
|
return self.send(msg, node) if self.respond_to?(msg)
|
9
8
|
|
@@ -13,50 +12,51 @@ module Nokogiri
|
|
13
12
|
when /^self\(/
|
14
13
|
"self::#{node.value[1]}"
|
15
14
|
when /^eq\(/
|
16
|
-
"position()
|
15
|
+
"position()=#{node.value[1]}"
|
17
16
|
when /^(nth|nth-of-type)\(/
|
18
17
|
if node.value[1].is_a?(Nokogiri::CSS::Node) and node.value[1].type == :NTH
|
19
18
|
nth(node.value[1])
|
20
19
|
else
|
21
|
-
"position()
|
20
|
+
"position()=#{node.value[1]}"
|
22
21
|
end
|
23
22
|
when /^nth-child\(/
|
24
23
|
if node.value[1].is_a?(Nokogiri::CSS::Node) and node.value[1].type == :NTH
|
25
24
|
nth(node.value[1], :child => true)
|
26
25
|
else
|
27
|
-
"count(preceding-sibling::*)
|
26
|
+
"count(preceding-sibling::*)=#{node.value[1].to_i-1}"
|
28
27
|
end
|
29
28
|
when /^nth-last-of-type\(/
|
30
29
|
if node.value[1].is_a?(Nokogiri::CSS::Node) and node.value[1].type == :NTH
|
31
30
|
nth(node.value[1], :last => true)
|
32
31
|
else
|
33
32
|
index = node.value[1].to_i - 1
|
34
|
-
index == 0 ? "position()
|
33
|
+
index == 0 ? "position()=last()" : "position()=last()-#{index}"
|
35
34
|
end
|
36
35
|
when /^nth-last-child\(/
|
37
36
|
if node.value[1].is_a?(Nokogiri::CSS::Node) and node.value[1].type == :NTH
|
38
37
|
nth(node.value[1], :last => true, :child => true)
|
39
38
|
else
|
40
|
-
"count(following-sibling::*)
|
39
|
+
"count(following-sibling::*)=#{node.value[1].to_i-1}"
|
41
40
|
end
|
42
41
|
when /^(first|first-of-type)\(/
|
43
|
-
"position()
|
42
|
+
"position()=1"
|
44
43
|
when /^(last|last-of-type)\(/
|
45
|
-
"position()
|
44
|
+
"position()=last()"
|
46
45
|
when /^contains\(/
|
47
|
-
"contains(
|
46
|
+
"contains(.,#{node.value[1]})"
|
48
47
|
when /^gt\(/
|
49
|
-
"position()
|
48
|
+
"position()>#{node.value[1]}"
|
50
49
|
when /^only-child\(/
|
51
|
-
"last()
|
50
|
+
"last()=1"
|
52
51
|
when /^comment\(/
|
53
52
|
"comment()"
|
54
53
|
when /^has\(/
|
55
54
|
is_direct = node.value[1].value[0].nil? # e.g. "has(> a)", "has(~ a)", "has(+ a)"
|
56
55
|
".#{"//" if !is_direct}#{node.value[1].accept(self)}"
|
57
56
|
else
|
57
|
+
# non-standard. this looks like a function call.
|
58
58
|
args = ['.'] + node.value[1..-1]
|
59
|
-
"#{node.value.first}#{args.join(',
|
59
|
+
"#{node.value.first}#{args.join(',')})"
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
@@ -71,18 +71,18 @@ module Nokogiri
|
|
71
71
|
|
72
72
|
def visit_id node
|
73
73
|
node.value.first =~ /^#(.*)$/
|
74
|
-
"@id
|
74
|
+
"@id='#{$1}'"
|
75
75
|
end
|
76
76
|
|
77
77
|
def visit_attribute_condition node
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
78
|
+
attribute = if (node.value.first.type == :FUNCTION) or (node.value.first.value.first =~ /::/)
|
79
|
+
''
|
80
|
+
else
|
81
|
+
'@'
|
82
|
+
end
|
83
83
|
attribute += node.value.first.accept(self)
|
84
84
|
|
85
|
-
#
|
85
|
+
# non-standard. attributes starting with '@'
|
86
86
|
attribute.gsub!(/^@@/, '@')
|
87
87
|
|
88
88
|
return attribute unless node.value.length == 3
|
@@ -90,29 +90,30 @@ module Nokogiri
|
|
90
90
|
value = node.value.last
|
91
91
|
value = "'#{value}'" if value !~ /^['"]/
|
92
92
|
|
93
|
+
# quoted values - see test_attribute_value_with_quotes in test/css/test_parser.rb
|
93
94
|
if (value[0]==value[-1]) && %q{"'}.include?(value[0])
|
94
95
|
str_value = value[1..-2]
|
95
96
|
if str_value.include?(value[0])
|
96
|
-
value = 'concat("' + str_value.split('"', -1).join(%q{",
|
97
|
+
value = 'concat("' + str_value.split('"', -1).join(%q{",'"',"}) + '","")'
|
97
98
|
end
|
98
99
|
end
|
99
100
|
|
100
101
|
case node.value[1]
|
101
102
|
when :equal
|
102
|
-
attribute + "
|
103
|
+
attribute + "=" + "#{value}"
|
103
104
|
when :not_equal
|
104
|
-
attribute + "
|
105
|
+
attribute + "!=" + "#{value}"
|
105
106
|
when :substring_match
|
106
|
-
"contains(#{attribute}
|
107
|
+
"contains(#{attribute},#{value})"
|
107
108
|
when :prefix_match
|
108
|
-
"starts-with(#{attribute}
|
109
|
+
"starts-with(#{attribute},#{value})"
|
109
110
|
when :dash_match
|
110
|
-
"#{attribute}
|
111
|
+
"#{attribute}=#{value} or starts-with(#{attribute},concat(#{value},'-'))"
|
111
112
|
when :includes
|
112
|
-
|
113
|
+
value = value[1..-2] # strip quotes
|
114
|
+
css_class(attribute, value)
|
113
115
|
when :suffix_match
|
114
|
-
"substring(#{attribute},
|
115
|
-
"string-length(#{value}) + 1, string-length(#{value})) = #{value}"
|
116
|
+
"substring(#{attribute},string-length(#{attribute})-string-length(#{value})+1,string-length(#{value}))=#{value}"
|
116
117
|
else
|
117
118
|
attribute + " #{node.value[1]} " + "#{value}"
|
118
119
|
end
|
@@ -126,14 +127,14 @@ module Nokogiri
|
|
126
127
|
return self.send(msg, node) if self.respond_to?(msg)
|
127
128
|
|
128
129
|
case node.value.first
|
129
|
-
when "first" then "position()
|
130
|
-
when "first-child" then "count(preceding-sibling::*)
|
131
|
-
when "last" then "position()
|
132
|
-
when "last-child" then "count(following-sibling::*)
|
133
|
-
when "first-of-type" then "position()
|
134
|
-
when "last-of-type" then "position()
|
135
|
-
when "only-child" then "count(preceding-sibling::*)
|
136
|
-
when "only-of-type" then "last()
|
130
|
+
when "first" then "position()=1"
|
131
|
+
when "first-child" then "count(preceding-sibling::*)=0"
|
132
|
+
when "last" then "position()=last()"
|
133
|
+
when "last-child" then "count(following-sibling::*)=0"
|
134
|
+
when "first-of-type" then "position()=1"
|
135
|
+
when "last-of-type" then "position()=last()"
|
136
|
+
when "only-child" then "count(preceding-sibling::*)=0 and count(following-sibling::*)=0"
|
137
|
+
when "only-of-type" then "last()=1"
|
137
138
|
when "empty" then "not(node())"
|
138
139
|
when "parent" then "node()"
|
139
140
|
when "root" then "not(parent::*)"
|
@@ -144,7 +145,7 @@ module Nokogiri
|
|
144
145
|
end
|
145
146
|
|
146
147
|
def visit_class_condition node
|
147
|
-
"
|
148
|
+
css_class("@class", node.value.first)
|
148
149
|
end
|
149
150
|
|
150
151
|
def visit_combinator node
|
@@ -181,25 +182,26 @@ module Nokogiri
|
|
181
182
|
node.accept(self)
|
182
183
|
end
|
183
184
|
|
184
|
-
|
185
|
+
private
|
186
|
+
|
185
187
|
def nth node, options={}
|
186
188
|
raise ArgumentError, "expected an+b node to contain 4 tokens, but is #{node.value.inspect}" unless node.value.size == 4
|
187
189
|
|
188
190
|
a, b = read_a_and_positive_b node.value
|
189
191
|
position = if options[:child]
|
190
|
-
options[:last] ? "(count(following-sibling::*)
|
192
|
+
options[:last] ? "(count(following-sibling::*)+1)" : "(count(preceding-sibling::*)+1)"
|
191
193
|
else
|
192
194
|
options[:last] ? "(last()-position()+1)" : "position()"
|
193
195
|
end
|
194
196
|
|
195
197
|
if b.zero?
|
196
|
-
"(#{position} mod #{a})
|
198
|
+
"(#{position} mod #{a})=0"
|
197
199
|
else
|
198
200
|
compare = a < 0 ? "<=" : ">="
|
199
201
|
if a.abs == 1
|
200
|
-
"#{position}
|
202
|
+
"#{position}#{compare}#{b}"
|
201
203
|
else
|
202
|
-
"(#{position}
|
204
|
+
"(#{position}#{compare}#{b}) and (((#{position}-#{b}) mod #{a.abs})=0)"
|
203
205
|
end
|
204
206
|
end
|
205
207
|
end
|
@@ -227,6 +229,32 @@ module Nokogiri
|
|
227
229
|
end =~ /(nth|first|last|only)-of-type(\()?/
|
228
230
|
end
|
229
231
|
end
|
232
|
+
|
233
|
+
# use only ordinary xpath functions
|
234
|
+
def css_class_standard(hay, needle)
|
235
|
+
"contains(concat(' ',normalize-space(#{hay}),' '),' #{needle} ')"
|
236
|
+
end
|
237
|
+
|
238
|
+
# use the builtin implementation
|
239
|
+
def css_class_builtin(hay, needle)
|
240
|
+
"nokogiri-builtin:css-class(#{hay},'#{needle}')"
|
241
|
+
end
|
242
|
+
|
243
|
+
alias_method :css_class, :css_class_standard
|
244
|
+
end
|
245
|
+
|
246
|
+
class XPathVisitorAlwaysUseBuiltins < XPathVisitor # :nodoc:
|
247
|
+
private
|
248
|
+
alias_method :css_class, :css_class_builtin
|
249
|
+
end
|
250
|
+
|
251
|
+
class XPathVisitorOptimallyUseBuiltins < XPathVisitor # :nodoc:
|
252
|
+
private
|
253
|
+
if Nokogiri.uses_libxml?
|
254
|
+
alias_method :css_class, :css_class_builtin
|
255
|
+
else
|
256
|
+
alias_method :css_class, :css_class_standard
|
257
|
+
end
|
230
258
|
end
|
231
259
|
end
|
232
260
|
end
|
@@ -1,4 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'pathname'
|
4
|
+
|
2
5
|
module Nokogiri
|
3
6
|
module HTML
|
4
7
|
class Document < Nokogiri::XML::Document
|
@@ -161,11 +164,12 @@ module Nokogiri
|
|
161
164
|
# Nokogiri::XML::ParseOptions::RECOVER. See the constants in
|
162
165
|
# Nokogiri::XML::ParseOptions.
|
163
166
|
def parse string_or_io, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_HTML
|
164
|
-
|
165
167
|
options = Nokogiri::XML::ParseOptions.new(options) if Integer === options
|
166
|
-
|
168
|
+
|
167
169
|
yield options if block_given?
|
168
170
|
|
171
|
+
url ||= string_or_io.respond_to?(:path) ? string_or_io.path : nil
|
172
|
+
|
169
173
|
if string_or_io.respond_to?(:encoding)
|
170
174
|
unless string_or_io.encoding.name == "ASCII-8BIT"
|
171
175
|
encoding ||= string_or_io.encoding.name
|
@@ -173,7 +177,12 @@ module Nokogiri
|
|
173
177
|
end
|
174
178
|
|
175
179
|
if string_or_io.respond_to?(:read)
|
176
|
-
|
180
|
+
if string_or_io.is_a?(Pathname)
|
181
|
+
# resolve the Pathname to the file and open it as an IO object, see #2110
|
182
|
+
string_or_io = string_or_io.expand_path.open
|
183
|
+
url ||= string_or_io.path
|
184
|
+
end
|
185
|
+
|
177
186
|
unless encoding
|
178
187
|
# Libxml2's parser has poor support for encoding
|
179
188
|
# detection. First, it does not recognize the HTML5
|
@@ -252,9 +261,6 @@ module Nokogiri
|
|
252
261
|
end
|
253
262
|
|
254
263
|
def self.detect_encoding(chunk)
|
255
|
-
if Nokogiri.jruby? && EncodingReader.is_jruby_without_fix?
|
256
|
-
return EncodingReader.detect_encoding_for_jruby_without_fix(chunk)
|
257
|
-
end
|
258
264
|
m = chunk.match(/\A(<\?xml[ \t\r\n]+[^>]*>)/) and
|
259
265
|
return Nokogiri.XML(m[1]).encoding
|
260
266
|
|
@@ -273,26 +279,6 @@ module Nokogiri
|
|
273
279
|
end
|
274
280
|
end
|
275
281
|
|
276
|
-
def self.is_jruby_without_fix?
|
277
|
-
JRUBY_VERSION.split('.').join.to_i < 165
|
278
|
-
end
|
279
|
-
|
280
|
-
def self.detect_encoding_for_jruby_without_fix(chunk)
|
281
|
-
m = chunk.match(/\A(<\?xml[ \t\r\n]+[^>]*>)/) and
|
282
|
-
return Nokogiri.XML(m[1]).encoding
|
283
|
-
|
284
|
-
m = chunk.match(/(<meta\s)(.*)(charset\s*=\s*([\w-]+))(.*)/i) and
|
285
|
-
return m[4]
|
286
|
-
|
287
|
-
catch(:encoding_found) {
|
288
|
-
Nokogiri::HTML::SAX::Parser.new(JumpSAXHandler.new(:encoding_found.to_s)).parse(chunk)
|
289
|
-
nil
|
290
|
-
}
|
291
|
-
rescue Nokogiri::SyntaxError, RuntimeError
|
292
|
-
# Ignore parser errors that nokogiri may raise
|
293
|
-
nil
|
294
|
-
end
|
295
|
-
|
296
282
|
def initialize(io)
|
297
283
|
@io = io
|
298
284
|
@firstchunk = nil
|