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-result.ttl | |
parent | Initial commit. (diff) | |
download | raptor2-upstream.tar.xz raptor2-upstream.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-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 . + |