summaryrefslogtreecommitdiffstats
path: root/sample/rss/content.xml
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-28 03:46:13 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-28 03:46:13 +0000
commit2cfa999f7baa1b994c9a0e3fef6b05f30d2ec7d9 (patch)
tree6262080bde1c6376c96bdc05d2a6692bd9de6818 /sample/rss/content.xml
parent28651fcd3db70dc779fd2d8d119229d3721de34b (diff)
downloadruby-2cfa999f7baa1b994c9a0e3fef6b05f30d2ec7d9.tar.gz
ruby-2cfa999f7baa1b994c9a0e3fef6b05f30d2ec7d9.tar.xz
ruby-2cfa999f7baa1b994c9a0e3fef6b05f30d2ec7d9.zip
* lib/rss: rss library imported. [ruby-dev:22726]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5566 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/rss/content.xml')
-rw-r--r--sample/rss/content.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/sample/rss/content.xml b/sample/rss/content.xml
new file mode 100644
index 000000000..5eb192ec7
--- /dev/null
+++ b/sample/rss/content.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<rdf:RDF
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:content="http://purl.org/rss/1.0/modules/content/"
+ xmlns="http://purl.org/rss/1.0/"
+>
+
+ <channel rdf:about="http://example.org/rss.rdf">
+ <title>Example Feed</title>
+ <link>http://www.example.org</link>
+ <description>Simply for the purpose of demonstration.</description>
+
+ <items>
+ <rdf:Seq>
+ <rdf:li resource="http://example.org/item/" />
+ </rdf:Seq>
+ </items>
+
+ </channel>
+
+ <item rdf:about="http://example.org/item/">
+ <title>The Example Item</title>
+ <link>http://example.org/item/</link>
+ <content:encoded><![CDATA[<p>What a <em>beautiful</em> day!</p>]]></content:encoded>
+ </item>
+</rdf:RDF>
+