nokogiri 1.10.9-x86-mingw32 → 1.11.0.rc4-x86-mingw32
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 +24 -22
- data/ext/nokogiri/depend +476 -357
- data/ext/nokogiri/extconf.rb +485 -352
- 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 -40
- data/ext/nokogiri/nokogiri.h +26 -17
- data/ext/nokogiri/xml_document.c +18 -4
- data/ext/nokogiri/xml_io.c +8 -6
- data/ext/nokogiri/xml_node.c +21 -1
- data/ext/nokogiri/xml_node_set.c +1 -1
- data/ext/nokogiri/xml_reader.c +6 -17
- 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 -8
- data/lib/nokogiri.rb +4 -21
- 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.rb +1 -0
- data/lib/nokogiri/css/node.rb +1 -0
- data/lib/nokogiri/css/parser.rb +63 -62
- data/lib/nokogiri/css/parser.y +2 -2
- data/lib/nokogiri/css/parser_extras.rb +39 -36
- data/lib/nokogiri/css/syntax_error.rb +1 -0
- data/lib/nokogiri/css/tokenizer.rb +1 -0
- data/lib/nokogiri/css/xpath_visitor.rb +73 -43
- data/lib/nokogiri/decorators/slop.rb +1 -0
- data/lib/nokogiri/html.rb +1 -0
- data/lib/nokogiri/html/builder.rb +1 -0
- data/lib/nokogiri/html/document.rb +13 -26
- data/lib/nokogiri/html/document_fragment.rb +1 -0
- data/lib/nokogiri/html/element_description.rb +1 -0
- data/lib/nokogiri/html/element_description_defaults.rb +1 -0
- data/lib/nokogiri/html/entity_lookup.rb +1 -0
- data/lib/nokogiri/html/sax/parser.rb +1 -0
- data/lib/nokogiri/html/sax/parser_context.rb +1 -0
- data/lib/nokogiri/html/sax/push_parser.rb +1 -0
- data/lib/nokogiri/jruby/dependencies.rb +20 -0
- data/lib/nokogiri/syntax_error.rb +1 -0
- data/lib/nokogiri/version.rb +3 -109
- data/lib/nokogiri/version/constant.rb +5 -0
- data/lib/nokogiri/version/info.rb +182 -0
- data/lib/nokogiri/xml.rb +1 -0
- data/lib/nokogiri/xml/attr.rb +1 -0
- data/lib/nokogiri/xml/attribute_decl.rb +1 -0
- data/lib/nokogiri/xml/builder.rb +3 -2
- data/lib/nokogiri/xml/cdata.rb +1 -0
- data/lib/nokogiri/xml/character_data.rb +1 -0
- data/lib/nokogiri/xml/document.rb +20 -15
- data/lib/nokogiri/xml/document_fragment.rb +5 -6
- data/lib/nokogiri/xml/dtd.rb +1 -0
- data/lib/nokogiri/xml/element_content.rb +1 -0
- data/lib/nokogiri/xml/element_decl.rb +1 -0
- data/lib/nokogiri/xml/entity_decl.rb +1 -0
- data/lib/nokogiri/xml/entity_reference.rb +1 -0
- data/lib/nokogiri/xml/namespace.rb +1 -0
- data/lib/nokogiri/xml/node.rb +587 -249
- data/lib/nokogiri/xml/node/save_options.rb +1 -0
- data/lib/nokogiri/xml/node_set.rb +1 -0
- data/lib/nokogiri/xml/notation.rb +1 -0
- data/lib/nokogiri/xml/parse_options.rb +10 -3
- data/lib/nokogiri/xml/pp.rb +1 -0
- data/lib/nokogiri/xml/pp/character_data.rb +1 -0
- data/lib/nokogiri/xml/pp/node.rb +1 -0
- data/lib/nokogiri/xml/processing_instruction.rb +1 -0
- data/lib/nokogiri/xml/reader.rb +7 -3
- data/lib/nokogiri/xml/relax_ng.rb +7 -2
- data/lib/nokogiri/xml/sax.rb +1 -0
- data/lib/nokogiri/xml/sax/document.rb +1 -0
- data/lib/nokogiri/xml/sax/parser.rb +1 -0
- data/lib/nokogiri/xml/sax/parser_context.rb +1 -0
- data/lib/nokogiri/xml/sax/push_parser.rb +1 -0
- data/lib/nokogiri/xml/schema.rb +13 -4
- data/lib/nokogiri/xml/searchable.rb +25 -16
- data/lib/nokogiri/xml/syntax_error.rb +1 -0
- data/lib/nokogiri/xml/text.rb +1 -0
- data/lib/nokogiri/xml/xpath.rb +1 -0
- data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -0
- data/lib/nokogiri/xml/xpath_context.rb +1 -0
- data/lib/nokogiri/xslt.rb +1 -0
- data/lib/nokogiri/xslt/stylesheet.rb +1 -0
- data/lib/xsd/xmlparser/nokogiri.rb +1 -0
- metadata +140 -57
- data/lib/nokogiri/2.3/nokogiri.so +0 -0
- data/lib/nokogiri/2.4/nokogiri.so +0 -0
data/README.md
CHANGED
@@ -11,7 +11,7 @@ or CSS3 selectors.
|
|
11
11
|
|
12
12
|
* https://nokogiri.org
|
13
13
|
* [Installation Help](https://nokogiri.org/tutorials/installing_nokogiri.html)
|
14
|
-
* [Tutorials](https://nokogiri.org)
|
14
|
+
* [Tutorials](https://nokogiri.org/tutorials/toc.html)
|
15
15
|
* [Cheat Sheet](https://github.com/sparklemotion/nokogiri/wiki/Cheat-sheet)
|
16
16
|
* [GitHub](https://github.com/sparklemotion/nokogiri)
|
17
17
|
* [Mailing List](https://groups.google.com/group/nokogiri-talk)
|
@@ -20,14 +20,14 @@ or CSS3 selectors.
|
|
20
20
|
|
21
21
|
## Status
|
22
22
|
|
23
|
-
[![Concourse CI](https://ci.nokogiri.org/api/v1/teams/nokogiri-core/pipelines/nokogiri/jobs/
|
23
|
+
[![Concourse CI](https://ci.nokogiri.org/api/v1/teams/nokogiri-core/pipelines/nokogiri/jobs/cruby-2.7/badge)](https://ci.nokogiri.org/teams/nokogiri-core/pipelines/nokogiri)
|
24
24
|
[![Appveyor CI](https://ci.appveyor.com/api/projects/status/xj2pqwvlxwuwgr06/branch/master?svg=true)](https://ci.appveyor.com/project/flavorjones/nokogiri/branch/master)
|
25
25
|
[![Code Climate](https://codeclimate.com/github/sparklemotion/nokogiri.svg)](https://codeclimate.com/github/sparklemotion/nokogiri)
|
26
26
|
[![Test Coverage](https://api.codeclimate.com/v1/badges/59c67b0e8976027a45ad/test_coverage)](https://codeclimate.com/github/sparklemotion/nokogiri/test_coverage)
|
27
27
|
|
28
28
|
[![Gem Version](https://badge.fury.io/rb/nokogiri.svg)](https://rubygems.org/gems/nokogiri)
|
29
|
-
[![SemVer compatibility](https://api.dependabot.com/badges/compatibility_score?dependency-name=nokogiri&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score
|
30
|
-
[![Tidelift dependencies](https://tidelift.com/badges/
|
29
|
+
[![SemVer compatibility](https://api.dependabot.com/badges/compatibility_score?dependency-name=nokogiri&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score/?dependency-name=nokogiri&package-manager=bundler)
|
30
|
+
[![Tidelift dependencies](https://tidelift.com/badges/package/rubygems/nokogiri)](https://tidelift.com/subscription/pkg/rubygems-nokogiri?utm_source=rubygems-nokogiri&utm_medium=referral&utm_campaign=readme)
|
31
31
|
|
32
32
|
|
33
33
|
## Features
|
@@ -71,7 +71,7 @@ help you directly and improve the documentation.
|
|
71
71
|
Binary packages are available for some distributions.
|
72
72
|
|
73
73
|
* Debian: https://packages.debian.org/sid/ruby-nokogiri
|
74
|
-
*
|
74
|
+
* openSUSE/SLE: https://download.opensuse.org/repositories/devel:/languages:/ruby:/extensions/
|
75
75
|
* Fedora: http://s390.koji.fedoraproject.org/koji/packageinfo?packageID=6756
|
76
76
|
|
77
77
|
|
@@ -108,7 +108,7 @@ require 'nokogiri'
|
|
108
108
|
require 'open-uri'
|
109
109
|
|
110
110
|
# Fetch and parse HTML document
|
111
|
-
doc = Nokogiri::HTML(open('https://nokogiri.org/tutorials/installing_nokogiri.html'))
|
111
|
+
doc = Nokogiri::HTML(URI.open('https://nokogiri.org/tutorials/installing_nokogiri.html'))
|
112
112
|
|
113
113
|
puts "### Search for nodes by css"
|
114
114
|
doc.css('nav ul.menu li a', 'article h2').each do |link|
|
@@ -129,27 +129,23 @@ end
|
|
129
129
|
|
130
130
|
## Requirements
|
131
131
|
|
132
|
-
|
133
|
-
to compile native extensions.
|
132
|
+
Ruby 2.5.0 or higher, including any development packages necessary to compile native extensions.
|
134
133
|
|
135
|
-
|
136
|
-
gem, but if you want to use the system versions:
|
134
|
+
In Nokogiri 1.6.0 and later libxml2 and libxslt are bundled with the gem, but if you want to use the system versions:
|
137
135
|
|
138
|
-
|
139
|
-
|
140
|
-
|
136
|
+
* First, check out [the long list](http://www.xmlsoft.org/news.html)
|
137
|
+
of fixes and changes between releases before deciding to use any
|
138
|
+
version older than is bundled with Nokogiri.
|
141
139
|
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
140
|
+
* At install time, set the environment variable
|
141
|
+
`NOKOGIRI_USE_SYSTEM_LIBRARIES` or else use the
|
142
|
+
`--use-system-libraries` argument. (See
|
143
|
+
https://nokogiri.org/tutorials/installing_nokogiri.html#install-with-system-libraries
|
144
|
+
for specifics.)
|
147
145
|
|
148
|
-
|
149
|
-
(libxml2-dev/-devel is also required)
|
146
|
+
* libxml2 >=2.6.21 with iconv support (libxml2-dev/-devel is also required)
|
150
147
|
|
151
|
-
|
152
|
-
(libxslt-dev/-devel is also required)
|
148
|
+
* libxslt, built with and supported by the given libxml2 (libxslt-dev/-devel is also required)
|
153
149
|
|
154
150
|
|
155
151
|
## Encoding
|
@@ -191,6 +187,12 @@ explicitly setting the encoding to EUC-JP on the parser:
|
|
191
187
|
We've adopted the Contributor Covenant code of conduct, which you can read in full in [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md).
|
192
188
|
|
193
189
|
|
190
|
+
## Semantic Versioning
|
191
|
+
|
192
|
+
[![SemVer compatibility](https://api.dependabot.com/badges/compatibility_score?dependency-name=nokogiri&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score/?dependency-name=nokogiri&package-manager=bundler)
|
193
|
+
|
194
|
+
Nokogiri follows [Semantic Versioning](https://semver.org/). See [`CHANGELOG.md`](CHANGELOG.md) for more details.
|
195
|
+
|
194
196
|
## License
|
195
197
|
|
196
198
|
This project is licensed under the terms of the MIT license.
|
data/ext/nokogiri/depend
CHANGED
@@ -1,358 +1,477 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
xml_cdata.h xml_attr.h xml_processing_instruction.h \
|
4
|
-
xml_entity_reference.h xml_document_fragment.h xml_comment.h \
|
5
|
-
xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
|
6
|
-
xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
|
7
|
-
xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
|
8
|
-
xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
|
9
|
-
xml_syntax_error.h xml_schema.h xml_relax_ng.h \
|
10
|
-
html_element_description.h xml_namespace.h xml_encoding_handler.h
|
1
|
+
# -*-makefile-*-
|
2
|
+
# DO NOT DELETE
|
11
3
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
xml_entity_decl.h xml_xpath_context.h
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
4
|
+
html_document.o: ./html_document.h ./nokogiri.h ./xml_libxml2_hacks.h
|
5
|
+
html_document.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
6
|
+
html_document.o: ./xml_node.h ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
7
|
+
html_document.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
8
|
+
html_document.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
9
|
+
html_document.o: ./xml_dtd.h ./xml_attribute_decl.h ./xml_element_decl.h
|
10
|
+
html_document.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
11
|
+
html_document.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
12
|
+
html_document.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
13
|
+
html_document.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
14
|
+
html_document.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
15
|
+
html_document.o: ./xml_relax_ng.h ./html_element_description.h
|
16
|
+
html_document.o: ./xml_namespace.h ./xml_encoding_handler.h
|
17
|
+
html_element_description.o: ./html_element_description.h ./nokogiri.h
|
18
|
+
html_element_description.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
19
|
+
html_element_description.o: ./html_entity_lookup.h ./html_document.h
|
20
|
+
html_element_description.o: ./xml_node.h ./xml_text.h ./xml_cdata.h
|
21
|
+
html_element_description.o: ./xml_attr.h ./xml_processing_instruction.h
|
22
|
+
html_element_description.o: ./xml_entity_reference.h
|
23
|
+
html_element_description.o: ./xml_document_fragment.h ./xml_comment.h
|
24
|
+
html_element_description.o: ./xml_node_set.h ./xml_dtd.h
|
25
|
+
html_element_description.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
26
|
+
html_element_description.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
27
|
+
html_element_description.o: ./xml_element_content.h
|
28
|
+
html_element_description.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
29
|
+
html_element_description.o: ./xml_sax_push_parser.h ./xml_reader.h
|
30
|
+
html_element_description.o: ./html_sax_parser_context.h
|
31
|
+
html_element_description.o: ./html_sax_push_parser.h ./xslt_stylesheet.h
|
32
|
+
html_element_description.o: ./xml_syntax_error.h ./xml_schema.h
|
33
|
+
html_element_description.o: ./xml_relax_ng.h ./xml_namespace.h
|
34
|
+
html_element_description.o: ./xml_encoding_handler.h
|
35
|
+
html_entity_lookup.o: ./html_entity_lookup.h ./nokogiri.h
|
36
|
+
html_entity_lookup.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
37
|
+
html_entity_lookup.o: ./html_document.h ./xml_node.h ./xml_text.h
|
38
|
+
html_entity_lookup.o: ./xml_cdata.h ./xml_attr.h
|
39
|
+
html_entity_lookup.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
40
|
+
html_entity_lookup.o: ./xml_document_fragment.h ./xml_comment.h
|
41
|
+
html_entity_lookup.o: ./xml_node_set.h ./xml_dtd.h ./xml_attribute_decl.h
|
42
|
+
html_entity_lookup.o: ./xml_element_decl.h ./xml_entity_decl.h
|
43
|
+
html_entity_lookup.o: ./xml_xpath_context.h ./xml_element_content.h
|
44
|
+
html_entity_lookup.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
45
|
+
html_entity_lookup.o: ./xml_sax_push_parser.h ./xml_reader.h
|
46
|
+
html_entity_lookup.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
47
|
+
html_entity_lookup.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
48
|
+
html_entity_lookup.o: ./xml_relax_ng.h ./html_element_description.h
|
49
|
+
html_entity_lookup.o: ./xml_namespace.h ./xml_encoding_handler.h
|
50
|
+
html_sax_parser_context.o: ./html_sax_parser_context.h ./nokogiri.h
|
51
|
+
html_sax_parser_context.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
52
|
+
html_sax_parser_context.o: ./html_entity_lookup.h ./html_document.h
|
53
|
+
html_sax_parser_context.o: ./xml_node.h ./xml_text.h ./xml_cdata.h
|
54
|
+
html_sax_parser_context.o: ./xml_attr.h ./xml_processing_instruction.h
|
55
|
+
html_sax_parser_context.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
56
|
+
html_sax_parser_context.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
57
|
+
html_sax_parser_context.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
58
|
+
html_sax_parser_context.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
59
|
+
html_sax_parser_context.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
60
|
+
html_sax_parser_context.o: ./xml_sax_parser.h ./xml_sax_push_parser.h
|
61
|
+
html_sax_parser_context.o: ./xml_reader.h ./html_sax_push_parser.h
|
62
|
+
html_sax_parser_context.o: ./xslt_stylesheet.h ./xml_syntax_error.h
|
63
|
+
html_sax_parser_context.o: ./xml_schema.h ./xml_relax_ng.h
|
64
|
+
html_sax_parser_context.o: ./html_element_description.h ./xml_namespace.h
|
65
|
+
html_sax_parser_context.o: ./xml_encoding_handler.h
|
66
|
+
html_sax_push_parser.o: ./html_sax_push_parser.h ./nokogiri.h
|
67
|
+
html_sax_push_parser.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
68
|
+
html_sax_push_parser.o: ./html_entity_lookup.h ./html_document.h ./xml_node.h
|
69
|
+
html_sax_push_parser.o: ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
70
|
+
html_sax_push_parser.o: ./xml_processing_instruction.h
|
71
|
+
html_sax_push_parser.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
72
|
+
html_sax_push_parser.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
73
|
+
html_sax_push_parser.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
74
|
+
html_sax_push_parser.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
75
|
+
html_sax_push_parser.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
76
|
+
html_sax_push_parser.o: ./xml_sax_parser.h ./xml_sax_push_parser.h
|
77
|
+
html_sax_push_parser.o: ./xml_reader.h ./html_sax_parser_context.h
|
78
|
+
html_sax_push_parser.o: ./xslt_stylesheet.h ./xml_syntax_error.h
|
79
|
+
html_sax_push_parser.o: ./xml_schema.h ./xml_relax_ng.h
|
80
|
+
html_sax_push_parser.o: ./html_element_description.h ./xml_namespace.h
|
81
|
+
html_sax_push_parser.o: ./xml_encoding_handler.h
|
82
|
+
nokogiri.o: ./nokogiri.h ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
83
|
+
nokogiri.o: ./html_entity_lookup.h ./html_document.h ./xml_node.h
|
84
|
+
nokogiri.o: ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
85
|
+
nokogiri.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
86
|
+
nokogiri.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
87
|
+
nokogiri.o: ./xml_dtd.h ./xml_attribute_decl.h ./xml_element_decl.h
|
88
|
+
nokogiri.o: ./xml_entity_decl.h ./xml_xpath_context.h ./xml_element_content.h
|
89
|
+
nokogiri.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
90
|
+
nokogiri.o: ./xml_sax_push_parser.h ./xml_reader.h
|
91
|
+
nokogiri.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
92
|
+
nokogiri.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
93
|
+
nokogiri.o: ./xml_relax_ng.h ./html_element_description.h ./xml_namespace.h
|
94
|
+
nokogiri.o: ./xml_encoding_handler.h
|
95
|
+
xml_attr.o: ./xml_attr.h ./nokogiri.h ./xml_libxml2_hacks.h ./xml_io.h
|
96
|
+
xml_attr.o: ./xml_document.h ./html_entity_lookup.h ./html_document.h
|
97
|
+
xml_attr.o: ./xml_node.h ./xml_text.h ./xml_cdata.h
|
98
|
+
xml_attr.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
99
|
+
xml_attr.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
100
|
+
xml_attr.o: ./xml_dtd.h ./xml_attribute_decl.h ./xml_element_decl.h
|
101
|
+
xml_attr.o: ./xml_entity_decl.h ./xml_xpath_context.h ./xml_element_content.h
|
102
|
+
xml_attr.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
103
|
+
xml_attr.o: ./xml_sax_push_parser.h ./xml_reader.h
|
104
|
+
xml_attr.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
105
|
+
xml_attr.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
106
|
+
xml_attr.o: ./xml_relax_ng.h ./html_element_description.h ./xml_namespace.h
|
107
|
+
xml_attr.o: ./xml_encoding_handler.h
|
108
|
+
xml_attribute_decl.o: ./xml_attribute_decl.h ./nokogiri.h
|
109
|
+
xml_attribute_decl.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
110
|
+
xml_attribute_decl.o: ./html_entity_lookup.h ./html_document.h ./xml_node.h
|
111
|
+
xml_attribute_decl.o: ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
112
|
+
xml_attribute_decl.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
113
|
+
xml_attribute_decl.o: ./xml_document_fragment.h ./xml_comment.h
|
114
|
+
xml_attribute_decl.o: ./xml_node_set.h ./xml_dtd.h ./xml_element_decl.h
|
115
|
+
xml_attribute_decl.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
116
|
+
xml_attribute_decl.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
117
|
+
xml_attribute_decl.o: ./xml_sax_parser.h ./xml_sax_push_parser.h
|
118
|
+
xml_attribute_decl.o: ./xml_reader.h ./html_sax_parser_context.h
|
119
|
+
xml_attribute_decl.o: ./html_sax_push_parser.h ./xslt_stylesheet.h
|
120
|
+
xml_attribute_decl.o: ./xml_syntax_error.h ./xml_schema.h ./xml_relax_ng.h
|
121
|
+
xml_attribute_decl.o: ./html_element_description.h ./xml_namespace.h
|
122
|
+
xml_attribute_decl.o: ./xml_encoding_handler.h
|
123
|
+
xml_cdata.o: ./xml_cdata.h ./nokogiri.h ./xml_libxml2_hacks.h ./xml_io.h
|
124
|
+
xml_cdata.o: ./xml_document.h ./html_entity_lookup.h ./html_document.h
|
125
|
+
xml_cdata.o: ./xml_node.h ./xml_text.h ./xml_attr.h
|
126
|
+
xml_cdata.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
127
|
+
xml_cdata.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
128
|
+
xml_cdata.o: ./xml_dtd.h ./xml_attribute_decl.h ./xml_element_decl.h
|
129
|
+
xml_cdata.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
130
|
+
xml_cdata.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
131
|
+
xml_cdata.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
132
|
+
xml_cdata.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
133
|
+
xml_cdata.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
134
|
+
xml_cdata.o: ./xml_relax_ng.h ./html_element_description.h ./xml_namespace.h
|
135
|
+
xml_cdata.o: ./xml_encoding_handler.h
|
136
|
+
xml_comment.o: ./xml_comment.h ./nokogiri.h ./xml_libxml2_hacks.h ./xml_io.h
|
137
|
+
xml_comment.o: ./xml_document.h ./html_entity_lookup.h ./html_document.h
|
138
|
+
xml_comment.o: ./xml_node.h ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
139
|
+
xml_comment.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
140
|
+
xml_comment.o: ./xml_document_fragment.h ./xml_node_set.h ./xml_dtd.h
|
141
|
+
xml_comment.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
142
|
+
xml_comment.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
143
|
+
xml_comment.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
144
|
+
xml_comment.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
145
|
+
xml_comment.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
146
|
+
xml_comment.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
147
|
+
xml_comment.o: ./xml_relax_ng.h ./html_element_description.h
|
148
|
+
xml_comment.o: ./xml_namespace.h ./xml_encoding_handler.h
|
149
|
+
xml_document.o: ./xml_document.h ./nokogiri.h ./xml_libxml2_hacks.h
|
150
|
+
xml_document.o: ./xml_io.h ./html_entity_lookup.h ./html_document.h
|
151
|
+
xml_document.o: ./xml_node.h ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
152
|
+
xml_document.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
153
|
+
xml_document.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
154
|
+
xml_document.o: ./xml_dtd.h ./xml_attribute_decl.h ./xml_element_decl.h
|
155
|
+
xml_document.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
156
|
+
xml_document.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
157
|
+
xml_document.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
158
|
+
xml_document.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
159
|
+
xml_document.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
160
|
+
xml_document.o: ./xml_relax_ng.h ./html_element_description.h
|
161
|
+
xml_document.o: ./xml_namespace.h ./xml_encoding_handler.h
|
162
|
+
xml_document_fragment.o: ./xml_document_fragment.h ./nokogiri.h
|
163
|
+
xml_document_fragment.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
164
|
+
xml_document_fragment.o: ./html_entity_lookup.h ./html_document.h
|
165
|
+
xml_document_fragment.o: ./xml_node.h ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
166
|
+
xml_document_fragment.o: ./xml_processing_instruction.h
|
167
|
+
xml_document_fragment.o: ./xml_entity_reference.h ./xml_comment.h
|
168
|
+
xml_document_fragment.o: ./xml_node_set.h ./xml_dtd.h ./xml_attribute_decl.h
|
169
|
+
xml_document_fragment.o: ./xml_element_decl.h ./xml_entity_decl.h
|
170
|
+
xml_document_fragment.o: ./xml_xpath_context.h ./xml_element_content.h
|
171
|
+
xml_document_fragment.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
172
|
+
xml_document_fragment.o: ./xml_sax_push_parser.h ./xml_reader.h
|
173
|
+
xml_document_fragment.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
174
|
+
xml_document_fragment.o: ./xslt_stylesheet.h ./xml_syntax_error.h
|
175
|
+
xml_document_fragment.o: ./xml_schema.h ./xml_relax_ng.h
|
176
|
+
xml_document_fragment.o: ./html_element_description.h ./xml_namespace.h
|
177
|
+
xml_document_fragment.o: ./xml_encoding_handler.h
|
178
|
+
xml_dtd.o: ./xml_dtd.h ./nokogiri.h ./xml_libxml2_hacks.h ./xml_io.h
|
179
|
+
xml_dtd.o: ./xml_document.h ./html_entity_lookup.h ./html_document.h
|
180
|
+
xml_dtd.o: ./xml_node.h ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
181
|
+
xml_dtd.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
182
|
+
xml_dtd.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
183
|
+
xml_dtd.o: ./xml_attribute_decl.h ./xml_element_decl.h ./xml_entity_decl.h
|
184
|
+
xml_dtd.o: ./xml_xpath_context.h ./xml_element_content.h
|
185
|
+
xml_dtd.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
186
|
+
xml_dtd.o: ./xml_sax_push_parser.h ./xml_reader.h ./html_sax_parser_context.h
|
187
|
+
xml_dtd.o: ./html_sax_push_parser.h ./xslt_stylesheet.h ./xml_syntax_error.h
|
188
|
+
xml_dtd.o: ./xml_schema.h ./xml_relax_ng.h ./html_element_description.h
|
189
|
+
xml_dtd.o: ./xml_namespace.h ./xml_encoding_handler.h
|
190
|
+
xml_element_content.o: ./xml_element_content.h ./nokogiri.h
|
191
|
+
xml_element_content.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
192
|
+
xml_element_content.o: ./html_entity_lookup.h ./html_document.h ./xml_node.h
|
193
|
+
xml_element_content.o: ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
194
|
+
xml_element_content.o: ./xml_processing_instruction.h
|
195
|
+
xml_element_content.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
196
|
+
xml_element_content.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
197
|
+
xml_element_content.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
198
|
+
xml_element_content.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
199
|
+
xml_element_content.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
200
|
+
xml_element_content.o: ./xml_sax_push_parser.h ./xml_reader.h
|
201
|
+
xml_element_content.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
202
|
+
xml_element_content.o: ./xslt_stylesheet.h ./xml_syntax_error.h
|
203
|
+
xml_element_content.o: ./xml_schema.h ./xml_relax_ng.h
|
204
|
+
xml_element_content.o: ./html_element_description.h ./xml_namespace.h
|
205
|
+
xml_element_content.o: ./xml_encoding_handler.h
|
206
|
+
xml_element_decl.o: ./xml_element_decl.h ./nokogiri.h ./xml_libxml2_hacks.h
|
207
|
+
xml_element_decl.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
208
|
+
xml_element_decl.o: ./html_document.h ./xml_node.h ./xml_text.h ./xml_cdata.h
|
209
|
+
xml_element_decl.o: ./xml_attr.h ./xml_processing_instruction.h
|
210
|
+
xml_element_decl.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
211
|
+
xml_element_decl.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
212
|
+
xml_element_decl.o: ./xml_attribute_decl.h ./xml_entity_decl.h
|
213
|
+
xml_element_decl.o: ./xml_xpath_context.h ./xml_element_content.h
|
214
|
+
xml_element_decl.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
215
|
+
xml_element_decl.o: ./xml_sax_push_parser.h ./xml_reader.h
|
216
|
+
xml_element_decl.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
217
|
+
xml_element_decl.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
218
|
+
xml_element_decl.o: ./xml_relax_ng.h ./html_element_description.h
|
219
|
+
xml_element_decl.o: ./xml_namespace.h ./xml_encoding_handler.h
|
220
|
+
xml_encoding_handler.o: ./xml_encoding_handler.h ./nokogiri.h
|
221
|
+
xml_encoding_handler.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
222
|
+
xml_encoding_handler.o: ./html_entity_lookup.h ./html_document.h ./xml_node.h
|
223
|
+
xml_encoding_handler.o: ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
224
|
+
xml_encoding_handler.o: ./xml_processing_instruction.h
|
225
|
+
xml_encoding_handler.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
226
|
+
xml_encoding_handler.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
227
|
+
xml_encoding_handler.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
228
|
+
xml_encoding_handler.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
229
|
+
xml_encoding_handler.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
230
|
+
xml_encoding_handler.o: ./xml_sax_parser.h ./xml_sax_push_parser.h
|
231
|
+
xml_encoding_handler.o: ./xml_reader.h ./html_sax_parser_context.h
|
232
|
+
xml_encoding_handler.o: ./html_sax_push_parser.h ./xslt_stylesheet.h
|
233
|
+
xml_encoding_handler.o: ./xml_syntax_error.h ./xml_schema.h ./xml_relax_ng.h
|
234
|
+
xml_encoding_handler.o: ./html_element_description.h ./xml_namespace.h
|
235
|
+
xml_entity_decl.o: ./xml_entity_decl.h ./nokogiri.h ./xml_libxml2_hacks.h
|
236
|
+
xml_entity_decl.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
237
|
+
xml_entity_decl.o: ./html_document.h ./xml_node.h ./xml_text.h ./xml_cdata.h
|
238
|
+
xml_entity_decl.o: ./xml_attr.h ./xml_processing_instruction.h
|
239
|
+
xml_entity_decl.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
240
|
+
xml_entity_decl.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
241
|
+
xml_entity_decl.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
242
|
+
xml_entity_decl.o: ./xml_xpath_context.h ./xml_element_content.h
|
243
|
+
xml_entity_decl.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
244
|
+
xml_entity_decl.o: ./xml_sax_push_parser.h ./xml_reader.h
|
245
|
+
xml_entity_decl.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
246
|
+
xml_entity_decl.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
247
|
+
xml_entity_decl.o: ./xml_relax_ng.h ./html_element_description.h
|
248
|
+
xml_entity_decl.o: ./xml_namespace.h ./xml_encoding_handler.h
|
249
|
+
xml_entity_reference.o: ./xml_entity_reference.h ./nokogiri.h
|
250
|
+
xml_entity_reference.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
251
|
+
xml_entity_reference.o: ./html_entity_lookup.h ./html_document.h ./xml_node.h
|
252
|
+
xml_entity_reference.o: ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
253
|
+
xml_entity_reference.o: ./xml_processing_instruction.h
|
254
|
+
xml_entity_reference.o: ./xml_document_fragment.h ./xml_comment.h
|
255
|
+
xml_entity_reference.o: ./xml_node_set.h ./xml_dtd.h ./xml_attribute_decl.h
|
256
|
+
xml_entity_reference.o: ./xml_element_decl.h ./xml_entity_decl.h
|
257
|
+
xml_entity_reference.o: ./xml_xpath_context.h ./xml_element_content.h
|
258
|
+
xml_entity_reference.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
259
|
+
xml_entity_reference.o: ./xml_sax_push_parser.h ./xml_reader.h
|
260
|
+
xml_entity_reference.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
261
|
+
xml_entity_reference.o: ./xslt_stylesheet.h ./xml_syntax_error.h
|
262
|
+
xml_entity_reference.o: ./xml_schema.h ./xml_relax_ng.h
|
263
|
+
xml_entity_reference.o: ./html_element_description.h ./xml_namespace.h
|
264
|
+
xml_entity_reference.o: ./xml_encoding_handler.h
|
265
|
+
xml_io.o: ./xml_io.h ./nokogiri.h ./xml_libxml2_hacks.h ./xml_document.h
|
266
|
+
xml_io.o: ./html_entity_lookup.h ./html_document.h ./xml_node.h ./xml_text.h
|
267
|
+
xml_io.o: ./xml_cdata.h ./xml_attr.h ./xml_processing_instruction.h
|
268
|
+
xml_io.o: ./xml_entity_reference.h ./xml_document_fragment.h ./xml_comment.h
|
269
|
+
xml_io.o: ./xml_node_set.h ./xml_dtd.h ./xml_attribute_decl.h
|
270
|
+
xml_io.o: ./xml_element_decl.h ./xml_entity_decl.h ./xml_xpath_context.h
|
271
|
+
xml_io.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
272
|
+
xml_io.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
273
|
+
xml_io.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
274
|
+
xml_io.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
275
|
+
xml_io.o: ./xml_relax_ng.h ./html_element_description.h ./xml_namespace.h
|
276
|
+
xml_io.o: ./xml_encoding_handler.h
|
277
|
+
xml_namespace.o: ./xml_namespace.h ./nokogiri.h ./xml_libxml2_hacks.h
|
278
|
+
xml_namespace.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
279
|
+
xml_namespace.o: ./html_document.h ./xml_node.h ./xml_text.h ./xml_cdata.h
|
280
|
+
xml_namespace.o: ./xml_attr.h ./xml_processing_instruction.h
|
281
|
+
xml_namespace.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
282
|
+
xml_namespace.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
283
|
+
xml_namespace.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
284
|
+
xml_namespace.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
285
|
+
xml_namespace.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
286
|
+
xml_namespace.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
287
|
+
xml_namespace.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
288
|
+
xml_namespace.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
289
|
+
xml_namespace.o: ./xml_relax_ng.h ./html_element_description.h
|
290
|
+
xml_namespace.o: ./xml_encoding_handler.h
|
291
|
+
xml_node.o: ./xml_node.h ./nokogiri.h ./xml_libxml2_hacks.h ./xml_io.h
|
292
|
+
xml_node.o: ./xml_document.h ./html_entity_lookup.h ./html_document.h
|
293
|
+
xml_node.o: ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
294
|
+
xml_node.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
295
|
+
xml_node.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
296
|
+
xml_node.o: ./xml_dtd.h ./xml_attribute_decl.h ./xml_element_decl.h
|
297
|
+
xml_node.o: ./xml_entity_decl.h ./xml_xpath_context.h ./xml_element_content.h
|
298
|
+
xml_node.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
299
|
+
xml_node.o: ./xml_sax_push_parser.h ./xml_reader.h
|
300
|
+
xml_node.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
301
|
+
xml_node.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
302
|
+
xml_node.o: ./xml_relax_ng.h ./html_element_description.h ./xml_namespace.h
|
303
|
+
xml_node.o: ./xml_encoding_handler.h
|
304
|
+
xml_node_set.o: ./xml_node_set.h ./nokogiri.h ./xml_libxml2_hacks.h
|
305
|
+
xml_node_set.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
306
|
+
xml_node_set.o: ./html_document.h ./xml_node.h ./xml_text.h ./xml_cdata.h
|
307
|
+
xml_node_set.o: ./xml_attr.h ./xml_processing_instruction.h
|
308
|
+
xml_node_set.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
309
|
+
xml_node_set.o: ./xml_comment.h ./xml_dtd.h ./xml_attribute_decl.h
|
310
|
+
xml_node_set.o: ./xml_element_decl.h ./xml_entity_decl.h
|
311
|
+
xml_node_set.o: ./xml_xpath_context.h ./xml_element_content.h
|
312
|
+
xml_node_set.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
313
|
+
xml_node_set.o: ./xml_sax_push_parser.h ./xml_reader.h
|
314
|
+
xml_node_set.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
315
|
+
xml_node_set.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
316
|
+
xml_node_set.o: ./xml_relax_ng.h ./html_element_description.h
|
317
|
+
xml_node_set.o: ./xml_namespace.h ./xml_encoding_handler.h
|
318
|
+
xml_processing_instruction.o: ./xml_processing_instruction.h ./nokogiri.h
|
319
|
+
xml_processing_instruction.o: ./xml_libxml2_hacks.h ./xml_io.h
|
320
|
+
xml_processing_instruction.o: ./xml_document.h ./html_entity_lookup.h
|
321
|
+
xml_processing_instruction.o: ./html_document.h ./xml_node.h ./xml_text.h
|
322
|
+
xml_processing_instruction.o: ./xml_cdata.h ./xml_attr.h
|
323
|
+
xml_processing_instruction.o: ./xml_entity_reference.h
|
324
|
+
xml_processing_instruction.o: ./xml_document_fragment.h ./xml_comment.h
|
325
|
+
xml_processing_instruction.o: ./xml_node_set.h ./xml_dtd.h
|
326
|
+
xml_processing_instruction.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
327
|
+
xml_processing_instruction.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
328
|
+
xml_processing_instruction.o: ./xml_element_content.h
|
329
|
+
xml_processing_instruction.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
330
|
+
xml_processing_instruction.o: ./xml_sax_push_parser.h ./xml_reader.h
|
331
|
+
xml_processing_instruction.o: ./html_sax_parser_context.h
|
332
|
+
xml_processing_instruction.o: ./html_sax_push_parser.h ./xslt_stylesheet.h
|
333
|
+
xml_processing_instruction.o: ./xml_syntax_error.h ./xml_schema.h
|
334
|
+
xml_processing_instruction.o: ./xml_relax_ng.h ./html_element_description.h
|
335
|
+
xml_processing_instruction.o: ./xml_namespace.h ./xml_encoding_handler.h
|
336
|
+
xml_reader.o: ./xml_reader.h ./nokogiri.h ./xml_libxml2_hacks.h ./xml_io.h
|
337
|
+
xml_reader.o: ./xml_document.h ./html_entity_lookup.h ./html_document.h
|
338
|
+
xml_reader.o: ./xml_node.h ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
339
|
+
xml_reader.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
340
|
+
xml_reader.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
341
|
+
xml_reader.o: ./xml_dtd.h ./xml_attribute_decl.h ./xml_element_decl.h
|
342
|
+
xml_reader.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
343
|
+
xml_reader.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
344
|
+
xml_reader.o: ./xml_sax_parser.h ./xml_sax_push_parser.h
|
345
|
+
xml_reader.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
346
|
+
xml_reader.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
347
|
+
xml_reader.o: ./xml_relax_ng.h ./html_element_description.h ./xml_namespace.h
|
348
|
+
xml_reader.o: ./xml_encoding_handler.h
|
349
|
+
xml_relax_ng.o: ./xml_relax_ng.h ./nokogiri.h ./xml_libxml2_hacks.h
|
350
|
+
xml_relax_ng.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
351
|
+
xml_relax_ng.o: ./html_document.h ./xml_node.h ./xml_text.h ./xml_cdata.h
|
352
|
+
xml_relax_ng.o: ./xml_attr.h ./xml_processing_instruction.h
|
353
|
+
xml_relax_ng.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
354
|
+
xml_relax_ng.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
355
|
+
xml_relax_ng.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
356
|
+
xml_relax_ng.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
357
|
+
xml_relax_ng.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
358
|
+
xml_relax_ng.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
359
|
+
xml_relax_ng.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
360
|
+
xml_relax_ng.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
361
|
+
xml_relax_ng.o: ./html_element_description.h ./xml_namespace.h
|
362
|
+
xml_relax_ng.o: ./xml_encoding_handler.h
|
363
|
+
xml_sax_parser.o: ./xml_sax_parser.h ./nokogiri.h ./xml_libxml2_hacks.h
|
364
|
+
xml_sax_parser.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
365
|
+
xml_sax_parser.o: ./html_document.h ./xml_node.h ./xml_text.h ./xml_cdata.h
|
366
|
+
xml_sax_parser.o: ./xml_attr.h ./xml_processing_instruction.h
|
367
|
+
xml_sax_parser.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
368
|
+
xml_sax_parser.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
369
|
+
xml_sax_parser.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
370
|
+
xml_sax_parser.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
371
|
+
xml_sax_parser.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
372
|
+
xml_sax_parser.o: ./xml_sax_push_parser.h ./xml_reader.h
|
373
|
+
xml_sax_parser.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
374
|
+
xml_sax_parser.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
375
|
+
xml_sax_parser.o: ./xml_relax_ng.h ./html_element_description.h
|
376
|
+
xml_sax_parser.o: ./xml_namespace.h ./xml_encoding_handler.h
|
377
|
+
xml_sax_parser_context.o: ./xml_sax_parser_context.h ./nokogiri.h
|
378
|
+
xml_sax_parser_context.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
379
|
+
xml_sax_parser_context.o: ./html_entity_lookup.h ./html_document.h
|
380
|
+
xml_sax_parser_context.o: ./xml_node.h ./xml_text.h ./xml_cdata.h
|
381
|
+
xml_sax_parser_context.o: ./xml_attr.h ./xml_processing_instruction.h
|
382
|
+
xml_sax_parser_context.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
383
|
+
xml_sax_parser_context.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
384
|
+
xml_sax_parser_context.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
385
|
+
xml_sax_parser_context.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
386
|
+
xml_sax_parser_context.o: ./xml_element_content.h ./xml_sax_parser.h
|
387
|
+
xml_sax_parser_context.o: ./xml_sax_push_parser.h ./xml_reader.h
|
388
|
+
xml_sax_parser_context.o: ./html_sax_parser_context.h
|
389
|
+
xml_sax_parser_context.o: ./html_sax_push_parser.h ./xslt_stylesheet.h
|
390
|
+
xml_sax_parser_context.o: ./xml_syntax_error.h ./xml_schema.h
|
391
|
+
xml_sax_parser_context.o: ./xml_relax_ng.h ./html_element_description.h
|
392
|
+
xml_sax_parser_context.o: ./xml_namespace.h ./xml_encoding_handler.h
|
393
|
+
xml_sax_push_parser.o: ./xml_sax_push_parser.h ./nokogiri.h
|
394
|
+
xml_sax_push_parser.o: ./xml_libxml2_hacks.h ./xml_io.h ./xml_document.h
|
395
|
+
xml_sax_push_parser.o: ./html_entity_lookup.h ./html_document.h ./xml_node.h
|
396
|
+
xml_sax_push_parser.o: ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
397
|
+
xml_sax_push_parser.o: ./xml_processing_instruction.h
|
398
|
+
xml_sax_push_parser.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
399
|
+
xml_sax_push_parser.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
400
|
+
xml_sax_push_parser.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
401
|
+
xml_sax_push_parser.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
402
|
+
xml_sax_push_parser.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
403
|
+
xml_sax_push_parser.o: ./xml_sax_parser.h ./xml_reader.h
|
404
|
+
xml_sax_push_parser.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
405
|
+
xml_sax_push_parser.o: ./xslt_stylesheet.h ./xml_syntax_error.h
|
406
|
+
xml_sax_push_parser.o: ./xml_schema.h ./xml_relax_ng.h
|
407
|
+
xml_sax_push_parser.o: ./html_element_description.h ./xml_namespace.h
|
408
|
+
xml_sax_push_parser.o: ./xml_encoding_handler.h
|
409
|
+
xml_schema.o: ./xml_schema.h ./nokogiri.h ./xml_libxml2_hacks.h ./xml_io.h
|
410
|
+
xml_schema.o: ./xml_document.h ./html_entity_lookup.h ./html_document.h
|
411
|
+
xml_schema.o: ./xml_node.h ./xml_text.h ./xml_cdata.h ./xml_attr.h
|
412
|
+
xml_schema.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
413
|
+
xml_schema.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
414
|
+
xml_schema.o: ./xml_dtd.h ./xml_attribute_decl.h ./xml_element_decl.h
|
415
|
+
xml_schema.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
416
|
+
xml_schema.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
417
|
+
xml_schema.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
418
|
+
xml_schema.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
419
|
+
xml_schema.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_relax_ng.h
|
420
|
+
xml_schema.o: ./html_element_description.h ./xml_namespace.h
|
421
|
+
xml_schema.o: ./xml_encoding_handler.h
|
422
|
+
xml_syntax_error.o: ./xml_syntax_error.h ./nokogiri.h ./xml_libxml2_hacks.h
|
423
|
+
xml_syntax_error.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
424
|
+
xml_syntax_error.o: ./html_document.h ./xml_node.h ./xml_text.h ./xml_cdata.h
|
425
|
+
xml_syntax_error.o: ./xml_attr.h ./xml_processing_instruction.h
|
426
|
+
xml_syntax_error.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
427
|
+
xml_syntax_error.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
428
|
+
xml_syntax_error.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
429
|
+
xml_syntax_error.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
430
|
+
xml_syntax_error.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
431
|
+
xml_syntax_error.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
432
|
+
xml_syntax_error.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
433
|
+
xml_syntax_error.o: ./xslt_stylesheet.h ./xml_schema.h ./xml_relax_ng.h
|
434
|
+
xml_syntax_error.o: ./html_element_description.h ./xml_namespace.h
|
435
|
+
xml_syntax_error.o: ./xml_encoding_handler.h
|
436
|
+
xml_text.o: ./xml_text.h ./nokogiri.h ./xml_libxml2_hacks.h ./xml_io.h
|
437
|
+
xml_text.o: ./xml_document.h ./html_entity_lookup.h ./html_document.h
|
438
|
+
xml_text.o: ./xml_node.h ./xml_cdata.h ./xml_attr.h
|
439
|
+
xml_text.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
440
|
+
xml_text.o: ./xml_document_fragment.h ./xml_comment.h ./xml_node_set.h
|
441
|
+
xml_text.o: ./xml_dtd.h ./xml_attribute_decl.h ./xml_element_decl.h
|
442
|
+
xml_text.o: ./xml_entity_decl.h ./xml_xpath_context.h ./xml_element_content.h
|
443
|
+
xml_text.o: ./xml_sax_parser_context.h ./xml_sax_parser.h
|
444
|
+
xml_text.o: ./xml_sax_push_parser.h ./xml_reader.h
|
445
|
+
xml_text.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
446
|
+
xml_text.o: ./xslt_stylesheet.h ./xml_syntax_error.h ./xml_schema.h
|
447
|
+
xml_text.o: ./xml_relax_ng.h ./html_element_description.h ./xml_namespace.h
|
448
|
+
xml_text.o: ./xml_encoding_handler.h
|
449
|
+
xml_xpath_context.o: ./xml_xpath_context.h ./nokogiri.h ./xml_libxml2_hacks.h
|
450
|
+
xml_xpath_context.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
451
|
+
xml_xpath_context.o: ./html_document.h ./xml_node.h ./xml_text.h
|
452
|
+
xml_xpath_context.o: ./xml_cdata.h ./xml_attr.h
|
453
|
+
xml_xpath_context.o: ./xml_processing_instruction.h ./xml_entity_reference.h
|
454
|
+
xml_xpath_context.o: ./xml_document_fragment.h ./xml_comment.h
|
455
|
+
xml_xpath_context.o: ./xml_node_set.h ./xml_dtd.h ./xml_attribute_decl.h
|
456
|
+
xml_xpath_context.o: ./xml_element_decl.h ./xml_entity_decl.h
|
457
|
+
xml_xpath_context.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
458
|
+
xml_xpath_context.o: ./xml_sax_parser.h ./xml_sax_push_parser.h
|
459
|
+
xml_xpath_context.o: ./xml_reader.h ./html_sax_parser_context.h
|
460
|
+
xml_xpath_context.o: ./html_sax_push_parser.h ./xslt_stylesheet.h
|
461
|
+
xml_xpath_context.o: ./xml_syntax_error.h ./xml_schema.h ./xml_relax_ng.h
|
462
|
+
xml_xpath_context.o: ./html_element_description.h ./xml_namespace.h
|
463
|
+
xml_xpath_context.o: ./xml_encoding_handler.h
|
464
|
+
xslt_stylesheet.o: ./xslt_stylesheet.h ./nokogiri.h ./xml_libxml2_hacks.h
|
465
|
+
xslt_stylesheet.o: ./xml_io.h ./xml_document.h ./html_entity_lookup.h
|
466
|
+
xslt_stylesheet.o: ./html_document.h ./xml_node.h ./xml_text.h ./xml_cdata.h
|
467
|
+
xslt_stylesheet.o: ./xml_attr.h ./xml_processing_instruction.h
|
468
|
+
xslt_stylesheet.o: ./xml_entity_reference.h ./xml_document_fragment.h
|
469
|
+
xslt_stylesheet.o: ./xml_comment.h ./xml_node_set.h ./xml_dtd.h
|
470
|
+
xslt_stylesheet.o: ./xml_attribute_decl.h ./xml_element_decl.h
|
471
|
+
xslt_stylesheet.o: ./xml_entity_decl.h ./xml_xpath_context.h
|
472
|
+
xslt_stylesheet.o: ./xml_element_content.h ./xml_sax_parser_context.h
|
473
|
+
xslt_stylesheet.o: ./xml_sax_parser.h ./xml_sax_push_parser.h ./xml_reader.h
|
474
|
+
xslt_stylesheet.o: ./html_sax_parser_context.h ./html_sax_push_parser.h
|
475
|
+
xslt_stylesheet.o: ./xml_syntax_error.h ./xml_schema.h ./xml_relax_ng.h
|
476
|
+
xslt_stylesheet.o: ./html_element_description.h ./xml_namespace.h
|
477
|
+
xslt_stylesheet.o: ./xml_encoding_handler.h
|