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
|
<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xml:base="http://example.org/" xml:lang="en">
<title type="text/plain" mode="escaped">Sample Feed</title>
<tagline type="text/html" mode="escaped">For documentation <em>only</em></tagline>
<link rel="alternate" type="text/html" href="/"/>
<copyright type="text/html" mode="escaped"><p>Copyright 2004, Mark Pilgrim</p><</copyright>
<generator url="http://example.org/generator/" version="3.0">Sample Toolkit</generator>
<id>tag:feedparser.org,2004-04-20:/docs/examples/atom03.xml</id>
<modified>2004-04-20T11:56:34Z</modified>
<info type="application/xhtml+xml" mode="xml">
<div xmlns="http://www.w3.org/1999/xhtml"><p>This is an Atom syndication feed.</p></div>
</info>
<entry>
<title>First entry title</title>
<link rel="alternate" type="text/html" href="/entry/3"/>
<link rel="service.edit" type="application/atom+xml" title="Atom API entrypoint to edit this entry" href="/api/edit/3"/>
<link rel="service.post" type="application/atom+xml" title="Atom API entrypoint to add comments to this entry" href="/api/comment/3"/>
<id>tag:feedparser.org,2004-04-20:/docs/examples/atom03.xml:3</id>
<created>2004-04-19T07:45:00Z</created> <!-- initial creation date of this entry -->
<issued>2004-04-20T00:23:47Z</issued> <!-- date this entry was first published to the world -->
<modified>2004-04-20T11:56:34Z</modified> <!-- last modification date of this entry -->
<author>
<name>Mark Pilgrim</name>
<url>http://diveintomark.org/</url>
<email>mark@example.org</email>
</author>
<contributor>
<name>Joe</name>
<url>http://example.org/joe/</url>
<email>joe@example.org</email>
</contributor>
<contributor>
<name>Sam</name>
<url>http://example.org/sam/</url>
<email>sam@example.org</email>
</contributor>
<summary type="text/plain" mode="escaped">Watch out for nasty tricks</summary>
<content type="application/xhtml+xml" mode="xml" xml:base="http://example.org/entry/3" xml:lang="en-US">
<div xmlns="http://www.w3.org/1999/xhtml">
Watch out for <span style="background: url(javascript:window.location='http://example.org/')"> nasty tricks</span>
</div>
</content>
</entry>
</feed>
|