Load texts for input fields only once.
[Sone.git] / src / main / resources / templates / include / head.html
index 19a5f38..e6038d7 100644 (file)
@@ -8,7 +8,9 @@
        <script language="javascript">
                /* this initializes the status update input field. */
                $(document).ready(function() {
-                       registerInputTextareaSwap("#sone #update-status .status-input", "WebInterface.DefaultText.StatusUpdate", "text", false, false);
+                       getTranslation("WebInterface.DefaultText.StatusUpdate", function(text) {
+                               registerInputTextareaSwap("#sone #update-status .status-input", text, "text", false, false);
+                       })
                });
        </script>
 
        <script language="javascript">
                /* this initializes all reply input fields. */
                $(document).ready(function() {
-                       registerInputTextareaSwap("#sone input.reply-input", "WebInterface.DefaultText.Reply", "text", false, false);
-                       addCommentLinks();
+                       getTranslation("WebInterface.DefaultText.Reply", function(text) {
+                               registerInputTextareaSwap("#sone input.reply-input", text, "text", false, false);
+                               addCommentLinks();
+                       })
                });
        </script>
 
        <script language="javascript">
                /* replace all “delete” buttons with javascript. */
                $(document).ready(function() {
-                       $("#sone .post").each(function() {
-                               postId = $(this).attr("id");
-                               enhanceDeletePostButton("#sone .post#" + postId + " > .inner-part > .status-line .delete button", postId);
-                               (function(postId) {
-                                       $("#sone .post#" + postId + " .reply").each(function() {
-                                               replyId = $(this).attr("id");
-                                               (function(postId, reply, replyId) {
-                                                       reply.find(".delete button").each(function() {
-                                                               enhanceDeleteReplyButton("#sone .post#" + postId + " .reply#" + replyId + " .delete button", replyId);
-                                                       })
-                                               })(postId, $(this), replyId);
+                       getTranslation("WebInterface.Confirmation.DeletePostButton", function(text) {
+                               deletePostText = text;
+                               getTranslation("WebInterface.Confirmation.DeleteReplyButton", function(text) {
+                                       deleteReplyText = text;
+                                       $("#sone .post").each(function() {
+                                               postId = $(this).attr("id");
+                                               enhanceDeletePostButton("#sone .post#" + postId + " > .inner-part > .status-line .delete button", postId, deletePostText);
+                                               (function(postId) {
+                                                       $("#sone .post#" + postId + " .reply").each(function() {
+                                                               replyId = $(this).attr("id");
+                                                               (function(postId, reply, replyId) {
+                                                                       reply.find(".delete button").each(function() {
+                                                                               enhanceDeleteReplyButton("#sone .post#" + postId + " .reply#" + replyId + " .delete button", replyId, deleteReplyText);
+                                                                       })
+                                                               })(postId, $(this), replyId);
+                                                       });
+                                               })(postId);
                                        });
-                               })(postId);
+                               });
+                       });
+               });
+       </script>
+
+       <script language="javascript">
+               /* hides all replies but the latest two. */
+               $(document).ready(function() {
+                       getTranslation("WebInterface.ClickToShow.Replies", function(text) {
+                               $("#sone .post .replies").each(function() {
+                                       allReplies = $(this).find(".reply");
+                                       if (allReplies.length > 2) {
+                                               newHidden = false;
+                                               for (replyIndex = 0; replyIndex < (allReplies.length - 2); ++replyIndex) {
+                                                       $(allReplies[replyIndex]).addClass("hidden");
+                                                       newHidden |= $(allReplies[replyIndex]).hasClass("new");
+                                               }
+                                               clickToShowElement = $("<div></div>").addClass("click-to-show");
+                                               if (newHidden) {
+                                                       clickToShowElement.addClass("new");
+                                               }
+                                               (function(clickToShowElement, allReplies, text) {
+                                                       clickToShowElement.text(text);
+                                                       clickToShowElement.click(function() {
+                                                               allReplies.removeClass("hidden");
+                                                               clickToShowElement.addClass("hidden");
+                                                       });
+                                               })(clickToShowElement, allReplies, text);
+                                               $(allReplies[0]).before(clickToShowElement);
+                                       }
+                               });
                        });
                });
        </script>
                                });
                                return false;
                        });
-                       $("#sone .block").submit(function() {
-                               var blockElement = this;
-                               $.getJSON("ajax/blockSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
-                                       $(blockElement).addClass("hidden");
-                                       $(blockElement).parent().find(".unblock").removeClass("hidden");
-                               });
-                               return false;
-                       });
-                       $("#sone .unblock").submit(function() {
-                               var unblockElement = this;
-                               $.getJSON("ajax/unblockSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
-                                       $(unblockElement).addClass("hidden");
-                                       $(unblockElement).parent().find(".block").removeClass("hidden");
-                               });
-                               return false;
-                       });
-                       $("#sone .blacklist").submit(function() {
-                               var blacklistElement = this;
-                               $.getJSON("ajax/blacklistSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
-                                       $(getSoneElement(blacklistElement)).slideUp();
-                               });
-                               return false;
-                       });
-                       $("#sone .unblacklist").submit(function() {
-                               var unblacklistElement = this;
-                               $.getJSON("ajax/unblacklistSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
-                                       $(getSoneElement(unblacklistElement)).slideUp();
-                               });
-                               return false;
-                       });
                });
        </script>
 
                <%/if>
 
                <div id="profile" class="<%ifnull currentSone>offline<%else>online<%/if>">
-                       <a class="picture" href="index.html">&nbsp;</a>
+                       <a class="picture" href="index.html">
+                               <%ifnull !currentSone>
+                                       <img src="/WoT/GetIdenticon?identity=<% currentSone.id|html>&amp;width=80&amp;height=80" width="80" height="80" alt="Profile Avatar" />
+                               <%else>
+                                       <img src="images/sone.png" width="80" height="80" alt="Sone is offline" />
+                               <%/if>
+                       </a>
                        <%ifnull ! currentSone>
                                <div id="home-sone">
                                        <% currentSone|store key=sone>