1 <?xml version="1.0" encoding="utf-8" ?>
4 <time><% currentSone.time></time>
5 <protocol-version>0</protocol-version>
9 <version><% version|xml></version>
13 <first-name><% currentSone.profile.firstName|xml></first-name>
14 <middle-name><% currentSone.profile.middleName|xml></middle-name>
15 <last-name><% currentSone.profile.lastName|xml></last-name>
16 <birth-day><% currentSone.profile.birthDay|xml></birth-day>
17 <birth-month><% currentSone.profile.birthMonth|xml></birth-month>
18 <birth-year><% currentSone.profile.birthYear|xml></birth-year>
20 <%foreach currentSone.profile.fields field>
22 <field-name><% field.name|xml></field-name>
23 <field-value><% field.value|xml></field-value>
30 <%foreach currentSone.posts post>
32 <id><% post.id|xml></id>
33 <recipient><%ifnull !post.recipient><% post.recipient.id|xml><%/if></recipient>
34 <time><% post.time></time>
35 <text><% post.text|xml></text>
41 <%foreach currentSone.replies reply>
44 <post-id><% reply.post.id|xml></post-id>
45 <time><% reply.time></time>
46 <text><% reply.text|xml></text>
52 <%foreach currentSone.likedPostIds postId>
53 <post-like><% postId|xml></post-like>
58 <%foreach currentSone.likedReplyIds replyId>
59 <reply-like><% replyId|xml></reply-like>