blob: 8977a783e6644cde49d78ceb813d3367ed192b62 (
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
58
59
60
61
62
63
64
65
66
67
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rss091: <http://purl.org/rss/1.0/modules/rss091#> .
@prefix rss: <http://purl.org/rss/1.0/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix content: <http://purl.org/rss/1.0/modules/content/> .
@prefix atom: <http://www.w3.org/2005/Atom> .
<2006/04/01/More-Stuff>
dc:date "2006-04-01T08:03:19-05:00" ;
rss:link "http://www.example.org/blog/2006/04/01/More-Stuff" ;
rss:title "More stuff" ;
a rss:item ;
atom:content "<div xmlns=\"http://www.w3.org/1999/xhtml\"><em>More stuff</em></div>" ;
atom:id <tag:example.org,2004:2216> ;
atom:link [
a atom:Link ;
atom:href <2006/04/01/More-Stuff>
] ;
atom:title "More stuff" ;
atom:updated "2006-04-01T08:03:19-05:00" .
<2006/04/02/Blah-Blah>
dc:date "2006-04-02T07:06:12-04:00" ;
rss:description "Blah blah summary." ;
rss:link "http://www.example.org/blog/2006/04/02/Blah-Blah" ;
content:encoded "Blah blah summary." ;
rss:title "Blah Blah" ;
a rss:item ;
atom:content "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Blah blah</p></div>" ;
atom:id <tag:example.org,2004:2217> ;
atom:link [
a atom:Link ;
atom:href <2006/04/02/Blah-Blah>
] ;
atom:summary "Blah blah summary." ;
atom:title "Blah Blah" ;
atom:updated "2006-04-02T07:06:12-04:00" .
<index.atom>
dc:date "2006-04-02T22:15:25-04:00" ;
rss:items [
rdf:_1 <2006/04/02/Blah-Blah> ;
rdf:_2 <2006/04/01/More-Stuff> ;
a rdf:Seq
] ;
rss:link "http://www.example.org/blog/index.atom" ;
rss:title "Kim Doe" ;
a rss:channel ;
atom:author [
a atom:Author ;
atom:email "me@example.org" ;
atom:name "Kim Doe" ;
atom:uri "http://www.example.org/blog/"
] ;
atom:id <index.atom> ;
atom:link [
a atom:Link ;
atom:href <index.atom> ;
atom:rel "self"
], [
a atom:Link ;
atom:href <>
] ;
atom:subtitle "Blog subtitle" ;
atom:title "Kim Doe" ;
atom:updated "2006-04-02T22:15:25-04:00" .
|