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>
22 <%foreach currentSone.posts post>
24 <id><% post.id|xml></id>
25 <recipient><%ifnull !post.recipient><% post.recipient.id|xml><%/if></recipient>
26 <time><% post.time></time>
27 <text><% post.text|xml></text>
33 <%foreach currentSone.replies reply>
36 <post-id><% reply.post.id|xml></post-id>
37 <time><% reply.time></time>
38 <text><% reply.text|xml></text>
44 <%foreach currentSone.likedPostIds postId>
45 <post-like><% postId|xml></post-like>
50 <%foreach currentSone.likedReplyIds replyId>
51 <reply-like><% replyId|xml></reply-like>