Store the client name and version in the inserted Sone.
[Sone.git] / src / main / resources / templates / insert / sone.xml
index 66032d5..d6dd643 100644 (file)
@@ -1,14 +1,20 @@
 <?xml version="1.0" encoding="utf-8" ?>
 <sone>
 
-       <id><% currentSone.id></id>
-       <name><% currentSone.name|xml></name>
        <time><% currentSone.time></time>
 
+       <client>
+               <name>Sone</name>
+               <version><% version|xml></version>
+       </client>
+
        <profile>
                <first-name><% currentSone.profile.firstName|xml></first-name>
                <middle-name><% currentSone.profile.middleName|xml></middle-name>
                <last-name><% currentSone.profile.lastName|xml></last-name>
+               <birth-day><% currentSone.profile.birthDay|xml></birth-day>
+               <birth-month><% currentSone.profile.birthMonth|xml></birth-month>
+               <birth-year><% currentSone.profile.birthYear|xml></birth-year>
        </profile>
 
        <posts>
                <%/foreach>
        </post-likes>
 
-       <known-sones>
-               <%foreach knownSones sone>
-               <known-sone>
-                       <sone-id><% sone.id|xml></sone-id>
-                       <sone-key><% sone.requestUri|xml></sone-key>
-                       <sone-name><% sone.name|xml></sone-name>
-               </known-sone>
+       <reply-likes>
+               <%foreach currentSone.likedReplyIds replyId>
+               <reply-like><% replyId|xml></reply-like>
                <%/foreach>
-       </known-sones>
+       </reply-likes>
 
 </sone>