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