First commit
[anna.git] / example / xml / xpath / bookstore.xml
1 <!-- Test xpath conditions, i.e.:
2   /bookstore/book[price>35]/title
3   /bookstore/book/title
4   etc.
5 -->
6 <?xml version="1.0" encoding="ISO-8859-1"?>
7 <bookstore>
8 <book category="COOKING">
9   <title lang="en">Everyday Italian</title>
10   <author>Giada De Laurentiis</author>
11   <year>2005</year>
12   <price>30.00</price>
13 </book>
14 <book category="CHILDREN">
15   <title lang="en">Harry Potter</title>
16   <author>J K. Rowling</author>
17   <year>2005</year>
18   <price>29.99</price>
19 </book>
20 <book category="WEB1" more="uhu">
21   <title lang="en">XQuery Kick Start</title>
22   <author>James McGovern</author>
23   <author>Per Bothner</author>
24   <author>Kurt Cagle</author>
25   <author>James Linn</author>
26   <author>Vaidyanathan Nagarajan</author>
27   <year>2003</year>
28   <price>49.99</price>
29 </book>
30 <book category="WEB2">
31   <title lang="en">Learning XML</title>
32   <author>Erik T. Ray</author>
33   <year>2003</year>
34   <price>39.95</price>
35 </book>
36 </bookstore>
37