source: branches/dev/html/test/adachi/LLReader/Lib/XML/Feed/samples/rss10-example1.xml @ 14612

Revision 14612, 1.9 KB checked in by adati, 17 years ago (diff)
Line 
1<?xml version="1.0"?>
2
3<rdf:RDF
4  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
5  xmlns="http://purl.org/rss/1.0/"
6>
7
8  <channel rdf:about="http://www.xml.com/xml/news.rss">
9    <title>XML.com</title>
10    <link>http://xml.com/pub</link>
11    <description>
12      XML.com features a rich mix of information and services
13      for the XML community.
14    </description>
15
16    <image rdf:resource="http://xml.com/universal/images/xml_tiny.gif" />
17
18    <items>
19      <rdf:Seq>
20        <rdf:li resource="http://xml.com/pub/2000/08/09/xslt/xslt.html" />
21        <rdf:li resource="http://xml.com/pub/2000/08/09/rdfdb/index.html" />
22      </rdf:Seq>
23    </items>
24
25    <textinput rdf:resource="http://search.xml.com" />
26
27  </channel>
28 
29  <image rdf:about="http://xml.com/universal/images/xml_tiny.gif">
30    <title>XML.com</title>
31    <link>http://www.xml.com</link>
32    <url>http://xml.com/universal/images/xml_tiny.gif</url>
33  </image>
34 
35  <item rdf:about="http://xml.com/pub/2000/08/09/xslt/xslt.html">
36    <title>Processing Inclusions with XSLT</title>
37    <link>http://xml.com/pub/2000/08/09/xslt/xslt.html</link>
38    <description>
39     Processing document inclusions with general XML tools can be
40     problematic. This article proposes a way of preserving inclusion
41     information through SAX-based processing.
42    </description>
43  </item>
44 
45  <item rdf:about="http://xml.com/pub/2000/08/09/rdfdb/index.html">
46    <title>Putting RDF to Work</title>
47    <link>http://xml.com/pub/2000/08/09/rdfdb/index.html</link>
48    <description>
49     Tool and API support for the Resource Description Framework
50     is slowly coming of age. Edd Dumbill takes a look at RDFDB,
51     one of the most exciting new RDF toolkits.
52    </description>
53  </item>
54
55  <textinput rdf:about="http://search.xml.com">
56    <title>Search XML.com</title>
57    <description>Search XML.com's XML collection</description>
58    <name>s</name>
59    <link>http://search.xml.com</link>
60  </textinput>
61
62</rdf:RDF>
Note: See TracBrowser for help on using the repository browser.