aboutsummaryrefslogtreecommitdiffstats
path: root/sample/rss/content.xml
diff options
context:
space:
mode:
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 0000000000..5eb192ec7d
--- /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>
+