]> git.mxchange.org Git - friendica.git/blob - view/templates/api_user_xml.tpl
removed old comment that is no longer true
[friendica.git] / view / templates / api_user_xml.tpl
1
2   <user>
3    <id>{{$user.id}}</id>
4    <name>{{$user.name}}</name>
5    <screen_name>{{$user.screen_name}}</screen_name>
6    <location>{{$user.location}}</location>
7    <description>{{$user.description}}</description>
8    <profile_image_url>{{$user.profile_image_url}}</profile_image_url>
9    <url>{{$user.url}}</url>
10    <protected>{{$user.protected}}</protected>
11    <followers_count>{{$user.followers_count}}</followers_count>
12    <friends_count>{{$user.friends_count}}</friends_count>
13    <created_at>{{$user.created_at}}</created_at>
14    <favourites_count>{{$user.favourites_count}}</favourites_count>
15    <utc_offset>{{$user.utc_offset}}</utc_offset>
16    <time_zone>{{$user.time_zone}}</time_zone>
17    <statuses_count>{{$user.statuses_count}}</statuses_count>
18    <following>{{$user.following}}</following>
19    <profile_background_color>{{$user.profile_background_color}}</profile_background_color>
20    <profile_text_color>{{$user.profile_text_color}}</profile_text_color>
21    <profile_link_color>{{$user.profile_link_color}}</profile_link_color>
22    <profile_sidebar_fill_color>{{$user.profile_sidebar_fill_color}}</profile_sidebar_fill_color>
23    <profile_sidebar_border_color>{{$user.profile_sidebar_border_color}}</profile_sidebar_border_color>
24    <profile_background_image_url>{{$user.profile_background_image_url}}</profile_background_image_url>
25    <profile_background_tile>{{$user.profile_background_tile}}</profile_background_tile>
26    <profile_use_background_image>{{$user.profile_use_background_image}}</profile_use_background_image>
27    <notifications>{{$user.notifications}}</notifications>
28    <geo_enabled>{{$user.geo_enabled}}</geo_enabled>
29    <verified>{{$user.verified}}</verified>
30    <lang>{{$user.lang}}</lang>
31    <contributors_enabled>{{$user.contributors_enabled}}</contributors_enabled>
32    <status>{{if $user.status}}
33     <created_at>{{$user.status.created_at}}</created_at>
34     <id>{{$user.status.id}}</id>
35     <text>{{$user.status.text}}</text>
36     <source>{{$user.status.source}}</source>
37     <truncated>{{$user.status.truncated}}</truncated>
38     <in_reply_to_status_id>{{$user.status.in_reply_to_status_id}}</in_reply_to_status_id>
39     <in_reply_to_user_id>{{$user.status.in_reply_to_user_id}}</in_reply_to_user_id>
40     <favorited>{{$user.status.favorited}}</favorited>
41     <in_reply_to_screen_name>{{$user.status.in_reply_to_screen_name}}</in_reply_to_screen_name>
42     <geo>{{$user.status.geo}}</geo>
43     <coordinates>{{$user.status.coordinates}}</coordinates>
44     <place>{{$user.status.place}}</place>
45     <contributors>{{$user.status.contributors}}</contributors>
46   {{/if}}</status>
47   </user>