nokogiri 1.13.0-x64-mingw-ucrt
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 +7 -0
- data/Gemfile +5 -0
- data/LICENSE-DEPENDENCIES.md +1903 -0
- data/LICENSE.md +9 -0
- data/README.md +280 -0
- data/bin/nokogiri +131 -0
- data/dependencies.yml +73 -0
- data/ext/nokogiri/depend +38 -0
- data/ext/nokogiri/extconf.rb +1000 -0
- data/ext/nokogiri/gumbo.c +584 -0
- data/ext/nokogiri/html4_document.c +166 -0
- data/ext/nokogiri/html4_element_description.c +294 -0
- data/ext/nokogiri/html4_entity_lookup.c +37 -0
- data/ext/nokogiri/html4_sax_parser_context.c +120 -0
- data/ext/nokogiri/html4_sax_push_parser.c +95 -0
- 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 +128 -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 +1243 -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 +368 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +146 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlerror.h +946 -0
- data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +77 -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 +564 -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/libxml2_backwards_compat.c +121 -0
- data/ext/nokogiri/nokogiri.c +278 -0
- data/ext/nokogiri/nokogiri.h +223 -0
- data/ext/nokogiri/test_global_handlers.c +40 -0
- data/ext/nokogiri/xml_attr.c +103 -0
- data/ext/nokogiri/xml_attribute_decl.c +70 -0
- data/ext/nokogiri/xml_cdata.c +57 -0
- data/ext/nokogiri/xml_comment.c +62 -0
- data/ext/nokogiri/xml_document.c +680 -0
- data/ext/nokogiri/xml_document_fragment.c +44 -0
- data/ext/nokogiri/xml_dtd.c +208 -0
- data/ext/nokogiri/xml_element_content.c +128 -0
- data/ext/nokogiri/xml_element_decl.c +69 -0
- data/ext/nokogiri/xml_encoding_handler.c +104 -0
- data/ext/nokogiri/xml_entity_decl.c +112 -0
- data/ext/nokogiri/xml_entity_reference.c +50 -0
- data/ext/nokogiri/xml_namespace.c +120 -0
- data/ext/nokogiri/xml_node.c +2144 -0
- data/ext/nokogiri/xml_node_set.c +498 -0
- data/ext/nokogiri/xml_processing_instruction.c +54 -0
- data/ext/nokogiri/xml_reader.c +719 -0
- data/ext/nokogiri/xml_relax_ng.c +185 -0
- data/ext/nokogiri/xml_sax_parser.c +310 -0
- data/ext/nokogiri/xml_sax_parser_context.c +281 -0
- data/ext/nokogiri/xml_sax_push_parser.c +168 -0
- data/ext/nokogiri/xml_schema.c +284 -0
- data/ext/nokogiri/xml_syntax_error.c +85 -0
- data/ext/nokogiri/xml_text.c +48 -0
- data/ext/nokogiri/xml_xpath_context.c +406 -0
- data/ext/nokogiri/xslt_stylesheet.c +264 -0
- data/gumbo-parser/CHANGES.md +63 -0
- data/gumbo-parser/Makefile +101 -0
- data/gumbo-parser/THANKS +27 -0
- data/lib/nokogiri/3.1/nokogiri.so +0 -0
- data/lib/nokogiri/class_resolver.rb +67 -0
- data/lib/nokogiri/css/node.rb +54 -0
- data/lib/nokogiri/css/parser.rb +759 -0
- data/lib/nokogiri/css/parser.y +280 -0
- data/lib/nokogiri/css/parser_extras.rb +94 -0
- data/lib/nokogiri/css/syntax_error.rb +9 -0
- data/lib/nokogiri/css/tokenizer.rb +155 -0
- data/lib/nokogiri/css/tokenizer.rex +56 -0
- data/lib/nokogiri/css/xpath_visitor.rb +359 -0
- data/lib/nokogiri/css.rb +60 -0
- data/lib/nokogiri/decorators/slop.rb +44 -0
- data/lib/nokogiri/extension.rb +31 -0
- data/lib/nokogiri/gumbo.rb +15 -0
- data/lib/nokogiri/html.rb +48 -0
- data/lib/nokogiri/html4/builder.rb +37 -0
- data/lib/nokogiri/html4/document.rb +331 -0
- data/lib/nokogiri/html4/document_fragment.rb +54 -0
- data/lib/nokogiri/html4/element_description.rb +25 -0
- data/lib/nokogiri/html4/element_description_defaults.rb +578 -0
- data/lib/nokogiri/html4/entity_lookup.rb +15 -0
- data/lib/nokogiri/html4/sax/parser.rb +61 -0
- data/lib/nokogiri/html4/sax/parser_context.rb +20 -0
- data/lib/nokogiri/html4/sax/push_parser.rb +37 -0
- data/lib/nokogiri/html4.rb +46 -0
- data/lib/nokogiri/html5/document.rb +88 -0
- data/lib/nokogiri/html5/document_fragment.rb +83 -0
- data/lib/nokogiri/html5/node.rb +96 -0
- data/lib/nokogiri/html5.rb +477 -0
- data/lib/nokogiri/jruby/dependencies.rb +21 -0
- data/lib/nokogiri/syntax_error.rb +6 -0
- data/lib/nokogiri/version/constant.rb +6 -0
- data/lib/nokogiri/version/info.rb +221 -0
- data/lib/nokogiri/version.rb +4 -0
- data/lib/nokogiri/xml/attr.rb +17 -0
- data/lib/nokogiri/xml/attribute_decl.rb +20 -0
- data/lib/nokogiri/xml/builder.rb +485 -0
- data/lib/nokogiri/xml/cdata.rb +13 -0
- data/lib/nokogiri/xml/character_data.rb +9 -0
- data/lib/nokogiri/xml/document.rb +418 -0
- data/lib/nokogiri/xml/document_fragment.rb +162 -0
- data/lib/nokogiri/xml/dtd.rb +34 -0
- data/lib/nokogiri/xml/element_content.rb +38 -0
- data/lib/nokogiri/xml/element_decl.rb +15 -0
- data/lib/nokogiri/xml/entity_decl.rb +21 -0
- data/lib/nokogiri/xml/entity_reference.rb +20 -0
- data/lib/nokogiri/xml/namespace.rb +16 -0
- data/lib/nokogiri/xml/node/save_options.rb +65 -0
- data/lib/nokogiri/xml/node.rb +1402 -0
- data/lib/nokogiri/xml/node_set.rb +364 -0
- data/lib/nokogiri/xml/notation.rb +19 -0
- data/lib/nokogiri/xml/parse_options.rb +133 -0
- data/lib/nokogiri/xml/pp/character_data.rb +21 -0
- data/lib/nokogiri/xml/pp/node.rb +55 -0
- data/lib/nokogiri/xml/pp.rb +4 -0
- data/lib/nokogiri/xml/processing_instruction.rb +10 -0
- data/lib/nokogiri/xml/reader.rb +107 -0
- data/lib/nokogiri/xml/relax_ng.rb +38 -0
- data/lib/nokogiri/xml/sax/document.rb +167 -0
- data/lib/nokogiri/xml/sax/parser.rb +125 -0
- data/lib/nokogiri/xml/sax/parser_context.rb +21 -0
- data/lib/nokogiri/xml/sax/push_parser.rb +61 -0
- data/lib/nokogiri/xml/sax.rb +6 -0
- data/lib/nokogiri/xml/schema.rb +73 -0
- data/lib/nokogiri/xml/searchable.rb +259 -0
- data/lib/nokogiri/xml/syntax_error.rb +71 -0
- data/lib/nokogiri/xml/text.rb +11 -0
- data/lib/nokogiri/xml/xpath/syntax_error.rb +13 -0
- data/lib/nokogiri/xml/xpath.rb +21 -0
- data/lib/nokogiri/xml/xpath_context.rb +16 -0
- data/lib/nokogiri/xml.rb +75 -0
- data/lib/nokogiri/xslt/stylesheet.rb +27 -0
- data/lib/nokogiri/xslt.rb +58 -0
- data/lib/nokogiri.rb +128 -0
- data/lib/xsd/xmlparser/nokogiri.rb +104 -0
- metadata +536 -0
@@ -0,0 +1,280 @@
|
|
1
|
+
class Nokogiri::CSS::Parser
|
2
|
+
|
3
|
+
token FUNCTION INCLUDES DASHMATCH LBRACE HASH PLUS GREATER S STRING IDENT
|
4
|
+
token COMMA NUMBER PREFIXMATCH SUFFIXMATCH SUBSTRINGMATCH TILDE NOT_EQUAL
|
5
|
+
token SLASH DOUBLESLASH NOT EQUAL RPAREN LSQUARE RSQUARE HAS
|
6
|
+
|
7
|
+
rule
|
8
|
+
selector
|
9
|
+
: selector COMMA simple_selector_1toN {
|
10
|
+
result = [val.first, val.last].flatten
|
11
|
+
}
|
12
|
+
| prefixless_combinator_selector { result = val.flatten }
|
13
|
+
| optional_S simple_selector_1toN { result = [val.last].flatten }
|
14
|
+
;
|
15
|
+
combinator
|
16
|
+
: PLUS { result = :DIRECT_ADJACENT_SELECTOR }
|
17
|
+
| GREATER { result = :CHILD_SELECTOR }
|
18
|
+
| TILDE { result = :FOLLOWING_SELECTOR }
|
19
|
+
| DOUBLESLASH { result = :DESCENDANT_SELECTOR }
|
20
|
+
| SLASH { result = :CHILD_SELECTOR }
|
21
|
+
;
|
22
|
+
simple_selector
|
23
|
+
: element_name hcap_0toN {
|
24
|
+
result = if val[1].nil?
|
25
|
+
val.first
|
26
|
+
else
|
27
|
+
Node.new(:CONDITIONAL_SELECTOR, [val.first, val[1]])
|
28
|
+
end
|
29
|
+
}
|
30
|
+
| function
|
31
|
+
| function pseudo {
|
32
|
+
result = Node.new(:CONDITIONAL_SELECTOR, val)
|
33
|
+
}
|
34
|
+
| function attrib {
|
35
|
+
result = Node.new(:CONDITIONAL_SELECTOR, val)
|
36
|
+
}
|
37
|
+
| hcap_1toN {
|
38
|
+
result = Node.new(:CONDITIONAL_SELECTOR,
|
39
|
+
[Node.new(:ELEMENT_NAME, ['*']), val.first]
|
40
|
+
)
|
41
|
+
}
|
42
|
+
;
|
43
|
+
prefixless_combinator_selector
|
44
|
+
: combinator simple_selector_1toN {
|
45
|
+
result = Node.new(val.first, [nil, val.last])
|
46
|
+
}
|
47
|
+
;
|
48
|
+
simple_selector_1toN
|
49
|
+
: simple_selector combinator simple_selector_1toN {
|
50
|
+
result = Node.new(val[1], [val.first, val.last])
|
51
|
+
}
|
52
|
+
| simple_selector S simple_selector_1toN {
|
53
|
+
result = Node.new(:DESCENDANT_SELECTOR, [val.first, val.last])
|
54
|
+
}
|
55
|
+
| simple_selector
|
56
|
+
;
|
57
|
+
class
|
58
|
+
: '.' IDENT { result = Node.new(:CLASS_CONDITION, [unescape_css_identifier(val[1])]) }
|
59
|
+
;
|
60
|
+
element_name
|
61
|
+
: namespaced_ident
|
62
|
+
| '*' { result = Node.new(:ELEMENT_NAME, val) }
|
63
|
+
;
|
64
|
+
namespaced_ident
|
65
|
+
: namespace '|' IDENT {
|
66
|
+
result = Node.new(:ELEMENT_NAME,
|
67
|
+
[[val.first, val.last].compact.join(':')]
|
68
|
+
)
|
69
|
+
}
|
70
|
+
| IDENT {
|
71
|
+
name = @namespaces.key?('xmlns') ? "xmlns:#{val.first}" : val.first
|
72
|
+
result = Node.new(:ELEMENT_NAME, [name])
|
73
|
+
}
|
74
|
+
;
|
75
|
+
namespace
|
76
|
+
: IDENT { result = val[0] }
|
77
|
+
|
|
78
|
+
;
|
79
|
+
attrib
|
80
|
+
: LSQUARE attrib_name attrib_val_0or1 RSQUARE {
|
81
|
+
result = Node.new(:ATTRIBUTE_CONDITION,
|
82
|
+
[val[1]] + (val[2] || [])
|
83
|
+
)
|
84
|
+
}
|
85
|
+
| LSQUARE function attrib_val_0or1 RSQUARE {
|
86
|
+
result = Node.new(:ATTRIBUTE_CONDITION,
|
87
|
+
[val[1]] + (val[2] || [])
|
88
|
+
)
|
89
|
+
}
|
90
|
+
| LSQUARE NUMBER RSQUARE {
|
91
|
+
# non-standard, from hpricot
|
92
|
+
result = Node.new(:PSEUDO_CLASS,
|
93
|
+
[Node.new(:FUNCTION, ['nth-child(', val[1]])]
|
94
|
+
)
|
95
|
+
}
|
96
|
+
;
|
97
|
+
attrib_name
|
98
|
+
: namespace '|' IDENT {
|
99
|
+
result = Node.new(:ATTRIB_NAME,
|
100
|
+
[[val.first, val.last].compact.join(':')]
|
101
|
+
)
|
102
|
+
}
|
103
|
+
| IDENT {
|
104
|
+
# Default namespace is not applied to attributes.
|
105
|
+
# So we don't add prefix "xmlns:" as in namespaced_ident.
|
106
|
+
result = Node.new(:ATTRIB_NAME, [val.first])
|
107
|
+
}
|
108
|
+
;
|
109
|
+
function
|
110
|
+
: FUNCTION RPAREN {
|
111
|
+
result = Node.new(:FUNCTION, [val.first.strip])
|
112
|
+
}
|
113
|
+
| FUNCTION expr RPAREN {
|
114
|
+
result = Node.new(:FUNCTION, [val.first.strip, val[1]].flatten)
|
115
|
+
}
|
116
|
+
| FUNCTION nth RPAREN {
|
117
|
+
result = Node.new(:FUNCTION, [val.first.strip, val[1]].flatten)
|
118
|
+
}
|
119
|
+
| NOT expr RPAREN {
|
120
|
+
result = Node.new(:FUNCTION, [val.first.strip, val[1]].flatten)
|
121
|
+
}
|
122
|
+
| HAS selector RPAREN {
|
123
|
+
result = Node.new(:FUNCTION, [val.first.strip, val[1]].flatten)
|
124
|
+
}
|
125
|
+
;
|
126
|
+
expr
|
127
|
+
: NUMBER COMMA expr { result = [val.first, val.last] }
|
128
|
+
| STRING COMMA expr { result = [val.first, val.last] }
|
129
|
+
| IDENT COMMA expr { result = [val.first, val.last] }
|
130
|
+
| NUMBER
|
131
|
+
| STRING
|
132
|
+
| IDENT # even, odd
|
133
|
+
{
|
134
|
+
case val[0]
|
135
|
+
when 'even'
|
136
|
+
result = Node.new(:NTH, ['2','n','+','0'])
|
137
|
+
when 'odd'
|
138
|
+
result = Node.new(:NTH, ['2','n','+','1'])
|
139
|
+
when 'n'
|
140
|
+
result = Node.new(:NTH, ['1','n','+','0'])
|
141
|
+
else
|
142
|
+
# non-standard to support custom functions:
|
143
|
+
# assert_xpath("//a[foo(., @href)]", @parser.parse('a:foo(@href)'))
|
144
|
+
# assert_xpath("//a[foo(., @a, b)]", @parser.parse('a:foo(@a, b)'))
|
145
|
+
# assert_xpath("//a[foo(., a, 10)]", @parser.parse('a:foo(a, 10)'))
|
146
|
+
result = val
|
147
|
+
end
|
148
|
+
}
|
149
|
+
;
|
150
|
+
nth
|
151
|
+
: NUMBER IDENT PLUS NUMBER # 5n+3 -5n+3
|
152
|
+
{
|
153
|
+
if val[1] == 'n'
|
154
|
+
result = Node.new(:NTH, val)
|
155
|
+
else
|
156
|
+
raise Racc::ParseError, "parse error on IDENT '#{val[1]}'"
|
157
|
+
end
|
158
|
+
}
|
159
|
+
| IDENT PLUS NUMBER { # n+3, -n+3
|
160
|
+
if val[0] == 'n'
|
161
|
+
val.unshift("1")
|
162
|
+
result = Node.new(:NTH, val)
|
163
|
+
elsif val[0] == '-n'
|
164
|
+
val[0] = 'n'
|
165
|
+
val.unshift("-1")
|
166
|
+
result = Node.new(:NTH, val)
|
167
|
+
else
|
168
|
+
raise Racc::ParseError, "parse error on IDENT '#{val[1]}'"
|
169
|
+
end
|
170
|
+
}
|
171
|
+
| NUMBER IDENT { # 5n, -5n, 10n-1
|
172
|
+
n = val[1]
|
173
|
+
if n[0, 2] == 'n-'
|
174
|
+
val[1] = 'n'
|
175
|
+
val << "-"
|
176
|
+
# b is contained in n as n is the string "n-b"
|
177
|
+
val << n[2, n.size]
|
178
|
+
result = Node.new(:NTH, val)
|
179
|
+
elsif n == 'n'
|
180
|
+
val << "+"
|
181
|
+
val << "0"
|
182
|
+
result = Node.new(:NTH, val)
|
183
|
+
else
|
184
|
+
raise Racc::ParseError, "parse error on IDENT '#{val[1]}'"
|
185
|
+
end
|
186
|
+
}
|
187
|
+
;
|
188
|
+
pseudo
|
189
|
+
: ':' function {
|
190
|
+
result = Node.new(:PSEUDO_CLASS, [val[1]])
|
191
|
+
}
|
192
|
+
| ':' IDENT { result = Node.new(:PSEUDO_CLASS, [val[1]]) }
|
193
|
+
;
|
194
|
+
hcap_0toN
|
195
|
+
: hcap_1toN
|
196
|
+
|
|
197
|
+
;
|
198
|
+
hcap_1toN
|
199
|
+
: attribute_id hcap_1toN {
|
200
|
+
result = Node.new(:COMBINATOR, val)
|
201
|
+
}
|
202
|
+
| class hcap_1toN {
|
203
|
+
result = Node.new(:COMBINATOR, val)
|
204
|
+
}
|
205
|
+
| attrib hcap_1toN {
|
206
|
+
result = Node.new(:COMBINATOR, val)
|
207
|
+
}
|
208
|
+
| pseudo hcap_1toN {
|
209
|
+
result = Node.new(:COMBINATOR, val)
|
210
|
+
}
|
211
|
+
| negation hcap_1toN {
|
212
|
+
result = Node.new(:COMBINATOR, val)
|
213
|
+
}
|
214
|
+
| attribute_id
|
215
|
+
| class
|
216
|
+
| attrib
|
217
|
+
| pseudo
|
218
|
+
| negation
|
219
|
+
;
|
220
|
+
attribute_id
|
221
|
+
: HASH { result = Node.new(:ID, [unescape_css_identifier(val.first)]) }
|
222
|
+
;
|
223
|
+
attrib_val_0or1
|
224
|
+
: eql_incl_dash IDENT { result = [val.first, unescape_css_identifier(val[1])] }
|
225
|
+
| eql_incl_dash STRING { result = [val.first, unescape_css_string(val[1])] }
|
226
|
+
| eql_incl_dash NUMBER { result = [val.first, val[1]] }
|
227
|
+
|
|
228
|
+
;
|
229
|
+
eql_incl_dash
|
230
|
+
: EQUAL { result = :equal }
|
231
|
+
| PREFIXMATCH { result = :prefix_match }
|
232
|
+
| SUFFIXMATCH { result = :suffix_match }
|
233
|
+
| SUBSTRINGMATCH { result = :substring_match }
|
234
|
+
| NOT_EQUAL { result = :not_equal }
|
235
|
+
| INCLUDES { result = :includes }
|
236
|
+
| DASHMATCH { result = :dash_match }
|
237
|
+
;
|
238
|
+
negation
|
239
|
+
: NOT negation_arg RPAREN {
|
240
|
+
result = Node.new(:NOT, [val[1]])
|
241
|
+
}
|
242
|
+
;
|
243
|
+
negation_arg
|
244
|
+
: element_name
|
245
|
+
| element_name hcap_1toN
|
246
|
+
| hcap_1toN
|
247
|
+
;
|
248
|
+
optional_S
|
249
|
+
: S
|
250
|
+
|
|
251
|
+
;
|
252
|
+
end
|
253
|
+
|
254
|
+
---- header
|
255
|
+
|
256
|
+
require_relative "parser_extras"
|
257
|
+
|
258
|
+
module Nokogiri
|
259
|
+
module CSS
|
260
|
+
# :nodoc: all
|
261
|
+
class Parser < Racc::Parser
|
262
|
+
end
|
263
|
+
end
|
264
|
+
end
|
265
|
+
|
266
|
+
---- inner
|
267
|
+
|
268
|
+
def unescape_css_identifier(identifier)
|
269
|
+
identifier.gsub(/\\(?:([^0-9a-fA-F])|([0-9a-fA-F]{1,6})\s?)/){ |m| $1 || [$2.hex].pack('U') }
|
270
|
+
end
|
271
|
+
|
272
|
+
def unescape_css_string(str)
|
273
|
+
str.gsub(/\\(?:([^0-9a-fA-F])|([0-9a-fA-F]{1,6})\s?)/) do |m|
|
274
|
+
if $1=="\n"
|
275
|
+
''
|
276
|
+
else
|
277
|
+
$1 || [$2.hex].pack('U')
|
278
|
+
end
|
279
|
+
end
|
280
|
+
end
|
@@ -0,0 +1,94 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "thread"
|
4
|
+
|
5
|
+
module Nokogiri
|
6
|
+
module CSS
|
7
|
+
class Parser < Racc::Parser # :nodoc:
|
8
|
+
CACHE_SWITCH_NAME = :nokogiri_css_parser_cache_is_off
|
9
|
+
|
10
|
+
@cache = {}
|
11
|
+
@mutex = Mutex.new
|
12
|
+
|
13
|
+
class << self
|
14
|
+
# Return a thread-local boolean indicating whether the CSS-to-XPath cache is active. (Default is `true`.)
|
15
|
+
def cache_on?
|
16
|
+
!Thread.current[CACHE_SWITCH_NAME]
|
17
|
+
end
|
18
|
+
|
19
|
+
# Set a thread-local boolean to turn cacheing on and off. Truthy values turn the cache on, falsey values turn the cache off.
|
20
|
+
def set_cache(value) # rubocop:disable Naming/AccessorMethodName
|
21
|
+
Thread.current[CACHE_SWITCH_NAME] = !value
|
22
|
+
end
|
23
|
+
|
24
|
+
# Get the css selector in +string+ from the cache
|
25
|
+
def [](string)
|
26
|
+
return nil unless cache_on?
|
27
|
+
@mutex.synchronize { @cache[string] }
|
28
|
+
end
|
29
|
+
|
30
|
+
# Set the css selector in +string+ in the cache to +value+
|
31
|
+
def []=(string, value)
|
32
|
+
return value unless cache_on?
|
33
|
+
@mutex.synchronize { @cache[string] = value }
|
34
|
+
end
|
35
|
+
|
36
|
+
# Clear the cache
|
37
|
+
def clear_cache(create_new_object = false)
|
38
|
+
@mutex.synchronize do
|
39
|
+
if create_new_object
|
40
|
+
@cache = {}
|
41
|
+
else
|
42
|
+
@cache.clear
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# Execute +block+ without cache
|
48
|
+
def without_cache(&block)
|
49
|
+
original_cache_setting = cache_on?
|
50
|
+
set_cache(false)
|
51
|
+
yield
|
52
|
+
ensure
|
53
|
+
set_cache(original_cache_setting)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
# Create a new CSS parser with respect to +namespaces+
|
58
|
+
def initialize(namespaces = {})
|
59
|
+
@tokenizer = Tokenizer.new
|
60
|
+
@namespaces = namespaces
|
61
|
+
super()
|
62
|
+
end
|
63
|
+
|
64
|
+
def parse(string)
|
65
|
+
@tokenizer.scan_setup(string)
|
66
|
+
do_parse
|
67
|
+
end
|
68
|
+
|
69
|
+
def next_token
|
70
|
+
@tokenizer.next_token
|
71
|
+
end
|
72
|
+
|
73
|
+
# Get the xpath for +string+ using +options+
|
74
|
+
def xpath_for(string, prefix, visitor)
|
75
|
+
key = cache_key(string, prefix, visitor)
|
76
|
+
self.class[key] ||= parse(string).map do |ast|
|
77
|
+
ast.to_xpath(prefix, visitor)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# On CSS parser error, raise an exception
|
82
|
+
def on_error(error_token_id, error_value, value_stack)
|
83
|
+
after = value_stack.compact.last
|
84
|
+
raise SyntaxError, "unexpected '#{error_value}' after '#{after}'"
|
85
|
+
end
|
86
|
+
|
87
|
+
def cache_key(query, prefix, visitor)
|
88
|
+
if self.class.cache_on?
|
89
|
+
[query, prefix, @namespaces, visitor.config]
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
@@ -0,0 +1,155 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#--
|
3
|
+
# DO NOT MODIFY!!!!
|
4
|
+
# This file is automatically generated by rex 1.0.7
|
5
|
+
# from lexical definition file "lib/nokogiri/css/tokenizer.rex".
|
6
|
+
#++
|
7
|
+
|
8
|
+
module Nokogiri
|
9
|
+
module CSS
|
10
|
+
# :nodoc: all
|
11
|
+
class Tokenizer
|
12
|
+
require 'strscan'
|
13
|
+
|
14
|
+
class ScanError < StandardError ; end
|
15
|
+
|
16
|
+
attr_reader :lineno
|
17
|
+
attr_reader :filename
|
18
|
+
attr_accessor :state
|
19
|
+
|
20
|
+
def scan_setup(str)
|
21
|
+
@ss = StringScanner.new(str)
|
22
|
+
@lineno = 1
|
23
|
+
@state = nil
|
24
|
+
end
|
25
|
+
|
26
|
+
def action
|
27
|
+
yield
|
28
|
+
end
|
29
|
+
|
30
|
+
def scan_str(str)
|
31
|
+
scan_setup(str)
|
32
|
+
do_parse
|
33
|
+
end
|
34
|
+
alias :scan :scan_str
|
35
|
+
|
36
|
+
def load_file( filename )
|
37
|
+
@filename = filename
|
38
|
+
File.open(filename, "r") do |f|
|
39
|
+
scan_setup(f.read)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def scan_file( filename )
|
44
|
+
load_file(filename)
|
45
|
+
do_parse
|
46
|
+
end
|
47
|
+
|
48
|
+
|
49
|
+
def next_token
|
50
|
+
return if @ss.eos?
|
51
|
+
|
52
|
+
# skips empty actions
|
53
|
+
until token = _next_token or @ss.eos?; end
|
54
|
+
token
|
55
|
+
end
|
56
|
+
|
57
|
+
def _next_token
|
58
|
+
text = @ss.peek(1)
|
59
|
+
@lineno += 1 if text == "\n"
|
60
|
+
token = case @state
|
61
|
+
when nil
|
62
|
+
case
|
63
|
+
when (text = @ss.scan(/has\([\s]*/))
|
64
|
+
action { [:HAS, text] }
|
65
|
+
|
66
|
+
when (text = @ss.scan(/[-@]?([_A-Za-z]|[^\0-\177]|\\[0-9A-Fa-f]{1,6}(\r\n|[\s])?|\\[^\n\r\f0-9A-Fa-f])([_A-Za-z0-9-]|[^\0-\177]|\\[0-9A-Fa-f]{1,6}(\r\n|[\s])?|\\[^\n\r\f0-9A-Fa-f])*\([\s]*/))
|
67
|
+
action { [:FUNCTION, text] }
|
68
|
+
|
69
|
+
when (text = @ss.scan(/[-@]?([_A-Za-z]|[^\0-\177]|\\[0-9A-Fa-f]{1,6}(\r\n|[\s])?|\\[^\n\r\f0-9A-Fa-f])([_A-Za-z0-9-]|[^\0-\177]|\\[0-9A-Fa-f]{1,6}(\r\n|[\s])?|\\[^\n\r\f0-9A-Fa-f])*/))
|
70
|
+
action { [:IDENT, text] }
|
71
|
+
|
72
|
+
when (text = @ss.scan(/\#([_A-Za-z0-9-]|[^\0-\177]|\\[0-9A-Fa-f]{1,6}(\r\n|[\s])?|\\[^\n\r\f0-9A-Fa-f])+/))
|
73
|
+
action { [:HASH, text] }
|
74
|
+
|
75
|
+
when (text = @ss.scan(/[\s]*~=[\s]*/))
|
76
|
+
action { [:INCLUDES, text] }
|
77
|
+
|
78
|
+
when (text = @ss.scan(/[\s]*\|=[\s]*/))
|
79
|
+
action { [:DASHMATCH, text] }
|
80
|
+
|
81
|
+
when (text = @ss.scan(/[\s]*\^=[\s]*/))
|
82
|
+
action { [:PREFIXMATCH, text] }
|
83
|
+
|
84
|
+
when (text = @ss.scan(/[\s]*\$=[\s]*/))
|
85
|
+
action { [:SUFFIXMATCH, text] }
|
86
|
+
|
87
|
+
when (text = @ss.scan(/[\s]*\*=[\s]*/))
|
88
|
+
action { [:SUBSTRINGMATCH, text] }
|
89
|
+
|
90
|
+
when (text = @ss.scan(/[\s]*!=[\s]*/))
|
91
|
+
action { [:NOT_EQUAL, text] }
|
92
|
+
|
93
|
+
when (text = @ss.scan(/[\s]*=[\s]*/))
|
94
|
+
action { [:EQUAL, text] }
|
95
|
+
|
96
|
+
when (text = @ss.scan(/[\s]*\)/))
|
97
|
+
action { [:RPAREN, text] }
|
98
|
+
|
99
|
+
when (text = @ss.scan(/\[[\s]*/))
|
100
|
+
action { [:LSQUARE, text] }
|
101
|
+
|
102
|
+
when (text = @ss.scan(/[\s]*\]/))
|
103
|
+
action { [:RSQUARE, text] }
|
104
|
+
|
105
|
+
when (text = @ss.scan(/[\s]*\+[\s]*/))
|
106
|
+
action { [:PLUS, text] }
|
107
|
+
|
108
|
+
when (text = @ss.scan(/[\s]*>[\s]*/))
|
109
|
+
action { [:GREATER, text] }
|
110
|
+
|
111
|
+
when (text = @ss.scan(/[\s]*,[\s]*/))
|
112
|
+
action { [:COMMA, text] }
|
113
|
+
|
114
|
+
when (text = @ss.scan(/[\s]*~[\s]*/))
|
115
|
+
action { [:TILDE, text] }
|
116
|
+
|
117
|
+
when (text = @ss.scan(/\:not\([\s]*/))
|
118
|
+
action { [:NOT, text] }
|
119
|
+
|
120
|
+
when (text = @ss.scan(/-?([0-9]+|[0-9]*\.[0-9]+)/))
|
121
|
+
action { [:NUMBER, text] }
|
122
|
+
|
123
|
+
when (text = @ss.scan(/[\s]*\/\/[\s]*/))
|
124
|
+
action { [:DOUBLESLASH, text] }
|
125
|
+
|
126
|
+
when (text = @ss.scan(/[\s]*\/[\s]*/))
|
127
|
+
action { [:SLASH, text] }
|
128
|
+
|
129
|
+
when (text = @ss.scan(/U\+[0-9a-f?]{1,6}(-[0-9a-f]{1,6})?/))
|
130
|
+
action {[:UNICODE_RANGE, text] }
|
131
|
+
|
132
|
+
when (text = @ss.scan(/[\s]+/))
|
133
|
+
action { [:S, text] }
|
134
|
+
|
135
|
+
when (text = @ss.scan(/"([^\n\r\f"]|\n|\r\n|\r|\f|[^\0-\177]|\\[0-9A-Fa-f]{1,6}(\r\n|[\s])?|\\[^\n\r\f0-9A-Fa-f])*(?<!\\)(?:\\{2})*"|'([^\n\r\f']|\n|\r\n|\r|\f|[^\0-\177]|\\[0-9A-Fa-f]{1,6}(\r\n|[\s])?|\\[^\n\r\f0-9A-Fa-f])*(?<!\\)(?:\\{2})*'/))
|
136
|
+
action { [:STRING, text] }
|
137
|
+
|
138
|
+
when (text = @ss.scan(/./))
|
139
|
+
action { [text, text] }
|
140
|
+
|
141
|
+
|
142
|
+
else
|
143
|
+
text = @ss.string[@ss.pos .. -1]
|
144
|
+
raise ScanError, "can not match: '" + text + "'"
|
145
|
+
end # if
|
146
|
+
|
147
|
+
else
|
148
|
+
raise ScanError, "undefined state: '" + state.to_s + "'"
|
149
|
+
end # case state
|
150
|
+
token
|
151
|
+
end # def _next_token
|
152
|
+
|
153
|
+
end # class
|
154
|
+
end
|
155
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
module Nokogiri
|
2
|
+
module CSS
|
3
|
+
# :nodoc: all
|
4
|
+
class Tokenizer
|
5
|
+
|
6
|
+
macro
|
7
|
+
nl \n|\r\n|\r|\f
|
8
|
+
w [\s]*
|
9
|
+
nonascii [^\0-\177]
|
10
|
+
num -?([0-9]+|[0-9]*\.[0-9]+)
|
11
|
+
unicode \\[0-9A-Fa-f]{1,6}(\r\n|[\s])?
|
12
|
+
|
13
|
+
escape {unicode}|\\[^\n\r\f0-9A-Fa-f]
|
14
|
+
nmchar [_A-Za-z0-9-]|{nonascii}|{escape}
|
15
|
+
nmstart [_A-Za-z]|{nonascii}|{escape}
|
16
|
+
ident [-@]?({nmstart})({nmchar})*
|
17
|
+
name ({nmchar})+
|
18
|
+
string1 "([^\n\r\f"]|{nl}|{nonascii}|{escape})*(?<!\\)(?:\\{2})*"
|
19
|
+
string2 '([^\n\r\f']|{nl}|{nonascii}|{escape})*(?<!\\)(?:\\{2})*'
|
20
|
+
string {string1}|{string2}
|
21
|
+
|
22
|
+
rule
|
23
|
+
|
24
|
+
# [:state] pattern [actions]
|
25
|
+
|
26
|
+
has\({w} { [:HAS, text] }
|
27
|
+
{ident}\({w} { [:FUNCTION, text] }
|
28
|
+
{ident} { [:IDENT, text] }
|
29
|
+
\#{name} { [:HASH, text] }
|
30
|
+
{w}~={w} { [:INCLUDES, text] }
|
31
|
+
{w}\|={w} { [:DASHMATCH, text] }
|
32
|
+
{w}\^={w} { [:PREFIXMATCH, text] }
|
33
|
+
{w}\$={w} { [:SUFFIXMATCH, text] }
|
34
|
+
{w}\*={w} { [:SUBSTRINGMATCH, text] }
|
35
|
+
{w}!={w} { [:NOT_EQUAL, text] }
|
36
|
+
{w}={w} { [:EQUAL, text] }
|
37
|
+
{w}\) { [:RPAREN, text] }
|
38
|
+
\[{w} { [:LSQUARE, text] }
|
39
|
+
{w}\] { [:RSQUARE, text] }
|
40
|
+
{w}\+{w} { [:PLUS, text] }
|
41
|
+
{w}>{w} { [:GREATER, text] }
|
42
|
+
{w},{w} { [:COMMA, text] }
|
43
|
+
{w}~{w} { [:TILDE, text] }
|
44
|
+
\:not\({w} { [:NOT, text] }
|
45
|
+
{num} { [:NUMBER, text] }
|
46
|
+
{w}\/\/{w} { [:DOUBLESLASH, text] }
|
47
|
+
{w}\/{w} { [:SLASH, text] }
|
48
|
+
|
49
|
+
U\+[0-9a-f?]{1,6}(-[0-9a-f]{1,6})? {[:UNICODE_RANGE, text] }
|
50
|
+
|
51
|
+
[\s]+ { [:S, text] }
|
52
|
+
{string} { [:STRING, text] }
|
53
|
+
. { [text, text] }
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|