Show and manage linked elements in web interface
[Sone.git] / src / main / resources / static / javascript / sone.js
1 /* Sone JavaScript functions. */
2
3 function ajaxGet(url, data, successCallback, errorCallback) {
4         (function(url, data, successCallback, errorCallback) {
5                 $.ajax({"cache": false, "type": "GET", "url": url, "data": data, "dataType": "json", "success": function(data, textStatus, xmlHttpRequest) {
6                         ajaxSuccess();
7                         if (typeof successCallback != "undefined") {
8                                 successCallback(data, textStatus);
9                         }
10                 }, "error": function(xmlHttpRequest, textStatus, errorThrown) {
11                         if (xmlHttpRequest.status == 403) {
12                                 notLoggedIn = true;
13                         }
14                         if (typeof errorCallback != "undefined") {
15                                 errorCallback();
16                         } else {
17                                 ajaxError();
18                         }
19                 }});
20         })(url, data, successCallback, errorCallback);
21 }
22
23 function registerInputTextareaSwap(inputElement, defaultText, inputFieldName, optional, dontUseTextarea) {
24         $(inputElement).each(function() {
25                 var textarea = $(dontUseTextarea ? "<input type=\"text\" name=\"" + inputFieldName + "\">" : "<textarea name=\"" + inputFieldName + "\"></textarea>").blur(function() {
26                         if ($(this).val() == "") {
27                                 $(this).hide();
28                                 var inputField = $(this).data("inputField");
29                                 inputField.show().removeAttr("disabled").addClass("default");
30                                 inputField.val(defaultText);
31                         }
32                 }).hide().data("inputField", $(this)).val($(this).val());
33                 $(this).data("textarea", textarea).after(textarea);
34                 (function(inputField, textarea) {
35                         inputField.focus(function() {
36                                 $(this).hide().attr("disabled", "disabled");
37                                 /* no, show(), “display: block” is not what I need. */
38                                 textarea.attr("style", "display: inline").focus();
39                         });
40                         if (inputField.val() == "") {
41                                 inputField.addClass("default");
42                                 inputField.val(defaultText);
43                         } else {
44                                 inputField.hide().attr("disabled", "disabled");
45                                 textarea.show();
46                         }
47                         $(inputField.get(0).form).submit(function() {
48                                 inputField.attr("disabled", "disabled");
49                                 if (!optional && (textarea.val() == "")) {
50                                         inputField.removeAttr("disabled").focus();
51                                         return false;
52                                 }
53                         });
54                 })($(this), textarea);
55         });
56 }
57
58 /**
59  * Adds a “comment” link to all status lines contained in the given element.
60  *
61  * @param postId
62  *            The ID of the post
63  * @param element
64  *            The element to add a “comment” link to
65  */
66 function addCommentLink(postId, author, element, insertAfterThisElement) {
67         if (($(element).find(".show-reply-form").length > 0) || (getPostElement(element).find(".create-reply").length == 0)) {
68                 return;
69         }
70         (function(postId, author, insertAfterThisElement) {
71                 var separator = $("<span> · </span>").addClass("separator");
72                 getTranslation("WebInterface.Button.Comment", function(text) {
73                         var commentElement = $("<div><span>" + text + "</span></div>").addClass("show-reply-form").click(function() {
74                                 var replyElement = sone.find(".post#post-" + postId + " .create-reply");
75                                 replyElement.removeClass("hidden");
76                                 replyElement.removeClass("light");
77                                 (function(replyElement) {
78                                         replyElement.find(":input.reply-input").blur(function() {
79                                                 if ($(this).hasClass("default")) {
80                                                         replyElement.addClass("light");
81                                                 }
82                                         }).focus(function() {
83                                                 replyElement.removeClass("light");
84                                         });
85                                 })(replyElement);
86                                 var textArea = replyElement.find(":input.reply-input").focus().data("textarea");
87                                 if (author != getCurrentSoneId()) {
88                                         textArea.val(textArea.val() + "@sone://" + author + " ");
89                                 }
90                         });
91                         $(insertAfterThisElement).after(commentElement.clone(true));
92                         $(insertAfterThisElement).after(separator);
93                 });
94         })(postId, author, insertAfterThisElement);
95 }
96
97 var translations = {};
98
99 /**
100  * Retrieves the translation for the given key and calls the callback function.
101  * The callback function takes a single parameter, the translated string.
102  *
103  * @param key
104  *            The key of the translation string
105  * @param callback
106  *            The callback function
107  */
108 function getTranslation(key, callback) {
109         if (key in translations) {
110                 callback(translations[key]);
111                 return;
112         }
113         ajaxGet("getTranslation.ajax", {"key": key}, function(data, textStatus) {
114                 if ((data != null) && data.success) {
115                         translations[key] = data.value;
116                         callback(data.value);
117                 }
118         });
119 }
120
121 /**
122  * Filters the given Sone ID, replacing all “~” characters by an underscore.
123  *
124  * @param soneId
125  *            The Sone ID to filter
126  * @returns The filtered Sone ID
127  */
128 function filterSoneId(soneId) {
129         return soneId.replace(/[^a-zA-Z0-9-]/g, "_");
130 }
131
132 /**
133  * Updates the status of the given Sone.
134  *
135  * @param soneId
136  *            The ID of the Sone to update
137  * @param status
138  *            The status of the Sone (“idle”, “unknown”, “inserting”,
139  *            “downloading”)
140  * @param modified
141  *            Whether the Sone is modified
142  * @param locked
143  *            Whether the Sone is locked
144  * @param lastUpdated
145  *            The date and time of the last update (formatted for display)
146  */
147 function updateSoneStatus(soneId, name, status, modified, locked, lastUpdated, lastUpdatedText) {
148     var updateSone = sone.find(".sone." + filterSoneId(soneId));
149         updateSone.toggleClass("unknown", status == "unknown").
150                 toggleClass("idle", status == "idle").
151                 toggleClass("inserting", status == "inserting").
152                 toggleClass("downloading", status == "downloading").
153                 toggleClass("modified", modified);
154         updateSone.find(".lock").toggleClass("hidden", locked);
155         updateSone.find(".unlock").toggleClass("hidden", !locked);
156         if (lastUpdated != null) {
157                 updateSone.find(".last-update span.time").attr("title", lastUpdated).text(lastUpdatedText);
158         } else {
159                 getTranslation("View.Sone.Text.UnknownDate", function(unknown) {
160                         updateSone.find(".last-update span.time").text(unknown);
161                 });
162         }
163         updateSone.find(".profile-link a").text(name);
164 }
165
166 /**
167  * Enhances a “delete” button so that the confirmation is done on the same page.
168  *
169  * @param button
170  *            The button element
171  * @param text
172  *            The text to show on the button
173  * @param deleteCallback
174  *            The callback that actually deletes something
175  */
176 function enhanceDeleteButton(button, text, deleteCallback) {
177         (function(button) {
178                 var newButton = $("<button></button>").addClass("confirm").hide().text(text).click(function() {
179                         $(this).fadeOut("slow");
180                         deleteCallback();
181                         return false;
182                 }).insertAfter(button);
183                 (function(button, newButton) {
184                         button.click(function() {
185                                 button.fadeOut("slow", function() {
186                                         newButton.fadeIn("slow");
187                                         $(document).one("click", function() {
188                                                 if (this != newButton.get(0)) {
189                                                         newButton.fadeOut(function() {
190                                                                 button.fadeIn();
191                                                         });
192                                                 }
193                                         });
194                                 });
195                                 return false;
196                         });
197                 })(button, newButton);
198         })($(button));
199 }
200
201 /**
202  * Enhances a post’s “delete” button.
203  *
204  * @param button
205  *            The button element
206  * @param postId
207  *            The ID of the post to delete
208  * @param text
209  *            The text to replace the button with
210  */
211 function enhanceDeletePostButton(button, postId, text) {
212         enhanceDeleteButton(button, text, function() {
213                 ajaxGet("deletePost.ajax", { "post": postId, "formPassword": getFormPassword() }, function(data, textStatus) {
214                         if (data == null) {
215                                 return;
216                         }
217                         if (data.success) {
218                                 sone.find(".post#post-" + postId).slideUp();
219                         } else if (data.error == "invalid-post-id") {
220                                 /* pretend the post is already gone. */
221                                 getPost(postId).slideUp();
222                         } else if (data.error == "auth-required") {
223                                 alert("You need to be logged in.");
224                         } else if (data.error == "not-authorized") {
225                                 alert("You are not allowed to delete this post.");
226                         }
227                 }, function(xmlHttpRequest, textStatus, error) {
228                         /* ignore error. */
229                 });
230         });
231 }
232
233 /**
234  * Enhances a reply’s “delete” button.
235  *
236  * @param button
237  *            The button element
238  * @param replyId
239  *            The ID of the reply to delete
240  * @param text
241  *            The text to replace the button with
242  */
243 function enhanceDeleteReplyButton(button, replyId, text) {
244         enhanceDeleteButton(button, text, function() {
245                 ajaxGet("deleteReply.ajax", { "reply": replyId, "formPassword": sone.find("#formPassword").text() }, function(data, textStatus) {
246                         if (data == null) {
247                                 return;
248                         }
249                         if (data.success) {
250                                 sone.find(".reply#reply-" + replyId).slideUp();
251                         } else if (data.error == "invalid-reply-id") {
252                                 /* pretend the reply is already gone. */
253                                 getReply(replyId).slideUp();
254                         } else if (data.error == "auth-required") {
255                                 alert("You need to be logged in.");
256                         } else if (data.error == "not-authorized") {
257                                 alert("You are not allowed to delete this reply.");
258                         }
259                 }, function(xmlHttpRequest, textStatus, error) {
260                         /* ignore error. */
261                 });
262         });
263 }
264
265 function getFormPassword() {
266         return sone.find("#formPassword").text();
267 }
268
269 /**
270  * Returns the element of the Sone with the given ID.
271  *
272  * @param soneId
273  *            The ID of the Sone
274  * @returns All Sone elements with the given ID
275  */
276 function getSone(soneId) {
277         return sone.find(".sone").filter(function(index) {
278                 return $(".id", this).text() == soneId;
279         });
280 }
281
282 function getSoneElement(element) {
283         return $(element).closest(".sone");
284 }
285
286 /**
287  * Returns the ID of the sone of the context menu that contains the given
288  * element.
289  *
290  * @param element
291  *            The element within a context menu to get the Sone ID for
292  * @return The Sone ID
293  */
294 function getMenuSone(element) {
295         return $(element).closest(".sone-menu").find(".sone-menu-id").text();
296 }
297
298 /**
299  * Generates a list of Sones by concatening the names of the given sones with a
300  * new line character (“\n”).
301  *
302  * @param sones
303  *            The sones to format
304  * @returns {String} The created string
305  */
306 function generateSoneList(sones) {
307         var soneList = "";
308         $.each(sones, function() {
309                 if (soneList != "") {
310                         soneList += ", ";
311                 }
312                 soneList += this.name;
313         });
314         return soneList;
315 }
316
317 /**
318  * Returns the ID of the Sone that this element belongs to.
319  *
320  * @param element
321  *            The element to locate the matching Sone ID for
322  * @returns The ID of the Sone, or undefined
323  */
324 function getSoneId(element) {
325         return getSoneElement(element).find(".id").text();
326 }
327
328 /**
329  * Returns the element of the post with the given ID.
330  *
331  * @param postId
332  *            The ID of the post
333  * @returns The element of the post
334  */
335 function getPost(postId) {
336         return sone.find(".post#post-" + postId);
337 }
338
339 function getPostElement(element) {
340         return $(element).closest(".post");
341 }
342
343 function getPostId(element) {
344         return getPostElement(element).attr("id").substr(5);
345 }
346
347 function getPostTime(element) {
348         return getPostElement(element).find(".post-time").text();
349 }
350
351 /**
352  * Returns the author of the post the given element belongs to.
353  *
354  * @param element
355  *            The element whose post to get the author for
356  * @returns The ID of the authoring Sone
357  */
358 function getPostAuthor(element) {
359         return getPostElement(element).find(".post-author").text();
360 }
361
362 /**
363  * Returns the element of the reply with the given ID.
364  *
365  * @param replyId
366  *            The ID of the reply
367  * @returns The element of the reply
368  */
369 function getReply(replyId) {
370         return sone.find(".reply#reply-" + replyId);
371 }
372
373 function getReplyElement(element) {
374         return $(element).closest(".reply");
375 }
376
377 function getReplyId(element) {
378         return getReplyElement(element).attr("id").substr(6);
379 }
380
381 function getReplyTime(element) {
382         return getReplyElement(element).find(".reply-time").text();
383 }
384
385 /**
386  * Returns the author of the reply the given element belongs to.
387  *
388  * @param element
389  *            The element whose reply to get the author for
390  * @returns The ID of the authoring Sone
391  */
392 function getReplyAuthor(element) {
393         return getReplyElement(element).find(".reply-author").text();
394 }
395
396 /**
397  * Returns the notification with the given ID.
398  *
399  * @param notificationId
400  *            The ID of the notification
401  * @returns The notification element
402  */
403 function getNotification(notificationId) {
404         return sone.find("#notification-area .notification#" + notificationId);
405 }
406
407 /**
408  * Returns the notification element closest to the given element.
409  *
410  * @param element
411  *            The element to get the closest notification of
412  * @return The closest notification element
413  */
414 function getNotificationElement(element) {
415         return $(element).closest(".notification");
416 }
417
418 /**
419  * Returns the ID of the notification element.
420  *
421  * @param notificationElement
422  *            The notification element
423  * @returns The ID of the notification
424  */
425 function getNotificationId(notificationElement) {
426         return $(notificationElement).attr("id");
427 }
428
429 /**
430  * Returns the time the notification was last updated.
431  *
432  * @param notificationElement
433  *            The notification element
434  * @returns The last update time of the notification
435  */
436 function getNotificationLastUpdatedTime(notificationElement) {
437         return $(notificationElement).attr("lastUpdatedTime");
438 }
439
440 function likePost(postId) {
441         ajaxGet("like.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data, textStatus) {
442                 if ((data == null) || !data.success) {
443                         return;
444                 }
445                 sone.find(".post#post-" + postId + " > .inner-part > .status-line .like").addClass("hidden");
446                 sone.find(".post#post-" + postId + " > .inner-part > .status-line .unlike").removeClass("hidden");
447                 updatePostLikes(postId);
448         }, function(xmlHttpRequest, textStatus, error) {
449                 /* ignore error. */
450         });
451 }
452
453 function unlikePost(postId) {
454         ajaxGet("unlike.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data, textStatus) {
455                 if ((data == null) || !data.success) {
456                         return;
457                 }
458                 sone.find(".post#post-" + postId + " > .inner-part > .status-line .unlike").addClass("hidden");
459                 sone.find(".post#post-" + postId + " > .inner-part > .status-line .like").removeClass("hidden");
460                 updatePostLikes(postId);
461         }, function(xmlHttpRequest, textStatus, error) {
462                 /* ignore error. */
463         });
464 }
465
466 function updatePostLikes(postId) {
467         ajaxGet("getLikes.ajax", { "type": "post", "post": postId }, function(data, textStatus) {
468                 if ((data != null) && data.success) {
469                         sone.find(".post#post-" + postId + " > .inner-part > .status-line .likes").toggleClass("hidden", data.likes == 0);
470                         sone.find(".post#post-" + postId + " > .inner-part > .status-line .likes span.like-count").text(data.likes);
471                         sone.find(".post#post-" + postId + " > .inner-part > .status-line .likes > span").attr("title", generateSoneList(data.sones));
472                 }
473         }, function(xmlHttpRequest, textStatus, error) {
474                 /* ignore error. */
475         });
476 }
477
478 function likeReply(replyId) {
479         ajaxGet("like.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data, textStatus) {
480                 if ((data == null) || !data.success) {
481                         return;
482                 }
483                 sone.find(".reply#reply-" + replyId + " .status-line .like").addClass("hidden");
484                 sone.find(".reply#reply-" + replyId + " .status-line .unlike").removeClass("hidden");
485                 updateReplyLikes(replyId);
486         }, function(xmlHttpRequest, textStatus, error) {
487                 /* ignore error. */
488         });
489 }
490
491 function unlikeReply(replyId) {
492         ajaxGet("unlike.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data, textStatus) {
493                 if ((data == null) || !data.success) {
494                         return;
495                 }
496                 sone.find(".reply#reply-" + replyId + " .status-line .unlike").addClass("hidden");
497                 sone.find(".reply#reply-" + replyId + " .status-line .like").removeClass("hidden");
498                 updateReplyLikes(replyId);
499         }, function(xmlHttpRequest, textStatus, error) {
500                 /* ignore error. */
501         });
502 }
503
504 /**
505  * Trusts the Sone with the given ID.
506  *
507  * @param soneId
508  *            The ID of the Sone to trust
509  */
510 function trustSone(soneId) {
511         ajaxGet("trustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data, textStatus) {
512                 if ((data != null) && data.success) {
513                         updateTrustControls(soneId, data.trustValue);
514                 }
515         });
516 }
517
518 /**
519  * Distrusts the Sone with the given ID, i.e. assigns a negative trust value.
520  *
521  * @param soneId
522  *            The ID of the Sone to distrust
523  */
524 function distrustSone(soneId) {
525         ajaxGet("distrustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data, textStatus) {
526                 if ((data != null) && data.success) {
527                         updateTrustControls(soneId, data.trustValue);
528                 }
529         });
530 }
531
532 /**
533  * Untrusts the Sone with the given ID, i.e. removes any trust assignment.
534  *
535  * @param soneId
536  *            The ID of the Sone to untrust
537  */
538 function untrustSone(soneId) {
539         ajaxGet("untrustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data, textStatus) {
540                 if ((data != null) && data.success) {
541                         updateTrustControls(soneId, data.trustValue);
542                 }
543         });
544 }
545
546 /**
547  * Updates the trust controls for all posts and replies of the given Sone,
548  * according to the given trust value.
549  *
550  * @param soneId
551  *            The ID of the Sone to update all trust controls for
552  * @param trustValue
553  *            The trust value for the Sone
554  */
555 function updateTrustControls(soneId, trustValue) {
556         sone.find(".post").each(function() {
557                 if (getPostAuthor(this) == soneId) {
558                         getPostElement(this).find(".post-trust").toggleClass("hidden", trustValue != null);
559                         getPostElement(this).find(".post-distrust").toggleClass("hidden", trustValue != null);
560                         getPostElement(this).find(".post-untrust").toggleClass("hidden", trustValue == null);
561                 }
562         });
563         sone.find(".reply").each(function() {
564                 if (getReplyAuthor(this) == soneId) {
565                         getReplyElement(this).find(".reply-trust").toggleClass("hidden", trustValue != null);
566                         getReplyElement(this).find(".reply-distrust").toggleClass("hidden", trustValue != null);
567                         getReplyElement(this).find(".reply-untrust").toggleClass("hidden", trustValue == null);
568                 }
569         });
570 }
571
572 /**
573  * Bookmarks the post with the given ID.
574  *
575  * @param postId
576  *            The ID of the post to bookmark
577  */
578 function bookmarkPost(postId) {
579         (function(postId) {
580                 ajaxGet("bookmark.ajax", {"formPassword": getFormPassword(), "type": "post", "post": postId}, function(data, textStatus) {
581                         if ((data != null) && data.success) {
582                                 getPost(postId).find(".bookmark").toggleClass("hidden", true);
583                                 getPost(postId).find(".unbookmark").toggleClass("hidden", false);
584                         }
585                 });
586         })(postId);
587 }
588
589 /**
590  * Unbookmarks the post with the given ID.
591  *
592  * @param postId
593  *            The ID of the post to unbookmark
594  */
595 function unbookmarkPost(postId) {
596         ajaxGet("unbookmark.ajax", {"formPassword": getFormPassword(), "type": "post", "post": postId}, function(data, textStatus) {
597                 if ((data != null) && data.success) {
598                         getPost(postId).find(".bookmark").toggleClass("hidden", false);
599                         getPost(postId).find(".unbookmark").toggleClass("hidden", true);
600                 }
601         });
602 }
603
604 function updateReplyLikes(replyId) {
605         ajaxGet("getLikes.ajax", { "type": "reply", "reply": replyId }, function(data, textStatus) {
606                 if ((data != null) && data.success) {
607                         sone.find(".reply#reply-" + replyId + " .status-line .likes").toggleClass("hidden", data.likes == 0);
608                         sone.find(".reply#reply-" + replyId + " .status-line .likes span.like-count").text(data.likes);
609                         sone.find(".reply#reply-" + replyId + " .status-line .likes > span").attr("title", generateSoneList(data.sones));
610                 }
611         }, function(xmlHttpRequest, textStatus, error) {
612                 /* ignore error. */
613         });
614 }
615
616 /**
617  * Posts a reply and calls the given callback when the request finishes.
618  *
619  * @param sender
620  *            The ID of the sender
621  * @param postId
622  *            The ID of the post the reply refers to
623  * @param text
624  *            The text to post
625  * @param callbackFunction
626  *            The callback function to call when the request finishes (takes 3
627  *            parameters: success, error, replyId)
628  */
629 function postReply(sender, postId, text, callbackFunction) {
630         ajaxGet("createReply.ajax", { "formPassword" : getFormPassword(), "sender": sender, "post" : postId, "text": text }, function(data, textStatus) {
631                 if (data == null) {
632                         /* TODO - show error */
633                         return;
634                 }
635                 if (data.success) {
636                         callbackFunction(true, null, data.reply, data.sone);
637                 } else {
638                         callbackFunction(false, data.error);
639                 }
640         }, function(xmlHttpRequest, textStatus, error) {
641                 /* ignore error. */
642         });
643 }
644
645 /**
646  * Ajaxifies the given Sone by enhancing all eligible elements with AJAX.
647  *
648  * @param soneElement
649  *            The Sone to ajaxify
650  */
651 function ajaxifySone(soneElement) {
652         /*
653          * convert all “follow”, “unfollow”, “lock”, and “unlock” links to something
654          * nicer.
655          */
656         $(".follow", soneElement).submit(function() {
657                 var followElement = this;
658                 ajaxGet("followSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
659                         $(followElement).addClass("hidden");
660                         $(followElement).parent().find(".unfollow").removeClass("hidden");
661                 });
662                 return false;
663         });
664         $(".unfollow", soneElement).submit(function() {
665                 var unfollowElement = this;
666                 ajaxGet("unfollowSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
667                         $(unfollowElement).addClass("hidden");
668                         $(unfollowElement).parent().find(".follow").removeClass("hidden");
669                 });
670                 return false;
671         });
672         $(".lock", soneElement).submit(function() {
673                 var lockElement = this;
674                 ajaxGet("lockSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
675                         $(lockElement).addClass("hidden");
676                         $(lockElement).parent().find(".unlock").removeClass("hidden");
677                 });
678                 return false;
679         });
680         $(".unlock", soneElement).submit(function() {
681                 var unlockElement = this;
682                 ajaxGet("unlockSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
683                         $(unlockElement).addClass("hidden");
684                         $(unlockElement).parent().find(".lock").removeClass("hidden");
685                 });
686                 return false;
687         });
688
689         /* mark Sone as known when clicking it. */
690         $(soneElement).click(function() {
691                 markSoneAsKnown(this);
692         });
693 }
694
695 /**
696  * Ajaxifies the given post by enhancing all eligible elements with AJAX.
697  *
698  * @param postElement
699  *            The post element to ajaxify
700  */
701 function ajaxifyPost(postElement) {
702         $(postElement).find("form").submit(function() {
703                 return false;
704         });
705         $(postElement).find(".create-reply button:submit").click(function() {
706                 var button = $(this);
707                 button.attr("disabled", "disabled");
708                 var sender = $(this.form).find(":input[name=sender]").val();
709                 var inputField = $(this.form).find(":input[name=text]:enabled").get(0);
710                 var postId = getPostId(this);
711                 var text = $(inputField).val();
712                 (function(sender, postId, text, inputField) {
713                         postReply(sender, postId, text, function(success, error, replyId, soneId) {
714                                 if (success) {
715                                         $(inputField).val("");
716                                         loadNewReply(replyId, soneId, postId);
717                                         sone.find(".post#post-" + postId + " .create-reply").addClass("hidden");
718                                         sone.find(".post#post-" + postId + " .create-reply .sender").hide();
719                                         sone.find(".post#post-" + postId + " .create-reply .select-sender").show();
720                                         sone.find(".post#post-" + postId + " .create-reply :input[name=sender]").val(getCurrentSoneId());
721                                         updateReplyTimes(replyId);
722                                 } else {
723                                         alert(error);
724                                 }
725                                 button.removeAttr("disabled");
726                         });
727                 })(sender, postId, text, inputField);
728                 return false;
729         });
730
731         /* replace all “delete” buttons with javascript. */
732         (function(postElement) {
733                 getTranslation("WebInterface.Confirmation.DeletePostButton", function(deletePostText) {
734                         var postId = getPostId(postElement);
735                         enhanceDeletePostButton($(postElement).find(".delete-post button"), postId, deletePostText);
736                 });
737         })(postElement);
738
739         /* convert all “like” buttons to javascript functions. */
740         $(postElement).find(".like-post").submit(function() {
741                 likePost(getPostId(this));
742                 return false;
743         });
744         $(postElement).find(".unlike-post").submit(function() {
745                 unlikePost(getPostId(this));
746                 return false;
747         });
748
749         /* convert trust control buttons to javascript functions. */
750         $(postElement).find(".post-trust").submit(function() {
751                 trustSone(getPostAuthor(this));
752                 return false;
753         });
754         $(postElement).find(".post-distrust").submit(function() {
755                 distrustSone(getPostAuthor(this));
756                 return false;
757         });
758         $(postElement).find(".post-untrust").submit(function() {
759                 untrustSone(getPostAuthor(this));
760                 return false;
761         });
762
763         /* convert bookmark/unbookmark buttons to javascript functions. */
764         $(postElement).find(".bookmark").submit(function() {
765                 bookmarkPost(getPostId(this));
766                 return false;
767         });
768         $(postElement).find(".unbookmark").submit(function() {
769                 unbookmarkPost(getPostId(this));
770                 return false;
771         });
772
773         /* convert “show source” link into javascript function. */
774         $(postElement).find(".show-source").each(function() {
775                 $("a", this).click(function() {
776                         var post = getPostElement(this);
777                         var rawPostText = $(".post-text.raw-text", post);
778                         rawPostText.toggleClass("hidden");
779                         if (rawPostText.hasClass("hidden")) {
780                                 $(".post-text.short-text", post).removeClass("hidden");
781                                 $(".post-text.text", post).addClass("hidden");
782                                 $(".expand-post-text", post).removeClass("hidden");
783                                 $(".shrink-post-text", post).addClass("hidden");
784                         } else {
785                                 $(".post-text.short-text", post).addClass("hidden");
786                                 $(".post-text.text", post).addClass("hidden");
787                                 $(".expand-post-text", post).addClass("hidden");
788                                 $(".shrink-post-text", post).addClass("hidden");
789                         }
790                         return false;
791                 });
792         });
793
794         /* convert “show more” link into javascript function. */
795         $(postElement).find(".expand-post-text").each(function() {
796                 $(this).click(function() {
797                         $(".post-text.text", getPostElement(this)).toggleClass("hidden");
798                         $(".post-text.short-text", getPostElement(this)).toggleClass("hidden");
799                         $(".expand-post-text", getPostElement(this)).toggleClass("hidden");
800                         $(".shrink-post-text", getPostElement(this)).toggleClass("hidden");
801                         return false;
802                 });
803         });
804         $(postElement).find(".shrink-post-text").each(function() {
805                 $(this).click(function() {
806                         $(".post-text.text", getPostElement(this)).toggleClass("hidden");
807                         $(".post-text.short-text", getPostElement(this)).toggleClass("hidden");
808                         $(".expand-post-text", getPostElement(this)).toggleClass("hidden");
809                         $(".shrink-post-text", getPostElement(this)).toggleClass("hidden");
810                         return false;
811                 });
812         });
813
814         /* ajaxify author/post links */
815         $(".post-status-line .permalink a", postElement).click(function() {
816                 if (!$(".create-reply", postElement).hasClass("hidden")) {
817                         var textArea = $(":input.reply-input", postElement).focus().data("textarea");
818                         $(textArea).replaceSelection($(this).attr("href"));
819                 }
820                 return false;
821         });
822
823         /* add “comment” link. */
824         addCommentLink(getPostId(postElement), getPostAuthor(postElement), postElement, $(postElement).find(".post-status-line .permalink-author"));
825
826         /* process all replies. */
827         var replyIds = [];
828         $(postElement).find(".reply").each(function() {
829                 replyIds.push(getReplyId(this));
830                 ajaxifyReply(this);
831         });
832         updateReplyTimes(replyIds.join(","));
833
834         /* process reply input fields. */
835         getTranslation("WebInterface.DefaultText.Reply", function(text) {
836                 $(postElement).find(":input.reply-input").each(function() {
837                         registerInputTextareaSwap(this, text, "text", false, false);
838                 });
839         });
840
841         /* process sender selection. */
842         $(".select-sender", postElement).css("display", "inline");
843         $(".sender", postElement).hide();
844         $(".select-sender button", postElement).click(function() {
845                 $(".sender", postElement).show();
846                 $(".select-sender", postElement).hide();
847                 return false;
848         });
849
850         /* mark everything as known on click. */
851         (function(postElement) {
852                 $(postElement).click(function(event) {
853                         if ($(event.target).hasClass("click-to-show")) {
854                                 return false;
855                         }
856                         markPostAsKnown(postElement, false);
857                 });
858         })(postElement);
859
860         /* hide reply input field. */
861         $(postElement).find(".create-reply").addClass("hidden");
862
863         /* show Sone menu when hovering over the avatar. */
864         $(postElement).find(".post-avatar").mouseover(function() {
865                 if (typeof currentSoneMenuTimeoutHandler != undefined) {
866                         clearTimeout(currentSoneMenuTimeoutHandler);
867                 }
868                 currentSoneMenuId = getPostId(this);
869                 currentSoneMenuTimeoutHandler = setTimeout(function() {
870                         $(".sone-menu:visible").fadeOut();
871                         $(".sone-post-menu", postElement).mouseleave(function() {
872                                 $(this).fadeOut();
873                         }).fadeIn();
874                 }, 1000);
875         }).mouseleave(function() {
876                 if (currentSoneMenuId == getPostId(this)) {
877                         clearTimeout(currentSoneMenuTimeoutHandler);
878                 }
879         });
880         (function(postElement) {
881                 var soneId = $(".sone-menu-id:first", postElement).text();
882                 $(".sone-post-menu .follow", postElement).click(function() {
883                         var followElement = this;
884                         ajaxGet("followSone.ajax", { "sone": soneId, "formPassword": getFormPassword() }, function() {
885                                 $(followElement).addClass("hidden");
886                                 $(followElement).parent().find(".unfollow").removeClass("hidden");
887                                 sone.find(".sone-menu").each(function() {
888                                         if (getMenuSone(this) == soneId) {
889                                                 $(".follow", this).toggleClass("hidden", true);
890                                                 $(".unfollow", this).toggleClass("hidden", false);
891                                         }
892                                 });
893                         });
894                         return false;
895                 });
896                 $(".sone-post-menu .unfollow", postElement).click(function() {
897                         var unfollowElement = this;
898                         ajaxGet("unfollowSone.ajax", { "sone": soneId, "formPassword": getFormPassword() }, function() {
899                                 $(unfollowElement).addClass("hidden");
900                                 $(unfollowElement).parent().find(".follow").removeClass("hidden");
901                                 sone.find(".sone-menu").each(function() {
902                                         if (getMenuSone(this) == soneId) {
903                                                 $(".follow", this).toggleClass("hidden", false);
904                                                 $(".unfollow", this).toggleClass("hidden", true);
905                                         }
906                                 });
907                         });
908                         return false;
909                 });
910         })(postElement);
911 }
912
913 /**
914  * Ajaxifies the given reply element.
915  *
916  * @param replyElement
917  *            The reply element to ajaxify
918  */
919 function ajaxifyReply(replyElement) {
920         $(replyElement).find(".like-reply").submit(function() {
921                 likeReply(getReplyId(this));
922                 return false;
923         });
924         $(replyElement).find(".unlike-reply").submit(function() {
925                 unlikeReply(getReplyId(this));
926                 return false;
927         });
928         (function(replyElement) {
929                 getTranslation("WebInterface.Confirmation.DeleteReplyButton", function(deleteReplyText) {
930                         $(replyElement).find(".delete-reply button").each(function() {
931                                 enhanceDeleteReplyButton(this, getReplyId(replyElement), deleteReplyText);
932                         });
933                 });
934         })(replyElement);
935
936         /* ajaxify author links */
937         $(".reply-status-line .permalink a", replyElement).click(function() {
938                 if (!$(".create-reply", getPostElement(replyElement)).hasClass("hidden")) {
939                         var textArea = $(":input.reply-input", getPostElement(replyElement)).focus().data("textarea");
940                         $(textArea).replaceSelection($(this).attr("href"));
941                 }
942                 return false;
943         });
944
945         addCommentLink(getPostId(replyElement), getReplyAuthor(replyElement), replyElement, $(replyElement).find(".reply-status-line .permalink-author"));
946
947         /* convert “show source” link into javascript function. */
948         $(replyElement).find(".show-reply-source").each(function() {
949                 $("a", this).click(function() {
950                         var reply = getReplyElement(this);
951                         var rawReplyText = $(".reply-text.raw-text", reply);
952                         rawReplyText.toggleClass("hidden");
953                         if (rawReplyText.hasClass("hidden")) {
954                                 $(".reply-text.short-text", reply).removeClass("hidden");
955                                 $(".reply-text.text", reply).addClass("hidden");
956                                 $(".expand-reply-text", reply).removeClass("hidden");
957                                 $(".shrink-reply-text", reply).addClass("hidden");
958                         } else {
959                                 $(".reply-text.short-text", reply).addClass("hidden");
960                                 $(".reply-text.text", reply).addClass("hidden");
961                                 $(".expand-reply-text", reply).addClass("hidden");
962                                 $(".shrink-reply-text", reply).addClass("hidden");
963                         }
964                         return false;
965                 });
966         });
967
968         /* convert “show more” link into javascript function. */
969         $(replyElement).find(".expand-reply-text").each(function() {
970                 $(this).click(function() {
971                         $(".reply-text.text", getReplyElement(this)).toggleClass("hidden");
972                         $(".reply-text.short-text", getReplyElement(this)).toggleClass("hidden");
973                         $(".expand-reply-text", getReplyElement(this)).toggleClass("hidden");
974                         $(".shrink-reply-text", getReplyElement(this)).toggleClass("hidden");
975                         return false;
976                 });
977         });
978         $(replyElement).find(".shrink-reply-text").each(function() {
979                 $(this).click(function() {
980                         $(".reply-text.text", getReplyElement(this)).toggleClass("hidden");
981                         $(".reply-text.short-text", getReplyElement(this)).toggleClass("hidden");
982                         $(".expand-reply-text", getReplyElement(this)).toggleClass("hidden");
983                         $(".shrink-reply-text", getReplyElement(this)).toggleClass("hidden");
984                         return false;
985                 });
986         });
987
988         /* convert trust control buttons to javascript functions. */
989         $(replyElement).find(".reply-trust").submit(function() {
990                 trustSone(getReplyAuthor(this));
991                 return false;
992         });
993         $(replyElement).find(".reply-distrust").submit(function() {
994                 distrustSone(getReplyAuthor(this));
995                 return false;
996         });
997         $(replyElement).find(".reply-untrust").submit(function() {
998                 untrustSone(getReplyAuthor(this));
999                 return false;
1000         });
1001
1002         /* show Sone menu when hovering over the avatar. */
1003         $(replyElement).find(".reply-avatar").mouseover(function() {
1004                 if (typeof currentSoneMenuTimeoutHandler != undefined) {
1005                         clearTimeout(currentSoneMenuTimeoutHandler);
1006                 }
1007                 currentSoneMenuId = getPostId(this) + "-" + getReplyId(this);
1008                 currentSoneMenuTimeoutHandler = setTimeout(function() {
1009                         $(".sone-menu:visible").fadeOut();
1010                         $(".sone-reply-menu", replyElement).mouseleave(function() {
1011                                 $(this).fadeOut();
1012                         }).fadeIn();
1013                 }, 1000);
1014         }).mouseleave(function() {
1015                 if (currentSoneMenuId == getPostId(this) + "-" + getReplyId(this)) {
1016                         clearTimeout(currentSoneMenuTimeoutHandler);
1017                 }
1018         });
1019         (function(replyElement) {
1020                 var soneId = $(".sone-menu-id", replyElement).text();
1021                 $(".sone-menu .follow", replyElement).click(function() {
1022                         var followElement = this;
1023                         ajaxGet("followSone.ajax", { "sone": soneId, "formPassword": getFormPassword() }, function() {
1024                                 $(followElement).addClass("hidden");
1025                                 $(followElement).parent().find(".unfollow").removeClass("hidden");
1026                                 sone.find(".sone-menu").each(function() {
1027                                         if (getMenuSone(this) == soneId) {
1028                                                 $(".follow", this).toggleClass("hidden", true);
1029                                                 $(".unfollow", this).toggleClass("hidden", false);
1030                                         }
1031                                 });
1032                         });
1033                         return false;
1034                 });
1035                 $(".sone-menu .unfollow", replyElement).click(function() {
1036                         var unfollowElement = this;
1037                         ajaxGet("unfollowSone.ajax", { "sone": soneId, "formPassword": getFormPassword() }, function() {
1038                                 $(unfollowElement).addClass("hidden");
1039                                 $(unfollowElement).parent().find(".follow").removeClass("hidden");
1040                                 sone.find(".sone-menu").each(function() {
1041                                         if (getMenuSone(this) == soneId) {
1042                                                 $(".follow", this).toggleClass("hidden", false);
1043                                                 $(".unfollow", this).toggleClass("hidden", true);
1044                                         }
1045                                 });
1046                         });
1047                         return false;
1048                 });
1049         })(replyElement);
1050 }
1051
1052 /**
1053  * Ajaxifies the given notification by replacing the form with AJAX.
1054  *
1055  * @param notification
1056  *            jQuery object representing the notification.
1057  */
1058 function ajaxifyNotification(notification) {
1059         notification.find("form").submit(function() {
1060                 return false;
1061         });
1062         notification.find("input[name=returnPage]").val($.url.attr("relative"));
1063         if (notification.find(".short-text").length > 0) {
1064                 notification.find(".short-text").removeClass("hidden");
1065                 notification.find(".text").addClass("hidden");
1066         }
1067         notification.find("form.mark-as-read button").click(function() {
1068                 var allIds = $(":input[name=id]", this.form).val().split(" ");
1069                 for (var index = 0; index < allIds.length; index += 16) {
1070                         var ids = allIds.slice(index, index + 16).join(" ");
1071                         ajaxGet("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": $(":input[name=type]", this.form).val(), "id": ids});
1072                 }
1073         });
1074         notification.find("a[class^='link-']").each(function() {
1075                 var linkElement = $(this);
1076                 if (linkElement.is("[href^='viewPost']")) {
1077                         var id = linkElement.attr("class").substr(5);
1078                         if (hasPost(id)) {
1079                                 linkElement.attr("href", "#post-" + id).addClass("in-page-link");
1080                         }
1081                 }
1082         });
1083         notification.find("form.dismiss button").click(function() {
1084                 ajaxGet("dismissNotification.ajax", { "formPassword" : getFormPassword(), "notification" : notification.attr("id") }, function(data, textStatus) {
1085                         /* dismiss in case of error, too. */
1086                         notification.slideUp();
1087                 }, function(xmlHttpRequest, textStatus, error) {
1088                         /* ignore error. */
1089                 });
1090         });
1091         return notification;
1092 }
1093
1094 /**
1095  * Returns the notification hash. This hash is used in {@link #getStatus()} to
1096  * determine whether the notifications changed and need to be reloaded.
1097  */
1098 function getNotificationHash() {
1099         return sone.find("#notification-area #notification-hash").text();
1100 }
1101
1102 /**
1103  * Sets the notification hash.
1104  *
1105  * @param notificationHash
1106  *            The new notification hash
1107  */
1108 function setNotificationHash(notificationHash) {
1109         sone.find("#notification-area #notification-hash").text(notificationHash);
1110 }
1111
1112 /**
1113  * Retrieves element IDs from notification elements.
1114  *
1115  * @param notification
1116  *            The notification element
1117  * @param selector
1118  *            The selector of the element containing the ID as text
1119  * @returns All extracted IDs
1120  */
1121 function getElementIds(notification, selector) {
1122         var elementIds = [];
1123         $(selector, notification).each(function() {
1124                 elementIds.push($(this).text());
1125         });
1126         return elementIds;
1127 }
1128
1129 /**
1130  * Compares the given notification elements and calls {@link #markSoneAsKnown()}
1131  * for every ID that is contained in the old notification but not in the new.
1132  *
1133  * @param oldNotification
1134  *            The old notification element
1135  * @param newNotification
1136  *            The new notification element
1137  */
1138 function checkForRemovedSones(oldNotification, newNotification) {
1139         if (getNotificationId(oldNotification) != "new-sone-notification") {
1140                 return;
1141         }
1142         var oldIds = getElementIds(oldNotification, ".new-sone-id");
1143         var newIds = getElementIds(newNotification, ".new-sone-id");
1144         $.each(oldIds, function(index, value) {
1145                 if ($.inArray(value, newIds) == -1) {
1146                         markSoneAsKnown(getSone(value), true);
1147                 }
1148         });
1149 }
1150
1151 /**
1152  * Compares the given notification elements and calls {@link #markPostAsKnown()}
1153  * for every ID that is contained in the old notification but not in the new.
1154  *
1155  * @param oldNotification
1156  *            The old notification element
1157  * @param newNotification
1158  *            The new notification element
1159  */
1160 function checkForRemovedPosts(oldNotification, newNotification) {
1161         if (getNotificationId(oldNotification) != "new-post-notification") {
1162                 return;
1163         }
1164         var oldIds = getElementIds(oldNotification, ".post-id");
1165         var newIds = getElementIds(newNotification, ".post-id");
1166         $.each(oldIds, function(index, value) {
1167                 if ($.inArray(value, newIds) == -1) {
1168                         markPostAsKnown(getPost(value), true);
1169                 }
1170         });
1171 }
1172
1173 /**
1174  * Compares the given notification elements and calls
1175  * {@link #markReplyAsKnown()} for every ID that is contained in the old
1176  * notification but not in the new.
1177  *
1178  * @param oldNotification
1179  *            The old notification element
1180  * @param newNotification
1181  *            The new notification element
1182  */
1183 function checkForRemovedReplies(oldNotification, newNotification) {
1184         if (getNotificationId(oldNotification) != "new-reply-notification") {
1185                 return;
1186         }
1187         var oldIds = getElementIds(oldNotification, ".reply-id");
1188         var newIds = getElementIds(newNotification, ".reply-id");
1189         $.each(oldIds, function(index, value) {
1190                 if ($.inArray(value, newIds) == -1) {
1191                         markReplyAsKnown(getReply(value), true);
1192                 }
1193         });
1194 }
1195
1196 function getStatus() {
1197         var parameters = isViewSonePage() ? {"soneIds": getShownSoneId() } : isKnownSonesPage() ? {"soneIds": getShownSoneIds() } : {};
1198         $.extend(parameters, {
1199                 "elements": JSON.stringify($(".linked-element.not-loaded").map(function () {
1200                         return $(this).attr("title");
1201                 }).toArray())
1202         });
1203         ajaxGet("getStatus.ajax", parameters, function(data, textStatus) {
1204                 if ((data != null) && data.success) {
1205                         /* process Sone information. */
1206                         $.each(data.sones, function(index, value) {
1207                                 updateSoneStatus(value.id, value.name, value.status, value.modified, value.locked, value.lastUpdatedUnknown ? null : value.lastUpdated, value.lastUpdatedText);
1208                         });
1209                         notLoggedIn = !data.loggedIn;
1210                         if (!notLoggedIn) {
1211                                 showOfflineMarker(!online);
1212                         }
1213                         if (data.notificationHash != getNotificationHash()) {
1214                                 console.log("Old hash: ", getNotificationHash(), ", new hash: ", data.notificationHash);
1215                                 requestNotifications();
1216                                 /* process new posts. */
1217                                 $.each(data.newPosts, function(index, value) {
1218                                         loadNewPost(value.id, value.sone, value.recipient, value.time);
1219                                 });
1220                                 /* process new replies. */
1221                                 $.each(data.newReplies, function(index, value) {
1222                                         loadNewReply(value.id, value.sone, value.post, value.postSone);
1223                                 });
1224                         }
1225                         if (data.linkedElements) {
1226                                 loadLinkedElements(data.linkedElements)
1227                         }
1228                         /* do it again in 5 seconds. */
1229                         setTimeout(getStatus, 5000);
1230                 } else {
1231                         /* data.success was false, wait 30 seconds. */
1232                         setTimeout(getStatus, 30000);
1233                 }
1234         }, function() {
1235                 statusRequestQueued = false;
1236                 ajaxError();
1237         });
1238 }
1239
1240 function requestNotifications() {
1241         ajaxGet("getNotifications.ajax", {}, function(data, textStatus) {
1242                 if (data && data.success) {
1243                         /* search for removed notifications. */
1244                         sone.find("#notification-area .notification").each(function() {
1245                                 var notificationId = $(this).attr("id");
1246                                 var foundNotification = false;
1247                                 $.each(data.notifications, function(index, value) {
1248                                         if (value.id == notificationId) {
1249                                                 foundNotification = true;
1250                                                 return false;
1251                                         }
1252                                 });
1253                                 if (!foundNotification) {
1254                                         if (notificationId == "new-sone-notification" && (data.options["ShowNotification/NewSones"] == true)) {
1255                                                 $(".new-sone-id", this).each(function(index, element) {
1256                                                         var soneId = $(this).text();
1257                                                         markSoneAsKnown(getSone(soneId), true);
1258                                                 });
1259                                         } else if (notificationId == "new-post-notification" && (data.options["ShowNotification/NewPosts"] == true)) {
1260                                                 $(".post-id", this).each(function(index, element) {
1261                                                         var postId = $(this).text();
1262                                                         markPostAsKnown(getPost(postId), true);
1263                                                 });
1264                                         } else if (notificationId == "new-reply-notification" && (data.options["ShowNotification/NewReplies"] == true)) {
1265                                                 $(".reply-id", this).each(function(index, element) {
1266                                                         var replyId = $(this).text();
1267                                                         markReplyAsKnown(getReply(replyId), true);
1268                                                 });
1269                                         }
1270                                         $(this).slideUp("normal", function() {
1271                                                 $(this).remove();
1272                                                 /* remove activity when no notifications are visible. */
1273                                                 if (sone.find("#notification-area .notification").length == 0) {
1274                                                         resetActivity();
1275                                                 }
1276                                         });
1277                                 }
1278                         });
1279                         /* process notifications. */
1280                         $.each(data.notifications, function(index, value) {
1281                                 var oldNotification = getNotification(value.id);
1282                                 var notification = ajaxifyNotification(createNotification(value.id, value.lastUpdatedTime, value.text, value.dismissable)).hide();
1283                                 if (oldNotification.length != 0) {
1284                                         if ((oldNotification.find(".short-text").length > 0) && (notification.find(".short-text").length > 0)) {
1285                                                 var opened = oldNotification.is(":visible") && oldNotification.find(".short-text").hasClass("hidden");
1286                                                 notification.find(".short-text").toggleClass("hidden", opened);
1287                                                 notification.find(".text").toggleClass("hidden", !opened);
1288                                         }
1289                                         checkForRemovedSones(oldNotification, notification);
1290                                         checkForRemovedPosts(oldNotification, notification);
1291                                         checkForRemovedReplies(oldNotification, notification);
1292                                         oldNotification.replaceWith(notification.show());
1293                                 } else {
1294                                         sone.find("#notification-area").append(notification);
1295                                         if (value.id.substring(0, 5) != "local") {
1296                                                 notification.slideDown();
1297                                                 setActivity();
1298                                         }
1299                                 }
1300                         });
1301                         setNotificationHash(data.notificationHash);
1302                 }
1303         });
1304 }
1305
1306 /**
1307  * Returns the ID of the currently logged in Sone.
1308  *
1309  * @return The ID of the current Sone, or an empty string if no Sone is logged
1310  *         in
1311  */
1312 function getCurrentSoneId() {
1313         return $("#currentSoneId").text();
1314 }
1315
1316 /**
1317  * Returns the content of the page-id attribute.
1318  *
1319  * @returns The page ID
1320  */
1321 function getPageId() {
1322         return sone.find(".page-id").text();
1323 }
1324
1325 /**
1326  * Returns whether the current page is the index page.
1327  *
1328  * @returns {Boolean} <code>true</code> if the current page is the index page,
1329  *          <code>false</code> otherwise
1330  */
1331 function isIndexPage() {
1332         return getPageId() == "index";
1333 }
1334
1335 /**
1336  * Returns the current page of the selected pagination. If no pagination can be
1337  * found with the given selector, {@code 1} is returned.
1338  *
1339  * @param paginationSelector
1340  *            The pagination selector
1341  * @returns The current page of the pagination
1342  */
1343 function getPage(paginationSelector) {
1344         var pagination = $(paginationSelector);
1345         if (pagination.length > 0) {
1346                 return $(".current-page", paginationSelector).text();
1347         }
1348         return 1;
1349 }
1350
1351 /**
1352  * Returns whether the current page is a “view Sone” page.
1353  *
1354  * @returns {Boolean} <code>true</code> if the current page is a “view Sone”
1355  *          page, <code>false</code> otherwise
1356  */
1357 function isViewSonePage() {
1358         return getPageId() == "view-sone";
1359 }
1360
1361 /**
1362  * Returns the ID of the currently shown Sone. This will only return a sensible
1363  * value if isViewSonePage() returns <code>true</code>.
1364  *
1365  * @returns The ID of the currently shown Sone
1366  */
1367 function getShownSoneId() {
1368         return sone.find(".sone-id").first().text();
1369 }
1370
1371 /**
1372  * Returns the ID of all currently visible Sones. This is mainly used on the
1373  * “Known Sones” page.
1374  *
1375  * @returns The ID of the currently shown Sones
1376  */
1377 function getShownSoneIds() {
1378         var soneIds = [];
1379         sone.find("#known-sones .sone .id").each(function() {
1380                 soneIds.push($(this).text());
1381         });
1382         return soneIds.join(",");
1383 }
1384
1385 /**
1386  * Returns whether the current page is a “view post” page.
1387  *
1388  * @returns {Boolean} <code>true</code> if the current page is a “view post”
1389  *          page, <code>false</code> otherwise
1390  */
1391 function isViewPostPage() {
1392         return getPageId() == "view-post";
1393 }
1394
1395 /**
1396  * Returns the ID of the currently shown post. This will only return a sensible
1397  * value if isViewPostPage() returns <code>true</code>.
1398  *
1399  * @returns The ID of the currently shown post
1400  */
1401 function getShownPostId() {
1402         return sone.find(".post-id").text();
1403 }
1404
1405 /**
1406  * Returns whether the current page is the “known Sones” page.
1407  *
1408  * @returns {Boolean} <code>true</code> if the current page is the “known
1409  *          Sones” page, <code>false</code> otherwise
1410  */
1411 function isKnownSonesPage() {
1412         return getPageId() == "known-sones";
1413 }
1414
1415 /**
1416  * Returns whether a post with the given ID exists on the current page.
1417  *
1418  * @param postId
1419  *            The post ID to check for
1420  * @returns {Boolean} <code>true</code> if a post with the given ID already
1421  *          exists on the page, <code>false</code> otherwise
1422  */
1423 function hasPost(postId) {
1424         return $(".post#post-" + postId).length > 0;
1425 }
1426
1427 /**
1428  * Returns whether a reply with the given ID exists on the current page.
1429  *
1430  * @param replyId
1431  *            The reply ID to check for
1432  * @returns {Boolean} <code>true</code> if a reply with the given ID already
1433  *          exists on the page, <code>false</code> otherwise
1434  */
1435 function hasReply(replyId) {
1436         return sone.find(".reply#reply-" + replyId).length > 0;
1437 }
1438
1439 function loadNewPost(postId, soneId, recipientId, time) {
1440         if (hasPost(postId)) {
1441                 return;
1442         }
1443         if (!isIndexPage() || (getPage(".pagination-index") > 1)) {
1444                 if (!isViewPostPage() || (getShownPostId() != postId)) {
1445                         if (!isViewSonePage() || ((getShownSoneId() != soneId) && (getShownSoneId() != recipientId)) || (getPage(".post-navigation") > 1)) {
1446                                 return;
1447                         }
1448                 }
1449         }
1450         if (getPostTime(sone.find(".post").last()) > time) {
1451                 return;
1452         }
1453         ajaxGet("getPost.ajax", { "post" : postId }, function(data, textStatus) {
1454                 if ((data != null) && data.success) {
1455                         if (hasPost(data.post.id)) {
1456                                 return;
1457                         }
1458                         if ((!isIndexPage() || (getPage(".pagination-index") > 1)) && !(isViewSonePage() && ((getShownSoneId() == data.post.sone) || (getShownSoneId() == data.post.recipient) || (getPage(".post-navigation") > 1)))) {
1459                                 return;
1460                         }
1461                         var firstOlderPost = null;
1462                         sone.find(".post").each(function() {
1463                                 if (getPostTime(this) < data.post.time) {
1464                                         firstOlderPost = $(this);
1465                                         return false;
1466                                 }
1467                         });
1468                         var newPost = $(data.post.html).addClass("hidden");
1469                         if ($(".post-author-local", newPost).text() == "true") {
1470                                 newPost.removeClass("new");
1471                         }
1472                         if (firstOlderPost != null) {
1473                                 newPost.insertBefore(firstOlderPost);
1474                         }
1475                         ajaxifyPost(newPost);
1476                         updatePostTimes(data.post.id);
1477                         newPost.slideDown();
1478                         setActivity();
1479                 }
1480         });
1481 }
1482
1483 function loadNewReply(replyId, soneId, postId, postSoneId) {
1484         if (hasReply(replyId)) {
1485                 return;
1486         }
1487         if (!hasPost(postId)) {
1488                 return;
1489         }
1490         ajaxGet("getReply.ajax", { "reply": replyId }, function(data, textStatus) {
1491                 /* find post. */
1492                 if ((data != null) && data.success) {
1493                         if (hasReply(data.reply.id)) {
1494                                 return;
1495                         }
1496                         sone.find(".post#post-" + data.reply.postId).each(function() {
1497                                 var firstNewerReply = null;
1498                                 $(this).find(".replies .reply").each(function() {
1499                                         if (getReplyTime(this) > data.reply.time) {
1500                                                 firstNewerReply = $(this);
1501                                                 return false;
1502                                         }
1503                                 });
1504                                 var newReply = $(data.reply.html).addClass("hidden");
1505                                 if ($(".reply-author-local", newReply).text() == "true") {
1506                                         newReply.removeClass("new");
1507                                         (function(newReply) {
1508                                                 setTimeout(function() {
1509                                                         markReplyAsKnown(newReply, false);
1510                                                 }, 5000);
1511                                         })(newReply);
1512                                 }
1513                                 if (firstNewerReply != null) {
1514                                         newReply.insertBefore(firstNewerReply);
1515                                 } else {
1516                                         if ($(this).find(".replies .create-reply")) {
1517                                                 $(this).find(".replies .create-reply").before(newReply);
1518                                         } else {
1519                                                 $(this).find(".replies").append(newReply);
1520                                         }
1521                                 }
1522                                 ajaxifyReply(newReply);
1523                                 updateReplyTimes(data.reply.id);
1524                                 newReply.slideDown();
1525                                 setActivity();
1526                                 return false;
1527                         });
1528                 }
1529         });
1530 }
1531
1532 function loadLinkedElements(links) {
1533         var failedElements = links.filter(function(element) {
1534                 return element.failed;
1535         });
1536         if (failedElements.length > 0) {
1537                 failedElements.forEach(function(element) {
1538                         $(getLinkedElement(element.link)).remove()
1539                 });
1540         }
1541         var loadedElements = links.filter(function(element) {
1542                 return !element.loading && !element.failed;
1543         });
1544         if (loadedElements.length > 0) {
1545                 ajaxGet("getLinkedElement.ajax", {
1546                         "elements": JSON.stringify(loadedElements.map(function(element) {
1547                                 return element.link;
1548                         }))
1549                 }, function (data, textStatus) {
1550                         if ((data != null) && (data.success)) {
1551                                 data.linkedElements.forEach(function (linkedElement) {
1552                                         $(getLinkedElement(linkedElement.link)).replaceWith(linkedElement.html);
1553                                 });
1554                         }
1555                 });
1556         }
1557 }
1558
1559 function getLinkedElement(link) {
1560         return $(".linked-element[title='" + link + "']")[0]
1561 }
1562
1563 /**
1564  * Marks the given Sone as known if it is still new.
1565  *
1566  * @param soneElement
1567  *            The Sone to mark as known
1568  * @param skipRequest
1569  *            true to skip the JSON request, false or omit to perform the JSON
1570  *            request
1571  */
1572 function markSoneAsKnown(soneElement, skipRequest) {
1573         if ($(soneElement).hasClass("new")) {
1574                 $(soneElement).removeClass("new");
1575                 if ((typeof skipRequest == "undefined") || !skipRequest) {
1576                         ajaxGet("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": "sone", "id": getSoneId(soneElement)});
1577                         requestNotifications();
1578                 }
1579         }
1580 }
1581
1582 function markPostAsKnown(postElements, skipRequest) {
1583         $(postElements).each(function() {
1584                 var postElement = this;
1585                 if ($(postElement).hasClass("new") || ((typeof skipRequest != "undefined"))) {
1586                         (function(postElement) {
1587                                 $(postElement).removeClass("new");
1588                                 if ((typeof skipRequest == "undefined") || !skipRequest) {
1589                                         ajaxGet("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": "post", "id": getPostId(postElement)});
1590                                         requestNotifications();
1591                                 }
1592                         })(postElement);
1593                 }
1594                 $(".click-to-show", postElement).removeClass("new");
1595         });
1596         markReplyAsKnown($(postElements).find(".reply"), true);
1597 }
1598
1599 function markReplyAsKnown(replyElements, skipRequest) {
1600         $(replyElements).each(function() {
1601                 var replyElement = this;
1602                 if ($(replyElement).hasClass("new") || ((typeof skipRequest != "undefined"))) {
1603                         (function(replyElement) {
1604                                 $(replyElement).removeClass("new");
1605                                 if ((typeof skipRequest == "undefined") || !skipRequest) {
1606                                         ajaxGet("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": "reply", "id": getReplyId(replyElement)});
1607                                         requestNotifications();
1608                                 }
1609                         })(replyElement);
1610                 }
1611         });
1612 }
1613
1614 /**
1615  * Updates the time of the post with the given ID.
1616  *
1617  * @param postId
1618  *            The ID of the post to update
1619  * @param timeText
1620  *            The text of the time to show
1621  * @param refreshTime
1622  *            The refresh time after which to request a new time (in seconds)
1623  * @param tooltip
1624  *            The tooltip to show
1625  */
1626 function updatePostTime(postId, timeText, refreshTime, tooltip) {
1627         if (!getPost(postId).is(":visible")) {
1628                 return;
1629         }
1630         getPost(postId).find(".post-status-line > .time a").html(timeText).attr("title", tooltip);
1631         (function(postId, refreshTime) {
1632                 setTimeout(function() {
1633                         updatePostTimes(postId);
1634                 }, refreshTime * 1000);
1635         })(postId, refreshTime);
1636 }
1637
1638 /**
1639  * Requests new rendered times for the posts with the given IDs.
1640  *
1641  * @param postIds
1642  *            Comma-separated post IDs
1643  */
1644 function updatePostTimes(postIds) {
1645         ajaxGet("getTimes.ajax", { "posts" : postIds }, function(data, textStatus) {
1646                 if ((data != null) && data.success) {
1647                         $.each(data.postTimes, function(index, value) {
1648                                 updatePostTime(index, value.timeText, value.refreshTime, value.tooltip);
1649                         });
1650                 }
1651         });
1652 }
1653
1654 /**
1655  * Updates the time of the reply with the given ID.
1656  *
1657  * @param postId
1658  *            The ID of the reply to update
1659  * @param timeText
1660  *            The text of the time to show
1661  * @param refreshTime
1662  *            The refresh time after which to request a new time (in seconds)
1663  * @param tooltip
1664  *            The tooltip to show
1665  */
1666 function updateReplyTime(replyId, timeText, refreshTime, tooltip) {
1667         getReply(replyId).find(".reply-status-line > .time").html(timeText).attr("title", tooltip);
1668         (function(replyId, refreshTime) {
1669                 setTimeout(function() {
1670                         updateReplyTimes(replyId);
1671                 }, refreshTime * 1000);
1672         })(replyId, refreshTime);
1673 }
1674
1675 /**
1676  * Requests new rendered times for the posts with the given IDs.
1677  *
1678  * @param postIds
1679  *            Comma-separated post IDs
1680  */
1681 function updateReplyTimes(replyIds) {
1682         ajaxGet("getTimes.ajax", { "replies" : replyIds }, function(data, textStatus) {
1683                 if ((data != null) && data.success) {
1684                         $.each(data.replyTimes, function(index, value) {
1685                                 updateReplyTime(index, value.timeText, value.refreshTime, value.tooltip);
1686                         });
1687                 }
1688         });
1689 }
1690
1691 function resetActivity() {
1692         var title = document.title;
1693         if (title.indexOf('(') == 0) {
1694                 setTitle(title.substr(title.indexOf(' ') + 1));
1695         }
1696         iconBlinking = false;
1697 }
1698
1699 function setActivity() {
1700         if (!focus) {
1701                 var title = document.title;
1702                 if (title.indexOf('(') != 0) {
1703                         setTitle("(!) " + title);
1704                 }
1705                 if (!iconBlinking) {
1706                         setTimeout(toggleIcon, 1500);
1707                         iconBlinking = true;
1708                 }
1709         }
1710 }
1711
1712 /**
1713  * Sets the window title after a small delay to prevent race-condition issues.
1714  *
1715  * @param title
1716  *            The title to set
1717  */
1718 function setTitle(title) {
1719         setTimeout(function() {
1720                 document.title = title;
1721         }, 50);
1722 }
1723
1724 /** Whether the icon is currently showing activity. */
1725 var iconActive = false;
1726
1727 /** Whether the icon is currently supposed to blink. */
1728 var iconBlinking = false;
1729
1730 /**
1731  * Toggles the icon. If the window has gained focus and the icon is still
1732  * showing the activity state, it is returned to normal.
1733  */
1734 function toggleIcon() {
1735         if (focus || !iconBlinking) {
1736                 if (iconActive) {
1737                         changeIcon("images/icon.png");
1738                         iconActive = false;
1739                 }
1740                 iconBlinking = false;
1741         } else {
1742                 iconActive = !iconActive;
1743                 changeIcon(iconActive ? "images/icon-activity.png" : "images/icon.png");
1744                 setTimeout(toggleIcon, 1500);
1745         }
1746 }
1747
1748 /**
1749  * Changes the icon of the page.
1750  *
1751  * @param iconUrl
1752  *            The new URL of the icon
1753  */
1754 function changeIcon(iconUrl) {
1755         $("link[rel=icon]").remove();
1756         $("head").append($("<link>").attr("rel", "icon").attr("type", "image/png").attr("href", iconUrl));
1757         $("iframe[id=icon-update]")[0].src += "";
1758 }
1759
1760 /**
1761  * Creates a new notification.
1762  *
1763  * @param id
1764  *            The ID of the notificaiton
1765  * @param text
1766  *            The text of the notification
1767  * @param dismissable
1768  *            <code>true</code> if the notification can be dismissed by the
1769  *            user
1770  */
1771 function createNotification(id, lastUpdatedTime, text, dismissable) {
1772         var notification = $("<div></div>").addClass("notification").attr("id", id).attr("lastUpdatedTime", lastUpdatedTime);
1773         if (dismissable) {
1774                 var dismissForm = sone.find("#notification-area #notification-dismiss-template").clone().removeClass("hidden").removeAttr("id");
1775                 dismissForm.find("input[name=notification]").val(id);
1776                 notification.append(dismissForm);
1777         }
1778         notification.append(text);
1779         return notification;
1780 }
1781
1782 /**
1783  * Shows the details of the notification with the given ID.
1784  *
1785  * @param notificationId
1786  *            The ID of the notification
1787  */
1788 function showNotificationDetails(notificationId) {
1789         sone.find(".notification#" + notificationId + " .text").removeClass("hidden");
1790         sone.find(".notification#" + notificationId + " .short-text").addClass("hidden");
1791 }
1792
1793 /**
1794  * Deletes the field with the given ID from the profile.
1795  *
1796  * @param fieldId
1797  *            The ID of the field to delete
1798  */
1799 function deleteProfileField(fieldId) {
1800         ajaxGet("deleteProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId}, function(data, textStatus) {
1801                 if (data && data.success) {
1802                         sone.find(".profile-field#" + data.field.id).slideUp();
1803                 }
1804         });
1805 }
1806
1807 /**
1808  * Renames a profile field.
1809  *
1810  * @param fieldId
1811  *            The ID of the field to rename
1812  * @param newName
1813  *            The new name of the field
1814  * @param successFunction
1815  *            Called when the renaming was successful
1816  */
1817 function editProfileField(fieldId, newName, successFunction) {
1818         ajaxGet("editProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId, "name": newName}, function(data, textStatus) {
1819                 if (data && data.success) {
1820                         successFunction();
1821                 }
1822         });
1823 }
1824
1825 /**
1826  * Moves the profile field with the given ID one slot in the given direction.
1827  *
1828  * @param fieldId
1829  *            The ID of the field to move
1830  * @param direction
1831  *            The direction to move in (“up” or “down”)
1832  * @param successFunction
1833  *            Function to call on success
1834  */
1835 function moveProfileField(fieldId, direction, successFunction) {
1836         ajaxGet("moveProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId, "direction": direction}, function(data, textStatus) {
1837                 if (data && data.success) {
1838                         successFunction();
1839                 }
1840         });
1841 }
1842
1843 /**
1844  * Moves the profile field with the given ID up one slot.
1845  *
1846  * @param fieldId
1847  *            The ID of the field to move
1848  * @param successFunction
1849  *            Function to call on success
1850  */
1851 function moveProfileFieldUp(fieldId, successFunction) {
1852         moveProfileField(fieldId, "up", successFunction);
1853 }
1854
1855 /**
1856  * Moves the profile field with the given ID down one slot.
1857  *
1858  * @param fieldId
1859  *            The ID of the field to move
1860  * @param successFunction
1861  *            Function to call on success
1862  */
1863 function moveProfileFieldDown(fieldId, successFunction) {
1864         moveProfileField(fieldId, "down", successFunction);
1865 }
1866
1867 var statusRequestQueued = true;
1868
1869 /**
1870  * Sets the status of the web interface as offline.
1871  */
1872 function ajaxError() {
1873         online = false;
1874         showOfflineMarker(true);
1875         if (!statusRequestQueued) {
1876                 setTimeout(getStatus, 5000);
1877                 statusRequestQueued = true;
1878         }
1879 }
1880
1881 /**
1882  * Sets the status of the web interface as online.
1883  */
1884 function ajaxSuccess() {
1885         online = true;
1886         showOfflineMarker(!online || (initiallyLoggedIn && notLoggedIn));
1887 }
1888
1889 /**
1890  * Shows or hides the offline marker.
1891  *
1892  * @param visible
1893  *            {@code true} to display the offline marker, {@code false} to hide
1894  *            it
1895  */
1896 function showOfflineMarker(visible) {
1897         /* jQuery documentation says toggle() works the other way around?! */
1898         sone.find("#offline-marker").toggle(visible);
1899         if (visible) {
1900                 sone.find("#main").addClass("offline");
1901         } else {
1902                 sone.find("#main").removeClass("offline");
1903         }
1904 }
1905
1906 //
1907 // EVERYTHING BELOW HERE IS EXECUTED AFTER LOADING THE PAGE
1908 //
1909
1910 var sone = $("#sone");
1911 var focus = true;
1912 var online = true;
1913 var initiallyLoggedIn = sone.find("#loggedIn").text() == "true";
1914 var notLoggedIn = !initiallyLoggedIn;
1915
1916 /** ID of the next-to-show Sone context menu. */
1917 var currentSoneMenuId;
1918
1919 /** Timeout handler for the next-to-show Sone context menu. */
1920 var currentSoneMenuTimeoutHandler;
1921
1922 $(document).ready(function() {
1923
1924         /* rip out the status update textarea. */
1925         sone.find(".rip-out").each(function() {
1926                 var oldElement = $(this);
1927                 var newElement = $("<input type='text'/>");
1928                 newElement.attr("class", oldElement.attr("class")).attr("name", oldElement.attr("name"));
1929                 oldElement.before(newElement).remove();
1930         });
1931
1932         /* this initializes the status update input field. */
1933         getTranslation("WebInterface.DefaultText.StatusUpdate", function(defaultText) {
1934                 registerInputTextareaSwap("#sone #update-status .status-input", defaultText, "text", false, false);
1935                 sone.find("#update-status .select-sender").css("display", "inline");
1936                 sone.find("#update-status .sender").hide();
1937                 sone.find("#update-status .select-sender button").click(function() {
1938                         sone.find("#update-status .sender").show();
1939                         sone.find("#update-status .select-sender").hide();
1940                         return false;
1941                 });
1942                 sone.find("#update-status").submit(function() {
1943                         var button = $("button:submit", this);
1944                         button.attr("disabled", "disabled");
1945                         if ($(this).find(":input.default:enabled").length > 0) {
1946                                 return false;
1947                         }
1948                         var sender = $(this).find(":input[name=sender]").val();
1949                         var text = $(this).find(":input[name=text]:enabled").val();
1950                         ajaxGet("createPost.ajax", { "formPassword": getFormPassword(), "sender": sender, "text": text }, function(data, textStatus) {
1951                                 button.removeAttr("disabled");
1952                         });
1953                         $(this).find(":input[name=sender]").val(getCurrentSoneId());
1954                         $(this).find(":input[name=text]:enabled").val("").blur();
1955                         $(this).find(".sender").hide();
1956                         $(this).find(".select-sender").show();
1957                         return false;
1958                 });
1959         });
1960
1961         /* ajaxify the search input field. */
1962         getTranslation("WebInterface.DefaultText.Search", function(defaultText) {
1963                 registerInputTextareaSwap("#sone #search input[name=query]", defaultText, "query", false, true);
1964         });
1965
1966         /* ajaxify input field on “view Sone” page. */
1967         getTranslation("WebInterface.DefaultText.Message", function(defaultText) {
1968                 registerInputTextareaSwap("#sone #post-message input[name=text]", defaultText, "text", false, false);
1969                 sone.find("#post-message .select-sender").css("display", "inline");
1970                 sone.find("#post-message .sender").hide();
1971                 sone.find("#post-message .select-sender button").click(function() {
1972                         sone.find("#post-message .sender").show();
1973                         sone.find("#post-message .select-sender").hide();
1974                         return false;
1975                 });
1976                 sone.find("#post-message").submit(function() {
1977                         var sender = $(this).find(":input[name=sender]").val();
1978                         var text = $(this).find(":input[name=text]:enabled").val();
1979                         ajaxGet("createPost.ajax", { "formPassword": getFormPassword(), "recipient": getShownSoneId(), "sender": sender, "text": text });
1980                         $(this).find(":input[name=sender]").val(getCurrentSoneId());
1981                         $(this).find(":input[name=text]:enabled").val("").blur();
1982                         $(this).find(".sender").hide();
1983                         $(this).find(".select-sender").show();
1984                         return false;
1985                 });
1986         });
1987
1988         /* Ajaxifies all posts. */
1989         /* calling getTranslation here will cache the necessary values. */
1990         getTranslation("WebInterface.Confirmation.DeletePostButton", function() {
1991                 getTranslation("WebInterface.Confirmation.DeleteReplyButton", function() {
1992                         getTranslation("WebInterface.DefaultText.Reply", function() {
1993                 getTranslation("WebInterface.Button.Comment", function () {
1994                     sone.find(".post").each(function() {
1995                                                 ajaxifyPost(this);
1996                                         });
1997                                 });
1998                         });
1999                 });
2000         });
2001
2002         /* update post times. */
2003         var postIds = [];
2004         sone.find(".post").each(function() {
2005                 postIds.push(getPostId(this));
2006         });
2007         updatePostTimes(postIds.join(","));
2008
2009         /* hides all replies but the latest two. */
2010         if (!isViewPostPage()) {
2011                 getTranslation("WebInterface.ClickToShow.Replies", function(text) {
2012                         sone.find(".post .replies").each(function() {
2013                                 var allReplies = $(this).find(".reply");
2014                                 if (allReplies.length > 2) {
2015                                         var newHidden = false;
2016                                         for (var replyIndex = 0; replyIndex < (allReplies.length - 2); ++replyIndex) {
2017                                                 $(allReplies[replyIndex]).addClass("hidden");
2018                                                 newHidden |= $(allReplies[replyIndex]).hasClass("new");
2019                                         }
2020                                         var clickToShowElement = $("<div></div>").addClass("click-to-show");
2021                                         if (newHidden) {
2022                                                 clickToShowElement.addClass("new");
2023                                         }
2024                                         (function(clickToShowElement, allReplies, text) {
2025                                                 clickToShowElement.text(text);
2026                                                 clickToShowElement.click(function() {
2027                                                         allReplies.removeClass("hidden");
2028                                                         clickToShowElement.addClass("hidden");
2029                                                 });
2030                                         })(clickToShowElement, allReplies, text);
2031                                         $(allReplies[0]).before(clickToShowElement);
2032                                 }
2033                         });
2034                 });
2035         }
2036
2037         sone.find(".sone").each(function() {
2038                 ajaxifySone($(this));
2039         });
2040
2041         /* process all existing notifications, ajaxify dismiss buttons. */
2042         sone.find("#notification-area .notification").each(function() {
2043                 ajaxifyNotification($(this));
2044         });
2045
2046         /* activate status polling. */
2047         setTimeout(getStatus, 5000);
2048
2049         /* reset activity counter when the page has focus. */
2050         $(window).focus(function() {
2051                 focus = true;
2052                 resetActivity();
2053         }).blur(function() {
2054                 focus = false;
2055         });
2056
2057 });