nokogiri 1.10.0 → 1.11.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -0
  3. data/LICENSE-DEPENDENCIES.md +1015 -947
  4. data/README.md +178 -90
  5. data/dependencies.yml +28 -26
  6. data/ext/nokogiri/depend +476 -357
  7. data/ext/nokogiri/extconf.rb +508 -354
  8. data/ext/nokogiri/html_document.c +79 -78
  9. data/ext/nokogiri/html_sax_parser_context.c +4 -2
  10. data/ext/nokogiri/html_sax_push_parser.c +14 -8
  11. data/ext/nokogiri/nokogiri.c +37 -40
  12. data/ext/nokogiri/nokogiri.h +26 -17
  13. data/ext/nokogiri/test_global_handlers.c +41 -0
  14. data/ext/nokogiri/xml_document.c +18 -4
  15. data/ext/nokogiri/xml_io.c +8 -6
  16. data/ext/nokogiri/xml_node.c +23 -6
  17. data/ext/nokogiri/xml_node_set.c +1 -1
  18. data/ext/nokogiri/xml_reader.c +6 -17
  19. data/ext/nokogiri/xml_relax_ng.c +29 -11
  20. data/ext/nokogiri/xml_sax_parser.c +2 -7
  21. data/ext/nokogiri/xml_sax_parser_context.c +4 -2
  22. data/ext/nokogiri/xml_sax_push_parser.c +2 -0
  23. data/ext/nokogiri/xml_schema.c +84 -13
  24. data/ext/nokogiri/xml_syntax_error.c +23 -0
  25. data/ext/nokogiri/xml_syntax_error.h +15 -3
  26. data/ext/nokogiri/xml_xpath_context.c +80 -4
  27. data/ext/nokogiri/xslt_stylesheet.c +2 -9
  28. data/lib/nokogiri.rb +22 -22
  29. data/lib/nokogiri/css.rb +1 -0
  30. data/lib/nokogiri/css/node.rb +1 -0
  31. data/lib/nokogiri/css/parser.rb +63 -62
  32. data/lib/nokogiri/css/parser.y +2 -2
  33. data/lib/nokogiri/css/parser_extras.rb +39 -36
  34. data/lib/nokogiri/css/syntax_error.rb +1 -0
  35. data/lib/nokogiri/css/tokenizer.rb +105 -103
  36. data/lib/nokogiri/css/xpath_visitor.rb +73 -43
  37. data/lib/nokogiri/decorators/slop.rb +1 -0
  38. data/lib/nokogiri/html.rb +1 -0
  39. data/lib/nokogiri/html/builder.rb +1 -0
  40. data/lib/nokogiri/html/document.rb +13 -26
  41. data/lib/nokogiri/html/document_fragment.rb +1 -0
  42. data/lib/nokogiri/html/element_description.rb +1 -0
  43. data/lib/nokogiri/html/element_description_defaults.rb +1 -0
  44. data/lib/nokogiri/html/entity_lookup.rb +1 -0
  45. data/lib/nokogiri/html/sax/parser.rb +1 -0
  46. data/lib/nokogiri/html/sax/parser_context.rb +1 -0
  47. data/lib/nokogiri/html/sax/push_parser.rb +1 -0
  48. data/lib/nokogiri/jruby/dependencies.rb +20 -0
  49. data/lib/nokogiri/syntax_error.rb +1 -0
  50. data/lib/nokogiri/version.rb +3 -109
  51. data/lib/nokogiri/version/constant.rb +5 -0
  52. data/lib/nokogiri/version/info.rb +182 -0
  53. data/lib/nokogiri/xml.rb +1 -0
  54. data/lib/nokogiri/xml/attr.rb +1 -0
  55. data/lib/nokogiri/xml/attribute_decl.rb +1 -0
  56. data/lib/nokogiri/xml/builder.rb +36 -32
  57. data/lib/nokogiri/xml/cdata.rb +1 -0
  58. data/lib/nokogiri/xml/character_data.rb +1 -0
  59. data/lib/nokogiri/xml/document.rb +21 -16
  60. data/lib/nokogiri/xml/document_fragment.rb +5 -6
  61. data/lib/nokogiri/xml/dtd.rb +1 -0
  62. data/lib/nokogiri/xml/element_content.rb +1 -0
  63. data/lib/nokogiri/xml/element_decl.rb +1 -0
  64. data/lib/nokogiri/xml/entity_decl.rb +1 -0
  65. data/lib/nokogiri/xml/entity_reference.rb +1 -0
  66. data/lib/nokogiri/xml/namespace.rb +1 -0
  67. data/lib/nokogiri/xml/node.rb +588 -250
  68. data/lib/nokogiri/xml/node/save_options.rb +1 -0
  69. data/lib/nokogiri/xml/node_set.rb +43 -8
  70. data/lib/nokogiri/xml/notation.rb +1 -0
  71. data/lib/nokogiri/xml/parse_options.rb +10 -3
  72. data/lib/nokogiri/xml/pp.rb +1 -0
  73. data/lib/nokogiri/xml/pp/character_data.rb +1 -0
  74. data/lib/nokogiri/xml/pp/node.rb +1 -0
  75. data/lib/nokogiri/xml/processing_instruction.rb +1 -0
  76. data/lib/nokogiri/xml/reader.rb +7 -3
  77. data/lib/nokogiri/xml/relax_ng.rb +7 -2
  78. data/lib/nokogiri/xml/sax.rb +1 -0
  79. data/lib/nokogiri/xml/sax/document.rb +1 -0
  80. data/lib/nokogiri/xml/sax/parser.rb +1 -0
  81. data/lib/nokogiri/xml/sax/parser_context.rb +1 -0
  82. data/lib/nokogiri/xml/sax/push_parser.rb +1 -0
  83. data/lib/nokogiri/xml/schema.rb +13 -4
  84. data/lib/nokogiri/xml/searchable.rb +25 -16
  85. data/lib/nokogiri/xml/syntax_error.rb +1 -0
  86. data/lib/nokogiri/xml/text.rb +1 -0
  87. data/lib/nokogiri/xml/xpath.rb +1 -0
  88. data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -0
  89. data/lib/nokogiri/xml/xpath_context.rb +1 -0
  90. data/lib/nokogiri/xslt.rb +1 -0
  91. data/lib/nokogiri/xslt/stylesheet.rb +1 -0
  92. data/lib/xsd/xmlparser/nokogiri.rb +1 -0
  93. data/patches/libxml2/0002-Remove-script-macro-support.patch +40 -0
  94. data/patches/libxml2/0003-Update-entities-to-remove-handling-of-ssi.patch +44 -0
  95. data/patches/libxml2/0004-libxml2.la-is-in-top_builddir.patch +25 -0
  96. data/patches/libxml2/0005-Fix-infinite-loop-in-xmlStringLenDecodeEntities.patch +32 -0
  97. data/patches/libxml2/0006-htmlParseComment-treat-as-if-it-closed-the-comment.patch +73 -0
  98. data/patches/libxml2/0007-use-new-htmlParseLookupCommentEnd-to-find-comment-en.patch +103 -0
  99. data/patches/libxml2/0008-use-glibc-strlen.patch +53 -0
  100. data/patches/libxml2/0009-avoid-isnan-isinf.patch +81 -0
  101. data/ports/archives/libxml2-2.9.10.tar.gz +0 -0
  102. data/ports/archives/libxslt-1.1.34.tar.gz +0 -0
  103. metadata +106 -99
  104. data/ports/archives/libxml2-2.9.9.tar.gz +0 -0
  105. data/ports/archives/libxslt-1.1.33.tar.gz +0 -0
data/README.md CHANGED
@@ -1,97 +1,153 @@
1
+ <div><img src="https://nokogiri.org/images/nokogiri-serif-black.png" align="right"/></div>
2
+
1
3
  # Nokogiri
2
4
 
3
- ## Description
5
+ Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby. It provides a sensible, easy-to-understand API for reading, writing, modifying, and querying documents. It is fast and standards-compliant by relying on native parsers like libxml2 (C) and xerces (Java).
6
+
7
+ ## Guiding Principles
8
+
9
+ Some guiding principles Nokogiri tries to follow:
10
+
11
+ - be secure-by-default by treating all documents as **untrusted** by default
12
+ - be a **thin-as-reasonable layer** on top of the underlying parsers, and don't attempt to fix behavioral differences between the parsers
13
+
4
14
 
5
- Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among
6
- Nokogiri's many features is the ability to search documents via XPath
7
- or CSS3 selectors.
15
+ ## Features Overview
8
16
 
17
+ - DOM Parser for XML and HTML4
18
+ - SAX Parser for XML and HTML4
19
+ - Push Parser for XML and HTML4
20
+ - Document search via XPath 1.0
21
+ - Document search via CSS3 selectors, with some jquery-like extensions
22
+ - XSD Schema validation
23
+ - XSLT transformation
24
+ - "Builder" DSL for XML and HTML documents
9
25
 
10
- ## Links
11
26
 
12
- * http://nokogiri.org
13
- * [Installation Help](http://nokogiri.org/tutorials/installing_nokogiri.html)
14
- * [Tutorials](http://nokogiri.org)
15
- * [GitHub](https://github.com/sparklemotion/nokogiri)
16
- * [Mailing List](https://groups.google.com/group/nokogiri-talk)
17
- * [Bug Reports](https://github.com/sparklemotion/nokogiri/issues)
18
- * [Chat/Gitter](https://gitter.im/sparklemotion/nokogiri)
27
+ ## Status
19
28
 
20
- [![Concourse CI](https://ci.nokogiri.org/api/v1/teams/nokogiri-core/pipelines/nokogiri/jobs/ruby-2.4-system/badge)](https://ci.nokogiri.org/teams/nokogiri-core/pipelines/nokogiri?groups=master)
29
+ [![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)
30
+ [![Appveyor CI](https://ci.appveyor.com/api/projects/status/xj2pqwvlxwuwgr06/branch/master?svg=true)](https://ci.appveyor.com/project/flavorjones/nokogiri/branch/master)
21
31
  [![Code Climate](https://codeclimate.com/github/sparklemotion/nokogiri.svg)](https://codeclimate.com/github/sparklemotion/nokogiri)
22
- [![Join the chat at https://gitter.im/sparklemotion/nokogiri](https://badges.gitter.im/sparklemotion/nokogiri.svg)](https://gitter.im/sparklemotion/nokogiri?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
23
- [![Tidelift dependencies](https://tidelift.com/badges/github/sparklemotion/nokogiri)](https://tidelift.com/subscription/pkg/rubygems-nokogiri?utm_source=rubygems-nokogiri&utm_medium=referral&utm_campaign=readme)
32
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/59c67b0e8976027a45ad/test_coverage)](https://codeclimate.com/github/sparklemotion/nokogiri/test_coverage)
24
33
 
34
+ [![Gem Version](https://badge.fury.io/rb/nokogiri.svg)](https://rubygems.org/gems/nokogiri)
35
+ [![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)
36
+ [![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)
25
37
 
26
- ## Features
27
38
 
28
- * XML/HTML DOM parser which handles broken HTML
29
- * XML/HTML SAX parser
30
- * XML/HTML Push parser
31
- * XPath 1.0 support for document searching
32
- * CSS3 selector support for document searching
33
- * XML/HTML builder
34
- * XSLT transformer
39
+ ## Support and Help
35
40
 
36
- Nokogiri parses and searches XML/HTML using native libraries (either C
37
- or Java, depending on your Ruby), which means it's fast and
38
- standards-compliant.
41
+ All official documentation is posted at https://nokogiri.org (the source for which is at https://github.com/sparklemotion/nokogiri.org/, and we welcome contributions).
39
42
 
43
+ ### Reading
40
44
 
41
- ## Installation
45
+ Your first stops for API documentation should be:
42
46
 
43
- If this doesn't work:
47
+ - RDocs: https://nokogiri.org/rdoc/index.html
48
+ - An excellent community-maintained [Cheat Sheet](https://github.com/sparklemotion/nokogiri/wiki/Cheat-sheet)
44
49
 
45
- ```
46
- gem install nokogiri
47
- ```
48
50
 
49
- then please start troubleshooting here:
51
+ ### Questions
52
+
53
+ If you'd like to talk to a human:
50
54
 
51
- > http://www.nokogiri.org/tutorials/installing_nokogiri.html
55
+ - The Discord chat channel is `#nokogiri-💎` at https://discord.gg/UyQnKrT
56
+ - The Gitter chat channel is https://gitter.im/sparklemotion/nokogiri
57
+ - The IRC chat channel is `#nokogiri` on freenode.
58
+ - The Nokogiri mailing list is active at https://groups.google.com/group/nokogiri-talk
59
+ - The Nokogiri bug tracker is at https://github.com/sparklemotion/nokogiri/issues
52
60
 
53
- There are currently 1,237 Stack Overflow questions about Nokogiri
54
- installation. The vast majority of them are out of date and therefore
55
- incorrect. __Please do not use Stack Overflow.__
61
+ Consider subscribing to [Tidelift][tidelift] which provides license assurances and timely security notifications for your open source dependencies, including Nokogiri. [Tidelift][tidelift] subscriptions also help the Nokogiri maintainers fund our [automated testing](https://ci.nokogiri.org) which in turn allows us to ship releases, bugfixes, and security updates more often.
56
62
 
57
- Instead, [tell us](http://nokogiri.org/tutorials/getting_help.html)
58
- when the above instructions don't work for you. This allows us to both
59
- help you directly and improve the documentation.
63
+ [tidelift]: https://tidelift.com/subscription/pkg/rubygems-nokogiri?utm_source=rubygems-nokogiri&utm_medium=referral&utm_campaign=readme
60
64
 
61
65
 
62
- ### Binary packages
66
+ ### Security and Vulnerability Reporting
63
67
 
64
- Binary packages are available for some distributions.
68
+ Please report vulnerabilities at https://hackerone.com/nokogiri
65
69
 
66
- * Debian: https://packages.debian.org/sid/ruby-nokogiri
67
- * SuSE: https://download.opensuse.org/repositories/devel:/languages:/ruby:/extensions/
68
- * Fedora: http://s390.koji.fedoraproject.org/koji/packageinfo?packageID=6756
70
+ Full information and description of our security policy is in [`SECURITY.md`](SECURITY.md)
69
71
 
70
72
 
71
- ## Support
73
+ ### Semantic Versioning Policy
72
74
 
73
- There are open-source tutorials (to which we invite contributions!) here: http://nokogiri.org/tutorials
75
+ Nokogiri follows [Semantic Versioning](https://semver.org/) (since 2017 or so). [![Dependabot's SemVer compatibility score for Nokogiri](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)
74
76
 
75
- * The Nokogiri mailing list is active: https://groups.google.com/group/nokogiri-talk
76
- * The Nokogiri bug tracker is here: https://github.com/sparklemotion/nokogiri/issues
77
- * Before filing a bug report, please read our submission guidelines: http://nokogiri.org/tutorials/getting_help.html
78
- * The IRC channel is #nokogiri on freenode.
77
+ We bump `Major.Minor.Patch` versions following this guidance:
79
78
 
80
- Consider subscribing to [Tidelift][tidelift] which provides license assurances and timely security notifications for your open source dependencies, including Nokogiri. [Tidelift][tidelift] subscriptions also help the Nokogiri maintainers fund our [automated testing](https://ci.nokogiri.org) which in turn allows us to ship releases, bugfixes, and security updates more often.
79
+ `Major`: (we've never done this)
81
80
 
82
- [tidelift]: https://tidelift.com/subscription/pkg/rubygems-nokogiri?utm_source=rubygems-nokogiri&utm_medium=referral&utm_campaign=readme
81
+ - Significant backwards-incompatible changes to the public API that would require rewriting existing application code.
82
+ - Some examples of backwards-incompatible changes we might someday consider for a Major release are at [`ROADMAP.md`](ROADMAP.md).
83
83
 
84
+ `Minor`:
84
85
 
85
- ## Security and Vulnerability Reporting
86
+ - Features and bugfixes.
87
+ - Updating packaged libraries for non-security-related reasons.
88
+ - Dropping support for EOLed Ruby versions. [Some folks find this objectionable](https://github.com/sparklemotion/nokogiri/issues/1568), but [SemVer says this is OK if the public API hasn't changed](https://semver.org/#what-should-i-do-if-i-update-my-own-dependencies-without-changing-the-public-api).
89
+ - Backwards-incompatible changes to internal or private methods and constants. These are detailed in the "Changes" section of each changelog entry.
86
90
 
87
- Please report vulnerabilities at https://hackerone.com/nokogiri
91
+ `Patch`:
92
+
93
+ - Bugfixes.
94
+ - Security updates.
95
+ - Updating packaged libraries for security-related reasons.
96
+
97
+
98
+ ## Installation
99
+
100
+ Requirements:
101
+
102
+ - Ruby >= 2.5
103
+ - JRuby >= 9.2.0.0
104
+
105
+
106
+ ### Native Gems: Faster, more reliable installation
107
+
108
+ "Native gems" contain pre-compiled libraries for a specific machine architecture. On supported platforms, this removes the need for compiling the C extension and the packaged libraries, or for system dependencies to exist. This results in **much faster installation** and **more reliable installation**, which as you probably know are the biggest headaches for Nokogiri users.
109
+
110
+ ### Supported Platforms
111
+
112
+ As of v1.11.0, Nokogiri ships pre-compiled, "native" gems for the following platforms:
113
+
114
+ - Linux: `x86-linux` and `x86_64-linux` (req: `glibc >= 2.17`), including musl platforms like Alpine
115
+ - Darwin/MacOS: `x86_64-darwin` and `arm64-darwin`
116
+ - Windows: `x86-mingw32` and `x64-mingw32`
117
+ - Java: any platform running JRuby 9.2 or higher
118
+
119
+ To determine whether your system supports one of these gems, look at the output of `bundle platform` or `ruby -e 'puts Gem::Platform.local.to_s'`.
120
+
121
+ If you're on a supported platform, either `gem install` or `bundle install` should install a native gem without any additional action on your part. This installation should only take a few seconds, and your output should look something like:
122
+
123
+ ``` sh
124
+ $ gem install nokogiri
125
+ Fetching nokogiri-1.11.0-x86_64-linux.gem
126
+ Successfully installed nokogiri-1.11.0-x86_64-linux
127
+ 1 gem installed
128
+ ```
129
+
130
+
131
+ ### Other Installation Options
132
+
133
+ Because Nokogiri is a C extension, it requires that you have a C compiler toolchain, Ruby development header files, and some system dependencies installed.
134
+
135
+ The following may work for you if you have an appropriately-configured system:
136
+
137
+ ``` bash
138
+ gem install nokogiri
139
+ ```
140
+
141
+ If you have any issues, please visit [Installing Nokogiri](https://nokogiri.org/tutorials/installing_nokogiri.html) for more complete instructions and troubleshooting.
88
142
 
89
- Full information and description of our security policy is in [`SECURITY.md`](SECURITY.md)
90
143
 
144
+ ## How To Use Nokogiri
91
145
 
92
- ## Synopsis
146
+ Nokogiri is a large library, and so it's challenging to briefly summarize it. We've tried to provide long, real-world examples at [Tutorials](https://nokogiri.org/tutorials/toc.html).
93
147
 
94
- Nokogiri is a large library, but here is example usage for parsing and examining a document:
148
+ ### Parsing and Querying
149
+
150
+ Here is example usage for parsing and querying a document:
95
151
 
96
152
  ```ruby
97
153
  #! /usr/bin/env ruby
@@ -100,51 +156,26 @@ require 'nokogiri'
100
156
  require 'open-uri'
101
157
 
102
158
  # Fetch and parse HTML document
103
- doc = Nokogiri::HTML(open('http://www.nokogiri.org/tutorials/installing_nokogiri.html'))
159
+ doc = Nokogiri::HTML(URI.open('https://nokogiri.org/tutorials/installing_nokogiri.html'))
104
160
 
105
- puts "### Search for nodes by css"
161
+ # Search for nodes by css
106
162
  doc.css('nav ul.menu li a', 'article h2').each do |link|
107
163
  puts link.content
108
164
  end
109
165
 
110
- puts "### Search for nodes by xpath"
166
+ # Search for nodes by xpath
111
167
  doc.xpath('//nav//ul//li/a', '//article//h2').each do |link|
112
168
  puts link.content
113
169
  end
114
170
 
115
- puts "### Or mix and match."
171
+ # Or mix and match
116
172
  doc.search('nav ul.menu li a', '//article//h2').each do |link|
117
173
  puts link.content
118
174
  end
119
175
  ```
120
176
 
121
177
 
122
- ## Requirements
123
-
124
- * Ruby 2.3.0 or higher, including any development packages necessary
125
- to compile native extensions.
126
-
127
- * In Nokogiri 1.6.0 and later libxml2 and libxslt are bundled with the
128
- gem, but if you want to use the system versions:
129
-
130
- * First, check out [the long list](http://www.xmlsoft.org/news.html)
131
- of fixes and changes between releases before deciding to use any
132
- version older than is bundled with Nokogiri.
133
-
134
- * At install time, set the environment variable
135
- `NOKOGIRI_USE_SYSTEM_LIBRARIES` or else use the
136
- `--use-system-libraries` argument. (See
137
- http://nokogiri.org/tutorials/installing_nokogiri.html#using_your_system_libraries
138
- for specifics.)
139
-
140
- * libxml2 >=2.6.21 with iconv support
141
- (libxml2-dev/-devel is also required)
142
-
143
- * libxslt, built with and supported by the given libxml2
144
- (libxslt-dev/-devel is also required)
145
-
146
-
147
- ## Encoding
178
+ ### Encoding
148
179
 
149
180
  Strings are always stored as UTF-8 internally. Methods that return
150
181
  text values will always return UTF-8 encoded strings. Methods that
@@ -170,15 +201,72 @@ explicitly setting the encoding to EUC-JP on the parser:
170
201
  ```
171
202
 
172
203
 
173
- ## Development
204
+ ## Technical Overview
205
+
206
+ ### Guiding Principles
207
+
208
+ As noted above, two guiding principles of the software are:
209
+
210
+ - be secure-by-default by treating all documents as **untrusted** by default
211
+ - be a **thin-as-reasonable layer** on top of the underlying parsers, and don't attempt to fix behavioral differences between the parsers
212
+
213
+ Notably, despite all parsers being standards-compliant, there are behavioral inconsistencies between the parsers used in the CRuby and JRuby implementations, and Nokogiri does not and should not attempt to remove these inconsistencies. Instead, we surface these differences in the test suite when they are important/semantic; or we intentionally write tests to depend only on the important/semantic bits (omitting whitespace from regex matchers on results, for example).
214
+
215
+
216
+ ### CRuby
217
+
218
+ The Ruby (a.k.a., CRuby, MRI, YARV) implementation is a C extension that depends on libxml2 and libxslt (which in turn depend on zlib and possibly libiconv).
219
+
220
+ These dependencies are met by default by Nokogiri's packaged versions of the libxml2 and libxslt source code, but a configuration option `--use-system-libraries` is provided to allow specification of alternative library locations. See [Installing Nokogiri](https://nokogiri.org/tutorials/installing_nokogiri.html) for full documentation.
221
+
222
+ We provide native gems by pre-compiling libxml2 and libxslt (and potentially zlib and libiconv) and packaging them into the gem file. In this case, no compilation is necessary at installation time, which leads to faster and more reliable installation.
223
+
224
+ See [`LICENSE-DEPENDENCIES.md`](LICENSE-DEPENDENCIES.md) for more information on which dependencies are provided in which native and source gems.
225
+
226
+
227
+ ### JRuby
228
+
229
+ The Java (a.k.a. JRuby) implementation is a Java extension that depends primarily on Xerces and NekoHTML for parsing, though additional dependencies are on `isorelax`, `nekodtd`, `jing`, `serializer`, `xalan-j`, and `xml-apis`.
230
+
231
+ These dependencies are provided by pre-compiled jar files packaged in the `java` platform gem.
232
+
233
+ See [`LICENSE-DEPENDENCIES.md`](LICENSE-DEPENDENCIES.md) for more information on which dependencies are provided in which native and source gems.
234
+
235
+
236
+ ## Contributing
174
237
 
175
238
  ```bash
176
- bundle install
177
- bundle exec rake
239
+ bundle install
240
+ bundle exec rake compile test
178
241
  ```
179
242
 
243
+
244
+ ## Code of Conduct
245
+
246
+ We've adopted the Contributor Covenant code of conduct, which you can read in full in [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md).
247
+
248
+
180
249
  ## License
181
250
 
182
251
  This project is licensed under the terms of the MIT license.
183
252
 
184
253
  See this license at [`LICENSE.md`](LICENSE.md).
254
+
255
+
256
+ ### Dependencies
257
+
258
+ Some additional libraries may be distributed with your version of Nokogiri. Please see [`LICENSE-DEPENDENCIES.md`](LICENSE-DEPENDENCIES.md) for a discussion of the variations as well as the licenses thereof.
259
+
260
+
261
+ ## Authors
262
+
263
+ - Mike Dalessio
264
+ - Aaron Patterson
265
+ - Yoko Harada
266
+ - Akinori MUSHA
267
+ - John Shahid
268
+ - Karol Bucek
269
+ - Lars Kanis
270
+ - Sergio Arbeo
271
+ - Timothy Elliott
272
+ - Nobuyoshi Nakada
@@ -1,11 +1,11 @@
1
1
  libxml2:
2
- version: "2.9.9"
3
- sha256: "94fb70890143e3c6549f265cee93ec064c80a84c42ad0f23e85ee1fd6540a871"
2
+ version: "2.9.10"
3
+ sha256: "aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f"
4
4
  # manually verified checksum:
5
5
  #
6
- # $ gpg --verify libxml2-2.9.9.tar.gz.asc ports/archives/libxml2-2.9.9.tar.gz
7
- # gpg: Signature made Thu 03 Jan 2019 01:14:47 PM EST
8
- # gpg: using RSA key 15588B26596BEA5D
6
+ # $ gpg --verify libxml2-2.9.10.tar.gz.asc ports/archives/libxml2-2.9.10.tar.gz
7
+ # gpg: Signature made Wed 30 Oct 2019 03:15:42 PM EDT
8
+ # gpg: using RSA key DB46681BB91ADCEA170FA2D415588B26596BEA5D
9
9
  # gpg: Good signature from "Daniel Veillard (Red Hat work email) <veillard@redhat.com>" [unknown]
10
10
  # gpg: aka "Daniel Veillard <Daniel.Veillard@w3.org>" [unknown]
11
11
  # gpg: WARNING: This key is not certified with a trusted signature!
@@ -16,25 +16,26 @@ libxml2:
16
16
  # using this pgp signature:
17
17
  #
18
18
  # -----BEGIN PGP SIGNATURE-----
19
- #
20
- # iQEbBAABAgAGBQJcLlEXAAoJEBVYiyZZa+pd1B8H93xeCYNBLx+eX0xe3qS3ReS/
21
- # YstjkXKUkmDQYwqQ/9Knmv1P6NX64hQL5E1pZX5sXp36giwXXJ5tCK72VRzektzU
22
- # Kpo+M1/QA9feZQs1GmyKaXYzNwTSJnsdKA9nWqTHZ3bzfdhFSZ0czo94vgY/cz5z
23
- # 9P3FIgeldj1vi8p2rjXbArMFQyaxHnve9LdxI8hbudNSeUw/FEV6mjtXrlZ7MXqn
24
- # hmAkah2JwktOStF5tIlddCRqZeUPUX5flBxT95gfskXXlGEhaoGMXcC3izqqJyV2
25
- # sx5nY7fnXdkwfYsgRUXYWmDmbs8DnFjXH9lux9O4OWglLonaRoAqFPcOzE3aCw==
26
- # =4qWg
19
+ #
20
+ # iQEzBAABCAAdFiEE20ZoG7ka3OoXD6LUFViLJllr6l0FAl254V4ACgkQFViLJllr
21
+ # 6l0ldAf6Azt4/oKDfMKRd+xaykUrb+34dr2ZRsjRDS1cnelAtL9TCWhE5lOkLI3c
22
+ # 3FyNRaLhOEOOluZmKTJYyzS42JSSHDhxGj14gIeyafOjvRhHG3h1m5GvMmvgKWkd
23
+ # qzxFrVFSG26iWJxMvxIA88t7M+QHb7ff7xR29ETJscewEmAd3LmZITglK02lWeGz
24
+ # LfxfLuakM6RnCUu0dzacJKO0nMOKju+RL/N9bciI/UOhNYEkWqPnzC0GzbvFLqDu
25
+ # rM+OvCSewSTziiejpdrUwYXkY5Ui2+cxUbacLauEr8iRLg7xXKqv27NORE4yeQcS
26
+ # LgIhxG/qSNfihMS6E1ZO5bK2DbGCZQ==
27
+ # =ZNuc
27
28
  # -----END PGP SIGNATURE-----
28
29
  #
29
30
 
30
31
  libxslt:
31
- version: "1.1.33"
32
- sha256: "8e36605144409df979cab43d835002f63988f3dc94d5d3537c12796db90e38c8"
32
+ version: "1.1.34"
33
+ sha256: "98b1bd46d6792925ad2dfe9a87452ea2adebf69dcb9919ffd55bf926a7f93f7f"
33
34
  # manually verified checksum:
34
35
  #
35
- # $ gpg --verify libxslt-1.1.33.tar.gz.asc ports/archives/libxslt-1.1.33.tar.gz
36
- # gpg: Signature made Thu 03 Jan 2019 01:30:49 PM EST
37
- # gpg: using RSA key 15588B26596BEA5D
36
+ # $ gpg --verify ~/Downloads/libxslt-1.1.34.tar.gz.asc ports/archives/libxslt-1.1.34.tar.gz
37
+ # gpg: Signature made Wed 30 Oct 2019 04:02:48 PM EDT
38
+ # gpg: using RSA key DB46681BB91ADCEA170FA2D415588B26596BEA5D
38
39
  # gpg: Good signature from "Daniel Veillard (Red Hat work email) <veillard@redhat.com>" [unknown]
39
40
  # gpg: aka "Daniel Veillard <Daniel.Veillard@w3.org>" [unknown]
40
41
  # gpg: WARNING: This key is not certified with a trusted signature!
@@ -45,14 +46,15 @@ libxslt:
45
46
  # using this pgp signature:
46
47
  #
47
48
  # -----BEGIN PGP SIGNATURE-----
48
- #
49
- # iQEcBAABAgAGBQJcLlTZAAoJEBVYiyZZa+pd9NkIAIf6ei2iSpR/0QOyS71esDq8
50
- # 407PcUXd/yUjDANm4Uvm7kKK+SbbfBxFIPva4g984Noe1zYMfjK3u3iNs6jykySf
51
- # mN5eo2wNCxsZnqjbnsLgQvn5VCQpPInTddTuGUxgqJyvnR7p785L1oA2EStSPMP4
52
- # BGZ9dZGlbreK35WzgrhUi0VN5egJW2fpMsw7rTPvfwK+90gXL0DEm8v3WlA7fCDL
53
- # QsvuPm7jPOXxdt5bYrVP8wpNMTJIGqV6jxh7Vvl6kiGLldUjCyoCh0AGXLror0Gs
54
- # sAMlRKJNodpcCYkIWxzjLt74sUciKNrPLHZlXJcclZMONen1GWnVDcv83Tt9n6w=
55
- # =iAm8
49
+ #
50
+ # iQEzBAABCAAdFiEE20ZoG7ka3OoXD6LUFViLJllr6l0FAl257GgACgkQFViLJllr
51
+ # 6l2vVggAjJEHmASiS56SxhPOsGqbfBihM66gQFoIymQfMu2430N1GSTkLsfbkJO8
52
+ # 8yBX11NjzK/m9uxwshMW3rVCU7EpL3PUimN3reXdPiQj9hAOAWF1V3BZNevbQC2E
53
+ # FCIraioukaidf8sjUG4/sGpK/gOcP/3hYoN0HUoBigCNJjDqhijxM3M3GJJtCASp
54
+ # jL4CQbs2OmxW8ixOZbuWEESvFFHUgYRsdZjRVN+GRfSOvJjxypurmYwQ3RjO7JxL
55
+ # 2FY8qKQ+xpeID8NV8F5OUEvWBjk1QS133VTqBZNlONdnEtV/og6jNu5k0O/Kvhup
56
+ # caR+8TMErOcLr9OgDklO6DoYyAsf9Q==
57
+ # =g4i4
56
58
  # -----END PGP SIGNATURE-----
57
59
  #
58
60
 
@@ -1,358 +1,477 @@
1
- html_document.o: html_document.c html_document.h nokogiri.h xml_io.h \
2
- xml_document.h html_entity_lookup.h xml_node.h xml_text.h \
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
- html_element_description.o: html_element_description.c \
13
- html_element_description.h nokogiri.h xml_io.h xml_document.h \
14
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
15
- xml_cdata.h xml_attr.h xml_processing_instruction.h \
16
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
17
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
18
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
19
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
20
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
21
- xml_syntax_error.h xml_schema.h xml_relax_ng.h xml_namespace.h \
22
- xml_encoding_handler.h
23
-
24
- html_entity_lookup.o: html_entity_lookup.c html_entity_lookup.h \
25
- nokogiri.h xml_io.h xml_document.h html_document.h xml_node.h \
26
- xml_text.h xml_cdata.h xml_attr.h xml_processing_instruction.h \
27
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
28
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
29
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
30
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
31
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
32
- xml_syntax_error.h xml_schema.h xml_relax_ng.h \
33
- html_element_description.h xml_namespace.h xml_encoding_handler.h
34
-
35
- html_sax_parser_context.o: html_sax_parser_context.c \
36
- html_sax_parser_context.h nokogiri.h xml_io.h xml_document.h \
37
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
38
- xml_cdata.h xml_attr.h xml_processing_instruction.h \
39
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
40
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
41
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
42
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
43
- xml_reader.h xslt_stylesheet.h xml_syntax_error.h xml_schema.h \
44
- xml_relax_ng.h html_element_description.h xml_namespace.h \
45
- xml_encoding_handler.h
46
-
47
- nokogiri.o: nokogiri.c nokogiri.h xml_io.h xml_document.h \
48
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
49
- xml_cdata.h xml_attr.h xml_processing_instruction.h \
50
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
51
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
52
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
53
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
54
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
55
- xml_syntax_error.h xml_schema.h xml_relax_ng.h \
56
- html_element_description.h xml_namespace.h xml_encoding_handler.h
57
-
58
- xml_attr.o: xml_attr.c xml_attr.h nokogiri.h xml_io.h xml_document.h \
59
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
60
- xml_cdata.h xml_processing_instruction.h xml_entity_reference.h \
61
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
62
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
63
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
64
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
65
- html_sax_parser_context.h xslt_stylesheet.h xml_syntax_error.h \
66
- xml_schema.h xml_relax_ng.h html_element_description.h \
67
- xml_namespace.h xml_encoding_handler.h
68
-
69
- xml_attribute_decl.o: xml_attribute_decl.c xml_attribute_decl.h \
70
- nokogiri.h xml_io.h xml_document.h html_entity_lookup.h \
71
- html_document.h xml_node.h xml_text.h xml_cdata.h xml_attr.h \
72
- xml_processing_instruction.h xml_entity_reference.h \
73
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
74
- xml_element_decl.h xml_entity_decl.h xml_xpath_context.h \
75
- xml_element_content.h xml_sax_parser_context.h xml_sax_parser.h \
76
- xml_sax_push_parser.h xml_reader.h html_sax_parser_context.h \
77
- xslt_stylesheet.h xml_syntax_error.h xml_schema.h xml_relax_ng.h \
78
- html_element_description.h xml_namespace.h xml_encoding_handler.h
79
-
80
- xml_cdata.o: xml_cdata.c xml_cdata.h nokogiri.h xml_io.h \
81
- xml_document.h html_entity_lookup.h html_document.h xml_node.h \
82
- xml_text.h xml_attr.h xml_processing_instruction.h \
83
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
84
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
85
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
86
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
87
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
88
- xml_syntax_error.h xml_schema.h xml_relax_ng.h \
89
- html_element_description.h xml_namespace.h xml_encoding_handler.h
90
-
91
- xml_comment.o: xml_comment.c xml_comment.h nokogiri.h xml_io.h \
92
- xml_document.h html_entity_lookup.h html_document.h xml_node.h \
93
- xml_text.h xml_cdata.h xml_attr.h xml_processing_instruction.h \
94
- xml_entity_reference.h xml_document_fragment.h xml_node_set.h \
95
- xml_dtd.h xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
96
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
97
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
98
- html_sax_parser_context.h xslt_stylesheet.h xml_syntax_error.h \
99
- xml_schema.h xml_relax_ng.h html_element_description.h \
100
- xml_namespace.h xml_encoding_handler.h
101
-
102
- xml_document.o: xml_document.c xml_document.h nokogiri.h xml_io.h \
103
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
104
- xml_cdata.h xml_attr.h xml_processing_instruction.h \
105
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
106
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
107
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
108
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
109
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
110
- xml_syntax_error.h xml_schema.h xml_relax_ng.h \
111
- html_element_description.h xml_namespace.h xml_encoding_handler.h
112
-
113
- xml_document_fragment.o: xml_document_fragment.c \
114
- xml_document_fragment.h nokogiri.h xml_io.h xml_document.h \
115
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
116
- xml_cdata.h xml_attr.h xml_processing_instruction.h \
117
- xml_entity_reference.h xml_comment.h xml_node_set.h xml_dtd.h \
118
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
119
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
120
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
121
- html_sax_parser_context.h xslt_stylesheet.h xml_syntax_error.h \
122
- xml_schema.h xml_relax_ng.h html_element_description.h \
123
- xml_namespace.h xml_encoding_handler.h
124
-
125
- xml_dtd.o: xml_dtd.c xml_dtd.h nokogiri.h xml_io.h xml_document.h \
126
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
127
- xml_cdata.h xml_attr.h xml_processing_instruction.h \
128
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
129
- xml_node_set.h xml_attribute_decl.h xml_element_decl.h \
130
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
131
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
132
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
133
- xml_syntax_error.h xml_schema.h xml_relax_ng.h \
134
- html_element_description.h xml_namespace.h xml_encoding_handler.h
135
-
136
- xml_element_content.o: xml_element_content.c xml_element_content.h \
137
- nokogiri.h xml_io.h xml_document.h html_entity_lookup.h \
138
- html_document.h xml_node.h xml_text.h xml_cdata.h xml_attr.h \
139
- xml_processing_instruction.h xml_entity_reference.h \
140
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
141
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
142
- xml_xpath_context.h xml_sax_parser_context.h xml_sax_parser.h \
143
- xml_sax_push_parser.h xml_reader.h html_sax_parser_context.h \
144
- xslt_stylesheet.h xml_syntax_error.h xml_schema.h xml_relax_ng.h \
145
- html_element_description.h xml_namespace.h xml_encoding_handler.h
146
-
147
- xml_element_decl.o: xml_element_decl.c xml_element_decl.h nokogiri.h \
148
- xml_io.h xml_document.h html_entity_lookup.h html_document.h \
149
- xml_node.h xml_text.h xml_cdata.h xml_attr.h \
150
- xml_processing_instruction.h xml_entity_reference.h \
151
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
152
- xml_attribute_decl.h xml_entity_decl.h xml_xpath_context.h \
153
- xml_element_content.h xml_sax_parser_context.h xml_sax_parser.h \
154
- xml_sax_push_parser.h xml_reader.h html_sax_parser_context.h \
155
- xslt_stylesheet.h xml_syntax_error.h xml_schema.h xml_relax_ng.h \
156
- html_element_description.h xml_namespace.h xml_encoding_handler.h
157
-
158
- xml_encoding_handler.o: xml_encoding_handler.c xml_encoding_handler.h \
159
- nokogiri.h xml_io.h xml_document.h html_entity_lookup.h \
160
- html_document.h xml_node.h xml_text.h xml_cdata.h xml_attr.h \
161
- xml_processing_instruction.h xml_entity_reference.h \
162
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
163
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
164
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
165
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
166
- html_sax_parser_context.h xslt_stylesheet.h xml_syntax_error.h \
167
- xml_schema.h xml_relax_ng.h html_element_description.h \
168
- xml_namespace.h
169
-
170
- xml_entity_decl.o: xml_entity_decl.c xml_entity_decl.h nokogiri.h \
171
- xml_io.h xml_document.h html_entity_lookup.h html_document.h \
172
- xml_node.h xml_text.h xml_cdata.h xml_attr.h \
173
- xml_processing_instruction.h xml_entity_reference.h \
174
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
175
- xml_attribute_decl.h xml_element_decl.h xml_xpath_context.h \
176
- xml_element_content.h xml_sax_parser_context.h xml_sax_parser.h \
177
- xml_sax_push_parser.h xml_reader.h html_sax_parser_context.h \
178
- xslt_stylesheet.h xml_syntax_error.h xml_schema.h xml_relax_ng.h \
179
- html_element_description.h xml_namespace.h xml_encoding_handler.h
180
-
181
- xml_entity_reference.o: xml_entity_reference.c xml_entity_reference.h \
182
- nokogiri.h xml_io.h xml_document.h html_entity_lookup.h \
183
- html_document.h xml_node.h xml_text.h xml_cdata.h xml_attr.h \
184
- xml_processing_instruction.h xml_document_fragment.h xml_comment.h \
185
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
186
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
187
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
188
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
189
- xml_syntax_error.h xml_schema.h xml_relax_ng.h \
190
- html_element_description.h xml_namespace.h xml_encoding_handler.h
191
-
192
- xml_io.o: xml_io.c xml_io.h nokogiri.h xml_document.h \
193
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
194
- xml_cdata.h xml_attr.h xml_processing_instruction.h \
195
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
196
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
197
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
198
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
199
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
200
- xml_syntax_error.h xml_schema.h xml_relax_ng.h \
201
- html_element_description.h xml_namespace.h xml_encoding_handler.h
202
-
203
- xml_namespace.o: xml_namespace.c xml_namespace.h nokogiri.h xml_io.h \
204
- xml_document.h html_entity_lookup.h html_document.h xml_node.h \
205
- xml_text.h xml_cdata.h xml_attr.h xml_processing_instruction.h \
206
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
207
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
208
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
209
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
210
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
211
- xml_syntax_error.h xml_schema.h xml_relax_ng.h \
212
- html_element_description.h xml_encoding_handler.h
213
-
214
- xml_node.o: xml_node.c xml_node.h nokogiri.h xml_io.h xml_document.h \
215
- html_entity_lookup.h html_document.h xml_text.h xml_cdata.h \
216
- xml_attr.h xml_processing_instruction.h xml_entity_reference.h \
217
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
218
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
219
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
220
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
221
- html_sax_parser_context.h xslt_stylesheet.h xml_syntax_error.h \
222
- xml_schema.h xml_relax_ng.h html_element_description.h \
223
- xml_namespace.h xml_encoding_handler.h
224
-
225
- xml_node_set.o: xml_node_set.c xml_node_set.h nokogiri.h xml_io.h \
226
- xml_document.h html_entity_lookup.h html_document.h xml_node.h \
227
- xml_text.h xml_cdata.h xml_attr.h xml_processing_instruction.h \
228
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
229
- xml_dtd.h xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
230
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
231
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
232
- html_sax_parser_context.h xslt_stylesheet.h xml_syntax_error.h \
233
- xml_schema.h xml_relax_ng.h html_element_description.h \
234
- xml_namespace.h xml_encoding_handler.h
235
-
236
- xml_processing_instruction.o: xml_processing_instruction.c \
237
- xml_processing_instruction.h nokogiri.h xml_io.h xml_document.h \
238
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
239
- xml_cdata.h xml_attr.h xml_entity_reference.h xml_document_fragment.h \
240
- xml_comment.h xml_node_set.h xml_dtd.h xml_attribute_decl.h \
241
- xml_element_decl.h xml_entity_decl.h xml_xpath_context.h \
242
- xml_element_content.h xml_sax_parser_context.h xml_sax_parser.h \
243
- xml_sax_push_parser.h xml_reader.h html_sax_parser_context.h \
244
- xslt_stylesheet.h xml_syntax_error.h xml_schema.h xml_relax_ng.h \
245
- html_element_description.h xml_namespace.h xml_encoding_handler.h
246
-
247
- xml_reader.o: xml_reader.c xml_reader.h nokogiri.h xml_io.h \
248
- xml_document.h html_entity_lookup.h html_document.h xml_node.h \
249
- xml_text.h xml_cdata.h xml_attr.h xml_processing_instruction.h \
250
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
251
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
252
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
253
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
254
- html_sax_parser_context.h xslt_stylesheet.h xml_syntax_error.h \
255
- xml_schema.h xml_relax_ng.h html_element_description.h \
256
- xml_namespace.h xml_encoding_handler.h
257
-
258
- xml_relax_ng.o: xml_relax_ng.c xml_relax_ng.h nokogiri.h xml_io.h \
259
- xml_document.h html_entity_lookup.h html_document.h xml_node.h \
260
- xml_text.h xml_cdata.h xml_attr.h xml_processing_instruction.h \
261
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
262
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
263
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
264
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
265
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
266
- xml_syntax_error.h xml_schema.h html_element_description.h \
267
- xml_namespace.h xml_encoding_handler.h
268
-
269
- xml_sax_parser.o: xml_sax_parser.c xml_sax_parser.h nokogiri.h \
270
- xml_io.h xml_document.h html_entity_lookup.h html_document.h \
271
- xml_node.h xml_text.h xml_cdata.h xml_attr.h \
272
- xml_processing_instruction.h xml_entity_reference.h \
273
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
274
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
275
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
276
- xml_sax_push_parser.h xml_reader.h html_sax_parser_context.h \
277
- xslt_stylesheet.h xml_syntax_error.h xml_schema.h xml_relax_ng.h \
278
- html_element_description.h xml_namespace.h xml_encoding_handler.h
279
-
280
- xml_sax_parser_context.o: xml_sax_parser_context.c \
281
- xml_sax_parser_context.h nokogiri.h xml_io.h xml_document.h \
282
- html_entity_lookup.h html_document.h xml_node.h xml_text.h \
283
- xml_cdata.h xml_attr.h xml_processing_instruction.h \
284
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
285
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
286
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
287
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
288
- html_sax_parser_context.h xslt_stylesheet.h xml_syntax_error.h \
289
- xml_schema.h xml_relax_ng.h html_element_description.h \
290
- xml_namespace.h xml_encoding_handler.h
291
-
292
- xml_sax_push_parser.o: xml_sax_push_parser.c xml_sax_push_parser.h \
293
- nokogiri.h xml_io.h xml_document.h html_entity_lookup.h \
294
- html_document.h xml_node.h xml_text.h xml_cdata.h xml_attr.h \
295
- xml_processing_instruction.h xml_entity_reference.h \
296
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
297
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
298
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
299
- xml_sax_parser.h xml_reader.h html_sax_parser_context.h \
300
- xslt_stylesheet.h xml_syntax_error.h xml_schema.h xml_relax_ng.h \
301
- html_element_description.h xml_namespace.h xml_encoding_handler.h
302
-
303
- xml_schema.o: xml_schema.c xml_schema.h nokogiri.h xml_io.h \
304
- xml_document.h html_entity_lookup.h html_document.h xml_node.h \
305
- xml_text.h xml_cdata.h xml_attr.h xml_processing_instruction.h \
306
- xml_entity_reference.h xml_document_fragment.h xml_comment.h \
307
- xml_node_set.h xml_dtd.h xml_attribute_decl.h xml_element_decl.h \
308
- xml_entity_decl.h xml_xpath_context.h xml_element_content.h \
309
- xml_sax_parser_context.h xml_sax_parser.h xml_sax_push_parser.h \
310
- xml_reader.h html_sax_parser_context.h xslt_stylesheet.h \
311
- xml_syntax_error.h xml_relax_ng.h html_element_description.h \
312
- xml_namespace.h xml_encoding_handler.h
313
-
314
- xml_syntax_error.o: xml_syntax_error.c xml_syntax_error.h nokogiri.h \
315
- xml_io.h xml_document.h html_entity_lookup.h html_document.h \
316
- xml_node.h xml_text.h xml_cdata.h xml_attr.h \
317
- xml_processing_instruction.h xml_entity_reference.h \
318
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
319
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
320
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
321
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
322
- html_sax_parser_context.h xslt_stylesheet.h xml_schema.h \
323
- xml_relax_ng.h html_element_description.h xml_namespace.h \
324
- xml_encoding_handler.h
325
-
326
- xml_text.o: xml_text.c xml_text.h nokogiri.h xml_io.h xml_document.h \
327
- html_entity_lookup.h html_document.h xml_node.h xml_cdata.h \
328
- xml_attr.h xml_processing_instruction.h xml_entity_reference.h \
329
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
330
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
331
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
332
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
333
- html_sax_parser_context.h xslt_stylesheet.h xml_syntax_error.h \
334
- xml_schema.h xml_relax_ng.h html_element_description.h \
335
- xml_namespace.h xml_encoding_handler.h
336
-
337
- xml_xpath_context.o: xml_xpath_context.c xml_xpath_context.h \
338
- nokogiri.h xml_io.h xml_document.h html_entity_lookup.h \
339
- html_document.h xml_node.h xml_text.h xml_cdata.h xml_attr.h \
340
- xml_processing_instruction.h xml_entity_reference.h \
341
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
342
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
343
- xml_element_content.h xml_sax_parser_context.h xml_sax_parser.h \
344
- xml_sax_push_parser.h xml_reader.h html_sax_parser_context.h \
345
- xslt_stylesheet.h xml_syntax_error.h xml_schema.h xml_relax_ng.h \
346
- html_element_description.h xml_namespace.h xml_encoding_handler.h
347
-
348
- xslt_stylesheet.o: xslt_stylesheet.c xslt_stylesheet.h nokogiri.h \
349
- xml_io.h xml_document.h html_entity_lookup.h html_document.h \
350
- xml_node.h xml_text.h xml_cdata.h xml_attr.h \
351
- xml_processing_instruction.h xml_entity_reference.h \
352
- xml_document_fragment.h xml_comment.h xml_node_set.h xml_dtd.h \
353
- xml_attribute_decl.h xml_element_decl.h xml_entity_decl.h \
354
- xml_xpath_context.h xml_element_content.h xml_sax_parser_context.h \
355
- xml_sax_parser.h xml_sax_push_parser.h xml_reader.h \
356
- html_sax_parser_context.h xml_syntax_error.h xml_schema.h \
357
- xml_relax_ng.h html_element_description.h xml_namespace.h \
358
- xml_encoding_handler.h
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