libxml-ruby 2.9.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/HISTORY +811 -790
- data/LICENSE +20 -20
- data/MANIFEST +166 -166
- data/README.rdoc +188 -184
- data/Rakefile +1 -1
- data/ext/libxml/libxml.c +80 -80
- data/ext/libxml/ruby_libxml.h +75 -75
- data/ext/libxml/ruby_xml.c +0 -84
- data/ext/libxml/ruby_xml.h +0 -10
- data/ext/libxml/ruby_xml_attr.h +12 -12
- data/ext/libxml/ruby_xml_attr_decl.c +153 -153
- data/ext/libxml/ruby_xml_attr_decl.h +11 -11
- data/ext/libxml/ruby_xml_attributes.c +275 -275
- data/ext/libxml/ruby_xml_attributes.h +15 -15
- data/ext/libxml/ruby_xml_document.c +21 -27
- data/ext/libxml/ruby_xml_document.h +11 -11
- data/ext/libxml/ruby_xml_dtd.c +2 -13
- data/ext/libxml/ruby_xml_dtd.h +9 -9
- data/ext/libxml/ruby_xml_error.c +996 -996
- data/ext/libxml/ruby_xml_error.h +12 -12
- data/ext/libxml/ruby_xml_html_parser.c +89 -92
- data/ext/libxml/ruby_xml_html_parser.h +10 -10
- data/ext/libxml/ruby_xml_html_parser_context.h +10 -10
- data/ext/libxml/ruby_xml_html_parser_options.c +46 -46
- data/ext/libxml/ruby_xml_html_parser_options.h +10 -10
- data/ext/libxml/ruby_xml_input_cbg.h +20 -20
- data/ext/libxml/ruby_xml_io.c +0 -1
- data/ext/libxml/ruby_xml_io.h +10 -10
- data/ext/libxml/ruby_xml_namespace.c +153 -153
- data/ext/libxml/ruby_xml_namespace.h +10 -10
- data/ext/libxml/ruby_xml_namespaces.c +293 -293
- data/ext/libxml/ruby_xml_namespaces.h +9 -9
- data/ext/libxml/ruby_xml_node.c +100 -143
- data/ext/libxml/ruby_xml_node.h +13 -11
- data/ext/libxml/ruby_xml_parser.c +91 -94
- data/ext/libxml/ruby_xml_parser.h +12 -12
- data/ext/libxml/ruby_xml_parser_context.h +10 -10
- data/ext/libxml/ruby_xml_parser_options.c +66 -66
- data/ext/libxml/ruby_xml_parser_options.h +12 -12
- data/ext/libxml/ruby_xml_reader.c +45 -37
- data/ext/libxml/ruby_xml_reader.h +17 -17
- data/ext/libxml/ruby_xml_relaxng.h +10 -10
- data/ext/libxml/ruby_xml_sax2_handler.c +3 -3
- data/ext/libxml/ruby_xml_sax2_handler.h +10 -10
- data/ext/libxml/ruby_xml_sax_parser.c +116 -120
- data/ext/libxml/ruby_xml_sax_parser.h +10 -10
- data/ext/libxml/ruby_xml_schema.h +809 -809
- data/ext/libxml/ruby_xml_schema_attribute.c +109 -109
- data/ext/libxml/ruby_xml_schema_attribute.h +15 -15
- data/ext/libxml/ruby_xml_schema_element.c +94 -94
- data/ext/libxml/ruby_xml_schema_element.h +14 -14
- data/ext/libxml/ruby_xml_schema_facet.c +52 -52
- data/ext/libxml/ruby_xml_schema_facet.h +13 -13
- data/ext/libxml/ruby_xml_schema_type.c +259 -259
- data/ext/libxml/ruby_xml_schema_type.h +9 -9
- data/ext/libxml/ruby_xml_version.h +9 -9
- data/ext/libxml/ruby_xml_writer.c +1136 -1136
- data/ext/libxml/ruby_xml_writer.h +10 -10
- data/ext/libxml/ruby_xml_xinclude.c +16 -16
- data/ext/libxml/ruby_xml_xinclude.h +11 -11
- data/ext/libxml/ruby_xml_xpath.c +42 -36
- data/ext/libxml/ruby_xml_xpath.h +13 -13
- data/ext/libxml/ruby_xml_xpath_context.c +1 -1
- data/ext/libxml/ruby_xml_xpath_context.h +9 -9
- data/ext/libxml/ruby_xml_xpath_expression.c +81 -81
- data/ext/libxml/ruby_xml_xpath_expression.h +10 -10
- data/ext/libxml/ruby_xml_xpath_object.c +5 -2
- data/ext/libxml/ruby_xml_xpath_object.h +17 -17
- data/ext/libxml/ruby_xml_xpointer.c +99 -99
- data/ext/libxml/ruby_xml_xpointer.h +11 -11
- data/ext/vc/libxml_ruby.sln +17 -15
- data/lib/libxml.rb +1 -6
- data/lib/libxml/node.rb +2 -78
- data/lib/libxml/parser.rb +0 -266
- data/lib/libxml/sax_parser.rb +0 -17
- data/lib/libxml/schema.rb +66 -66
- data/lib/libxml/schema/attribute.rb +19 -19
- data/lib/libxml/schema/element.rb +27 -27
- data/lib/libxml/schema/type.rb +29 -29
- data/script/benchmark/depixelate +634 -634
- data/script/benchmark/hamlet.xml +9054 -9054
- data/script/benchmark/parsecount +170 -170
- data/script/benchmark/throughput +41 -41
- data/script/test +6 -6
- data/test/c14n/given/example-1.xml +14 -14
- data/test/c14n/given/example-2.xml +11 -11
- data/test/c14n/given/example-3.xml +18 -18
- data/test/c14n/given/example-4.xml +9 -9
- data/test/c14n/given/example-5.xml +12 -12
- data/test/c14n/given/example-6.xml +2 -2
- data/test/c14n/given/example-7.xml +11 -11
- data/test/c14n/given/example-8.xml +11 -11
- data/test/c14n/given/example-8.xpath +9 -9
- data/test/c14n/result/1-1-without-comments/example-1 +3 -3
- data/test/c14n/result/1-1-without-comments/example-2 +10 -10
- data/test/c14n/result/1-1-without-comments/example-3 +13 -13
- data/test/c14n/result/1-1-without-comments/example-4 +8 -8
- data/test/c14n/result/1-1-without-comments/example-5 +2 -2
- data/test/c14n/result/with-comments/example-1 +5 -5
- data/test/c14n/result/with-comments/example-2 +10 -10
- data/test/c14n/result/with-comments/example-3 +13 -13
- data/test/c14n/result/with-comments/example-4 +8 -8
- data/test/c14n/result/with-comments/example-5 +3 -3
- data/test/c14n/result/without-comments/example-1 +3 -3
- data/test/c14n/result/without-comments/example-2 +10 -10
- data/test/c14n/result/without-comments/example-3 +13 -13
- data/test/c14n/result/without-comments/example-4 +8 -8
- data/test/c14n/result/without-comments/example-5 +2 -2
- data/test/model/atom.xml +12 -12
- data/test/model/bands.iso-8859-1.xml +4 -4
- data/test/model/bands.utf-8.xml +4 -4
- data/test/model/bands.xml +4 -4
- data/test/model/books.xml +153 -153
- data/test/model/merge_bug_data.xml +58 -58
- data/test/model/ruby-lang.html +238 -238
- data/test/model/rubynet.xml +79 -79
- data/test/model/shiporder.rnc +28 -28
- data/test/model/shiporder.rng +86 -86
- data/test/model/shiporder.xml +22 -22
- data/test/model/shiporder.xsd +39 -39
- data/test/model/soap.xml +27 -27
- data/test/model/xinclude.xml +4 -4
- data/test/tc_attributes.rb +0 -6
- data/test/tc_error.rb +157 -158
- data/test/tc_node.rb +33 -17
- data/test/tc_node_edit.rb +0 -15
- data/test/tc_node_pi.rb +39 -39
- data/test/tc_parser.rb +0 -48
- data/test/tc_reader.rb +12 -53
- data/test/tc_writer.rb +447 -447
- data/test/tc_xpath.rb +1 -1
- data/test/test_helper.rb +2 -2
- metadata +3 -8
- data/ext/libxml/extconf.h +0 -4
- data/lib/libxml/ns.rb +0 -22
- data/lib/libxml/properties.rb +0 -23
- data/lib/libxml/reader.rb +0 -29
- data/lib/libxml/xpath_object.rb +0 -16
@@ -1,5 +1,5 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<bands genre="metal">
|
3
|
-
<m�tley_cr�e country="us">M�tley Cr�e is an American heavy metal band formed in Los Angeles, California in 1981.</m�tley_cr�e>
|
4
|
-
<iron_maiden country="uk">Iron Maiden is a British heavy metal band formed in 1975.</iron_maiden>
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<bands genre="metal">
|
3
|
+
<m�tley_cr�e country="us">M�tley Cr�e is an American heavy metal band formed in Los Angeles, California in 1981.</m�tley_cr�e>
|
4
|
+
<iron_maiden country="uk">Iron Maiden is a British heavy metal band formed in 1975.</iron_maiden>
|
5
5
|
</bands>
|
data/test/model/bands.utf-8.xml
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<bands genre="metal">
|
3
|
-
<mötley_crüe country="us">Mötley Crüe is an American heavy metal band formed in Los Angeles, California in 1981.</mötley_crüe>
|
4
|
-
<iron_maiden country="uk">Iron Maiden is a British heavy metal band formed in 1975.</iron_maiden>
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<bands genre="metal">
|
3
|
+
<mötley_crüe country="us">Mötley Crüe is an American heavy metal band formed in Los Angeles, California in 1981.</mötley_crüe>
|
4
|
+
<iron_maiden country="uk">Iron Maiden is a British heavy metal band formed in 1975.</iron_maiden>
|
5
5
|
</bands>
|
data/test/model/bands.xml
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<bands genre="metal">
|
3
|
-
<mötley_crüe country="us">An American heavy metal band formed in Los Angeles, California in 1981.</mötley_crüe>
|
4
|
-
<iron_maiden country="uk">British heavy metal band formed in 1975.</iron_maiden>
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<bands genre="metal">
|
3
|
+
<mötley_crüe country="us">An American heavy metal band formed in Los Angeles, California in 1981.</mötley_crüe>
|
4
|
+
<iron_maiden country="uk">British heavy metal band formed in 1975.</iron_maiden>
|
5
5
|
</bands>
|
data/test/model/books.xml
CHANGED
@@ -1,154 +1,154 @@
|
|
1
|
-
<?xml version="1.0"?>
|
2
|
-
<!-- Sample xml file from Microsoft.
|
3
|
-
See http://msdn.microsoft.com/en-us/library/ms762271(VS.85).aspx -->
|
4
|
-
<catalog>
|
5
|
-
<book id="bk101">
|
6
|
-
<author>Gambardella, Matthew</author>
|
7
|
-
<title>XML Developer's Guide</title>
|
8
|
-
<genre>Computer</genre>
|
9
|
-
<price>44.95</price>
|
10
|
-
<publish_date>2000-10-01</publish_date>
|
11
|
-
<description>
|
12
|
-
An in-depth look at creating applications
|
13
|
-
with XML.
|
14
|
-
</description>
|
15
|
-
</book>
|
16
|
-
<book id="bk102">
|
17
|
-
<author>Ralls, Kim</author>
|
18
|
-
<title>Midnight Rain</title>
|
19
|
-
<genre>Fantasy</genre>
|
20
|
-
<price>5.95</price>
|
21
|
-
<publish_date>2000-12-16</publish_date>
|
22
|
-
<description>
|
23
|
-
A former architect battles corporate zombies,
|
24
|
-
an evil sorceress, and her own childhood to become queen
|
25
|
-
of the world.
|
26
|
-
</description>
|
27
|
-
</book>
|
28
|
-
<book id="bk103">
|
29
|
-
<author>Corets, Eva</author>
|
30
|
-
<title>Maeve Ascendant</title>
|
31
|
-
<genre>Fantasy</genre>
|
32
|
-
<price>5.95</price>
|
33
|
-
<publish_date>2000-11-17</publish_date>
|
34
|
-
<description>
|
35
|
-
After the collapse of a nanotechnology
|
36
|
-
society in England, the young survivors lay the
|
37
|
-
foundation for a new society.
|
38
|
-
</description>
|
39
|
-
</book>
|
40
|
-
<book id="bk104">
|
41
|
-
<author>Corets, Eva</author>
|
42
|
-
<title>Oberon's Legacy</title>
|
43
|
-
<genre>Fantasy</genre>
|
44
|
-
<price>5.95</price>
|
45
|
-
<publish_date>2001-03-10</publish_date>
|
46
|
-
<description>
|
47
|
-
In post-apocalypse England, the mysterious
|
48
|
-
agent known only as Oberon helps to create a new life
|
49
|
-
for the inhabitants of London. Sequel to Maeve
|
50
|
-
Ascendant.
|
51
|
-
</description>
|
52
|
-
</book>
|
53
|
-
<book id="bk105">
|
54
|
-
<author>Corets, Eva</author>
|
55
|
-
<title>The Sundered Grail</title>
|
56
|
-
<genre>Fantasy</genre>
|
57
|
-
<price>5.95</price>
|
58
|
-
<publish_date>2001-09-10</publish_date>
|
59
|
-
<description>
|
60
|
-
The two daughters of Maeve, half-sisters,
|
61
|
-
battle one another for control of England. Sequel to
|
62
|
-
Oberon's Legacy.
|
63
|
-
</description>
|
64
|
-
</book>
|
65
|
-
<book id="bk106">
|
66
|
-
<author>Randall, Cynthia</author>
|
67
|
-
<title>Lover Birds</title>
|
68
|
-
<genre>Romance</genre>
|
69
|
-
<price>4.95</price>
|
70
|
-
<publish_date>2000-09-02</publish_date>
|
71
|
-
<description>
|
72
|
-
When Carla meets Paul at an ornithology
|
73
|
-
conference, tempers fly as feathers get ruffled.
|
74
|
-
</description>
|
75
|
-
</book>
|
76
|
-
<book id="bk107">
|
77
|
-
<author>Thurman, Paula</author>
|
78
|
-
<title>Splish Splash</title>
|
79
|
-
<genre>Romance</genre>
|
80
|
-
<price>4.95</price>
|
81
|
-
<publish_date>2000-11-02</publish_date>
|
82
|
-
<description>
|
83
|
-
A deep sea diver finds true love twenty
|
84
|
-
thousand leagues beneath the sea.
|
85
|
-
</description>
|
86
|
-
</book>
|
87
|
-
<book id="bk108">
|
88
|
-
<author>Knorr, Stefan</author>
|
89
|
-
<title>Creepy Crawlies</title>
|
90
|
-
<genre>Horror</genre>
|
91
|
-
<price>4.95</price>
|
92
|
-
<publish_date>2000-12-06</publish_date>
|
93
|
-
<description>
|
94
|
-
An anthology of horror stories about roaches,
|
95
|
-
centipedes, scorpions and other insects.
|
96
|
-
</description>
|
97
|
-
</book>
|
98
|
-
<book id="bk109">
|
99
|
-
<author>Kress, Peter</author>
|
100
|
-
<title>Paradox Lost</title>
|
101
|
-
<genre>Science Fiction</genre>
|
102
|
-
<price>6.95</price>
|
103
|
-
<publish_date>2000-11-02</publish_date>
|
104
|
-
<description>
|
105
|
-
After an inadvertant trip through a Heisenberg
|
106
|
-
Uncertainty Device, James Salway discovers the problems
|
107
|
-
of being quantum.
|
108
|
-
</description>
|
109
|
-
</book>
|
110
|
-
<book id="bk110">
|
111
|
-
<author>O'Brien, Tim</author>
|
112
|
-
<title>Microsoft .NET: The Programming Bible</title>
|
113
|
-
<genre>Computer</genre>
|
114
|
-
<price>36.95</price>
|
115
|
-
<publish_date>2000-12-09</publish_date>
|
116
|
-
<description>
|
117
|
-
Microsoft's .NET initiative is explored in
|
118
|
-
detail in this deep programmer's reference.
|
119
|
-
</description>
|
120
|
-
</book>
|
121
|
-
<book id="bk111">
|
122
|
-
<author>O'Brien, Tim</author>
|
123
|
-
<title>MSXML3: A Comprehensive Guide</title>
|
124
|
-
<genre>Computer</genre>
|
125
|
-
<price>36.95</price>
|
126
|
-
<publish_date>2000-12-01</publish_date>
|
127
|
-
<description>
|
128
|
-
The Microsoft MSXML3 parser is covered in
|
129
|
-
detail, with attention to XML DOM interfaces, XSLT processing,
|
130
|
-
SAX and more.
|
131
|
-
</description>
|
132
|
-
</book>
|
133
|
-
<book id="bk112">
|
134
|
-
<author>Galos, Mike</author>
|
135
|
-
<title>Visual Studio 7: A Comprehensive Guide</title>
|
136
|
-
<genre>Computer</genre>
|
137
|
-
<price>49.95</price>
|
138
|
-
<publish_date>2001-04-16</publish_date>
|
139
|
-
<description>
|
140
|
-
Microsoft Visual Studio 7 is explored in depth,
|
141
|
-
looking at how Visual Basic, Visual C++, C#, and ASP+ are
|
142
|
-
integrated into a comprehensive development
|
143
|
-
environment.
|
144
|
-
</description>
|
145
|
-
</book>
|
146
|
-
<book id="bk113">
|
147
|
-
<author>Test Mike</author>
|
148
|
-
<title>Test Data with empty nodes</title>
|
149
|
-
<genre/>
|
150
|
-
<price/>
|
151
|
-
<publish_date/>
|
152
|
-
<description/>
|
153
|
-
</book>
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- Sample xml file from Microsoft.
|
3
|
+
See http://msdn.microsoft.com/en-us/library/ms762271(VS.85).aspx -->
|
4
|
+
<catalog>
|
5
|
+
<book id="bk101">
|
6
|
+
<author>Gambardella, Matthew</author>
|
7
|
+
<title>XML Developer's Guide</title>
|
8
|
+
<genre>Computer</genre>
|
9
|
+
<price>44.95</price>
|
10
|
+
<publish_date>2000-10-01</publish_date>
|
11
|
+
<description>
|
12
|
+
An in-depth look at creating applications
|
13
|
+
with XML.
|
14
|
+
</description>
|
15
|
+
</book>
|
16
|
+
<book id="bk102">
|
17
|
+
<author>Ralls, Kim</author>
|
18
|
+
<title>Midnight Rain</title>
|
19
|
+
<genre>Fantasy</genre>
|
20
|
+
<price>5.95</price>
|
21
|
+
<publish_date>2000-12-16</publish_date>
|
22
|
+
<description>
|
23
|
+
A former architect battles corporate zombies,
|
24
|
+
an evil sorceress, and her own childhood to become queen
|
25
|
+
of the world.
|
26
|
+
</description>
|
27
|
+
</book>
|
28
|
+
<book id="bk103">
|
29
|
+
<author>Corets, Eva</author>
|
30
|
+
<title>Maeve Ascendant</title>
|
31
|
+
<genre>Fantasy</genre>
|
32
|
+
<price>5.95</price>
|
33
|
+
<publish_date>2000-11-17</publish_date>
|
34
|
+
<description>
|
35
|
+
After the collapse of a nanotechnology
|
36
|
+
society in England, the young survivors lay the
|
37
|
+
foundation for a new society.
|
38
|
+
</description>
|
39
|
+
</book>
|
40
|
+
<book id="bk104">
|
41
|
+
<author>Corets, Eva</author>
|
42
|
+
<title>Oberon's Legacy</title>
|
43
|
+
<genre>Fantasy</genre>
|
44
|
+
<price>5.95</price>
|
45
|
+
<publish_date>2001-03-10</publish_date>
|
46
|
+
<description>
|
47
|
+
In post-apocalypse England, the mysterious
|
48
|
+
agent known only as Oberon helps to create a new life
|
49
|
+
for the inhabitants of London. Sequel to Maeve
|
50
|
+
Ascendant.
|
51
|
+
</description>
|
52
|
+
</book>
|
53
|
+
<book id="bk105">
|
54
|
+
<author>Corets, Eva</author>
|
55
|
+
<title>The Sundered Grail</title>
|
56
|
+
<genre>Fantasy</genre>
|
57
|
+
<price>5.95</price>
|
58
|
+
<publish_date>2001-09-10</publish_date>
|
59
|
+
<description>
|
60
|
+
The two daughters of Maeve, half-sisters,
|
61
|
+
battle one another for control of England. Sequel to
|
62
|
+
Oberon's Legacy.
|
63
|
+
</description>
|
64
|
+
</book>
|
65
|
+
<book id="bk106">
|
66
|
+
<author>Randall, Cynthia</author>
|
67
|
+
<title>Lover Birds</title>
|
68
|
+
<genre>Romance</genre>
|
69
|
+
<price>4.95</price>
|
70
|
+
<publish_date>2000-09-02</publish_date>
|
71
|
+
<description>
|
72
|
+
When Carla meets Paul at an ornithology
|
73
|
+
conference, tempers fly as feathers get ruffled.
|
74
|
+
</description>
|
75
|
+
</book>
|
76
|
+
<book id="bk107">
|
77
|
+
<author>Thurman, Paula</author>
|
78
|
+
<title>Splish Splash</title>
|
79
|
+
<genre>Romance</genre>
|
80
|
+
<price>4.95</price>
|
81
|
+
<publish_date>2000-11-02</publish_date>
|
82
|
+
<description>
|
83
|
+
A deep sea diver finds true love twenty
|
84
|
+
thousand leagues beneath the sea.
|
85
|
+
</description>
|
86
|
+
</book>
|
87
|
+
<book id="bk108">
|
88
|
+
<author>Knorr, Stefan</author>
|
89
|
+
<title>Creepy Crawlies</title>
|
90
|
+
<genre>Horror</genre>
|
91
|
+
<price>4.95</price>
|
92
|
+
<publish_date>2000-12-06</publish_date>
|
93
|
+
<description>
|
94
|
+
An anthology of horror stories about roaches,
|
95
|
+
centipedes, scorpions and other insects.
|
96
|
+
</description>
|
97
|
+
</book>
|
98
|
+
<book id="bk109">
|
99
|
+
<author>Kress, Peter</author>
|
100
|
+
<title>Paradox Lost</title>
|
101
|
+
<genre>Science Fiction</genre>
|
102
|
+
<price>6.95</price>
|
103
|
+
<publish_date>2000-11-02</publish_date>
|
104
|
+
<description>
|
105
|
+
After an inadvertant trip through a Heisenberg
|
106
|
+
Uncertainty Device, James Salway discovers the problems
|
107
|
+
of being quantum.
|
108
|
+
</description>
|
109
|
+
</book>
|
110
|
+
<book id="bk110">
|
111
|
+
<author>O'Brien, Tim</author>
|
112
|
+
<title>Microsoft .NET: The Programming Bible</title>
|
113
|
+
<genre>Computer</genre>
|
114
|
+
<price>36.95</price>
|
115
|
+
<publish_date>2000-12-09</publish_date>
|
116
|
+
<description>
|
117
|
+
Microsoft's .NET initiative is explored in
|
118
|
+
detail in this deep programmer's reference.
|
119
|
+
</description>
|
120
|
+
</book>
|
121
|
+
<book id="bk111">
|
122
|
+
<author>O'Brien, Tim</author>
|
123
|
+
<title>MSXML3: A Comprehensive Guide</title>
|
124
|
+
<genre>Computer</genre>
|
125
|
+
<price>36.95</price>
|
126
|
+
<publish_date>2000-12-01</publish_date>
|
127
|
+
<description>
|
128
|
+
The Microsoft MSXML3 parser is covered in
|
129
|
+
detail, with attention to XML DOM interfaces, XSLT processing,
|
130
|
+
SAX and more.
|
131
|
+
</description>
|
132
|
+
</book>
|
133
|
+
<book id="bk112">
|
134
|
+
<author>Galos, Mike</author>
|
135
|
+
<title>Visual Studio 7: A Comprehensive Guide</title>
|
136
|
+
<genre>Computer</genre>
|
137
|
+
<price>49.95</price>
|
138
|
+
<publish_date>2001-04-16</publish_date>
|
139
|
+
<description>
|
140
|
+
Microsoft Visual Studio 7 is explored in depth,
|
141
|
+
looking at how Visual Basic, Visual C++, C#, and ASP+ are
|
142
|
+
integrated into a comprehensive development
|
143
|
+
environment.
|
144
|
+
</description>
|
145
|
+
</book>
|
146
|
+
<book id="bk113">
|
147
|
+
<author>Test Mike</author>
|
148
|
+
<title>Test Data with empty nodes</title>
|
149
|
+
<genre/>
|
150
|
+
<price/>
|
151
|
+
<publish_date/>
|
152
|
+
<description/>
|
153
|
+
</book>
|
154
154
|
</catalog>
|
@@ -1,58 +1,58 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<template>
|
3
|
-
<body>
|
4
|
-
<section>
|
5
|
-
<txt>Some Preset Data Here</txt>
|
6
|
-
<txt>Some Preset Data Here</txt>
|
7
|
-
<txt>name: quack!</txt>
|
8
|
-
<txt>Some Preset Data Here</txt>
|
9
|
-
<txt>Some Preset Data Here</txt>
|
10
|
-
<txt>Some Preset Data Here</txt>
|
11
|
-
<txt>Some Preset Data Here</txt>
|
12
|
-
<txt>city: quack!</txt>
|
13
|
-
<txt>Some Preset Data Here</txt>
|
14
|
-
<txt>Some Preset Data Here</txt>
|
15
|
-
<txt>Some Preset Data Here</txt>
|
16
|
-
<txt>Some Preset Data Here</txt>
|
17
|
-
<txt>state: quack!</txt>
|
18
|
-
<txt>Some Preset Data Here</txt>
|
19
|
-
<txt>Some Preset Data Here</txt>
|
20
|
-
<txt>Some Preset Data Here</txt>
|
21
|
-
<txt>Some Preset Data Here</txt>
|
22
|
-
<row>
|
23
|
-
<txt>year: Vroom!</txt>
|
24
|
-
<txt>make: Vroom!</txt>
|
25
|
-
<txt>model: Vroom!</txt>
|
26
|
-
</row>
|
27
|
-
<row>
|
28
|
-
<txt>year: Vroom!</txt>
|
29
|
-
<txt>make: Vroom!</txt>
|
30
|
-
<txt>model: Vroom!</txt>
|
31
|
-
</row>
|
32
|
-
<row>
|
33
|
-
<txt>year: Vroom!</txt>
|
34
|
-
<txt>make: Vroom!</txt>
|
35
|
-
<txt>model: Vroom!</txt>
|
36
|
-
</row>
|
37
|
-
<txt>Some Preset Data Here</txt>
|
38
|
-
<txt>Some Preset Data Here</txt>
|
39
|
-
<row>
|
40
|
-
<txt>year: Vroom!</txt>
|
41
|
-
<txt>make: Vroom!</txt>
|
42
|
-
<txt>model: Vroom!</txt>
|
43
|
-
</row>
|
44
|
-
<row>
|
45
|
-
<txt>year: Vroom!</txt>
|
46
|
-
<txt>make: Vroom!</txt>
|
47
|
-
<txt>model: Vroom!</txt>
|
48
|
-
</row>
|
49
|
-
<row>
|
50
|
-
<txt>year: Vroom!</txt>
|
51
|
-
<txt>make: Vroom!</txt>
|
52
|
-
<txt>model: Vroom!</txt>
|
53
|
-
</row>
|
54
|
-
<txt>Some Preset Data Here</txt>
|
55
|
-
<txt>Some Preset Data Here</txt>
|
56
|
-
</section>
|
57
|
-
</body>
|
58
|
-
</template>
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<template>
|
3
|
+
<body>
|
4
|
+
<section>
|
5
|
+
<txt>Some Preset Data Here</txt>
|
6
|
+
<txt>Some Preset Data Here</txt>
|
7
|
+
<txt>name: quack!</txt>
|
8
|
+
<txt>Some Preset Data Here</txt>
|
9
|
+
<txt>Some Preset Data Here</txt>
|
10
|
+
<txt>Some Preset Data Here</txt>
|
11
|
+
<txt>Some Preset Data Here</txt>
|
12
|
+
<txt>city: quack!</txt>
|
13
|
+
<txt>Some Preset Data Here</txt>
|
14
|
+
<txt>Some Preset Data Here</txt>
|
15
|
+
<txt>Some Preset Data Here</txt>
|
16
|
+
<txt>Some Preset Data Here</txt>
|
17
|
+
<txt>state: quack!</txt>
|
18
|
+
<txt>Some Preset Data Here</txt>
|
19
|
+
<txt>Some Preset Data Here</txt>
|
20
|
+
<txt>Some Preset Data Here</txt>
|
21
|
+
<txt>Some Preset Data Here</txt>
|
22
|
+
<row>
|
23
|
+
<txt>year: Vroom!</txt>
|
24
|
+
<txt>make: Vroom!</txt>
|
25
|
+
<txt>model: Vroom!</txt>
|
26
|
+
</row>
|
27
|
+
<row>
|
28
|
+
<txt>year: Vroom!</txt>
|
29
|
+
<txt>make: Vroom!</txt>
|
30
|
+
<txt>model: Vroom!</txt>
|
31
|
+
</row>
|
32
|
+
<row>
|
33
|
+
<txt>year: Vroom!</txt>
|
34
|
+
<txt>make: Vroom!</txt>
|
35
|
+
<txt>model: Vroom!</txt>
|
36
|
+
</row>
|
37
|
+
<txt>Some Preset Data Here</txt>
|
38
|
+
<txt>Some Preset Data Here</txt>
|
39
|
+
<row>
|
40
|
+
<txt>year: Vroom!</txt>
|
41
|
+
<txt>make: Vroom!</txt>
|
42
|
+
<txt>model: Vroom!</txt>
|
43
|
+
</row>
|
44
|
+
<row>
|
45
|
+
<txt>year: Vroom!</txt>
|
46
|
+
<txt>make: Vroom!</txt>
|
47
|
+
<txt>model: Vroom!</txt>
|
48
|
+
</row>
|
49
|
+
<row>
|
50
|
+
<txt>year: Vroom!</txt>
|
51
|
+
<txt>make: Vroom!</txt>
|
52
|
+
<txt>model: Vroom!</txt>
|
53
|
+
</row>
|
54
|
+
<txt>Some Preset Data Here</txt>
|
55
|
+
<txt>Some Preset Data Here</txt>
|
56
|
+
</section>
|
57
|
+
</body>
|
58
|
+
</template>
|