aboutsummaryrefslogtreecommitdiffstats
path: root/view/api_timeline_atom.tpl
diff options
context:
space:
mode:
authorfabrixxm <fabrix.xm@gmail.com>2011-04-27 17:46:23 +0200
committerfabrixxm <fabrix.xm@gmail.com>2011-04-27 17:46:23 +0200
commit976d1eaf4312f8c45af0e16205f573afc5be5136 (patch)
tree055bc4cf39d1faa7a5d7afc2ccbf52688c7708e3 /view/api_timeline_atom.tpl
parent41f6ccc039633890b42f3a1a4495dfd8c7262da0 (diff)
downloadvolse-hubzilla-976d1eaf4312f8c45af0e16205f573afc5be5136.tar.gz
volse-hubzilla-976d1eaf4312f8c45af0e16205f573afc5be5136.tar.bz2
volse-hubzilla-976d1eaf4312f8c45af0e16205f573afc5be5136.zip
API work
Diffstat (limited to 'view/api_timeline_atom.tpl')
-rw-r--r--view/api_timeline_atom.tpl58
1 files changed, 38 insertions, 20 deletions
diff --git a/view/api_timeline_atom.tpl b/view/api_timeline_atom.tpl
index 63782ce36..069ff7651 100644
--- a/view/api_timeline_atom.tpl
+++ b/view/api_timeline_atom.tpl
@@ -1,21 +1,39 @@
-<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:georss="http://www.georss.org/georss" xmlns:twitter="http://api.twitter.com">
- <channel>
- <title>Friendika</title>
- <link>$rss.alternate</link>
- <atom:link type="application/rss+xml" rel="self" href="$rss.self"/>
- <description>Friendika timeline</description>
- <language>$rss.language</language>
- <ttl>40</ttl>
+<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:georss="http://www.georss.org/georss" xmlns:activity="http://activitystrea.ms/spec/1.0/" xmlns:media="http://purl.org/syndication/atommedia" xmlns:poco="http://portablecontacts.net/spec/1.0" xmlns:ostatus="http://ostatus.org/schema/1.0" xmlns:statusnet="http://status.net/schema/api/1/">
+ <generator uri="http://status.net" version="0.9.7">StatusNet</generator>
+ <id>tag:friendika:PublicTimeline</id>
+ <title>Network on Friendika</title>
+ <subtitle>Your network updates on Friendika</subtitle>
+ <logo>$rss.logo</logo>
+ <updated>$rss.updated</updated>
+ <link type="text/html" rel="alternate" href="$rss.alternate"/>
+ <link type="application/atom+xml" rel="self" href="$rss.self"/>
+ {{ for $statuses as $status }}
+ <entry>
+ <activity:object-type>$status.objecttype</activity:object-type>
+ <id>$status.id</id>
+ <title>$status.text</title>
+ <content type="html">$status.html</content>
+ <link rel="alternate" type="text/html" href="$status.url"/>
+ <activity:verb>$status.verb</activity:verb>
+ <published>$status.created_at</published>
+ <updated>$status.created_at</updated>
-{{ for $statuses as $status }}
- <item>
- <title>$status.text</title>
- <description>$status.text</description>
- <pubDate>$status.created_at</pubDate>
- <guid>$status.url</guid>
- <link>$status.url</link>
- <twitter:source>$status.source</twitter:source>
- </item>
-{{ endfor }}
- </channel>
-</rss> \ No newline at end of file
+ <link rel="ostatus:conversation" href="$status.url"/>
+ <!--
+ <source>
+ <id>http://identi.ca/api/statuses/user_timeline/397830.atom</id>
+ <title>Sin Mobopolitan</title>
+ <link rel="alternate" type="text/html" href="http://identi.ca/mobopolitan"/>
+ <link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/user_timeline/397830.atom"/>
+ <link rel="license" href="http://creativecommons.org/licenses/by/3.0/"/>
+ <icon>http://avatar.identi.ca/397830-96-20110312195623.jpeg</icon>
+ <updated>2011-04-21T18:39:32+00:00</updated>
+ </source>
+ -->
+ <link rel="self" type="application/atom+xml" href="$status.self"/>
+ <link rel="edit" type="application/atom+xml" href="$status.edit"/>
+ <statusnet:notice_info local_id="$status.id" source="$status.source" favorite="false" repeated="false">
+ </statusnet:notice_info>
+ </entry>
+ {{ endfor }}
+</feed>