Remove backup and key display.
[Sone.git] / src / main / resources / templates / backup.xml
diff --git a/src/main/resources/templates/backup.xml b/src/main/resources/templates/backup.xml
deleted file mode 100644 (file)
index 5591e7c..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<sone>
-
-       <id><% currentSone.id|xml></id>
-       <time><% currentSone.time|xml></time>
-       <request-uri><% currentSone.requestUri|xml></request-uri>
-       <insert-uri><% currentSone.insertUri|xml></insert-uri>
-
-       <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 currentSone.posts post>
-               <post>
-                       <id><% post.id|xml></id>
-                       <time><% post.time></time>
-                       <text><% post.text|xml></text>
-               </post>
-               <%/foreach>
-       </posts>
-
-       <replies>
-               <%foreach currentSone.replies reply>
-               <reply>
-                       <id><% reply.id></id>
-                       <post-id><% reply.post.id|xml></post-id>
-                       <time><% reply.time></time>
-                       <text><% reply.text|xml></text>
-               </reply>
-               <%/foreach>
-       </replies>
-
-       <post-likes>
-               <%foreach currentSone.likedPostIds postId>
-               <post-like><% postId|xml></post-like>
-               <%/foreach>
-       </post-likes>
-
-       <reply-likes>
-               <%foreach currentSone.likedReplyIds replyId>
-               <reply-like><% replyId|xml></reply-like>
-               <%/foreach>
-       </reply-likes>
-
-       <friends>
-               <%foreach currentSone.friends friend>
-               <friend>
-                       <sone-id><% friend.id|xml></sone-id>
-                       <sone-key><% friend.requestUri|xml></sone-key>
-                       <sone-name><% friend.name|xml></sone-name>
-               </friend>
-               <%/foreach>
-       </friends>
-
-</sone>