1 /* Sone JavaScript functions. */
3 /* jQuery overrides. */
4 oldGetJson = jQuery.prototype.getJSON;
5 jQuery.prototype.getJSON = function(url, data, successCallback, errorCallback) {
6 if (typeof errorCallback == "undefined") {
7 return oldGetJson(url, data, successCallback);
9 if (jQuery.isFunction(data)) {
10 errorCallback = successCallback;
11 successCallback = data;
17 success: successCallback,
23 return $("#sone").hasClass("online");
26 function registerInputTextareaSwap(inputElement, defaultText, inputFieldName, optional, dontUseTextarea) {
27 $(inputElement).each(function() {
28 textarea = $(dontUseTextarea ? "<input type=\"text\" name=\"" + inputFieldName + "\">" : "<textarea name=\"" + inputFieldName + "\"></textarea>").blur(function() {
29 if ($(this).val() == "") {
31 inputField = $(this).data("inputField");
32 inputField.show().removeAttr("disabled").addClass("default");
33 inputField.val(defaultText);
35 }).hide().data("inputField", $(this)).val($(this).val());
36 $(this).after(textarea);
37 (function(inputField, textarea) {
38 inputField.focus(function() {
39 $(this).hide().attr("disabled", "disabled");
40 textarea.show().focus();
42 if (inputField.val() == "") {
43 inputField.addClass("default");
44 inputField.val(defaultText);
46 inputField.hide().attr("disabled", "disabled");
49 $(inputField.get(0).form).submit(function() {
50 if (!optional && (textarea.val() == "")) {
54 })($(this), textarea);
59 * Adds a “comment” link to all status lines contained in the given element.
64 * The element to add a “comment” link to
66 function addCommentLink(postId, element, insertAfterThisElement) {
67 if ($(element).find(".show-reply-form").length > 0) {
70 commentElement = (function(postId) {
71 var commentElement = $("<div><span>Comment</span></div>").addClass("show-reply-form").click(function() {
72 markPostAsKnown(getPostElement(this));
73 replyElement = $("#sone .post#" + postId + " .create-reply");
74 replyElement.removeClass("hidden");
75 replyElement.removeClass("light");
76 (function(replyElement) {
77 replyElement.find("input.reply-input").blur(function() {
78 if ($(this).hasClass("default")) {
79 replyElement.addClass("light");
82 replyElement.removeClass("light");
85 replyElement.find("input.reply-input").focus();
87 return commentElement;
89 $(insertAfterThisElement).after(commentElement.clone(true));
92 var translations = {};
95 * Retrieves the translation for the given key and calls the callback function.
96 * The callback function takes a single parameter, the translated string.
99 * The key of the translation string
101 * The callback function
103 function getTranslation(key, callback) {
104 if (key in translations) {
105 callback(translations[key]);
108 $.getJSON("getTranslation.ajax", {"key": key}, function(data, textStatus) {
109 if ((data != null) && data.success) {
110 translations[key] = data.value;
111 callback(data.value);
113 }, function(xmlHttpRequest, textStatus, error) {
119 * Filters the given Sone ID, replacing all “~” characters by an underscore.
122 * The Sone ID to filter
123 * @returns The filtered Sone ID
125 function filterSoneId(soneId) {
126 return soneId.replace(/[^a-zA-Z0-9-]/g, "_");
130 * Updates the status of the given Sone.
133 * The ID of the Sone to update
135 * The status of the Sone (“idle”, “unknown”, “inserting”,
138 * Whether the Sone is modified
140 * Whether the Sone is locked
142 * The date and time of the last update (formatted for display)
144 function updateSoneStatus(soneId, name, status, modified, locked, lastUpdated) {
145 $("#sone .sone." + filterSoneId(soneId)).
146 toggleClass("unknown", status == "unknown").
147 toggleClass("idle", status == "idle").
148 toggleClass("inserting", status == "inserting").
149 toggleClass("downloading", status == "downloading").
150 toggleClass("modified", modified);
151 $("#sone .sone." + filterSoneId(soneId) + " .lock").toggleClass("hidden", locked);
152 $("#sone .sone." + filterSoneId(soneId) + " .unlock").toggleClass("hidden", !locked);
153 $("#sone .sone." + filterSoneId(soneId) + " .last-update span.time").text(lastUpdated);
154 $("#sone .sone." + filterSoneId(soneId) + " .profile-link a").text(name);
158 * Enhances a “delete” button so that the confirmation is done on the same page.
163 * The text to show on the button
164 * @param deleteCallback
165 * The callback that actually deletes something
167 function enhanceDeleteButton(button, text, deleteCallback) {
169 newButton = $("<button></button>").addClass("confirm").hide().text(text).click(function() {
170 $(this).fadeOut("slow");
173 }).insertAfter(button);
174 (function(button, newButton) {
175 button.click(function() {
176 button.fadeOut("slow", function() {
177 newButton.fadeIn("slow");
178 $(document).one("click", function() {
179 if (this != newButton.get(0)) {
180 newButton.fadeOut(function() {
188 })(button, newButton);
193 * Enhances a post’s “delete” button.
198 * The ID of the post to delete
200 * The text to replace the button with
202 function enhanceDeletePostButton(button, postId, text) {
203 enhanceDeleteButton(button, text, function() {
204 $.getJSON("deletePost.ajax", { "post": postId, "formPassword": getFormPassword() }, function(data, textStatus) {
209 $("#sone .post#" + postId).slideUp();
210 } else if (data.error == "invalid-post-id") {
211 alert("Invalid post ID given!");
212 } else if (data.error == "auth-required") {
213 alert("You need to be logged in.");
214 } else if (data.error == "not-authorized") {
215 alert("You are not allowed to delete this post.");
217 }, function(xmlHttpRequest, textStatus, error) {
224 * Enhances a reply’s “delete” button.
229 * The ID of the reply to delete
231 * The text to replace the button with
233 function enhanceDeleteReplyButton(button, replyId, text) {
234 enhanceDeleteButton(button, text, function() {
235 $.getJSON("deleteReply.ajax", { "reply": replyId, "formPassword": $("#sone #formPassword").text() }, function(data, textStatus) {
240 $("#sone .reply#" + replyId).slideUp();
241 } else if (data.error == "invalid-reply-id") {
242 alert("Invalid reply ID given!");
243 } else if (data.error == "auth-required") {
244 alert("You need to be logged in.");
245 } else if (data.error == "not-authorized") {
246 alert("You are not allowed to delete this reply.");
248 }, function(xmlHttpRequest, textStatus, error) {
254 function getFormPassword() {
255 return $("#sone #formPassword").text();
258 function getSoneElement(element) {
259 return $(element).closest(".sone");
263 * Generates a list of Sones by concatening the names of the given sones with a
264 * new line character (“\n”).
267 * The sones to format
268 * @returns {String} The created string
270 function generateSoneList(sones) {
272 $.each(sones, function() {
273 if (soneList != "") {
276 soneList += this.name;
282 * Returns the ID of the Sone that this element belongs to.
285 * The element to locate the matching Sone ID for
286 * @returns The ID of the Sone, or undefined
288 function getSoneId(element) {
289 return getSoneElement(element).find(".id").text();
292 function getPostElement(element) {
293 return $(element).closest(".post");
296 function getPostId(element) {
297 return getPostElement(element).attr("id");
300 function getPostTime(element) {
301 return getPostElement(element).find(".post-time").text();
304 function getReplyElement(element) {
305 return $(element).closest(".reply");
308 function getReplyId(element) {
309 return getReplyElement(element).attr("id");
312 function getReplyTime(element) {
313 return getReplyElement(element).find(".reply-time").text();
316 function likePost(postId) {
317 $.getJSON("like.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data, textStatus) {
318 if ((data == null) || !data.success) {
321 $("#sone .post#" + postId + " > .inner-part > .status-line .like").addClass("hidden");
322 $("#sone .post#" + postId + " > .inner-part > .status-line .unlike").removeClass("hidden");
323 updatePostLikes(postId);
324 }, function(xmlHttpRequest, textStatus, error) {
329 function unlikePost(postId) {
330 $.getJSON("unlike.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data, textStatus) {
331 if ((data == null) || !data.success) {
334 $("#sone .post#" + postId + " > .inner-part > .status-line .unlike").addClass("hidden");
335 $("#sone .post#" + postId + " > .inner-part > .status-line .like").removeClass("hidden");
336 updatePostLikes(postId);
337 }, function(xmlHttpRequest, textStatus, error) {
342 function updatePostLikes(postId) {
343 $.getJSON("getLikes.ajax", { "type": "post", "post": postId }, function(data, textStatus) {
344 if ((data != null) && data.success) {
345 $("#sone .post#" + postId + " > .inner-part > .status-line .likes").toggleClass("hidden", data.likes == 0)
346 $("#sone .post#" + postId + " > .inner-part > .status-line .likes span.like-count").text(data.likes);
347 $("#sone .post#" + postId + " > .inner-part > .status-line .likes > span").attr("title", generateSoneList(data.sones));
349 }, function(xmlHttpRequest, textStatus, error) {
354 function likeReply(replyId) {
355 $.getJSON("like.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data, textStatus) {
356 if ((data == null) || !data.success) {
359 $("#sone .reply#" + replyId + " .status-line .like").addClass("hidden");
360 $("#sone .reply#" + replyId + " .status-line .unlike").removeClass("hidden");
361 updateReplyLikes(replyId);
362 }, function(xmlHttpRequest, textStatus, error) {
367 function unlikeReply(replyId) {
368 $.getJSON("unlike.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data, textStatus) {
369 if ((data == null) || !data.success) {
372 $("#sone .reply#" + replyId + " .status-line .unlike").addClass("hidden");
373 $("#sone .reply#" + replyId + " .status-line .like").removeClass("hidden");
374 updateReplyLikes(replyId);
375 }, function(xmlHttpRequest, textStatus, error) {
380 function updateReplyLikes(replyId) {
381 $.getJSON("getLikes.ajax", { "type": "reply", "reply": replyId }, function(data, textStatus) {
382 if ((data != null) && data.success) {
383 $("#sone .reply#" + replyId + " .status-line .likes").toggleClass("hidden", data.likes == 0)
384 $("#sone .reply#" + replyId + " .status-line .likes span.like-count").text(data.likes);
385 $("#sone .reply#" + replyId + " .status-line .likes > span").attr("title", generateSoneList(data.sones));
387 }, function(xmlHttpRequest, textStatus, error) {
393 * Posts a reply and calls the given callback when the request finishes.
396 * The ID of the post the reply refers to
399 * @param callbackFunction
400 * The callback function to call when the request finishes (takes 3
401 * parameters: success, error, replyId)
403 function postReply(postId, text, callbackFunction) {
404 $.getJSON("createReply.ajax", { "formPassword" : getFormPassword(), "post" : postId, "text": text }, function(data, textStatus) {
406 /* TODO - show error */
410 callbackFunction(true, null, data.reply);
412 callbackFunction(false, data.error);
414 }, function(xmlHttpRequest, textStatus, error) {
420 * Requests information about the reply with the given ID.
423 * The ID of the reply
424 * @param callbackFunction
425 * A callback function (parameters soneId, soneName, replyTime,
426 * replyDisplayTime, text, html)
428 function getReply(replyId, callbackFunction) {
429 $.getJSON("getReply.ajax", { "reply" : replyId }, function(data, textStatus) {
430 if ((data != null) && data.success) {
431 callbackFunction(data.soneId, data.soneName, data.time, data.displayTime, data.text, data.html);
433 }, function(xmlHttpRequest, textStatus, error) {
439 * Ajaxifies the given post by enhancing all eligible elements with AJAX.
442 * The post element to ajaxify
444 function ajaxifyPost(postElement) {
445 $(postElement).find("form").submit(function() {
448 $(postElement).find(".create-reply button:submit").click(function() {
449 inputField = $(this.form).find(":input:enabled").get(0);
450 postId = getPostId(this);
451 text = $(inputField).val();
452 (function(postId, text, inputField) {
453 postReply(postId, text, function(success, error, replyId) {
455 $(inputField).val("");
456 loadNewReply(replyId);
457 markPostAsKnown(getPostElement(inputField));
458 $("#sone .post#" + postId + " .create-reply").addClass("hidden");
463 })(postId, text, inputField);
467 /* replace all “delete” buttons with javascript. */
468 (function(postElement) {
469 getTranslation("WebInterface.Confirmation.DeletePostButton", function(deletePostText) {
470 postId = getPostId(postElement);
471 enhanceDeletePostButton($(postElement).find(".delete-post button"), postId, deletePostText);
475 /* convert all “like” buttons to javascript functions. */
476 $(postElement).find(".like-post").submit(function() {
477 likePost(getPostId(this));
478 markPostAsKnown(getPostElement(this));
481 $(postElement).find(".unlike-post").submit(function() {
482 unlikePost(getPostId(this));
483 markPostAsKnown(getPostElement(this));
487 /* add “comment” link. */
488 addCommentLink(getPostId(postElement), postElement, $(postElement).find(".post-status-line .time"));
490 /* process all replies. */
491 $(postElement).find(".reply").each(function() {
495 /* process reply input fields. */
496 getTranslation("WebInterface.DefaultText.Reply", function(text) {
497 $(postElement).find("input.reply-input").each(function() {
498 registerInputTextareaSwap(this, text, "text", false, false);
502 /* mark everything as known on click. */
503 $(postElement).click(function() {
504 markPostAsKnown(this);
507 /* hide reply input field. */
508 $(postElement).find(".create-reply").addClass("hidden");
512 * Ajaxifies the given reply element.
514 * @param replyElement
515 * The reply element to ajaxify
517 function ajaxifyReply(replyElement) {
518 $(replyElement).find(".like-reply").submit(function() {
519 likeReply(getReplyId(this));
520 markPostAsKnown(getPostElement(this));
523 $(replyElement).find(".unlike-reply").submit(function() {
524 unlikeReply(getReplyId(this));
525 markPostAsKnown(getPostElement(this));
528 (function(replyElement) {
529 getTranslation("WebInterface.Confirmation.DeleteReplyButton", function(deleteReplyText) {
530 $(replyElement).find(".delete-reply button").each(function() {
531 enhanceDeleteReplyButton(this, getReplyId(replyElement), deleteReplyText);
535 addCommentLink(getPostId(replyElement), replyElement, $(replyElement).find(".reply-status-line .time"));
537 /* mark post and all replies as known on click. */
538 $(replyElement).click(function() {
539 markPostAsKnown(getPostElement(this));
544 * Ajaxifies the given notification by replacing the form with AJAX.
546 * @param notification
547 * jQuery object representing the notification.
549 function ajaxifyNotification(notification) {
550 notification.find("form.dismiss").submit(function() {
553 notification.find("form.dismiss button").click(function() {
554 $.getJSON("dismissNotification.ajax", { "formPassword" : getFormPassword(), "notification" : notification.attr("id") }, function(data, textStatus) {
555 /* dismiss in case of error, too. */
556 notification.slideUp();
557 }, function(xmlHttpRequest, textStatus, error) {
564 function getStatus() {
565 $.getJSON("getStatus.ajax", {"loadAllSones": isKnownSonesPage()}, function(data, textStatus) {
566 if ((data != null) && data.success) {
567 /* process Sone information. */
568 $.each(data.sones, function(index, value) {
569 updateSoneStatus(value.id, value.name, value.status, value.modified, value.locked, value.lastUpdated);
571 /* process notifications. */
572 $.each(data.notifications, function(index, value) {
573 oldNotification = $("#sone #notification-area .notification#" + value.id);
574 notification = ajaxifyNotification(createNotification(value.id, value.text, value.dismissable)).hide();
575 if (oldNotification.length != 0) {
576 oldNotification.replaceWith(notification.show());
578 $("#sone #notification-area").append(notification);
579 notification.slideDown();
583 $.each(data.removedNotifications, function(index, value) {
584 $("#sone #notification-area .notification#" + value.id).slideUp();
586 /* process new posts. */
587 $.each(data.newPosts, function(index, value) {
590 /* process new replies. */
591 $.each(data.newReplies, function(index, value) {
594 /* do it again in 5 seconds. */
595 setTimeout(getStatus, 5000);
597 /* data.success was false, wait 30 seconds. */
598 setTimeout(getStatus, 30000);
600 }, function(xmlHttpRequest, textStatus, error) {
601 /* something really bad happend, wait a minute. */
602 setTimeout(getStatus, 60000);
607 * Returns the content of the page-id attribute.
609 * @returns The page ID
611 function getPageId() {
612 return $("#sone .page-id").text();
616 * Returns whether the current page is the index page.
618 * @returns {Boolean} <code>true</code> if the current page is the index page,
619 * <code>false</code> otherwise
621 function isIndexPage() {
622 return getPageId() == "index";
626 * Returns whether the current page is a “view Sone” page.
628 * @returns {Boolean} <code>true</code> if the current page is a “view Sone”
629 * page, <code>false</code> otherwise
631 function isViewSonePage() {
632 return getPageId() == "view-sone";
636 * Returns the ID of the currently shown Sone. This will only return a sensible
637 * value if isViewSonePage() returns <code>true</code>.
639 * @returns The ID of the currently shown Sone
641 function getShownSoneId() {
642 return $("#sone .sone-id").text();
646 * Returns whether the current page is a “view post” page.
648 * @returns {Boolean} <code>true</code> if the current page is a “view post”
649 * page, <code>false</code> otherwise
651 function isViewPostPage() {
652 return getPageId() == "view-post";
656 * Returns the ID of the currently shown post. This will only return a sensible
657 * value if isViewPostPage() returns <code>true</code>.
659 * @returns The ID of the currently shown post
661 function getShownPostId() {
662 return $("#sone .post-id").text();
666 * Returns whether the current page is the “known Sones” page.
668 * @returns {Boolean} <code>true</code> if the current page is the “known
669 * Sones” page, <code>false</code> otherwise
671 function isKnownSonesPage() {
672 return getPageId() == "known-sones";
676 * Returns whether a post with the given ID exists on the current page.
679 * The post ID to check for
680 * @returns {Boolean} <code>true</code> if a post with the given ID already
681 * exists on the page, <code>false</code> otherwise
683 function hasPost(postId) {
684 return $(".post#" + postId).length > 0;
688 * Returns whether a reply with the given ID exists on the current page.
691 * The reply ID to check for
692 * @returns {Boolean} <code>true</code> if a reply with the given ID already
693 * exists on the page, <code>false</code> otherwise
695 function hasReply(replyId) {
696 return $("#sone .reply#" + replyId).length > 0;
699 function loadNewPost(postId) {
700 if (hasPost(postId)) {
703 $.getJSON("getPost.ajax", { "post" : postId }, function(data, textStatus) {
704 if ((data != null) && data.success) {
705 if (hasPost(data.post.id)) {
708 if (!isIndexPage() && !(isViewSonePage() && ((getShownSoneId() == data.post.sone) || (getShownSoneId() == data.post.recipient)))) {
711 var firstOlderPost = null;
712 $("#sone .post").each(function() {
713 if (getPostTime(this) < data.post.time) {
714 firstOlderPost = $(this);
718 newPost = $(data.post.html).addClass("hidden");
719 if (firstOlderPost != null) {
720 newPost.insertBefore(firstOlderPost);
722 $("#sone #posts").append(newPost);
724 ajaxifyPost(newPost);
731 function loadNewReply(replyId) {
732 if (hasReply(replyId)) {
735 $.getJSON("getReply.ajax", { "reply": replyId }, function(data, textStatus) {
737 if ((data != null) && data.success) {
738 if (hasReply(data.reply.id)) {
741 $("#sone .post#" + data.reply.postId).each(function() {
742 var firstNewerReply = null;
743 $(this).find(".replies .reply").each(function() {
744 if (getReplyTime(this) > data.reply.time) {
745 firstNewerReply = $(this);
749 newReply = $(data.reply.html).addClass("hidden");
750 if (firstNewerReply != null) {
751 newReply.insertBefore(firstNewerReply);
753 if ($(this).find(".replies .create-reply")) {
754 $(this).find(".replies .create-reply").before(newReply);
756 $(this).find(".replies").append(newReply);
759 ajaxifyReply(newReply);
760 newReply.slideDown();
768 function markPostAsKnown(postElements) {
769 $(postElements).each(function() {
771 if ($(postElement).hasClass("new")) {
772 (function(postElement) {
773 $.getJSON("markPostAsKnown.ajax", {"formPassword": getFormPassword(), "post": getPostId(postElement)}, function(data, textStatus) {
774 $(postElement).removeClass("new");
779 markReplyAsKnown($(postElements).find(".reply"));
782 function markReplyAsKnown(replyElements) {
783 $(replyElements).each(function() {
785 if ($(replyElement).hasClass("new")) {
786 (function(replyElement) {
787 $.getJSON("markReplyAsKnown.ajax", {"formPassword": getFormPassword(), "reply": getReplyId(replyElement)}, function(data, textStatus) {
788 $(replyElement).removeClass("new");
795 function resetActivity() {
796 title = document.title;
797 if (title.indexOf('(') == 0) {
798 document.title = title.substr(title.indexOf(' ') + 1);
802 function setActivity() {
804 title = document.title;
805 if (title.indexOf('(') != 0) {
806 document.title = "(!) " + title;
812 * Creates a new notification.
815 * The ID of the notificaiton
817 * The text of the notification
819 * <code>true</code> if the notification can be dismissed by the
822 function createNotification(id, text, dismissable) {
823 notification = $("<div></div>").addClass("notification").attr("id", id);
825 dismissForm = $("#sone #notification-area #notification-dismiss-template").clone().removeClass("hidden").removeAttr("id")
826 dismissForm.find("input[name=notification]").val(id);
827 notification.append(dismissForm);
829 notification.append(text);
834 * Shows the details of the notification with the given ID.
836 * @param notificationId
837 * The ID of the notification
839 function showNotificationDetails(notificationId) {
840 $("#sone .notification#" + notificationId + " .text").show();
841 $("#sone .notification#" + notificationId + " .short-text").hide();
845 // EVERYTHING BELOW HERE IS EXECUTED AFTER LOADING THE PAGE
850 $(document).ready(function() {
852 /* this initializes the status update input field. */
853 getTranslation("WebInterface.DefaultText.StatusUpdate", function(defaultText) {
854 registerInputTextareaSwap("#sone #update-status .status-input", defaultText, "text", false, false);
855 $("#sone #update-status").submit(function() {
856 if ($(this).find(":input.default:enabled").length > 0) {
859 text = $(this).find(":input:enabled").val();
860 $.getJSON("createPost.ajax", { "formPassword": getFormPassword(), "text": text }, function(data, textStatus) {
861 if ((data != null) && data.success) {
862 loadNewPost(data.postId);
865 $(this).find(":input:enabled").val("").blur();
870 /* ajaxify input field on “view Sone” page. */
871 getTranslation("WebInterface.DefaultText.Message", function(defaultText) {
872 registerInputTextareaSwap("#sone #post-message input[name=text]", defaultText, "text", false, false);
873 $("#sone #post-message").submit(function() {
874 text = $(this).find(":input:enabled").val();
875 $.getJSON("createPost.ajax", { "formPassword": getFormPassword(), "recipient": getShownSoneId(), "text": text }, function(data, textStatus) {
876 if ((data != null) && data.success) {
877 loadNewPost(data.postId);
880 $(this).find(":input:enabled").val("").blur();
885 /* Ajaxifies all posts. */
886 /* calling getTranslation here will cache the necessary values. */
887 getTranslation("WebInterface.Confirmation.DeletePostButton", function(text) {
888 getTranslation("WebInterface.Confirmation.DeleteReplyButton", function(text) {
889 getTranslation("WebInterface.DefaultText.Reply", function(text) {
890 $("#sone .post").each(function() {
897 /* hides all replies but the latest two. */
898 if (!isViewPostPage()) {
899 getTranslation("WebInterface.ClickToShow.Replies", function(text) {
900 $("#sone .post .replies").each(function() {
901 allReplies = $(this).find(".reply");
902 if (allReplies.length > 2) {
904 for (replyIndex = 0; replyIndex < (allReplies.length - 2); ++replyIndex) {
905 $(allReplies[replyIndex]).addClass("hidden");
906 newHidden |= $(allReplies[replyIndex]).hasClass("new");
908 clickToShowElement = $("<div></div>").addClass("click-to-show");
910 clickToShowElement.addClass("new");
912 (function(clickToShowElement, allReplies, text) {
913 clickToShowElement.text(text);
914 clickToShowElement.click(function() {
915 allReplies.removeClass("hidden");
916 clickToShowElement.addClass("hidden");
918 })(clickToShowElement, allReplies, text);
919 $(allReplies[0]).before(clickToShowElement);
926 * convert all “follow”, “unfollow”, “lock”, and “unlock” links to something
929 $("#sone .follow").submit(function() {
930 var followElement = this;
931 $.getJSON("followSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
932 $(followElement).addClass("hidden");
933 $(followElement).parent().find(".unfollow").removeClass("hidden");
937 $("#sone .unfollow").submit(function() {
938 var unfollowElement = this;
939 $.getJSON("unfollowSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
940 $(unfollowElement).addClass("hidden");
941 $(unfollowElement).parent().find(".follow").removeClass("hidden");
945 $("#sone .lock").submit(function() {
946 var lockElement = this;
947 $.getJSON("lockSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
948 $(lockElement).addClass("hidden");
949 $(lockElement).parent().find(".unlock").removeClass("hidden");
953 $("#sone .unlock").submit(function() {
954 var unlockElement = this;
955 $.getJSON("unlockSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
956 $(unlockElement).addClass("hidden");
957 $(unlockElement).parent().find(".lock").removeClass("hidden");
962 /* process all existing notifications, ajaxify dismiss buttons. */
963 $("#sone #notification-area .notification").each(function() {
964 ajaxifyNotification($(this));
967 /* activate status polling. */
968 setTimeout(getStatus, 5000);
970 /* reset activity counter when the page has focus. */
971 $(window).focus(function() {