nokogiri 1.11.0-arm64-darwin → 1.11.4-arm64-darwin

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 (101) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE-DEPENDENCIES.md +12 -12
  3. data/LICENSE.md +1 -1
  4. data/README.md +21 -16
  5. data/dependencies.yml +12 -12
  6. data/ext/nokogiri/depend +34 -474
  7. data/ext/nokogiri/extconf.rb +253 -183
  8. data/ext/nokogiri/html_document.c +10 -15
  9. data/ext/nokogiri/html_element_description.c +84 -71
  10. data/ext/nokogiri/html_entity_lookup.c +21 -16
  11. data/ext/nokogiri/html_sax_parser_context.c +67 -64
  12. data/ext/nokogiri/html_sax_push_parser.c +42 -34
  13. data/ext/nokogiri/include/libxml2/libxml/c14n.h +6 -4
  14. data/ext/nokogiri/include/libxml2/libxml/parser.h +9 -7
  15. data/ext/nokogiri/include/libxml2/libxml/tree.h +3 -3
  16. data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +2 -0
  17. data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +39 -115
  18. data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +1 -1
  19. data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +6 -6
  20. data/ext/nokogiri/include/libxml2/libxml/xpath.h +1 -3
  21. data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
  22. data/ext/nokogiri/nokogiri.c +171 -60
  23. data/ext/nokogiri/nokogiri.h +158 -75
  24. data/ext/nokogiri/test_global_handlers.c +40 -0
  25. data/ext/nokogiri/xml_attr.c +15 -15
  26. data/ext/nokogiri/xml_attribute_decl.c +18 -18
  27. data/ext/nokogiri/xml_cdata.c +13 -18
  28. data/ext/nokogiri/xml_comment.c +19 -26
  29. data/ext/nokogiri/xml_document.c +246 -188
  30. data/ext/nokogiri/xml_document_fragment.c +13 -15
  31. data/ext/nokogiri/xml_dtd.c +54 -48
  32. data/ext/nokogiri/xml_element_content.c +30 -27
  33. data/ext/nokogiri/xml_element_decl.c +22 -22
  34. data/ext/nokogiri/xml_encoding_handler.c +17 -11
  35. data/ext/nokogiri/xml_entity_decl.c +32 -30
  36. data/ext/nokogiri/xml_entity_reference.c +16 -18
  37. data/ext/nokogiri/xml_namespace.c +56 -49
  38. data/ext/nokogiri/xml_node.c +371 -320
  39. data/ext/nokogiri/xml_node_set.c +168 -156
  40. data/ext/nokogiri/xml_processing_instruction.c +17 -19
  41. data/ext/nokogiri/xml_reader.c +191 -157
  42. data/ext/nokogiri/xml_relax_ng.c +29 -23
  43. data/ext/nokogiri/xml_sax_parser.c +117 -112
  44. data/ext/nokogiri/xml_sax_parser_context.c +101 -84
  45. data/ext/nokogiri/xml_sax_push_parser.c +36 -27
  46. data/ext/nokogiri/xml_schema.c +48 -42
  47. data/ext/nokogiri/xml_syntax_error.c +42 -21
  48. data/ext/nokogiri/xml_text.c +13 -17
  49. data/ext/nokogiri/xml_xpath_context.c +134 -127
  50. data/ext/nokogiri/xslt_stylesheet.c +157 -157
  51. data/lib/nokogiri.rb +1 -22
  52. data/lib/nokogiri/2.5/nokogiri.bundle +0 -0
  53. data/lib/nokogiri/2.6/nokogiri.bundle +0 -0
  54. data/lib/nokogiri/2.7/nokogiri.bundle +0 -0
  55. data/lib/nokogiri/3.0/nokogiri.bundle +0 -0
  56. data/lib/nokogiri/css/parser.rb +1 -1
  57. data/lib/nokogiri/extension.rb +26 -0
  58. data/lib/nokogiri/html/document_fragment.rb +15 -15
  59. data/lib/nokogiri/version/constant.rb +1 -1
  60. data/lib/nokogiri/version/info.rb +31 -8
  61. data/lib/nokogiri/xml/document.rb +74 -28
  62. data/lib/nokogiri/xml/node.rb +39 -42
  63. data/lib/nokogiri/xml/reader.rb +2 -9
  64. data/lib/nokogiri/xml/xpath.rb +1 -3
  65. data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
  66. metadata +11 -43
  67. data/ext/nokogiri/html_document.h +0 -10
  68. data/ext/nokogiri/html_element_description.h +0 -10
  69. data/ext/nokogiri/html_entity_lookup.h +0 -8
  70. data/ext/nokogiri/html_sax_parser_context.h +0 -11
  71. data/ext/nokogiri/html_sax_push_parser.h +0 -9
  72. data/ext/nokogiri/xml_attr.h +0 -9
  73. data/ext/nokogiri/xml_attribute_decl.h +0 -9
  74. data/ext/nokogiri/xml_cdata.h +0 -9
  75. data/ext/nokogiri/xml_comment.h +0 -9
  76. data/ext/nokogiri/xml_document.h +0 -23
  77. data/ext/nokogiri/xml_document_fragment.h +0 -10
  78. data/ext/nokogiri/xml_dtd.h +0 -10
  79. data/ext/nokogiri/xml_element_content.h +0 -10
  80. data/ext/nokogiri/xml_element_decl.h +0 -9
  81. data/ext/nokogiri/xml_encoding_handler.h +0 -8
  82. data/ext/nokogiri/xml_entity_decl.h +0 -10
  83. data/ext/nokogiri/xml_entity_reference.h +0 -9
  84. data/ext/nokogiri/xml_io.c +0 -63
  85. data/ext/nokogiri/xml_io.h +0 -11
  86. data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
  87. data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
  88. data/ext/nokogiri/xml_namespace.h +0 -14
  89. data/ext/nokogiri/xml_node.h +0 -13
  90. data/ext/nokogiri/xml_node_set.h +0 -12
  91. data/ext/nokogiri/xml_processing_instruction.h +0 -9
  92. data/ext/nokogiri/xml_reader.h +0 -10
  93. data/ext/nokogiri/xml_relax_ng.h +0 -9
  94. data/ext/nokogiri/xml_sax_parser.h +0 -39
  95. data/ext/nokogiri/xml_sax_parser_context.h +0 -10
  96. data/ext/nokogiri/xml_sax_push_parser.h +0 -9
  97. data/ext/nokogiri/xml_schema.h +0 -9
  98. data/ext/nokogiri/xml_syntax_error.h +0 -13
  99. data/ext/nokogiri/xml_text.h +0 -9
  100. data/ext/nokogiri/xml_xpath_context.h +0 -10
  101. data/ext/nokogiri/xslt_stylesheet.h +0 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d046286cbf5f10b3e6f7080e5f87090d9961b958c108aa22e552c4308a956390
4
- data.tar.gz: 95b6c645054a98554b23b24d2d82f3b3bffcc67ac5759fbd9eee2675c8f76440
3
+ metadata.gz: 7b14a7be4d7830993c0f689e06f580019b9062dc3b46421f1162c80247eadaf2
4
+ data.tar.gz: 278b80aaa734c1028743acd5b3ee03d22fd2ca2110ae2f9539422ac4c2ca434e
5
5
  SHA512:
6
- metadata.gz: fd4fc9a44d58f04674b8a583cdd040f5f8206b481836299f35c564688c6625e5b776a1d6d43374190744f17c56bd86083b601d818eb523ff54ef887d548f241e
7
- data.tar.gz: 653ec66e56934fde75c583febf5cf8a0c1785f0d3f7371b4dff20a64ce52d49244254a3d624fe69b29483de5f4a49c4aa895ecdf82ad84c3ea56bf98bda1230e
6
+ metadata.gz: 3e5d378ff41a8b0f884b036da7fec8d854b329b6a76d35cceae8462012e02e28a4df1b15432f11112f5a1b9e91a0bc1ba37622e74dbec456818dc3dff5b080ec
7
+ data.tar.gz: 180701d40c7b5f4031cb5bb35714440e5ac6bacc5e2f2695a2a669cf6aab97dc57f2c835e2a8e372a640ee032ef38981e4c305593620ef78a5c91239f8ead11f
@@ -7,22 +7,22 @@ Note that this document is broken into multiple sections, each of which describe
7
7
  <!-- toc -->
8
8
 
9
9
  - [Default platform release ("ruby")](#default-platform-release-ruby)
10
- - [Native LinuxⓇ platform releases ("x86_64-linux" and "arm64-linux")](#native-linux-platform-releases-x86_64-linux-and-arm64-linux)
10
+ - [Native LinuxⓇ platform releases ("x86_64-linux" and "arm64-linux")](#native-linux%E2%93%A1-platform-releases-x86_64-linux-and-arm64-linux)
11
11
  - [Native Darwin (macOSⓇ) platform releases ("x86_64-darwin" and "arm64-darwin")](#native-darwin-macos%E2%93%A1-platform-releases-x86_64-darwin-and-arm64-darwin)
12
12
  - [Native WindowsⓇ platform releases ("x86-mingw32" and "x64-mingw32")](#native-windows%E2%93%A1-platform-releases-x86-mingw32-and-x64-mingw32)
13
13
  - [JavaⓇ (JRuby) platform release ("java")](#java%E2%93%A1-jruby-platform-release-java)
14
14
  - [Appendix: Dependencies' License Texts](#appendix-dependencies-license-texts)
15
- * [libxml2](#libxml2)
16
- * [libxslt](#libxslt)
17
- * [zlib](#zlib)
18
- * [libiconv](#libiconv)
19
- * [isorelax](#isorelax)
20
- * [jing](#jing)
21
- * [nekodtd](#nekodtd)
22
- * [nekohtml](#nekohtml)
23
- * [xalan](#xalan)
24
- * [xerces](#xerces)
25
- * [xml-apis](#xml-apis)
15
+ * [libxml2](#libxml2)
16
+ * [libxslt](#libxslt)
17
+ * [zlib](#zlib)
18
+ * [libiconv](#libiconv)
19
+ * [isorelax](#isorelax)
20
+ * [jing](#jing)
21
+ * [nekodtd](#nekodtd)
22
+ * [nekohtml](#nekohtml)
23
+ * [xalan](#xalan)
24
+ * [xerces](#xerces)
25
+ * [xml-apis](#xml-apis)
26
26
 
27
27
  <!-- tocstop -->
28
28
 
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright 2008 -- 2018 by Aaron Patterson, Mike Dalessio, Charles Nutter, Sergio Arbeo, Patrick Mahoney, Yoko Harada, Akinori MUSHA, John Shahid, Lars Kanis
3
+ Copyright 2008 -- 2021 by Mike Dalessio, Aaron Patterson, Yoko Harada, Akinori MUSHA, John Shahid, Karol Bucek, Lars Kanis, Sergio Arbeo, Timothy Elliott, Nobuyoshi Nakada, Charles Nutter, Patrick Mahoney.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
6
 
data/README.md CHANGED
@@ -27,7 +27,7 @@ Some guiding principles Nokogiri tries to follow:
27
27
  ## Status
28
28
 
29
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)
30
+ [![Appveyor CI](https://ci.appveyor.com/api/projects/status/xj2pqwvlxwuwgr06/branch/main?svg=true)](https://ci.appveyor.com/project/flavorjones/nokogiri/branch/main)
31
31
  [![Code Climate](https://codeclimate.com/github/sparklemotion/nokogiri.svg)](https://codeclimate.com/github/sparklemotion/nokogiri)
32
32
  [![Test Coverage](https://api.codeclimate.com/v1/badges/59c67b0e8976027a45ad/test_coverage)](https://codeclimate.com/github/sparklemotion/nokogiri/test_coverage)
33
33
 
@@ -36,31 +36,39 @@ Some guiding principles Nokogiri tries to follow:
36
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)
37
37
 
38
38
 
39
- ## Support and Help
39
+ ## Support, Getting Help, and Reporting Issues
40
40
 
41
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).
42
42
 
43
+ 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.
44
+
45
+ [tidelift]: https://tidelift.com/subscription/pkg/rubygems-nokogiri?utm_source=rubygems-nokogiri&utm_medium=referral&utm_campaign=readme
46
+
43
47
  ### Reading
44
48
 
45
- Your first stops for API documentation should be:
49
+ Your first stops for learning more about Nokogiri should be:
46
50
 
47
- - RDocs: https://nokogiri.org/rdoc/index.html
51
+ - [API Documentation](https://nokogiri.org/rdoc/index.html)
52
+ - [Tutorials](https://nokogiri.org/tutorials/toc.html)
48
53
  - An excellent community-maintained [Cheat Sheet](https://github.com/sparklemotion/nokogiri/wiki/Cheat-sheet)
49
54
 
50
55
 
51
- ### Questions
56
+ ### Ask For Help
52
57
 
53
- If you'd like to talk to a human:
58
+ There are a few ways to ask exploratory questions:
54
59
 
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.
60
+ - The Ruby Discord chat server is active at https://discord.gg/UyQnKrT
58
61
  - 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
62
+ - Open an issue using the "Help Request" template at https://github.com/sparklemotion/nokogiri/issues
60
63
 
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.
64
+ Please do not mail the maintainers at their personal addresses.
62
65
 
63
- [tidelift]: https://tidelift.com/subscription/pkg/rubygems-nokogiri?utm_source=rubygems-nokogiri&utm_medium=referral&utm_campaign=readme
66
+
67
+ ### Report A Bug
68
+
69
+ The Nokogiri bug tracker is at https://github.com/sparklemotion/nokogiri/issues
70
+
71
+ Please use the "Bug Report" or "Installation Difficulties" templates.
64
72
 
65
73
 
66
74
  ### Security and Vulnerability Reporting
@@ -235,10 +243,7 @@ See [`LICENSE-DEPENDENCIES.md`](LICENSE-DEPENDENCIES.md) for more information on
235
243
 
236
244
  ## Contributing
237
245
 
238
- ```bash
239
- bundle install
240
- bundle exec rake compile test
241
- ```
246
+ See [`CONTRIBUTING.md`](CONTRIBUTING.md) for an intro guide to developing Nokogiri.
242
247
 
243
248
 
244
249
  ## Code of Conduct
data/dependencies.yml CHANGED
@@ -1,10 +1,10 @@
1
1
  libxml2:
2
- version: "2.9.10"
3
- sha256: "aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f"
2
+ version: "2.9.12"
3
+ sha256: "c8d6681e38c56f172892c85ddc0852e1fd4b53b4209e7f4ebf17f7e2eae71d92"
4
4
  # manually verified checksum:
5
5
  #
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
6
+ # $ gpg --verify libxml2-2.9.12.tar.gz.asc ports/archives/libxml2-2.9.12.tar.gz
7
+ # gpg: Signature made Thu 13 May 2021 02:59:16 PM EDT
8
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]
@@ -17,14 +17,14 @@ libxml2:
17
17
  #
18
18
  # -----BEGIN PGP SIGNATURE-----
19
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
20
+ # iQEzBAABCAAdFiEE20ZoG7ka3OoXD6LUFViLJllr6l0FAmCddwQACgkQFViLJllr
21
+ # 6l11LQgAioRTdfmcC+uK/7+6HPtF/3c5zkX6j8VGYuvFBwZ0jayqMRBAl++fcpjE
22
+ # JUU/JKebSZ/KCYjzyeOWK/i3Gq77iqm3UbZFB85rqu4a5P3gmj/4STWVyAx0KU3z
23
+ # G3jKqDhJOt7c0acXb5lh2DngfDa1dn/VGcQcIXsqplNxNr4ET7MnSJjZ3nlxYfW2
24
+ # E5vWBdPCMUeXDBl6MjYvw9XnGGBLUAaEJWoFToG6jKmVf4GAd9nza20jj5dtbcJq
25
+ # QEOaSDKDr+f9h2NS8haOhJ9vOpy52PdeGzaFlbRkXarGXuAr8kITgATVs8FAqcgv
26
+ # MoVhmrO5r2hJf0dCM9fZoYqzpMfmNA==
27
+ # =KfJ9
28
28
  # -----END PGP SIGNATURE-----
29
29
  #
30
30
 
data/ext/nokogiri/depend CHANGED
@@ -1,477 +1,37 @@
1
1
  # -*-makefile-*-
2
2
  # DO NOT DELETE
3
3
 
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
4
+ html_document.o: ./nokogiri.h
5
+ html_element_description.o: ./nokogiri.h
6
+ html_entity_lookup.o: ./nokogiri.h
7
+ html_sax_parser_context.o: ./nokogiri.h
8
+ html_sax_push_parser.o: ./nokogiri.h
9
+ libxml2_backwards_compat.o: ./nokogiri.h
10
+ nokogiri.o: ./nokogiri.h
11
+ test_global_handlers.o: ./nokogiri.h
12
+ xml_attr.o: ./nokogiri.h
13
+ xml_attribute_decl.o: ./nokogiri.h
14
+ xml_cdata.o: ./nokogiri.h
15
+ xml_comment.o: ./nokogiri.h
16
+ xml_document.o: ./nokogiri.h
17
+ xml_document_fragment.o: ./nokogiri.h
18
+ xml_dtd.o: ./nokogiri.h
19
+ xml_element_content.o: ./nokogiri.h
20
+ xml_element_decl.o: ./nokogiri.h
21
+ xml_encoding_handler.o: ./nokogiri.h
22
+ xml_entity_decl.o: ./nokogiri.h
23
+ xml_entity_reference.o: ./nokogiri.h
24
+ xml_namespace.o: ./nokogiri.h
25
+ xml_node.o: ./nokogiri.h
26
+ xml_node_set.o: ./nokogiri.h
27
+ xml_processing_instruction.o: ./nokogiri.h
28
+ xml_reader.o: ./nokogiri.h
29
+ xml_relax_ng.o: ./nokogiri.h
30
+ xml_sax_parser.o: ./nokogiri.h
31
+ xml_sax_parser_context.o: ./nokogiri.h
32
+ xml_sax_push_parser.o: ./nokogiri.h
33
+ xml_schema.o: ./nokogiri.h
34
+ xml_syntax_error.o: ./nokogiri.h
35
+ xml_text.o: ./nokogiri.h
36
+ xml_xpath_context.o: ./nokogiri.h
37
+ xslt_stylesheet.o: ./nokogiri.h