blob: 45c04555d9696901fc4e72537c4c2b9219917a4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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/" .
|