diff options
Diffstat (limited to 'tests/feeds/test04.atom')
-rw-r--r-- | tests/feeds/test04.atom | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/feeds/test04.atom b/tests/feeds/test04.atom new file mode 100644 index 0000000..ac547c4 --- /dev/null +++ b/tests/feeds/test04.atom @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<feed + xmlns:at="http://purl.org/syndication/atomtriples/1" + xmlns:atom="http://www.w3.org/2005/Atom" + xmlns:content="http://purl.org/rss/1.0/modules/content/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:enc="http://purl.oclc.org/net/rss_2.0/enc#" + xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:rss091="http://purl.org/rss/1.0/modules/rss091#" + xmlns:rss="http://purl.org/rss/1.0/" + xmlns="http://www.w3.org/2005/Atom"> + + <link rel="self" href="http://www.example.org/blog/index.atom"/> + <id>http://www.example.org/blog/index.atom</id> + + <title>Kim Doe</title> + <subtitle>Blog subtitle</subtitle> + <author> + <name>Kim Doe</name> + <email>me@example.org</email> + <uri>http://www.example.org/blog/</uri> + </author> + <updated>2006-04-02T22:15:25-04:00</updated> + <link href="http://www.example.org/blog/"/> + + <entry> + <id>tag:example.org,2004:2217</id> + <link href="http://www.example.org/blog/2006/04/02/Blah-Blah"/> + <title>Blah Blah</title> + <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Blah blah</p></div></content> + <summary>Blah blah summary.</summary> + <updated>2006-04-02T07:06:12-04:00</updated> + </entry> + + <entry> + <id>tag:example.org,2004:2216</id> + <link href="http://www.example.org/blog/2006/04/01/More-Stuff"/> + <title>More stuff</title> + <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><em>More stuff</em></div></content> + <updated>2006-04-01T08:03:19-05:00</updated> + </entry> + +</feed> |