aboutsummaryrefslogtreecommitdiffstats
path: root/view/api_timeline_rss.tpl
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-06-21 11:41:16 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-06-21 11:41:16 +0200
commit296f1b0123edd89b40b48362ffd19134499ef9f3 (patch)
treebe5c5715b6779bd150abde257665d8da85f15763 /view/api_timeline_rss.tpl
parent5a23440fb4d1798d84b3f419fb2ddded8160a4a2 (diff)
downloadvolse-hubzilla-296f1b0123edd89b40b48362ffd19134499ef9f3.tar.gz
volse-hubzilla-296f1b0123edd89b40b48362ffd19134499ef9f3.tar.bz2
volse-hubzilla-296f1b0123edd89b40b48362ffd19134499ef9f3.zip
add users infos to rss and atom api responses
Diffstat (limited to 'view/api_timeline_rss.tpl')
-rw-r--r--view/api_timeline_rss.tpl9
1 files changed, 7 insertions, 2 deletions
diff --git a/view/api_timeline_rss.tpl b/view/api_timeline_rss.tpl
index fbba93ee9..40239273c 100644
--- a/view/api_timeline_rss.tpl
+++ b/view/api_timeline_rss.tpl
@@ -6,10 +6,15 @@
<description>Friendika timeline</description>
<language>$rss.language</language>
<ttl>40</ttl>
-
+ <image>
+ <link>$user.link</link>
+ <title>$user.name's items</title>
+ <url>$user.profile_image_url</url>
+ </image>
+
{{ for $statuses as $status }}
<item>
- <title>$status.text</title>
+ <title>$status.user.name: $status.text</title>
<description>$status.text</description>
<pubDate>$status.created_at</pubDate>
<guid>$status.url</guid>