diff options
Diffstat (limited to 'tests/feeds/test03-result.ttl')
-rw-r--r-- | tests/feeds/test03-result.ttl | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/tests/feeds/test03-result.ttl b/tests/feeds/test03-result.ttl new file mode 100644 index 0000000..45c0455 --- /dev/null +++ b/tests/feeds/test03-result.ttl @@ -0,0 +1,57 @@ +@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 at: <http://purl.org/syndication/atomtriples/1> . +@prefix : <http://purl.org/rss/1.0/> . + +</2005/12/12/blog-item> + dc:date "2005-12-12T00:00:00Z" ; + :description "the rss description" ; + :title "blog item title 2005-12" ; + at:contentType "text/html" ; + a :item ; + atom:content <http://external.example.org/> . + +</2006/01/01/blog-item> + dc:date "2006-01-01T00:00:01Z" ; + :title "blog item title 2006-01" ; + 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 . + +</2006/02/02/blog-item> + dc:date "2006-02-02T00:00:02Z" ; + content:encoded """<div xmlns=\"http://www.w3.org/1999/xhtml\">a content:encoded description with +<b xmlns=\"http://www.w3.org/1999/xhtml\">tags</b> and +newlines</div>""" ; + :title "blog item title 2006-02" ; + a :item . + +</2006/03/03/blog-item> + dc:date "2006-03-03T12:00:005Z" ; + :description "the summary of the item" ; + :title "blog item title 2006-02" ; + a :item ; + atom:content """<div xmlns=\"http://www.w3.org/1999/xhtml\">a literal XML atom:content with +<b>tags</b> and +newlines</div>"""^^rdf:XMLLiteral ; + atom:updated "2006-03-03T23:59:59Z" . + +</whatsnew> + dc:date "2006-03-28T17:05:01-05:00" ; + :items [ + rdf:_1 </2006/03/03/blog-item> ; + rdf:_2 </2006/02/02/blog-item> ; + rdf:_3 </2006/01/01/blog-item> ; + rdf:_4 </2005/12/12/blog-item> ; + a rdf:Seq + ] ; + :title "example feed with 3 items" ; + a :channel ; + atom:author "bob" ; + atom:email "bob@bob.com" ; + atom:updated "2006-03-28T20:57:15Z" ; + atom:uri "http://bob.com/" . + |