Too many changes to list them all.
[Sone.git] / src / main / resources / templates / include / head.html
index 3e16982..5f0d567 100644 (file)
-<div id="sone">
+<div id="sone" class="<%ifnull ! currentSone>online<%else>offline<%/if>">
+
+       <div id="formPassword"><% formPassword|html></div>
 
        <script src="javascript/jquery-1.4.2.js" language="javascript"></script>
        <script src="javascript/sone.js" language="javascript"></script>
 
-       <div id="sidebar">
-               
-               <div id="profile">
-                       <div class="picture"><img src="images/sone.png" width="76" height="53" alt="Sone Logo" /></div>
-                       <div class="nice-name profile-link"><a href="viewSone.html?sone=<% currentSone.id>"><% currentSone.niceName|html></a></div>
-                       <div><a href="editProfile.html"><%= View.Head.ProfileLink.Text|l10n|html></a></div>
-               </div>
-               
-               <div id="links">
-               </div>
-               
-       </div>
-       
+       <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);
+               });
+       </script>
+
+       <script language="javascript">
+               /* these functions are necessary for updating Sone statuses. */
+               $(document).ready(function() {
+                       $("#sone .sone").each(function() {
+                               watchSone($(this).find(".id").text());
+                       });
+               });
+       </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();
+               });
+       </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 + " > .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);
+                                       });
+                               })(postId);
+                       });
+               });
+       </script>
+
+       <script language="javascript">
+               /* convert all “follow”, “unfollow”, “block”, and “unblock” links to something nicer. */
+               $(document).ready(function() {
+                       $("#sone .follow").submit(function() {
+                               var followElement = this;
+                               $.getJSON("ajax/followSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
+                                       $(followElement).addClass("hidden");
+                                       $(followElement).parent().find(".unfollow").removeClass("hidden");
+                               });
+                               return false;
+                       });
+                       $("#sone .unfollow").submit(function() {
+                               var unfollowElement = this;
+                               $.getJSON("ajax/unfollowSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
+                                       $(unfollowElement).addClass("hidden");
+                                       $(unfollowElement).parent().find(".follow").removeClass("hidden");
+                               });
+                               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>
+
+       <script language="javascript">
+               /* convert all “like” buttons to javascript functions. */
+               $(document).ready(function() {
+                       $("#sone .post > .status-line .like").submit(function() {
+                               likePost(getPostId(this));
+                               return false;
+                       });
+                       $("#sone .post > .status-line .unlike").submit(function() {
+                               unlikePost(getPostId(this));
+                               return false;
+                       });
+                       $("#sone .post .reply .status-line .like").submit(function() {
+                               likeReply(getReplyId(this));
+                               return false;
+                       });
+                       $("#sone .post .reply .status-line .unlike").submit(function() {
+                               unlikeReply(getReplyId(this));
+                               return false;
+                       });
+               });
+       </script>
+
        <div id="main">
+
+               <%if !webInterface.core.identityManager.connected>
+                       <div id="plugin-warning">
+                               <%= Warning.PluginNotConnected.Text|l10n|html|replace needle="{link}" replacement="<a href=\"/plugins/\">"|replace needle="{/link}" replacement="</a>">
+                       </div>
+               <%/if>
+
+               <div id="profile" class="<%ifnull currentSone>offline<%else>online<%/if>">
+                       <a class="picture" href="index.html">&nbsp;</a>
+                       <%ifnull ! currentSone>
+                               <div id="home-sone">
+                                       <% currentSone|store key=sone>
+                                       <%include include/viewSone.html>
+                                       <%include include/updateStatus.html>
+                               </div>
+                       <%/if>
+               </div>