1 <?xml version="1.0" encoding="utf-8" ?>
4 <id><% currentSone.id></id>
5 <name><% currentSone.name|html></name>
8 <first-name><% currentSone.profile.firstName|html></first-name>
9 <middle-name><% currentSone.profile.middleName|html></middle-name>
10 <last-name><% currentSone.profile.lastName|html></last-name>
14 <%foreach currentSone.posts post>
17 <time><% post.time></time>
18 <text><% post.text|html></text>
24 <%foreach currentSone.replies reply>
27 <sone-id><% reply.post.sone.requestUri|html></sone-id>
28 <sone-key><% reply.post.sone.requestUri|html></sone-key>
29 <sone-name><% reply.post.sone.niceName|html></sone-name>
30 <post-id><% reply.post.id></post-id>
31 <time><% reply.time></time>
32 <text><% reply.text></text>
38 <%foreach currentSone.friends friend>
40 <sone-id><% friend.id|html></sone-id>
41 <sone-key><% friend.requestUri|html></sone-key>
42 <sone-name><% friend.name|html></sone-name>