diff options
author | Friendika <info@friendika.com> | 2011-05-05 04:29:45 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-05 04:29:45 -0700 |
commit | 26d748f6d8d7616b4a337350df69898716ec043e (patch) | |
tree | 0d09b4644331432b59b5f75c0a0dad121b77c77a /view/api_timeline_rss.tpl | |
parent | b3fa03d3b4175b565ae7ed9106cb83c43801b558 (diff) | |
parent | 976d1eaf4312f8c45af0e16205f573afc5be5136 (diff) | |
download | volse-hubzilla-26d748f6d8d7616b4a337350df69898716ec043e.tar.gz volse-hubzilla-26d748f6d8d7616b4a337350df69898716ec043e.tar.bz2 volse-hubzilla-26d748f6d8d7616b4a337350df69898716ec043e.zip |
Merge pull request #96 from fabrixxm/api
Status.net Api
Diffstat (limited to 'view/api_timeline_rss.tpl')
-rw-r--r-- | view/api_timeline_rss.tpl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/view/api_timeline_rss.tpl b/view/api_timeline_rss.tpl new file mode 100644 index 000000000..fbba93ee9 --- /dev/null +++ b/view/api_timeline_rss.tpl @@ -0,0 +1,21 @@ +<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> + +{{ 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> |