blob: ea74c59fe6cebc276c919c493900223e23712666 (
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
|
@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 .
|