diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:40:05 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:40:05 +0000 |
commit | 4038ab95a094b363f1748f3dcb51511a1217475d (patch) | |
tree | 7f393d66a783f91ddd263c78d681e485cf4f45ca /tests/feeds/test02.rdf | |
parent | Initial commit. (diff) | |
download | raptor2-4038ab95a094b363f1748f3dcb51511a1217475d.tar.xz raptor2-4038ab95a094b363f1748f3dcb51511a1217475d.zip |
Adding upstream version 2.0.16.upstream/2.0.16upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/feeds/test02.rdf')
-rw-r--r-- | tests/feeds/test02.rdf | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/feeds/test02.rdf b/tests/feeds/test02.rdf new file mode 100644 index 0000000..d761513 --- /dev/null +++ b/tests/feeds/test02.rdf @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<rdf:RDF xml:base="http://example.org/news/NEWS.rdf" + xmlns:content="http://purl.org/rss/1.0/modules/content/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns="http://purl.org/rss/1.0/"> + <channel rdf:about="http://example.org/news/"> + <title>Example News</title> + <link>http://example.org/news/</link> + <description>Example News feed.</description> + <dc:date>2008-03-30T05:52:06Z</dc:date> + <items> + <rdf:Seq> + <rdf:li rdf:resource="http://example.org/news/2008-03-30"/> + <rdf:li rdf:resource="http://example.org/news/2007-10-01"/> + </rdf:Seq> + </items> + </channel> + + <item rdf:about="http://example.org/news/2008-03-30"> + <link>http://example.org/news/2008-03-30</link> + <title>News for 2008-03-30</title> + <content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml"> +html description 1 +</div>]]></content:encoded> + <description><div xmlns="http://www.w3.org/1999/xhtml"> +html description 2 +</div></description> + <dc:date>2008-03-30T06:07:28Z</dc:date> + </item> + + <item rdf:about="http://example.org/news/2007-10-01"> + <link>http://example.org/news/2007-10-01</link> + <title>News for 2007-10-01</title> + <content:encoded><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml"> +html description 3 +</div>]]></content:encoded> + <description><div xmlns="http://www.w3.org/1999/xhtml"> +html description 4 +</div></description> + <dc:date>2007-10-01T06:56:58Z</dc:date> + </item> + +</rdf:RDF> |