nokogiri 1.11.0.rc3-java → 1.11.0.rc4-java

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 (83) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE-DEPENDENCIES.md +1015 -947
  3. data/README.md +1 -1
  4. data/ext/java/nokogiri/HtmlSaxParserContext.java +1 -1
  5. data/ext/java/nokogiri/HtmlSaxPushParser.java +1 -1
  6. data/ext/java/nokogiri/XmlNode.java +4 -6
  7. data/ext/java/nokogiri/XmlReader.java +2 -2
  8. data/ext/java/nokogiri/XmlRelaxng.java +10 -3
  9. data/ext/java/nokogiri/XmlSaxParserContext.java +8 -3
  10. data/ext/java/nokogiri/XmlSchema.java +84 -24
  11. data/ext/java/nokogiri/XmlSyntaxError.java +2 -6
  12. data/ext/java/nokogiri/XmlXpathContext.java +48 -18
  13. data/ext/java/nokogiri/internals/HtmlDomParserContext.java +51 -39
  14. data/ext/java/nokogiri/internals/NokogiriHandler.java +1 -1
  15. data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +9 -2
  16. data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +62 -6
  17. data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +4 -2
  18. data/ext/java/nokogiri/internals/XmlDomParserContext.java +2 -2
  19. data/ext/nokogiri/depend +476 -357
  20. data/ext/nokogiri/extconf.rb +441 -321
  21. data/ext/nokogiri/html_document.c +79 -78
  22. data/ext/nokogiri/html_sax_parser_context.c +2 -2
  23. data/ext/nokogiri/nokogiri.c +34 -46
  24. data/ext/nokogiri/xml_document.c +2 -2
  25. data/ext/nokogiri/xml_node.c +1 -1
  26. data/ext/nokogiri/xml_node_set.c +1 -1
  27. data/ext/nokogiri/xml_relax_ng.c +29 -11
  28. data/ext/nokogiri/xml_sax_parser.c +2 -7
  29. data/ext/nokogiri/xml_sax_parser_context.c +2 -2
  30. data/ext/nokogiri/xml_schema.c +55 -13
  31. data/ext/nokogiri/xml_xpath_context.c +80 -4
  32. data/ext/nokogiri/xslt_stylesheet.c +1 -4
  33. data/lib/nokogiri.rb +1 -1
  34. data/lib/nokogiri/css/parser.rb +3 -3
  35. data/lib/nokogiri/css/parser.y +2 -2
  36. data/lib/nokogiri/css/xpath_visitor.rb +70 -42
  37. data/lib/nokogiri/html/document.rb +12 -26
  38. data/lib/nokogiri/nokogiri.jar +0 -0
  39. data/lib/nokogiri/version.rb +2 -149
  40. data/lib/nokogiri/version/constant.rb +5 -0
  41. data/lib/nokogiri/version/info.rb +182 -0
  42. data/lib/nokogiri/xml/document.rb +17 -7
  43. data/lib/nokogiri/xml/document_fragment.rb +4 -6
  44. data/lib/nokogiri/xml/node.rb +50 -27
  45. data/lib/nokogiri/xml/parse_options.rb +6 -0
  46. data/lib/nokogiri/xml/relax_ng.rb +6 -2
  47. data/lib/nokogiri/xml/schema.rb +12 -4
  48. data/lib/nokogiri/xml/searchable.rb +3 -1
  49. metadata +47 -73
  50. data/ext/nokogiri/html_document.h +0 -10
  51. data/ext/nokogiri/html_element_description.h +0 -10
  52. data/ext/nokogiri/html_entity_lookup.h +0 -8
  53. data/ext/nokogiri/html_sax_parser_context.h +0 -11
  54. data/ext/nokogiri/html_sax_push_parser.h +0 -9
  55. data/ext/nokogiri/nokogiri.h +0 -134
  56. data/ext/nokogiri/xml_attr.h +0 -9
  57. data/ext/nokogiri/xml_attribute_decl.h +0 -9
  58. data/ext/nokogiri/xml_cdata.h +0 -9
  59. data/ext/nokogiri/xml_comment.h +0 -9
  60. data/ext/nokogiri/xml_document.h +0 -23
  61. data/ext/nokogiri/xml_document_fragment.h +0 -10
  62. data/ext/nokogiri/xml_dtd.h +0 -10
  63. data/ext/nokogiri/xml_element_content.h +0 -10
  64. data/ext/nokogiri/xml_element_decl.h +0 -9
  65. data/ext/nokogiri/xml_encoding_handler.h +0 -8
  66. data/ext/nokogiri/xml_entity_decl.h +0 -10
  67. data/ext/nokogiri/xml_entity_reference.h +0 -9
  68. data/ext/nokogiri/xml_io.h +0 -11
  69. data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
  70. data/ext/nokogiri/xml_namespace.h +0 -14
  71. data/ext/nokogiri/xml_node.h +0 -13
  72. data/ext/nokogiri/xml_node_set.h +0 -12
  73. data/ext/nokogiri/xml_processing_instruction.h +0 -9
  74. data/ext/nokogiri/xml_reader.h +0 -10
  75. data/ext/nokogiri/xml_relax_ng.h +0 -9
  76. data/ext/nokogiri/xml_sax_parser.h +0 -39
  77. data/ext/nokogiri/xml_sax_parser_context.h +0 -10
  78. data/ext/nokogiri/xml_sax_push_parser.h +0 -9
  79. data/ext/nokogiri/xml_schema.h +0 -9
  80. data/ext/nokogiri/xml_syntax_error.h +0 -13
  81. data/ext/nokogiri/xml_text.h +0 -9
  82. data/ext/nokogiri/xml_xpath_context.h +0 -10
  83. data/ext/nokogiri/xslt_stylesheet.h +0 -14
@@ -35,9 +35,11 @@ package nokogiri.internals;
35
35
  import static nokogiri.internals.NokogiriHelpers.getNokogiriClass;
36
36
  import static nokogiri.internals.NokogiriHelpers.isNamespace;
37
37
  import static nokogiri.internals.NokogiriHelpers.stringOrNil;
38
+
38
39
  import nokogiri.HtmlDocument;
39
40
  import nokogiri.NokogiriService;
40
41
  import nokogiri.XmlDocument;
42
+ import nokogiri.XmlSyntaxError;
41
43
 
42
44
  import org.apache.xerces.xni.Augmentations;
43
45
  import org.apache.xerces.xni.QName;
@@ -65,21 +67,13 @@ import org.w3c.dom.NodeList;
65
67
  */
66
68
  public class HtmlDomParserContext extends XmlDomParserContext {
67
69
 
68
- public HtmlDomParserContext(Ruby runtime, IRubyObject options) {
69
- super(runtime, options);
70
+ public HtmlDomParserContext(Ruby runtime, IRubyObject options) {
71
+ this(runtime, runtime.getNil(), options);
70
72
  }
71
-
73
+
72
74
  public HtmlDomParserContext(Ruby runtime, IRubyObject encoding, IRubyObject options) {
73
75
  super(runtime, encoding, options);
74
- }
75
-
76
- @Override
77
- protected void initErrorHandler() {
78
- if (options.strict) {
79
- errorHandler = new NokogiriStrictErrorHandler(options.noError, options.noWarning);
80
- } else {
81
- errorHandler = new NokogiriNonStrictErrorHandler4NekoHtml(options.noError, options.noWarning);
82
- }
76
+ java_encoding = NokogiriHelpers.getValidEncoding(encoding);
83
77
  }
84
78
 
85
79
  @Override
@@ -105,7 +99,7 @@ public class HtmlDomParserContext extends XmlDomParserContext {
105
99
 
106
100
  @Override
107
101
  public void setEncoding(String encoding) {
108
- super.setEncoding(encoding);
102
+ super.setEncoding(encoding);
109
103
  }
110
104
 
111
105
  /**
@@ -117,6 +111,24 @@ public class HtmlDomParserContext extends XmlDomParserContext {
117
111
  setFeature("http://cyberneko.org/html/features/balance-tags/document-fragment", true);
118
112
  }
119
113
 
114
+ @Override
115
+ public XmlDocument parse(ThreadContext context, RubyClass klass, IRubyObject url) {
116
+ XmlDocument xmlDoc = super.parse(context, klass, url);
117
+
118
+ // let's be consistent in how we handle RECOVER and NORECOVER (a.k.a. STRICT)
119
+ // https://github.com/sparklemotion/nokogiri/issues/2130
120
+ if (!options.recover && errorHandler.getErrors().size() > 0) {
121
+ XmlSyntaxError xmlSyntaxError = XmlSyntaxError.createXMLSyntaxError(context.runtime);
122
+ String exceptionMsg = String.format("%s: '%s'",
123
+ "Parser without recover option encountered error or warning",
124
+ errorHandler.getErrors().get(0));
125
+ xmlSyntaxError.setException(new Exception(exceptionMsg));
126
+ throw xmlSyntaxError.toThrowable();
127
+ }
128
+
129
+ return xmlDoc;
130
+ }
131
+
120
132
  @Override
121
133
  protected XmlDocument wrapDocument(ThreadContext context, RubyClass klass, Document document) {
122
134
  HtmlDocument htmlDocument = new HtmlDocument(context.runtime, klass, document);
@@ -189,32 +201,32 @@ public class HtmlDomParserContext extends XmlDomParserContext {
189
201
 
190
202
  // element names from xhtml1-strict.dtd
191
203
  private static String[][] element_names = {
192
- {"a", "abbr", "acronym", "address", "area"},
193
- {"b", "base", "basefont", "bdo", "big", "blockquote", "body", "br", "button"},
194
- {"caption", "cite", "code", "col", "colgroup"},
195
- {"dd", "del", "dfn", "div", "dl", "dt"},
196
- {"em"},
197
- {"fieldset", "font", "form", "frame", "frameset"},
198
- {}, // g
199
- {"h1", "h2", "h3", "h4", "h5", "h6", "head", "hr", "html"},
200
- {"i", "iframe", "img", "input", "ins"},
201
- {}, // j
202
- {"kbd"},
203
- {"label", "legend", "li", "link"},
204
- {"map", "meta"},
205
- {"noframes", "noscript"},
206
- {"object", "ol", "optgroup", "option"},
207
- {"p", "param", "pre"},
208
- {"q"},
209
- {}, // r
210
- {"s", "samp", "script", "select", "small", "span", "strike", "strong", "style", "sub", "sup"},
211
- {"table", "tbody", "td", "textarea", "tfoot", "th", "thead", "title", "tr", "tt"},
212
- {"u", "ul"},
213
- {"var"},
214
- {}, // w
215
- {}, // x
216
- {}, // y
217
- {} // z
204
+ {"a", "abbr", "acronym", "address", "area"},
205
+ {"b", "base", "basefont", "bdo", "big", "blockquote", "body", "br", "button"},
206
+ {"caption", "cite", "code", "col", "colgroup"},
207
+ {"dd", "del", "dfn", "div", "dl", "dt"},
208
+ {"em"},
209
+ {"fieldset", "font", "form", "frame", "frameset"},
210
+ {}, // g
211
+ {"h1", "h2", "h3", "h4", "h5", "h6", "head", "hr", "html"},
212
+ {"i", "iframe", "img", "input", "ins"},
213
+ {}, // j
214
+ {"kbd"},
215
+ {"label", "legend", "li", "link"},
216
+ {"map", "meta"},
217
+ {"noframes", "noscript"},
218
+ {"object", "ol", "optgroup", "option"},
219
+ {"p", "param", "pre"},
220
+ {"q"},
221
+ {}, // r
222
+ {"s", "samp", "script", "select", "small", "span", "strike", "strong", "style", "sub", "sup"},
223
+ {"table", "tbody", "td", "textarea", "tfoot", "th", "thead", "title", "tr", "tt"},
224
+ {"u", "ul"},
225
+ {"var"},
226
+ {}, // w
227
+ {}, // x
228
+ {}, // y
229
+ {} // z
218
230
  };
219
231
 
220
232
  private static boolean isValid(final String name) {
@@ -249,7 +249,7 @@ public class NokogiriHandler extends DefaultHandler2 implements XmlDeclHandler {
249
249
  try {
250
250
  final String msg = ex.getMessage();
251
251
  call("error", runtime.newString(msg == null ? "" : msg));
252
- addError(new RaiseException(XmlSyntaxError.createError(runtime, ex), true));
252
+ addError(XmlSyntaxError.createError(runtime, ex).toThrowable());
253
253
  } catch( RaiseException e) {
254
254
  addError(e);
255
255
  throw e;
@@ -50,9 +50,15 @@ import javax.xml.namespace.NamespaceContext;
50
50
  */
51
51
  public final class NokogiriNamespaceContext implements NamespaceContext {
52
52
 
53
- public static final String NOKOGIRI_PREFIX = "nokogiri";
53
+ /*
54
+ * these constants have matching declarations in
55
+ * ext/nokogiri/xml_xpath_context.c
56
+ */
57
+ public static final String NOKOGIRI_PREFIX = "nokogiri";
54
58
  public static final String NOKOGIRI_URI = "http://www.nokogiri.org/default_ns/ruby/extensions_functions";
55
- public static final String NOKOGIRI_TEMPORARY_ROOT_TAG = "nokogiri-temporary-root-tag";
59
+
60
+ public static final String NOKOGIRI_BUILTIN_PREFIX = "nokogiri-builtin";
61
+ public static final String NOKOGIRI_BUILTIN_URI = "https://www.nokogiri.org/default_ns/ruby/builtins";
56
62
 
57
63
  private final Map<String,String> register;
58
64
 
@@ -63,6 +69,7 @@ public final class NokogiriNamespaceContext implements NamespaceContext {
63
69
  private NokogiriNamespaceContext() {
64
70
  register = new HashMap<String, String>(6, 1);
65
71
  register.put(NOKOGIRI_PREFIX, NOKOGIRI_URI);
72
+ register.put(NOKOGIRI_BUILTIN_PREFIX, NOKOGIRI_BUILTIN_URI);
66
73
  register.put("xml", "http://www.w3.org/XML/1998/namespace");
67
74
  register.put("xhtml", "http://www.w3.org/1999/xhtml");
68
75
  }
@@ -36,6 +36,7 @@ import java.util.List;
36
36
 
37
37
  import javax.xml.xpath.XPathFunction;
38
38
  import javax.xml.xpath.XPathFunctionException;
39
+ import javax.xml.namespace.QName;
39
40
 
40
41
  import org.jruby.Ruby;
41
42
  import org.jruby.RubyArray;
@@ -64,14 +65,14 @@ import static nokogiri.internals.NokogiriHelpers.nodeListToRubyArray;
64
65
  public class NokogiriXPathFunction implements XPathFunction {
65
66
 
66
67
  private final IRubyObject handler;
67
- private final String name;
68
+ private final QName name;
68
69
  private final int arity;
69
70
 
70
- public static NokogiriXPathFunction create(IRubyObject handler, String name, int arity) {
71
+ public static NokogiriXPathFunction create(IRubyObject handler, QName name, int arity) {
71
72
  return new NokogiriXPathFunction(handler, name, arity);
72
73
  }
73
74
 
74
- private NokogiriXPathFunction(IRubyObject handler, String name, int arity) {
75
+ private NokogiriXPathFunction(IRubyObject handler, QName name, int arity) {
75
76
  this.handler = handler;
76
77
  this.name = name;
77
78
  this.arity = arity;
@@ -82,11 +83,20 @@ public class NokogiriXPathFunction implements XPathFunction {
82
83
  throw new XPathFunctionException("arity does not match");
83
84
  }
84
85
 
85
- final Ruby runtime = this.handler.getRuntime();
86
- ThreadContext context = runtime.getCurrentContext();
86
+ if (name.getNamespaceURI().equals(NokogiriNamespaceContext.NOKOGIRI_BUILTIN_URI)) {
87
+ if (name.getLocalPart().equals("css-class")) {
88
+ return builtinCssClass(args);
89
+ }
90
+ }
87
91
 
88
- IRubyObject result = Helpers.invoke(context, this.handler, this.name, fromObjectToRubyArgs(runtime, args));
92
+ if (this.handler.isNil()) {
93
+ throw new XPathFunctionException("no custom function handler declared for '" + name + "'");
94
+ }
89
95
 
96
+ final Ruby runtime = this.handler.getRuntime();
97
+ ThreadContext context = runtime.getCurrentContext();
98
+ IRubyObject result = Helpers.invoke(context, this.handler, this.name.getLocalPart(),
99
+ fromObjectToRubyArgs(runtime, args));
90
100
  return fromRubyToObject(runtime, result);
91
101
  }
92
102
 
@@ -121,4 +131,50 @@ public class NokogiriXPathFunction implements XPathFunction {
121
131
  }
122
132
  /*if (o instanceof XmlNode)*/ return ((XmlNode) obj).getNode();
123
133
  }
134
+
135
+ private static boolean builtinCssClass(List args) throws XPathFunctionException {
136
+ if (args.size() != 2) {
137
+ throw new XPathFunctionException("builtin function nokogiri:css-class takes two arguments");
138
+ }
139
+
140
+ String hay = args.get(0).toString();
141
+ String needle = args.get(1).toString();
142
+
143
+ if (needle.length() == 0) {
144
+ return true;
145
+ }
146
+
147
+ int j = 0;
148
+ int j_lim = hay.length() - needle.length();
149
+ while (j <= j_lim) {
150
+ int k;
151
+ for (k = 0; k < needle.length(); k++) {
152
+ if (needle.charAt(k) != hay.charAt(j+k)) {
153
+ break;
154
+ }
155
+ }
156
+ if (k == needle.length()) {
157
+ if ((hay.length() == (j+k)) || isWhitespace(hay.charAt(j+k))) {
158
+ return true ;
159
+ }
160
+ }
161
+
162
+ /* advance str to whitespace */
163
+ while (j <= j_lim && !isWhitespace(hay.charAt(j))) {
164
+ j++;
165
+ }
166
+
167
+ /* advance str to start of next word or end of string */
168
+ while (j <= j_lim && isWhitespace(hay.charAt(j))) {
169
+ j++;
170
+ }
171
+ }
172
+
173
+ return false;
174
+ }
175
+
176
+ private static boolean isWhitespace(char subject) {
177
+ // see libxml2's xmlIsBlank_ch()
178
+ return ((subject == 0x09) || (subject == 0x0A) || (subject == 0x0D) || (subject == 0x20));
179
+ }
124
180
  }
@@ -50,7 +50,9 @@ public final class NokogiriXPathFunctionResolver implements XPathFunctionResolve
50
50
 
51
51
  public static NokogiriXPathFunctionResolver create(IRubyObject handler) {
52
52
  NokogiriXPathFunctionResolver freshResolver = new NokogiriXPathFunctionResolver();
53
- freshResolver.setHandler(handler);
53
+ if (!handler.isNil()) {
54
+ freshResolver.setHandler(handler);
55
+ }
54
56
  return freshResolver;
55
57
  }
56
58
 
@@ -65,6 +67,6 @@ public final class NokogiriXPathFunctionResolver implements XPathFunctionResolve
65
67
  }
66
68
 
67
69
  public XPathFunction resolveFunction(QName name, int arity) {
68
- return NokogiriXPathFunction.create(handler, name.getLocalPart(), arity);
70
+ return NokogiriXPathFunction.create(handler, name, arity);
69
71
  }
70
72
  }
@@ -93,7 +93,7 @@ public class XmlDomParserContext extends ParserContext {
93
93
  public XmlDomParserContext(Ruby runtime, IRubyObject encoding, IRubyObject options) {
94
94
  super(runtime);
95
95
  this.options = new ParserContext.Options(RubyFixnum.fix2long(options));
96
- java_encoding = NokogiriHelpers.getValidEncoding(encoding);
96
+ java_encoding = NokogiriHelpers.getValidEncodingOrNull(encoding);
97
97
  ruby_encoding = encoding;
98
98
  initErrorHandler();
99
99
  initParser(runtime);
@@ -196,7 +196,7 @@ public class XmlDomParserContext extends ParserContext {
196
196
  } else {
197
197
  XmlSyntaxError xmlSyntaxError = XmlSyntaxError.createXMLSyntaxError(context.runtime);
198
198
  xmlSyntaxError.setException(ex);
199
- throw new RaiseException(xmlSyntaxError);
199
+ throw xmlSyntaxError.toThrowable();
200
200
  }
201
201
  }
202
202
 
@@ -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