Whitespace fixes.
[Sone.git] / src / main / resources / templates / index.html
index 3db413d..3955d3b 100644 (file)
@@ -1,12 +1,34 @@
-<div id="sone">
-
-       <script src="javascript/jquery-1.4.2.js" language="javascript"></script>
-       <script src="javascript/sone.js" language="javascript"></script>
+<%include include/head.html>
 
        <script language="javascript">
                /* register input field/textarea swap. */
                $(document).ready(function() {
                        registerInputTextareaSwap("#sone input.createpost", "What are you doing?");
+                       registerInputTextareaSwap("#sone input.reply-input", "Write a Reply…");
+
+                       /* hide all the “create reply” forms until a link is clicked. */
+                       $("#sone .post").each(function() {
+                               postId = $(this).attr("id");
+                               (function(postId) {
+                                       commentElement = $("<div>Comment</div>").addClass("show-reply-form").click(function() {
+                                               replyElement = $("#sone .post#" + postId + " .create-reply");
+                                               replyElement.removeClass("hidden");
+                                               replyElement.removeClass("light");
+                                               (function(replyElement) {
+                                                       replyElement.find("input.reply-input").blur(function() {
+                                                               if ($(this).hasClass("default")) {
+                                                                       replyElement.addClass("light");
+                                                               }
+                                                       }).focus(function() {
+                                                               replyElement.removeClass("light");
+                                                       });
+                                               })(replyElement);
+                                               replyElement.find("input.reply-input").focus();
+                                       });
+                               })(postId);
+                               $(this).find(".create-reply").addClass("hidden");
+                               $(this).find(".status-line .time").after(commentElement);
+                       });
                });
        </script>
 
@@ -33,9 +55,9 @@
                        <div><%= Page.Index.PostList.Text.NoPostYet|l10n|html></div>
                <%/foreach>
        </div>
-       
+
        <h1><%= Page.Index.AddSone.Title|l10n|html></h1>
-       
+
        <div><%= Page.Index.AddSone.Description|l10n|html></div>
 
        <form action="addSone.html" method="post">
@@ -43,4 +65,5 @@
                <input id="addsone" type="text" name="request-uri" />
                <button type="submit"><%= Page.Index.AddSone.Button.Add|l10n|html></button>
        </form>
-</div>
+
+<%include include/tail.html>