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