diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-06-21 11:41:16 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-06-21 11:41:16 +0200 |
commit | 296f1b0123edd89b40b48362ffd19134499ef9f3 (patch) | |
tree | be5c5715b6779bd150abde257665d8da85f15763 /view/api_timeline_rss.tpl | |
parent | 5a23440fb4d1798d84b3f419fb2ddded8160a4a2 (diff) | |
download | volse-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.tpl | 9 |
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> |