blob: ed1399e53ef33be0297565436ec62158a85297f3 (
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
|
@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/" .
|