nokogiri 1.4.3.1 → 1.4.4
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.
- data/CHANGELOG.ja.rdoc +26 -0
- data/CHANGELOG.rdoc +26 -0
- data/Manifest.txt +3 -0
- data/README.ja.rdoc +0 -4
- data/README.rdoc +0 -4
- data/Rakefile +1 -0
- data/bin/nokogiri +6 -1
- data/ext/nokogiri/depend +358 -32
- data/ext/nokogiri/extconf.rb +1 -3
- data/ext/nokogiri/nokogiri.c +2 -0
- data/ext/nokogiri/nokogiri.h +7 -0
- data/ext/nokogiri/xml_dtd.c +2 -2
- data/ext/nokogiri/xml_io.c +2 -2
- data/ext/nokogiri/xml_node.c +31 -6
- data/ext/nokogiri/xml_node_set.c +1 -1
- data/ext/nokogiri/xml_sax_parser.c +1 -1
- data/ext/nokogiri/xml_sax_parser_context.c +40 -0
- data/ext/nokogiri/xml_xpath_context.c +33 -2
- data/ext/nokogiri/xslt_stylesheet.c +116 -4
- data/lib/nokogiri/css/generated_tokenizer.rb +1 -2
- data/lib/nokogiri/css/xpath_visitor.rb +15 -7
- data/lib/nokogiri/decorators/slop.rb +5 -3
- data/lib/nokogiri/ffi/libxml.rb +9 -0
- data/lib/nokogiri/ffi/structs/xml_parser_context.rb +2 -1
- data/lib/nokogiri/ffi/structs/xml_parser_input.rb +19 -0
- data/lib/nokogiri/ffi/xml/dtd.rb +2 -2
- data/lib/nokogiri/ffi/xml/node.rb +9 -4
- data/lib/nokogiri/ffi/xml/sax/parser_context.rb +12 -0
- data/lib/nokogiri/ffi/xml/xpath_context.rb +5 -0
- data/lib/nokogiri/ffi/xslt/stylesheet.rb +21 -1
- data/lib/nokogiri/html/document.rb +3 -3
- data/lib/nokogiri/html/document_fragment.rb +19 -17
- data/lib/nokogiri/version.rb +1 -1
- data/lib/nokogiri/xml/document.rb +26 -1
- data/lib/nokogiri/xml/document_fragment.rb +2 -2
- data/lib/nokogiri/xml/dtd.rb +11 -0
- data/lib/nokogiri/xml/node.rb +156 -45
- data/lib/nokogiri/xml/node_set.rb +2 -2
- data/lib/nokogiri/xml/reader.rb +36 -0
- data/lib/nokogiri/xml/sax/document.rb +4 -2
- data/lib/nokogiri/xslt.rb +9 -5
- data/tasks/cross_compile.rb +24 -2
- data/test/css/test_parser.rb +29 -18
- data/test/decorators/test_slop.rb +16 -0
- data/test/html/test_document_fragment.rb +46 -3
- data/test/html/test_node.rb +9 -0
- data/test/xml/sax/test_parser.rb +11 -3
- data/test/xml/sax/test_parser_context.rb +50 -0
- data/test/xml/sax/test_push_parser.rb +18 -1
- data/test/xml/test_document_fragment.rb +14 -2
- data/test/xml/test_dtd.rb +15 -0
- data/test/xml/test_node.rb +31 -2
- data/test/xml/test_node_reparenting.rb +59 -31
- data/test/xml/test_node_set.rb +13 -0
- data/test/xml/test_xpath.rb +32 -0
- data/test/xslt/test_custom_functions.rb +94 -0
- metadata +84 -80
data/CHANGELOG.ja.rdoc
CHANGED
@@ -1,3 +1,29 @@
|
|
1
|
+
=== 1.4.4 2010年11月15日
|
2
|
+
|
3
|
+
* 新機能
|
4
|
+
|
5
|
+
* XML::Node#children=ノード内のhtml reparented node(s)を返す事によって親の変更ができる。
|
6
|
+
* XSLT はfunction extensionsをサポート。#336
|
7
|
+
* XPath はパラメーター置換を結合する. #329
|
8
|
+
* XML::Reader node typeを一定化させる. #369
|
9
|
+
* SAX Parser context は行とコラムの両方の情報を提供する
|
10
|
+
|
11
|
+
* バグの修正
|
12
|
+
|
13
|
+
* XML::DTD#attributes は属性が存在しない際、nilの代わりに空のハッシュを返す
|
14
|
+
* XML::DTD#{keys,each} は文字通りに機能するようになった #324
|
15
|
+
* {XML,HTML}::DocumentFragment.{new,parse} 行送りと末尾の空白を除去しなくなった #319
|
16
|
+
* XML::Node#{add_child,add_previous_sibling,add_next_sibling,replace} は文字列を見送る際にNodeSetを返す
|
17
|
+
* 不確定タグはフレグメント内で要、不要に関係なく解析される #315
|
18
|
+
* XML::Node#{replace,add_previous_sibling,add_next_sibling} libxmlのtext node merging に関わるedge caseを修正する #308
|
19
|
+
* xpath handler argument が整列している最中に起こるGCでのsegfaultを修正 #345
|
20
|
+
* Slop decoratorが既に確定された定義と共に正常に機能させるための便宜上の処置 #330
|
21
|
+
* 子ノードが複製される際に起こるメモリ漏れの修正 #353
|
22
|
+
* an+b記号の無使用時に発生するoff-by-oneバグとnth-last-{child,of-type} CSSセレクターの修正 #354
|
23
|
+
* 非名前空間属性がSAX::Document#start_elementへパスできるように修正 #356
|
24
|
+
* libxml2 in-contextの解析バグの処置 #362
|
25
|
+
* フレグメント内のノードの中にあるNodeSet#wrapの修正 #331
|
26
|
+
|
1
27
|
=== 1.4.3 2010年7月28日
|
2
28
|
|
3
29
|
* 新しい機能
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,29 @@
|
|
1
|
+
=== 1.4.4 / Unreleased
|
2
|
+
|
3
|
+
* New Features
|
4
|
+
|
5
|
+
* XML::Node#children= sets the node's inner html (much like #inner_html=), but returns the reparent node(s).
|
6
|
+
* XSLT supports function extensions. #336
|
7
|
+
* XPath bind parameter substitution. #329
|
8
|
+
* XML::Reader node type constants. #369
|
9
|
+
* SAX Parser context provides line and column information
|
10
|
+
|
11
|
+
* Bugfixes
|
12
|
+
|
13
|
+
* XML::DTD#attributes returns an empty hash instead of nil when there are no attributes.
|
14
|
+
* XML::DTD#{keys,each} now work as expected. #324
|
15
|
+
* {XML,HTML}::DocumentFragment.{new,parse} no longer strip leading and trailing whitespace. #319
|
16
|
+
* XML::Node#{add_child,add_previous_sibling,add_next_sibling,replace} return a NodeSet when passed a string.
|
17
|
+
* Unclosed tags parsed more robustly in fragments. #315
|
18
|
+
* XML::Node#{replace,add_previous_sibling,add_next_sibling} edge cases fixed related to libxml's text node merging. #308
|
19
|
+
* Fixed a segfault when GC occurs during xpath handler argument marshalling. #345
|
20
|
+
* Added hack to Slop decorator to work with previously defined methods. #330
|
21
|
+
* Fix a memory leak when duplicating child nodes. #353
|
22
|
+
* Fixed off-by-one bug with nth-last-{child,of-type} CSS selectors when NOT using an+b notation. #354
|
23
|
+
* Fixed passing of non-namespace attributes to SAX::Document#start_element. #356
|
24
|
+
* Workaround for libxml2 in-context parsing bug. #362
|
25
|
+
* Fixed NodeSet#wrap on nodes within a fragment. #331
|
26
|
+
|
1
27
|
=== 1.4.3 / 2010/07/28
|
2
28
|
|
3
29
|
* New Features
|
data/Manifest.txt
CHANGED
@@ -113,6 +113,7 @@ lib/nokogiri/ffi/structs/xml_node_set.rb
|
|
113
113
|
lib/nokogiri/ffi/structs/xml_notation.rb
|
114
114
|
lib/nokogiri/ffi/structs/xml_ns.rb
|
115
115
|
lib/nokogiri/ffi/structs/xml_parser_context.rb
|
116
|
+
lib/nokogiri/ffi/structs/xml_parser_input.rb
|
116
117
|
lib/nokogiri/ffi/structs/xml_relax_ng.rb
|
117
118
|
lib/nokogiri/ffi/structs/xml_sax_handler.rb
|
118
119
|
lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb
|
@@ -205,6 +206,7 @@ test/css/test_nthiness.rb
|
|
205
206
|
test/css/test_parser.rb
|
206
207
|
test/css/test_tokenizer.rb
|
207
208
|
test/css/test_xpath_visitor.rb
|
209
|
+
test/decorators/test_slop.rb
|
208
210
|
test/ffi/test_document.rb
|
209
211
|
test/files/2ch.html
|
210
212
|
test/files/address_book.rlx
|
@@ -277,3 +279,4 @@ test/xml/test_syntax_error.rb
|
|
277
279
|
test/xml/test_text.rb
|
278
280
|
test/xml/test_unparented_node.rb
|
279
281
|
test/xml/test_xpath.rb
|
282
|
+
test/xslt/test_custom_functions.rb
|
data/README.ja.rdoc
CHANGED
data/README.rdoc
CHANGED
@@ -23,10 +23,6 @@ enough of it.
|
|
23
23
|
Nokogiri parses and searches XML/HTML very quickly, and also has
|
24
24
|
correctly implemented CSS3 selector support as well as XPath support.
|
25
25
|
|
26
|
-
Here is a speed test:
|
27
|
-
|
28
|
-
* http://gist.github.com/24605
|
29
|
-
|
30
26
|
== SUPPORT:
|
31
27
|
|
32
28
|
The Nokogiri {mailing list}[http://groups.google.com/group/nokogiri-talk]
|
data/Rakefile
CHANGED
@@ -66,6 +66,7 @@ unless java
|
|
66
66
|
ext.config_options << ENV['EXTOPTS']
|
67
67
|
ext.cross_compile = true
|
68
68
|
ext.cross_platform = 'i386-mingw32'
|
69
|
+
# ext.cross_platform = 'i386-mswin32'
|
69
70
|
ext.cross_config_options <<
|
70
71
|
"--with-xml2-include=#{File.join(CROSS_DIR, 'include', 'libxml2')}"
|
71
72
|
ext.cross_config_options <<
|
data/bin/nokogiri
CHANGED
@@ -7,6 +7,7 @@ require 'rubygems'
|
|
7
7
|
require 'nokogiri'
|
8
8
|
|
9
9
|
parse_class = Nokogiri
|
10
|
+
encoding = nil
|
10
11
|
|
11
12
|
opts = OptionParser.new do |opts|
|
12
13
|
opts.banner = "Nokogiri: an HTML, XML, SAX, and Reader parser"
|
@@ -22,6 +23,10 @@ opts = OptionParser.new do |opts|
|
|
22
23
|
parse_class = {:xml => Nokogiri::XML, :html => Nokogiri::HTML}[v]
|
23
24
|
end
|
24
25
|
|
26
|
+
opts.on("-E", "--encoding encoding", "Read as encoding (default #{encoding})") do |v|
|
27
|
+
encoding = v
|
28
|
+
end
|
29
|
+
|
25
30
|
opts.on_tail("-?", "--help", "Show this message") do
|
26
31
|
puts opts
|
27
32
|
exit
|
@@ -42,7 +47,7 @@ if uri.to_s.strip.empty?
|
|
42
47
|
exit 1
|
43
48
|
end
|
44
49
|
|
45
|
-
@doc = parse_class.parse(open(uri).read)
|
50
|
+
@doc = parse_class.parse(open(uri).read, nil, encoding)
|
46
51
|
|
47
52
|
puts "Your document is stored in @doc..."
|
48
53
|
IRB.start
|
data/ext/nokogiri/depend
CHANGED
@@ -1,32 +1,358 @@
|
|
1
|
-
html_document.o: html_document.c
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
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
|
11
|
+
|
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
|