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/test01-result.ttl | |
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/test01-result.ttl')
-rw-r--r-- | tests/feeds/test01-result.ttl | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/feeds/test01-result.ttl b/tests/feeds/test01-result.ttl new file mode 100644 index 0000000..ed1399e --- /dev/null +++ b/tests/feeds/test01-result.ttl @@ -0,0 +1,40 @@ +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix atom: <http://www.w3.org/2005/Atom> . +@prefix content: <http://purl.org/rss/1.0/modules/content/> . +@prefix dc: <http://purl.org/dc/elements/1.1/> . +@prefix enc: <http://purl.oclc.org/net/rss_2.0/enc#> . +@prefix rss091: <http://purl.org/rss/1.0/modules/rss091#> . +@prefix : <http://purl.org/rss/1.0/> . + +<2006/03/28/blog-item> + dc:creator [ + dc:title "Example" ; + a dc:Person + ] ; + dc:date "2006-03-28T20:57:15Z" ; + :description "rss:description here" ; + :link "http://example.org/2006/03/28/blog-item" ; + :title "Original blog item title 2006-03" ; + a :item ; + atom:summary """<div xmlns=\"http://www.w3.org/1999/xhtml\">The atom:summary description including +<b>tags</b> +over several lines. +</div>"""^^rdf:XMLLiteral ; + atom:title "atomic blog item title" ; + atom:updated "2006-03-28T20:57:15Z" . + +<> + dc:date "2006-03-28T17:05:01-05:00" ; + :items [ + rdf:_1 <2006/03/28/blog-item> ; + a rdf:Seq + ] ; + :link "http://example.org/whatsnew" ; + :title "example feed with 1 item" ; + a :channel ; + atom:author "example" ; + atom:email "example@example.com" ; + atom:title "atomic title" ; + atom:updated "2006-03-28T20:57:15Z" ; + atom:uri "http://example.com/" . + |