diff options
Diffstat (limited to 'tests/feeds/test02-result.ttl')
-rw-r--r-- | tests/feeds/test02-result.ttl | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/feeds/test02-result.ttl b/tests/feeds/test02-result.ttl new file mode 100644 index 0000000..ea74c59 --- /dev/null +++ b/tests/feeds/test02-result.ttl @@ -0,0 +1,41 @@ +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix content: <http://purl.org/rss/1.0/modules/content/> . +@prefix dc: <http://purl.org/dc/elements/1.1/> . +@prefix : <http://purl.org/rss/1.0/> . + +<> + dc:date "2008-03-30T05:52:06Z" ; + :description "Example News feed." ; + :items [ + rdf:_1 <2008-03-30> ; + rdf:_2 <2007-10-01> ; + a rdf:Seq + ] ; + :link "http://example.org/news/" ; + :title "Example News" ; + a :channel . + +<2007-10-01> + dc:date "2007-10-01T06:56:58Z" ; + :description """<div xmlns=\"http://www.w3.org/1999/xhtml\"> +html description 4 +</div>""" ; + :link "http://example.org/news/2007-10-01" ; + content:encoded """<div xmlns=\"http://www.w3.org/1999/xhtml\"> +html description 3 +</div>""" ; + :title "News for 2007-10-01" ; + a :item . + +<2008-03-30> + dc:date "2008-03-30T06:07:28Z" ; + :description """<div xmlns=\"http://www.w3.org/1999/xhtml\"> +html description 2 +</div>""" ; + :link "http://example.org/news/2008-03-30" ; + content:encoded """<div xmlns=\"http://www.w3.org/1999/xhtml\"> +html description 1 +</div>""" ; + :title "News for 2008-03-30" ; + a :item . + |