smile-xml 1.0.3-java → 1.0.4-java
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 +7 -0
- data/lib/smile-xml.jar +0 -0
- data/src/main/java/smile/xml/ErrorJ.java +2 -2
- data/src/main/java/smile/xml/SmileXML.java +2 -2
- data/src/main/java/smile/xml/util/UtilJ.java +2 -2
- data/src/test/ruby/ets_test.xml +2 -2
- data/src/test/ruby/model/atom.xml +12 -12
- data/src/test/ruby/model/bands.iso-8859-1.xml +4 -4
- data/src/test/ruby/model/bands.utf-8.xml +4 -4
- data/src/test/ruby/model/bands.xml +4 -4
- data/src/test/ruby/model/books.xml +145 -145
- data/src/test/ruby/model/merge_bug_data.xml +58 -58
- data/src/test/ruby/model/ruby-lang.html +238 -238
- data/src/test/ruby/model/rubynet.xml +79 -79
- data/src/test/ruby/model/shiporder.rnc +28 -28
- data/src/test/ruby/model/shiporder.rng +86 -86
- data/src/test/ruby/model/shiporder.xml +22 -22
- data/src/test/ruby/model/shiporder.xsd +30 -30
- data/src/test/ruby/model/soap.xml +27 -27
- data/src/test/ruby/model/xinclude.xml +4 -4
- metadata +116 -127
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 1d56aaa9de8e637cd2b2768f2a8e4a331f684a99
|
|
4
|
+
data.tar.gz: 1b8dac35f2fa9d4919427e6de4f95226c64c93ae
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: af59b55ac4a33d254816d38c7fffa230d39245485d6a7bba6f3d270a764537b69f26897dbd91fc77a02c2e9a8ecc1ab35f0e39a516c4710624942114331ecf65
|
|
7
|
+
data.tar.gz: 543f9e9e8e88d9c6ed075aea159bb3f8b1a72877abe382f6501e3ed5119604aae29880ac02e39da898bdd3b16353578d4b368aba99521daa6f3614fcace9c949
|
data/lib/smile-xml.jar
CHANGED
|
Binary file
|
|
@@ -80,7 +80,7 @@ public class ErrorJ extends RubyException {
|
|
|
80
80
|
|
|
81
81
|
@JRubyMethod(name = "initialize")
|
|
82
82
|
public void initialize(ThreadContext context, IRubyObject pString) {
|
|
83
|
-
message = pString;
|
|
83
|
+
// message = pString;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
@JRubyMethod(name = "domain")
|
|
@@ -152,4 +152,4 @@ public class ErrorJ extends RubyException {
|
|
|
152
152
|
public static Block getErrorHandler(ThreadContext context, IRubyObject self) {
|
|
153
153
|
return (Block) handler.get();
|
|
154
154
|
}
|
|
155
|
-
}
|
|
155
|
+
}
|
|
@@ -3,7 +3,7 @@ package smile.xml;
|
|
|
3
3
|
import org.jruby.Ruby;
|
|
4
4
|
import org.jruby.RubyClass;
|
|
5
5
|
import org.jruby.RubyModule;
|
|
6
|
-
import org.jruby.compiler.ir.instructions.THROW_EXCEPTION_Instr;
|
|
6
|
+
//import org.jruby.compiler.ir.instructions.THROW_EXCEPTION_Instr;
|
|
7
7
|
|
|
8
8
|
import smile.xml.sax.SaxParserCallbacksJ;
|
|
9
9
|
import smile.xml.sax.SaxParserJ;
|
|
@@ -62,4 +62,4 @@ public class SmileXML {
|
|
|
62
62
|
throw e;
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
|
-
}
|
|
65
|
+
}
|
|
@@ -21,7 +21,7 @@ import javax.xml.validation.SchemaFactory;
|
|
|
21
21
|
import javax.xml.xpath.XPath;
|
|
22
22
|
import javax.xml.xpath.XPathFactory;
|
|
23
23
|
|
|
24
|
-
import jline.Terminal;
|
|
24
|
+
//import jline.Terminal;
|
|
25
25
|
|
|
26
26
|
import org.jruby.Ruby;
|
|
27
27
|
import org.jruby.RubyBoolean;
|
|
@@ -444,4 +444,4 @@ public class UtilJ {
|
|
|
444
444
|
public static boolean isAttr(Node node) {
|
|
445
445
|
return ! isNamespace(node);
|
|
446
446
|
}
|
|
447
|
-
}
|
|
447
|
+
}
|
data/src/test/ruby/ets_test.xml
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<?xml version="1.0"?>
|
|
2
|
-
<test/>
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<test/>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<?xml-stylesheet type="text/xsl" href="my_stylesheet.xsl"?>
|
|
3
|
-
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
4
|
-
<!-- Not a valid atom entry -->
|
|
5
|
-
<entry>
|
|
6
|
-
<title type="html"><![CDATA[<<strong>>]]></title>
|
|
7
|
-
<content type="xhtml">
|
|
8
|
-
<xhtml:div xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
|
9
|
-
<xhtml:p>hi there</xhtml:p>
|
|
10
|
-
</xhtml:div>
|
|
11
|
-
</content>
|
|
12
|
-
</entry>
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<?xml-stylesheet type="text/xsl" href="my_stylesheet.xsl"?>
|
|
3
|
+
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
4
|
+
<!-- Not a valid atom entry -->
|
|
5
|
+
<entry>
|
|
6
|
+
<title type="html"><![CDATA[<<strong>>]]></title>
|
|
7
|
+
<content type="xhtml">
|
|
8
|
+
<xhtml:div xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
|
9
|
+
<xhtml:p>hi there</xhtml:p>
|
|
10
|
+
</xhtml:div>
|
|
11
|
+
</content>
|
|
12
|
+
</entry>
|
|
13
13
|
</feed>
|
|
@@ -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>
|
|
@@ -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>
|
|
@@ -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>
|
|
@@ -1,146 +1,146 @@
|
|
|
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>
|
|
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
146
|
</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>
|