]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - js/util.js
better output for registration confirmation
[quix0rs-gnu-social.git] / js / util.js
1 /*
2  * StatusNet - a distributed open-source microblogging tool
3  * Copyright (C) 2008, StatusNet, Inc.
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @category  UI interaction
19  * @package   StatusNet
20  * @author    Sarven Capadisli <csarven@status.net>
21  * @author    Evan Prodromou <evan@status.net>
22  * @author    Brion Vibber <brion@status.net>
23  * @copyright 2009,2010 StatusNet, Inc.
24  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
25  * @link      http://status.net/
26  */
27
28 var SN = { // StatusNet
29     C: { // Config
30         I: { // Init
31             CounterBlackout: false,
32             MaxLength: 140,
33             PatternUsername: /^[0-9a-zA-Z\-_.]*$/,
34             HTTP20x30x: [200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307],
35             NoticeFormMaster: null // to be cloned from the one at top
36         },
37
38         /**
39          * @fixme are these worth the trouble? They seem to mostly just duplicate
40          * themselves while slightly obscuring the actual selector, so it's hard
41          * to pop over to the HTML and find something.
42          *
43          * In theory, minification could reduce them to shorter variable names,
44          * but at present that doesn't happen with yui-compressor.
45          */
46         S: { // Selector
47             Disabled: 'disabled',
48             Warning: 'warning',
49             Error: 'error',
50             Success: 'success',
51             Processing: 'processing',
52             CommandResult: 'command_result',
53             FormNotice: 'form_notice',
54             NoticeDataGeo: 'notice_data-geo',
55             NoticeDataGeoCookie: 'NoticeDataGeo',
56             NoticeDataGeoSelected: 'notice_data-geo_selected',
57             StatusNetInstance:'StatusNetInstance'
58         }
59     },
60
61     /**
62      * Map of localized message strings exported to script from the PHP
63      * side via Action::getScriptMessages().
64      *
65      * Retrieve them via SN.msg(); this array is an implementation detail.
66      *
67      * @access private
68      */
69     messages: {},
70
71     /**
72      * Grabs a localized string that's been previously exported to us
73      * from server-side code via Action::getScriptMessages().
74      *
75      * @example alert(SN.msg('coolplugin-failed'));
76      *
77      * @param {String} key: string key name to pull from message index
78      * @return matching localized message string
79      */
80     msg: function(key) {
81         if (typeof SN.messages[key] == "undefined") {
82             return '[' + key + ']';
83         } else {
84             return SN.messages[key];
85         }
86     },
87
88     U: { // Utils
89         /**
90          * Setup function -- DOES NOT trigger actions immediately.
91          *
92          * Sets up event handlers on the new notice form.
93          *
94          * @param {jQuery} form: jQuery object whose first matching element is the form
95          * @access private
96          */
97         FormNoticeEnhancements: function(form) {
98             if (jQuery.data(form[0], 'ElementData') === undefined) {
99                 MaxLength = form.find('.count').text();
100                 if (typeof(MaxLength) == 'undefined') {
101                      MaxLength = SN.C.I.MaxLength;
102                 }
103                 jQuery.data(form[0], 'ElementData', {MaxLength:MaxLength});
104
105                 SN.U.Counter(form);
106
107                 NDT = form.find('.notice_data-text:first');
108
109                 NDT.bind('keyup', function(e) {
110                     SN.U.Counter(form);
111                 });
112
113                 var delayedUpdate= function(e) {
114                     // Cut and paste events fire *before* the operation,
115                     // so we need to trigger an update in a little bit.
116                     // This would be so much easier if the 'change' event
117                     // actually fired every time the value changed. :P
118                     window.setTimeout(function() {
119                         SN.U.Counter(form);
120                     }, 50);
121                 };
122                 // Note there's still no event for mouse-triggered 'delete'.
123                 NDT.bind('cut', delayedUpdate)
124                    .bind('paste', delayedUpdate);
125             }
126             else {
127                 form.find('.count').text(jQuery.data(form[0], 'ElementData').MaxLength);
128             }
129         },
130
131         /**
132          * To be called from event handlers on the notice import form.
133          * Triggers an update of the remaining-characters counter.
134          *
135          * Additional counter updates will be suppressed during the
136          * next half-second to avoid flooding the layout engine with
137          * updates, followed by another automatic check.
138          *
139          * The maximum length is pulled from data established by
140          * FormNoticeEnhancements.
141          *
142          * @param {jQuery} form: jQuery object whose first element is the notice posting form
143          * @access private
144          */
145         Counter: function(form) {
146             SN.C.I.FormNoticeCurrent = form;
147
148             var MaxLength = jQuery.data(form[0], 'ElementData').MaxLength;
149
150             if (MaxLength <= 0) {
151                 return;
152             }
153
154             var remaining = MaxLength - SN.U.CharacterCount(form);
155             var counter = form.find('.count');
156
157             if (remaining.toString() != counter.text()) {
158                 if (!SN.C.I.CounterBlackout || remaining === 0) {
159                     if (counter.text() != String(remaining)) {
160                         counter.text(remaining);
161                     }
162                     if (remaining < 0) {
163                         form.addClass(SN.C.S.Warning);
164                     } else {
165                         form.removeClass(SN.C.S.Warning);
166                     }
167                     // Skip updates for the next 500ms.
168                     // On slower hardware, updating on every keypress is unpleasant.
169                     if (!SN.C.I.CounterBlackout) {
170                         SN.C.I.CounterBlackout = true;
171                         SN.C.I.FormNoticeCurrent = form;
172                         window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);", 500);
173                     }
174                 }
175             }
176         },
177
178         /**
179          * Pull the count of characters in the current edit field.
180          * Plugins replacing the edit control may need to override this.
181          *
182          * @param {jQuery} form: jQuery object whose first element is the notice posting form
183          * @return number of chars
184          */
185         CharacterCount: function(form) {
186             return form.find('.notice_data-text:first').val().length;
187         },
188
189         /**
190          * Called internally after the counter update blackout period expires;
191          * runs another update to make sure we didn't miss anything.
192          *
193          * @param {jQuery} form: jQuery object whose first element is the notice posting form
194          * @access private
195          */
196         ClearCounterBlackout: function(form) {
197             // Allow keyup events to poke the counter again
198             SN.C.I.CounterBlackout = false;
199             // Check if the string changed since we last looked
200             SN.U.Counter(form);
201         },
202
203         /**
204          * Helper function to rewrite default HTTP form action URLs to HTTPS
205          * so we can actually fetch them when on an SSL page in ssl=sometimes
206          * mode.
207          *
208          * It would be better to output URLs that didn't hardcode protocol
209          * and hostname in the first place...
210          *
211          * @param {String} url
212          * @return string
213          */
214         RewriteAjaxAction: function(url) {
215             // Quick hack: rewrite AJAX submits to HTTPS if they'd fail otherwise.
216             if (document.location.protocol == 'https:' && url.substr(0, 5) == 'http:') {
217                 return url.replace(/^http:\/\/[^:\/]+/, 'https://' + document.location.host);
218             } else {
219                 return url;
220             }
221         },
222
223         /**
224          * Grabs form data and submits it asynchronously, with 'ajax=1'
225          * parameter added to the rest.
226          *
227          * If a successful response includes another form, that form
228          * will be extracted and copied in, replacing the original form.
229          * If there's no form, the first paragraph will be used.
230          *
231          * This will automatically be applied on the 'submit' event for
232          * any form with the 'ajax' class.
233          *
234          * @fixme can sometimes explode confusingly if returnd data is bogus
235          * @fixme error handling is pretty vague
236          * @fixme can't submit file uploads
237          *
238          * @param {jQuery} form: jQuery object whose first element is a form
239          *
240          * @access public
241          */
242         FormXHR: function(form) {
243             $.ajax({
244                 type: 'POST',
245                 dataType: 'xml',
246                 url: SN.U.RewriteAjaxAction(form.attr('action')),
247                 data: form.serialize() + '&ajax=1',
248                 beforeSend: function(xhr) {
249                     form
250                         .addClass(SN.C.S.Processing)
251                         .find('.submit')
252                             .addClass(SN.C.S.Disabled)
253                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
254                 },
255                 error: function (xhr, textStatus, errorThrown) {
256                     // If the server end reported an error from StatusNet,
257                     // find it -- otherwise we'll see what was reported
258                     // from the browser.
259                     var errorReported = null;
260                     if (xhr.responseXML) {
261                         errorReported = $('#error', xhr.responseXML).text();
262                     }
263                     alert(errorReported || errorThrown || textStatus);
264                     
265                     // Restore the form to original state.
266                     // Hopefully. :D
267                     form
268                         .removeClass(SN.C.S.Processing)
269                         .find('.submit')
270                             .removeClass(SN.C.S.Disabled)
271                             .removeAttr(SN.C.S.Disabled);
272                 },
273                 success: function(data, textStatus) {
274                     if (typeof($('form', data)[0]) != 'undefined') {
275                         form_new = document._importNode($('form', data)[0], true);
276                         form.replaceWith(form_new);
277                     }
278                     else if (typeof($('p', data)[0]) != 'undefined') {
279                         form.replaceWith(document._importNode($('p', data)[0], true));
280                     }
281                     else {
282                         alert('Unknown error.');
283                     }
284                 }
285             });
286         },
287
288         /**
289          * Setup function -- DOES NOT trigger actions immediately.
290          *
291          * Sets up event handlers for special-cased async submission of the
292          * notice-posting form, including some pre-post validation.
293          *
294          * Unlike FormXHR() this does NOT submit the form immediately!
295          * It sets up event handlers so that any method of submitting the
296          * form (click on submit button, enter, submit() etc) will trigger
297          * it properly.
298          *
299          * Also unlike FormXHR(), this system will use a hidden iframe
300          * automatically to handle file uploads via <input type="file">
301          * controls.
302          *
303          * @fixme tl;dr
304          * @fixme vast swaths of duplicate code and really long variable names clutter this function up real bad
305          * @fixme error handling is unreliable
306          * @fixme cookieValue is a global variable, but probably shouldn't be
307          * @fixme saving the location cache cookies should be split out
308          * @fixme some error messages are hardcoded english: needs i18n
309          * @fixme special-case for bookmarklet is confusing and uses a global var "self". Is this ok?
310          *
311          * @param {jQuery} form: jQuery object whose first element is a form
312          *
313          * @access public
314          */
315         FormNoticeXHR: function(form) {
316             SN.C.I.NoticeDataGeo = {};
317             form.append('<input type="hidden" name="ajax" value="1"/>');
318
319             // Make sure we don't have a mixed HTTP/HTTPS submission...
320             form.attr('action', SN.U.RewriteAjaxAction(form.attr('action')));
321
322             /**
323              * Show a response feedback bit under the new-notice dialog.
324              *
325              * @param {String} cls: CSS class name to use ('error' or 'success')
326              * @param {String} text
327              * @access private
328              */
329             var showFeedback = function(cls, text) {
330                 form.append(
331                     $('<p class="form_response"></p>')
332                         .addClass(cls)
333                         .text(text)
334                 );
335             };
336
337             /**
338              * Hide the previous response feedback, if any.
339              */
340             var removeFeedback = function() {
341                 form.find('.form_response').remove();
342             };
343
344             form.ajaxForm({
345                 dataType: 'xml',
346                 timeout: '60000',
347                 beforeSend: function(formData) {
348                     if (form.find('.notice_data-text:first').val() == '') {
349                         form.addClass(SN.C.S.Warning);
350                         return false;
351                     }
352                     form
353                         .addClass(SN.C.S.Processing)
354                         .find('.submit')
355                             .addClass(SN.C.S.Disabled)
356                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
357
358                     SN.U.normalizeGeoData(form);
359
360                     return true;
361                 },
362                 error: function (xhr, textStatus, errorThrown) {
363                     form
364                         .removeClass(SN.C.S.Processing)
365                         .find('.submit')
366                             .removeClass(SN.C.S.Disabled)
367                             .removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
368                     removeFeedback();
369                     if (textStatus == 'timeout') {
370                         // @fixme i18n
371                         showFeedback('error', 'Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.');
372                     }
373                     else {
374                         var response = SN.U.GetResponseXML(xhr);
375                         if ($('.'+SN.C.S.Error, response).length > 0) {
376                             form.append(document._importNode($('.'+SN.C.S.Error, response)[0], true));
377                         }
378                         else {
379                             if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
380                                 form
381                                     .resetForm()
382                                     .find('.attach-status').remove();
383                                 SN.U.FormNoticeEnhancements(form);
384                             }
385                             else {
386                                 // @fixme i18n
387                                 showFeedback('error', '(Sorry! We had trouble sending your notice ('+xhr.status+' '+xhr.statusText+'). Please report the problem to the site administrator if this happens again.');
388                             }
389                         }
390                     }
391                 },
392                 success: function(data, textStatus) {
393                     removeFeedback();
394                     var errorResult = $('#'+SN.C.S.Error, data);
395                     if (errorResult.length > 0) {
396                         showFeedback('error', errorResult.text());
397                     }
398                     else {
399                         if($('body')[0].id == 'bookmarklet') {
400                             // @fixme self is not referenced anywhere?
401                             self.close();
402                         }
403
404                         var commandResult = $('#'+SN.C.S.CommandResult, data);
405                         if (commandResult.length > 0) {
406                             showFeedback('success', commandResult.text());
407                         }
408                         else {
409                             // New notice post was successful. If on our timeline, show it!
410                             var notice = document._importNode($('li', data)[0], true);
411                             var notices = $('#notices_primary .notices:first');
412                             var replyItem = form.closest('li.notice-reply');
413
414                             if (replyItem.length > 0) {
415                                 // If this is an inline reply, remove the form...
416                                 var list = form.closest('.threaded-replies');
417                                 var placeholder = list.find('.notice-reply-placeholder');
418                                 replyItem.remove();
419
420                                 var id = $(notice).attr('id');
421                                 if ($("#"+id).length == 0) {
422                                     $(notice).insertBefore(placeholder);
423                                 } else {
424                                     // Realtime came through before us...
425                                 }
426
427                                 // ...and show the placeholder form.
428                                 placeholder.show();
429                             } else if (notices.length > 0 && SN.U.belongsOnTimeline(notice)) {
430                                 // Not a reply. If on our timeline, show it at the top!
431
432                                 if ($('#'+notice.id).length === 0) {
433                                     var notice_irt_value = form.find('[name=inreplyto]').val();
434                                     var notice_irt = '#notices_primary #notice-'+notice_irt_value;
435                                     if($('body')[0].id == 'conversation') {
436                                         if(notice_irt_value.length > 0 && $(notice_irt+' .notices').length < 1) {
437                                             $(notice_irt).append('<ul class="notices"></ul>');
438                                         }
439                                         $($(notice_irt+' .notices')[0]).append(notice);
440                                     }
441                                     else {
442                                         notices.prepend(notice);
443                                     }
444                                     $('#'+notice.id)
445                                         .css({display:'none'})
446                                         .fadeIn(2500);
447                                     SN.U.NoticeWithAttachment($('#'+notice.id));
448                                     SN.U.switchInputFormTab("placeholder");
449                                 }
450                             } else {
451                                 // Not on a timeline that this belongs on?
452                                 // Just show a success message.
453                                 // @fixme inline
454                                 showFeedback('success', $('title', data).text());
455                             }
456                         }
457                         form.resetForm();
458                         form.find('[name=inreplyto]').val('');
459                         form.find('.attach-status').remove();
460                         SN.U.FormNoticeEnhancements(form);
461                     }
462                 },
463                 complete: function(xhr, textStatus) {
464                     form
465                         .removeClass(SN.C.S.Processing)
466                         .find('.submit')
467                             .removeAttr(SN.C.S.Disabled)
468                             .removeClass(SN.C.S.Disabled);
469
470                     form.find('[name=lat]').val(SN.C.I.NoticeDataGeo.NLat);
471                     form.find('[name=lon]').val(SN.C.I.NoticeDataGeo.NLon);
472                     form.find('[name=location_ns]').val(SN.C.I.NoticeDataGeo.NLNS);
473                     form.find('[name=location_id]').val(SN.C.I.NoticeDataGeo.NLID);
474                     form.find('[name=notice_data-geo]').attr('checked', SN.C.I.NoticeDataGeo.NDG);
475                 }
476             });
477         },
478
479         FormProfileSearchXHR: function(form) {
480             $.ajax({
481                 type: 'POST',
482                 dataType: 'xml',
483                 url: form.attr('action'),
484                 data: form.serialize() + '&ajax=1',
485                 beforeSend: function(xhr) {
486                     form
487                         .addClass(SN.C.S.Processing)
488                         .find('.submit')
489                             .addClass(SN.C.S.Disabled)
490                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
491                 },
492                 error: function (xhr, textStatus, errorThrown) {
493                     alert(errorThrown || textStatus);
494                 },
495                 success: function(data, textStatus) {
496                     var results_placeholder = $('#profile_search_results');
497                     if (typeof($('ul', data)[0]) != 'undefined') {
498                         var list = document._importNode($('ul', data)[0], true);
499                         results_placeholder.replaceWith(list);
500                     }
501                     else {
502                         var _error = $('<li/>').append(document._importNode($('p', data)[0], true)); 
503                         results_placeholder.html(_error);
504                     }
505                     form
506                         .removeClass(SN.C.S.Processing)
507                         .find('.submit')
508                             .removeClass(SN.C.S.Disabled)
509                             .attr(SN.C.S.Disabled, false);
510                 }
511             });
512         },
513
514         FormPeopletagsXHR: function(form) {
515             $.ajax({
516                 type: 'POST',
517                 dataType: 'xml',
518                 url: form.attr('action'),
519                 data: form.serialize() + '&ajax=1',
520                 beforeSend: function(xhr) {
521                     form.find('.submit')
522                             .addClass(SN.C.S.Processing)
523                             .addClass(SN.C.S.Disabled)
524                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
525                 },
526                 error: function (xhr, textStatus, errorThrown) {
527                     alert(errorThrown || textStatus);
528                 },
529                 success: function(data, textStatus) {
530                     var results_placeholder = form.parents('.entity_tags');
531                     if (typeof($('.entity_tags', data)[0]) != 'undefined') {
532                         var tags = document._importNode($('.entity_tags', data)[0], true);
533                         $(tags).find('.editable').append($('<button class="peopletags_edit_button"/>'));
534                         results_placeholder.replaceWith(tags);
535                     } else {
536                         results_placeholder.find('p').remove();
537                         results_placeholder.append(document._importNode($('p', data)[0], true));
538                         form.removeClass(SN.C.S.Processing)
539                             .find('.submit')
540                                 .removeClass(SN.C.S.Disabled)
541                                 .attr(SN.C.S.Disabled, false);
542                     }
543                 }
544             });
545         },
546
547         normalizeGeoData: function(form) {
548             SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val();
549             SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val();
550             SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val();
551             SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val();
552             SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').attr('checked'); // @fixme
553
554             var cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
555
556             if (cookieValue !== null && cookieValue != 'disabled') {
557                 cookieValue = JSON.parse(cookieValue);
558                 SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val(cookieValue.NLat).val();
559                 SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val(cookieValue.NLon).val();
560                 if (cookieValue.NLNS) {
561                     SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val(cookieValue.NLNS).val();
562                     SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val(cookieValue.NLID).val();
563                 } else {
564                     form.find('[name=location_ns]').val('');
565                     form.find('[name=location_id]').val('');
566                 }
567             }
568             if (cookieValue == 'disabled') {
569                 SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').attr('checked', false).attr('checked');
570             }
571             else {
572                 SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').attr('checked', true).attr('checked');
573             }
574
575         },
576
577         /**
578          * Fetch an XML DOM from an XHR's response data.
579          *
580          * Works around unavailable responseXML when document.domain
581          * has been modified by Meteor or other tools, in some but not
582          * all browsers.
583          *
584          * @param {XMLHTTPRequest} xhr
585          * @return DOMDocument
586          */
587         GetResponseXML: function(xhr) {
588             try {
589                 return xhr.responseXML;
590             } catch (e) {
591                 return (new DOMParser()).parseFromString(xhr.responseText, "text/xml");
592             }
593         },
594
595         /**
596          * Setup function -- DOES NOT trigger actions immediately.
597          *
598          * Sets up event handlers on all visible notice's reply buttons to
599          * tweak the new-notice form with needed variables and focus it
600          * when pushed.
601          *
602          * (This replaces the default reply button behavior to submit
603          * directly to a form which comes back with a specialized page
604          * with the form data prefilled.)
605          *
606          * @access private
607          */
608         NoticeReply: function() {
609             $('#content .notice_reply').live('click', function(e) {
610                 e.preventDefault();
611                 var notice = $(this).closest('li.notice');
612                 SN.U.NoticeInlineReplyTrigger(notice);
613                 return false;
614             });
615         },
616
617         /**
618          * Stub -- kept for compat with plugins for now.
619          * @access private
620          */
621         NoticeReplyTo: function(notice) {
622         },
623
624         /**
625          * Open up a notice's inline reply box.
626          *
627          * @param {jQuery} notice: jQuery object containing one notice
628          * @param {String} initialText
629          */
630         NoticeInlineReplyTrigger: function(notice, initialText) {
631             // Find the notice we're replying to...
632             var id = $($('.notice_id', notice)[0]).text();
633             var parentNotice = notice;
634
635             // Find the threaded replies view we'll be adding to...
636             var list = notice.closest('.notices');
637             if (list.hasClass('threaded-replies')) {
638                 // We're replying to a reply; use reply form on the end of this list.
639                 // We'll add our form at the end of this; grab the root notice.
640                 parentNotice = list.closest('.notice');
641             } else {
642                 // We're replying to a parent notice; pull its threaded list
643                 // and we'll add on the end of it. Will add if needed.
644                 list = $('ul.threaded-replies', notice);
645                 if (list.length == 0) {
646                     SN.U.NoticeInlineReplyPlaceholder(notice);
647                     list = $('ul.threaded-replies', notice);
648                 }
649             }
650
651             // See if the form's already open...
652             var replyForm = $('.notice-reply-form', list);
653
654             var nextStep = function() {
655                 // Override...?
656                 replyForm.find('input[name=inreplyto]').val(id);
657                 replyForm.find('#notice_to').attr('disabled', 'disabled').hide();
658                 replyForm.find('#notice_private').attr('disabled', 'disabled').hide();
659                 replyForm.find('label[for=notice_to]').hide();
660                 replyForm.find('label[for=notice_private]').hide();
661
662                 // Set focus...
663                 var text = replyForm.find('textarea');
664                 if (text.length == 0) {
665                     throw "No textarea";
666                 }
667                 var replyto = '';
668                 if (initialText) {
669                     replyto = initialText + ' ';
670                 }
671                 text.val(replyto + text.val().replace(RegExp(replyto, 'i'), ''));
672                 text.data('initialText', $.trim(initialText + ''));
673                 text.focus();
674                 if (text[0].setSelectionRange) {
675                     var len = text.val().length;
676                     text[0].setSelectionRange(len,len);
677                 }
678             };
679             if (replyForm.length > 0) {
680                 // Update the existing form...
681                 nextStep();
682             } else {
683                 // Hide the placeholder...
684                 var placeholder = list.find('li.notice-reply-placeholder').hide();
685
686                 // Create the reply form entry at the end
687                 var replyItem = $('li.notice-reply', list);
688                 if (replyItem.length == 0) {
689                     replyItem = $('<li class="notice-reply"></li>');
690
691                     var intermediateStep = function(formMaster) {
692                         var formEl = document._importNode(formMaster, true);
693                         replyItem.append(formEl);
694                         list.append(replyItem); // *after* the placeholder
695
696                         var form = replyForm = $(formEl);
697                         SN.Init.NoticeFormSetup(form);
698
699                         nextStep();
700                     };
701                     if (SN.C.I.NoticeFormMaster) {
702                         // We've already saved a master copy of the form.
703                         // Clone it in!
704                         intermediateStep(SN.C.I.NoticeFormMaster);
705                     } else {
706                         // Fetch a fresh copy of the notice form over AJAX.
707                         // Warning: this can have a delay, which looks bad.
708                         // @fixme this fallback may or may not work
709                         var url = $('#form_notice').attr('action');
710                         $.get(url, {ajax: 1}, function(data, textStatus, xhr) {
711                             intermediateStep($('form', data)[0]);
712                         });
713                     }
714                 }
715             }
716         },
717
718         NoticeInlineReplyPlaceholder: function(notice) {
719             var list = notice.find('ul.threaded-replies');
720             if (list.length == 0) {
721                 list = $('<ul class="notices threaded-replies xoxo"></ul>');
722                 notice.append(list);
723                 list = notice.find('ul.threaded-replies');
724             }
725             var placeholder = $('<li class="notice-reply-placeholder">' +
726                                     '<input class="placeholder">' +
727                                 '</li>');
728             placeholder.find('input')
729                 .val(SN.msg('reply_placeholder'));
730             list.append(placeholder);
731         },
732
733         /**
734          * Setup function -- DOES NOT apply immediately.
735          *
736          * Sets up event handlers for inline reply mini-form placeholders.
737          * Uses 'live' rather than 'bind', so applies to future as well as present items.
738          */
739         NoticeInlineReplySetup: function() {
740             $('li.notice-reply-placeholder input')
741                 .live('focus', function() {
742                     var notice = $(this).closest('li.notice');
743                     SN.U.NoticeInlineReplyTrigger(notice);
744                     return false;
745                 });
746             $('li.notice-reply-comments a')
747                 .live('click', function() {
748                     var url = $(this).attr('href');
749                     var area = $(this).closest('.threaded-replies');
750                     $.get(url, {ajax: 1}, function(data, textStatus, xhr) {
751                         var replies = $('.threaded-replies', data);
752                         if (replies.length) {
753                             area.replaceWith(document._importNode(replies[0], true));
754                         }
755                     });
756                     return false;
757                 });
758         },
759
760         /**
761          * Setup function -- DOES NOT trigger actions immediately.
762          *
763          * Sets up event handlers for repeat forms to toss up a confirmation
764          * popout before submitting.
765          *
766          * Uses 'live' rather than 'bind', so applies to future as well as present items.
767          */
768         NoticeRepeat: function() {
769             $('.form_repeat').live('click', function(e) {
770                 e.preventDefault();
771
772                 SN.U.NoticeRepeatConfirmation($(this));
773                 return false;
774             });
775         },
776
777         /**
778          * Shows a confirmation dialog box variant of the repeat button form.
779          * This seems to use a technique where the repeat form contains
780          * _both_ a standalone button _and_ text and buttons for a dialog.
781          * The dialog will close after its copy of the form is submitted,
782          * or if you click its 'close' button.
783          *
784          * The dialog is created by duplicating the original form and changing
785          * its style; while clever, this is hard to generalize and probably
786          * duplicates a lot of unnecessary HTML output.
787          *
788          * @fixme create confirmation dialogs through a generalized interface
789          * that can be reused instead of hardcoded text and styles.
790          *
791          * @param {jQuery} form
792          */
793         NoticeRepeatConfirmation: function(form) {
794             var submit_i = form.find('.submit');
795
796             var submit = submit_i.clone();
797             submit
798                 .addClass('submit_dialogbox')
799                 .removeClass('submit');
800             form.append(submit);
801             submit.bind('click', function() { SN.U.FormXHR(form); return false; });
802
803             submit_i.hide();
804
805             form
806                 .addClass('dialogbox')
807                 .append('<button class="close">&#215;</button>')
808                 .closest('.notice-options')
809                     .addClass('opaque');
810
811             form.find('button.close').click(function(){
812                 $(this).remove();
813
814                 form
815                     .removeClass('dialogbox')
816                     .closest('.notice-options')
817                         .removeClass('opaque');
818
819                 form.find('.submit_dialogbox').remove();
820                 form.find('.submit').show();
821
822                 return false;
823             });
824         },
825
826         /**
827          * Setup function -- DOES NOT trigger actions immediately.
828          *
829          * Goes through all notices currently displayed and sets up attachment
830          * handling if needed.
831          */
832         NoticeAttachments: function() {
833             $('.notice a.attachment').each(function() {
834                 SN.U.NoticeWithAttachment($(this).closest('.notice'));
835             });
836         },
837
838         /**
839          * Setup function -- DOES NOT trigger actions immediately.
840          *
841          * Sets up special attachment link handling if needed. Currently this
842          * consists only of making the "more" button used for OStatus message
843          * cropping turn into an auto-expansion button that loads the full
844          * text from an attachment file.
845          *
846          * @param {jQuery} notice
847          */
848         NoticeWithAttachment: function(notice) {
849             if (notice.find('.attachment').length === 0) {
850                 return;
851             }
852
853             var attachment_more = notice.find('.attachment.more');
854             if (attachment_more.length > 0) {
855                 $(attachment_more[0]).click(function() {
856                     var m = $(this);
857                     m.addClass(SN.C.S.Processing);
858                     $.get(m.attr('href')+'/ajax', null, function(data) {
859                         m.parent('.entry-content').html($(data).find('#attachment_view .entry-content').html());
860                     });
861
862                     return false;
863                 }).attr('title', SN.msg('showmore_tooltip'));
864             }
865         },
866
867         /**
868          * Setup function -- DOES NOT trigger actions immediately.
869          *
870          * Sets up event handlers for the file-attachment widget in the
871          * new notice form. When a file is selected, a box will be added
872          * below the text input showing the filename and, if supported
873          * by the browser, a thumbnail preview.
874          *
875          * This preview box will also allow removing the attachment
876          * prior to posting.
877          *
878          * @param {jQuery} form
879          */
880         NoticeDataAttach: function(form) {
881             var NDA = form.find('input[type=file]');
882             NDA.change(function(event) {
883                 form.find('.attach-status').remove();
884
885                 var filename = $(this).val();
886                 if (!filename) {
887                     // No file -- we've been tricked!
888                     return false;
889                 }
890
891                 var attachStatus = $('<div class="attach-status '+SN.C.S.Success+'"><code></code> <button class="close">&#215;</button></div>');
892                 attachStatus.find('code').text(filename);
893                 attachStatus.find('button').click(function(){
894                     attachStatus.remove();
895                     NDA.val('');
896
897                     return false;
898                 });
899                 form.append(attachStatus);
900
901                 if (typeof this.files == "object") {
902                     // Some newer browsers will let us fetch the files for preview.
903                     for (var i = 0; i < this.files.length; i++) {
904                         SN.U.PreviewAttach(form, this.files[i]);
905                     }
906                 }
907             });
908         },
909
910         /**
911          * Get PHP's MAX_FILE_SIZE setting for this form;
912          * used to apply client-side file size limit checks.
913          *
914          * @param {jQuery} form
915          * @return int max size in bytes; 0 or negative means no limit
916          */
917         maxFileSize: function(form) {
918             var max = $(form).find('input[name=MAX_FILE_SIZE]').attr('value');
919             if (max) {
920                 return parseInt(max);
921             } else {
922                 return 0;
923             }
924         },
925
926         /**
927          * For browsers with FileAPI support: make a thumbnail if possible,
928          * and append it into the attachment display widget.
929          *
930          * Known good:
931          * - Firefox 3.6.6, 4.0b7
932          * - Chrome 8.0.552.210
933          *
934          * Known ok metadata, can't get contents:
935          * - Safari 5.0.2
936          *
937          * Known fail:
938          * - Opera 10.63, 11 beta (no input.files interface)
939          *
940          * @param {jQuery} form
941          * @param {File} file
942          *
943          * @todo use configured thumbnail size
944          * @todo detect pixel size?
945          * @todo should we render a thumbnail to a canvas and then use the smaller image?
946          */
947         PreviewAttach: function(form, file) {
948             var tooltip = file.type + ' ' + Math.round(file.size / 1024) + 'KB';
949             var preview = true;
950
951             var blobAsDataURL;
952             if (typeof window.createObjectURL != "undefined") {
953                 /**
954                  * createObjectURL lets us reference the file directly from an <img>
955                  * This produces a compact URL with an opaque reference to the file,
956                  * which we can reference immediately.
957                  *
958                  * - Firefox 3.6.6: no
959                  * - Firefox 4.0b7: no
960                  * - Safari 5.0.2: no
961                  * - Chrome 8.0.552.210: works!
962                  */
963                 blobAsDataURL = function(blob, callback) {
964                     callback(window.createObjectURL(blob));
965                 }
966             } else if (typeof window.FileReader != "undefined") {
967                 /**
968                  * FileAPI's FileReader can build a data URL from a blob's contents,
969                  * but it must read the file and build it asynchronously. This means
970                  * we'll be passing a giant data URL around, which may be inefficient.
971                  *
972                  * - Firefox 3.6.6: works!
973                  * - Firefox 4.0b7: works!
974                  * - Safari 5.0.2: no
975                  * - Chrome 8.0.552.210: works!
976                  */
977                 blobAsDataURL = function(blob, callback) {
978                     var reader = new FileReader();
979                     reader.onload = function(event) {
980                         callback(reader.result);
981                     }
982                     reader.readAsDataURL(blob);
983                 }
984             } else {
985                 preview = false;
986             }
987
988             var imageTypes = ['image/png', 'image/jpeg', 'image/gif', 'image/svg+xml'];
989             if ($.inArray(file.type, imageTypes) == -1) {
990                 // We probably don't know how to show the file.
991                 preview = false;
992             }
993
994             var maxSize = 8 * 1024 * 1024;
995             if (file.size > maxSize) {
996                 // Don't kill the browser trying to load some giant image.
997                 preview = false;
998             }
999
1000             if (preview) {
1001                 blobAsDataURL(file, function(url) {
1002                     var img = $('<img>')
1003                         .attr('title', tooltip)
1004                         .attr('alt', tooltip)
1005                         .attr('src', url)
1006                         .attr('style', 'height: 120px');
1007                     form.find('.attach-status').append(img);
1008                 });
1009             } else {
1010                 var img = $('<div></div>').text(tooltip);
1011                 form.find('.attach-status').append(img);
1012             }
1013         },
1014
1015         /**
1016          * Setup function -- DOES NOT trigger actions immediately.
1017          *
1018          * Initializes state for the location-lookup features in the
1019          * new-notice form. Seems to set up some event handlers for
1020          * triggering lookups and using the new values.
1021          *
1022          * @param {jQuery} form
1023          *
1024          * @fixme tl;dr
1025          * @fixme there's not good visual state update here, so users have a
1026          *        hard time figuring out if it's working or fixing if it's wrong.
1027          *
1028          */
1029         NoticeLocationAttach: function(form) {
1030             // @fixme this should not be tied to the main notice form, as there may be multiple notice forms...
1031             var NLat = form.find('[name=lat]')
1032             var NLon = form.find('[name=lon]')
1033             var NLNS = form.find('[name=location_ns]').val();
1034             var NLID = form.find('[name=location_id]').val();
1035             var NLN = ''; // @fixme
1036             var NDGe = form.find('[name=notice_data-geo]');
1037             var check = form.find('[name=notice_data-geo]');
1038             var label = form.find('label.notice_data-geo');
1039
1040             function removeNoticeDataGeo(error) {
1041                 label
1042                     .attr('title', jQuery.trim(label.text()))
1043                     .removeClass('checked');
1044
1045                 form.find('[name=lat]').val('');
1046                 form.find('[name=lon]').val('');
1047                 form.find('[name=location_ns]').val('');
1048                 form.find('[name=location_id]').val('');
1049                 form.find('[name=notice_data-geo]').attr('checked', false);
1050
1051                 $.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
1052
1053                 if (error) {
1054                     form.find('.geo_status_wrapper').removeClass('success').addClass('error');
1055                     form.find('.geo_status_wrapper .geo_status').text(error);
1056                 } else {
1057                     form.find('.geo_status_wrapper').remove();
1058                 }
1059             }
1060
1061             function getJSONgeocodeURL(geocodeURL, data) {
1062                 SN.U.NoticeGeoStatus(form, 'Looking up place name...');
1063                 $.getJSON(geocodeURL, data, function(location) {
1064                     var lns, lid;
1065
1066                     if (typeof(location.location_ns) != 'undefined') {
1067                         form.find('[name=location_ns]').val(location.location_ns);
1068                         lns = location.location_ns;
1069                     }
1070
1071                     if (typeof(location.location_id) != 'undefined') {
1072                         form.find('[name=location_id]').val(location.location_id);
1073                         lid = location.location_id;
1074                     }
1075
1076                     if (typeof(location.name) == 'undefined') {
1077                         NLN_text = data.lat + ';' + data.lon;
1078                     }
1079                     else {
1080                         NLN_text = location.name;
1081                     }
1082
1083                     SN.U.NoticeGeoStatus(form, NLN_text, data.lat, data.lon, location.url);
1084                     label
1085                         .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
1086
1087                     form.find('[name=lat]').val(data.lat);
1088                     form.find('[name=lon]').val(data.lon);
1089                     form.find('[name=location_ns]').val(lns);
1090                     form.find('[name=location_id]').val(lid);
1091                     form.find('[name=notice_data-geo]').attr('checked', true);
1092
1093                     var cookieValue = {
1094                         NLat: data.lat,
1095                         NLon: data.lon,
1096                         NLNS: lns,
1097                         NLID: lid,
1098                         NLN: NLN_text,
1099                         NLNU: location.url,
1100                         NDG: true
1101                     };
1102
1103                     $.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue), { path: '/' });
1104                 });
1105             }
1106
1107             if (check.length > 0) {
1108                 if ($.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1109                     check.attr('checked', false);
1110                 }
1111                 else {
1112                     check.attr('checked', true);
1113                 }
1114
1115                 var NGW = form.find('.notice_data-geo_wrap');
1116                 var geocodeURL = NGW.attr('data-api');
1117
1118                 label
1119                     .attr('title', label.text());
1120
1121                 check.change(function() {
1122                     if (check.attr('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === null) {
1123                         label
1124                             .attr('title', NoticeDataGeo_text.ShareDisable)
1125                             .addClass('checked');
1126
1127                         if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1128                             if (navigator.geolocation) {
1129                                 SN.U.NoticeGeoStatus(form, 'Requesting location from browser...');
1130                                 navigator.geolocation.getCurrentPosition(
1131                                     function(position) {
1132                                         form.find('[name=lat]').val(position.coords.latitude);
1133                                         form.find('[name=lon]').val(position.coords.longitude);
1134
1135                                         var data = {
1136                                             lat: position.coords.latitude,
1137                                             lon: position.coords.longitude,
1138                                             token: $('#token').val()
1139                                         };
1140
1141                                         getJSONgeocodeURL(geocodeURL, data);
1142                                     },
1143
1144                                     function(error) {
1145                                         switch(error.code) {
1146                                             case error.PERMISSION_DENIED:
1147                                                 removeNoticeDataGeo('Location permission denied.');
1148                                                 break;
1149                                             case error.TIMEOUT:
1150                                                 //$('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
1151                                                 removeNoticeDataGeo('Location lookup timeout.');
1152                                                 break;
1153                                         }
1154                                     },
1155
1156                                     {
1157                                         timeout: 10000
1158                                     }
1159                                 );
1160                             }
1161                             else {
1162                                 if (NLat.length > 0 && NLon.length > 0) {
1163                                     var data = {
1164                                         lat: NLat,
1165                                         lon: NLon,
1166                                         token: $('#token').val()
1167                                     };
1168
1169                                     getJSONgeocodeURL(geocodeURL, data);
1170                                 }
1171                                 else {
1172                                     removeNoticeDataGeo();
1173                                     check.remove();
1174                                     label.remove();
1175                                 }
1176                             }
1177                         }
1178                         else {
1179                             var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
1180
1181                             form.find('[name=lat]').val(cookieValue.NLat);
1182                             form.find('[name=lon]').val(cookieValue.NLon);
1183                             form.find('[name=location_ns]').val(cookieValue.NLNS);
1184                             form.find('[name=location_id]').val(cookieValue.NLID);
1185                             form.find('[name=notice_data-geo]').attr('checked', cookieValue.NDG);
1186
1187                             SN.U.NoticeGeoStatus(form, cookieValue.NLN, cookieValue.NLat, cookieValue.NLon, cookieValue.NLNU);
1188                             label
1189                                 .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
1190                                 .addClass('checked');
1191                         }
1192                     }
1193                     else {
1194                         removeNoticeDataGeo();
1195                     }
1196                 }).change();
1197             }
1198         },
1199
1200         /**
1201          * Create or update a geolocation status widget in this notice posting form.
1202          *
1203          * @param {jQuery} form
1204          * @param {String} status
1205          * @param {String} lat (optional)
1206          * @param {String} lon (optional)
1207          * @param {String} url (optional)
1208          */
1209         NoticeGeoStatus: function(form, status, lat, lon, url)
1210         {
1211             var wrapper = form.find('.geo_status_wrapper');
1212             if (wrapper.length == 0) {
1213                 wrapper = $('<div class="'+SN.C.S.Success+' geo_status_wrapper"><button class="close" style="float:right">&#215;</button><div class="geo_status"></div></div>');
1214                 wrapper.find('button.close').click(function() {
1215                     form.find('[name=notice_data-geo]').removeAttr('checked').change();
1216                     return false;
1217                 });
1218                 form.append(wrapper);
1219             }
1220             var label;
1221             if (url) {
1222                 label = $('<a></a>').attr('href', url);
1223             } else {
1224                 label = $('<span></span>');
1225             }
1226             label.text(status);
1227             if (lat || lon) {
1228                 var latlon = lat + ';' + lon;
1229                 label.attr('title', latlon);
1230                 if (!status) {
1231                     label.text(latlon)
1232                 }
1233             }
1234             wrapper.find('.geo_status').empty().append(label);
1235         },
1236
1237         /**
1238          * Setup function -- DOES NOT trigger actions immediately.
1239          *
1240          * Initializes event handlers for the "Send direct message" link on
1241          * profile pages, setting it up to display a dialog box when clicked.
1242          *
1243          * Unlike the repeat confirmation form, this appears to fetch
1244          * the form _from the original link target_, so the form itself
1245          * doesn't need to be in the current document.
1246          *
1247          * @fixme breaks ability to open link in new window?
1248          */
1249         NewDirectMessage: function() {
1250             NDM = $('.entity_send-a-message a');
1251             NDM.attr({'href':NDM.attr('href')+'&ajax=1'});
1252             NDM.bind('click', function() {
1253                 var NDMF = $('.entity_send-a-message form');
1254                 if (NDMF.length === 0) {
1255                     $(this).addClass(SN.C.S.Processing);
1256                     $.get(NDM.attr('href'), null, function(data) {
1257                         $('.entity_send-a-message').append(document._importNode($('form', data)[0], true));
1258                         NDMF = $('.entity_send-a-message .form_notice');
1259                         SN.U.FormNoticeXHR(NDMF);
1260                         SN.U.FormNoticeEnhancements(NDMF);
1261                         NDMF.append('<button class="close">&#215;</button>');
1262                         $('.entity_send-a-message button').click(function(){
1263                             NDMF.hide();
1264                             return false;
1265                         });
1266                         NDM.removeClass(SN.C.S.Processing);
1267                     });
1268                 }
1269                 else {
1270                     NDMF.show();
1271                     $('.entity_send-a-message textarea').focus();
1272                 }
1273                 return false;
1274             });
1275         },
1276
1277         /**
1278          * Return a date object with the current local time on the
1279          * given year, month, and day.
1280          *
1281          * @param {number} year: 4-digit year
1282          * @param {number} month: 0 == January
1283          * @param {number} day: 1 == 1
1284          * @return {Date}
1285          */
1286         GetFullYear: function(year, month, day) {
1287             var date = new Date();
1288             date.setFullYear(year, month, day);
1289
1290             return date;
1291         },
1292
1293         /**
1294          * Some sort of object interface for storing some structured
1295          * information in a cookie.
1296          *
1297          * Appears to be used to save the last-used login nickname?
1298          * That's something that browsers usually take care of for us
1299          * these days, do we really need to do it? Does anything else
1300          * use this interface?
1301          *
1302          * @fixme what is this?
1303          * @fixme should this use non-cookie local storage when available?
1304          */
1305         StatusNetInstance: {
1306             /**
1307              * @fixme what is this?
1308              */
1309             Set: function(value) {
1310                 var SNI = SN.U.StatusNetInstance.Get();
1311                 if (SNI !== null) {
1312                     value = $.extend(SNI, value);
1313                 }
1314
1315                 $.cookie(
1316                     SN.C.S.StatusNetInstance,
1317                     JSON.stringify(value),
1318                     {
1319                         path: '/',
1320                         expires: SN.U.GetFullYear(2029, 0, 1)
1321                     });
1322             },
1323
1324             /**
1325              * @fixme what is this?
1326              */
1327             Get: function() {
1328                 var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
1329                 if (cookieValue !== null) {
1330                     return JSON.parse(cookieValue);
1331                 }
1332                 return null;
1333             },
1334
1335             /**
1336              * @fixme what is this?
1337              */
1338             Delete: function() {
1339                 $.cookie(SN.C.S.StatusNetInstance, null);
1340             }
1341         },
1342
1343         /**
1344          * Check if the current page is a timeline where the current user's
1345          * posts should be displayed immediately on success.
1346          *
1347          * @fixme this should be done in a saner way, with machine-readable
1348          * info about what page we're looking at.
1349          *
1350          * @param {DOMElement} notice: HTML chunk with formatted notice
1351          * @return boolean
1352          */
1353         belongsOnTimeline: function(notice) {
1354             var action = $("body").attr('id');
1355             if (action == 'public') {
1356                 return true;
1357             }
1358
1359             var profileLink = $('#nav_profile a').attr('href');
1360             if (profileLink) {
1361                 var authorUrl = $(notice).find('.vcard.author a.url').attr('href');
1362                 if (authorUrl == profileLink) {
1363                     if (action == 'all' || action == 'showstream') {
1364                         // Posts always show on your own friends and profile streams.
1365                         return true;
1366                     }
1367                 }
1368             }
1369
1370             // @fixme tag, group, reply timelines should be feasible as well.
1371             // Mismatch between id-based and name-based user/group links currently complicates
1372             // the lookup, since all our inline mentions contain the absolute links but the
1373             // UI links currently on the page use malleable names.
1374
1375             return false;
1376         },
1377
1378         /**
1379          * Switch to another active input sub-form.
1380          * This will hide the current form (if any), show the new one, and
1381          * update the input type tab selection state.
1382          *
1383          * @param {String} tag
1384          */
1385         switchInputFormTab: function(tag) {
1386             // The one that's current isn't current anymore
1387             $('.input_form_nav_tab.current').removeClass('current');
1388             if (tag == 'placeholder') {
1389                 // Hack: when showing the placeholder, mark the tab
1390                 // as current for 'Status'.
1391                 $('#input_form_nav_status').addClass('current');
1392             } else {
1393                 $('#input_form_nav_'+tag).addClass('current');
1394             }
1395
1396             // Don't remove 'current' if we also have the "nonav" class.
1397             // An example would be the message input form. removing
1398             // 'current' will cause the form to vanish from the page.
1399             var nonav = $('.input_form.current.nonav');
1400             if (nonav.length > 0) {
1401                 return;
1402             }
1403
1404             $('.input_form.current').removeClass('current');
1405             $('#input_form_'+tag)
1406                 .addClass('current')
1407                 .find('.ajax-notice').each(function() {
1408                     var form = $(this);
1409                     SN.Init.NoticeFormSetup(form);
1410                 })
1411                 .find('textarea:first').focus();
1412         }
1413     },
1414
1415     Init: {
1416         /**
1417          * If user is logged in, run setup code for the new notice form:
1418          *
1419          *  - char counter
1420          *  - AJAX submission
1421          *  - location events
1422          *  - file upload events
1423          */
1424         NoticeForm: function() {
1425             if ($('body.user_in').length > 0) {
1426                 // SN.Init.NoticeFormSetup() will get run
1427                 // when forms get displayed for the first time...
1428
1429                 // Hack to initialize the placeholder at top
1430                 $('#input_form_placeholder input.placeholder').focus(function() {
1431                     SN.U.switchInputFormTab("status");
1432                 });
1433
1434                 // Make inline reply forms self-close when clicking out.
1435                 $('body').bind('click', function(e) {
1436                     var currentForm = $('#content .input_forms div.current');
1437                     if (currentForm.length > 0) {
1438                         if ($('#content .input_forms').has(e.target).length == 0) {
1439                             // If all fields are empty, switch back to the placeholder.
1440                             var fields = currentForm.find('textarea, input[type=text], input[type=""]');
1441                             var anything = false;
1442                             fields.each(function() {
1443                                 anything = anything || $(this).val();
1444                             });
1445                             if (!anything) {
1446                                 SN.U.switchInputFormTab("placeholder");
1447                             }
1448                         }
1449                     }
1450
1451                     var openReplies = $('li.notice-reply');
1452                     if (openReplies.length > 0) {
1453                         var target = $(e.target);
1454                         openReplies.each(function() {
1455                             // Did we click outside this one?
1456                             var replyItem = $(this);
1457                             if (replyItem.has(e.target).length == 0) {
1458                                 var textarea = replyItem.find('.notice_data-text:first');
1459                                 var cur = $.trim(textarea.val());
1460                                 // Only close if there's been no edit.
1461                                 if (cur == '' || cur == textarea.data('initialText')) {
1462                                     var parentNotice = replyItem.closest('li.notice');
1463                                     replyItem.remove();
1464                                     parentNotice.find('li.notice-reply-placeholder').show();
1465                                 }
1466                             }
1467                         });
1468                     }
1469                 });
1470             }
1471         },
1472
1473         /**
1474          * Encapsulate notice form setup for a single form.
1475          * Plugins can add extra setup by monkeypatching this
1476          * function.
1477          *
1478          * @param {jQuery} form
1479          */
1480         NoticeFormSetup: function(form) {
1481             if (!form.data('NoticeFormSetup')) {
1482                 SN.U.NoticeLocationAttach(form);
1483                 SN.U.FormNoticeXHR(form);
1484                 SN.U.FormNoticeEnhancements(form);
1485                 SN.U.NoticeDataAttach(form);
1486                 form.data('NoticeFormSetup', true);
1487             }
1488         },
1489
1490         /**
1491          * Run setup code for notice timeline views items:
1492          *
1493          * - AJAX submission for fave/repeat/reply (if logged in)
1494          * - Attachment link extras ('more' links)
1495          */
1496         Notices: function() {
1497             if ($('body.user_in').length > 0) {
1498                 var masterForm = $('.form_notice:first');
1499                 if (masterForm.length > 0) {
1500                     SN.C.I.NoticeFormMaster = document._importNode(masterForm[0], true);
1501                 }
1502                 SN.U.NoticeRepeat();
1503                 SN.U.NoticeReply();
1504                 SN.U.NoticeInlineReplySetup();
1505             }
1506
1507             SN.U.NoticeAttachments();
1508         },
1509
1510         /**
1511          * Run setup code for user & group profile page header area if logged in:
1512          *
1513          * - AJAX submission for sub/unsub/join/leave/nudge
1514          * - AJAX form popup for direct-message
1515          */
1516         EntityActions: function() {
1517             if ($('body.user_in').length > 0) {
1518                 $('.form_user_subscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1519                 $('.form_user_unsubscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1520                 $('.form_group_join').live('click', function() { SN.U.FormXHR($(this)); return false; });
1521                 $('.form_group_leave').live('click', function() { SN.U.FormXHR($(this)); return false; });
1522                 $('.form_user_nudge').live('click', function() { SN.U.FormXHR($(this)); return false; });
1523                 $('.form_peopletag_subscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1524                 $('.form_peopletag_unsubscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1525                 $('.form_user_add_peopletag').live('click', function() { SN.U.FormXHR($(this)); return false; });
1526                 $('.form_user_remove_peopletag').live('click', function() { SN.U.FormXHR($(this)); return false; });
1527
1528                 SN.U.NewDirectMessage();
1529             }
1530         },
1531
1532         ProfileSearch: function() {
1533             if ($('body.user_in').length > 0) {
1534                 $('.form_peopletag_edit_user_search input.submit').live('click', function() {
1535                     SN.U.FormProfileSearchXHR($(this).parents('form')); return false;
1536                 });
1537             }
1538         },
1539
1540         /**
1541          * Run setup code for login form:
1542          *
1543          * - loads saved last-used-nickname from cookie
1544          * - sets event handler to save nickname to cookie on submit
1545          *
1546          * @fixme is this necessary? Browsers do their own form saving these days.
1547          */
1548         Login: function() {
1549             if (SN.U.StatusNetInstance.Get() !== null) {
1550                 var nickname = SN.U.StatusNetInstance.Get().Nickname;
1551                 if (nickname !== null) {
1552                     $('#form_login #nickname').val(nickname);
1553                 }
1554             }
1555
1556             $('#form_login').bind('submit', function() {
1557                 SN.U.StatusNetInstance.Set({Nickname: $('#form_login #nickname').val()});
1558                 return true;
1559             });
1560         },
1561
1562         /**
1563          * Called when a people tag edit box is shown in the interface
1564          *
1565          * - loads the jQuery UI autocomplete plugin
1566          * - sets event handlers for tag completion
1567          *
1568          */
1569         PeopletagAutocomplete: function(txtBox) {
1570             var split = function(val) {
1571                 return val.split( /\s+/ );
1572             }
1573             var extractLast = function(term) {
1574                 return split(term).pop();
1575             }
1576
1577             // don't navigate away from the field on tab when selecting an item
1578             txtBox.live( "keydown", function( event ) {
1579                 if ( event.keyCode === $.ui.keyCode.TAB &&
1580                         $(this).data( "autocomplete" ).menu.active ) {
1581                     event.preventDefault();
1582                 }
1583             }).autocomplete({
1584                 minLength: 0,
1585                 source: function(request, response) {
1586                             // delegate back to autocomplete, but extract the last term
1587                             response($.ui.autocomplete.filter(
1588                                     SN.C.PtagACData, extractLast(request.term)));
1589                     },
1590                     focus: function() {
1591                         return false;
1592                 },
1593                     select: function(event, ui) {
1594                             var terms = split(this.value);
1595                             terms.pop();
1596                             terms.push(ui.item.value);
1597                             terms.push("");
1598                             this.value = terms.join(" ");
1599                             return false;
1600                     }
1601             }).data('autocomplete')._renderItem = function(ul, item) {
1602                     // FIXME: with jQuery UI you cannot have it highlight the match
1603                     var _l = '<a class="ptag-ac-line-tag">' + item.tag
1604                           + ' <em class="privacy_mode">' + item.mode + '</em>'
1605                           + '<span class="freq">' + item.freq + '</span></a>'
1606
1607                             return $("<li/>")
1608                                 .addClass('mode-' + item.mode)
1609                             .addClass('ptag-ac-line')
1610                             .data("item.autocomplete", item)
1611                             .append(_l)
1612                             .appendTo(ul);
1613                     }
1614         },
1615
1616         /**
1617          * Run setup for the ajax people tags editor
1618          *
1619          * - show edit button
1620          * - set event handle for click on edit button
1621          *   - loads people tag autocompletion data if not already present
1622          *     or if it is stale.
1623          *
1624          */
1625         PeopleTags: function() {
1626             $('.user_profile_tags .editable').append($('<button class="peopletags_edit_button"/>'));
1627
1628             $('.peopletags_edit_button').live('click', function() {
1629                 var form = $(this).parents('dd').eq(0).find('form');
1630                 // We can buy time from the above animation
1631
1632                 $.ajax({
1633                     url: _peopletagAC,
1634                     dataType: 'json',
1635                     data: {token: $('#token').val()},
1636                     ifModified: true,
1637                     success: function(data) {
1638                         // item.label is used to match
1639                         for (i=0; i < data.length; i++) {
1640                             data[i].label = data[i].tag;
1641                         }
1642
1643                         SN.C.PtagACData = data;
1644                         SN.Init.PeopletagAutocomplete(form.find('#tags'));
1645                     }
1646                 });
1647
1648                 $(this).parents('ul').eq(0).fadeOut(200, function() {form.fadeIn(200).find('input#tags')});
1649             });
1650
1651             $('.user_profile_tags form .submit').live('click', function() {
1652                 SN.U.FormPeopletagsXHR($(this).parents('form')); return false;
1653             });
1654         },
1655
1656         /**
1657          * Set up any generic 'ajax' form so it submits via AJAX with auto-replacement.
1658          */
1659         AjaxForms: function() {
1660             $('form.ajax').live('submit', function() {
1661                 SN.U.FormXHR($(this));
1662                 return false;
1663             });
1664             $('form.ajax input[type=submit]').live('click', function() {
1665                 // Some forms rely on knowing which submit button was clicked.
1666                 // Save a hidden input field which'll be picked up during AJAX
1667                 // submit...
1668                 var button = $(this);
1669                 var form = button.closest('form');
1670                 form.find('.hidden-submit-button').remove();
1671                 $('<input class="hidden-submit-button" type="hidden" />')
1672                     .attr('name', button.attr('name'))
1673                     .val(button.val())
1674                     .appendTo(form);
1675             });
1676         },
1677
1678         /**
1679          * Add logic to any file upload forms to handle file size limits,
1680          * on browsers that support basic FileAPI.
1681          */
1682         UploadForms: function () {
1683             $('input[type=file]').change(function(event) {
1684                 if (typeof this.files == "object" && this.files.length > 0) {
1685                     var size = 0;
1686                     for (var i = 0; i < this.files.length; i++) {
1687                         size += this.files[i].size;
1688                     }
1689
1690                     var max = SN.U.maxFileSize($(this.form));
1691                     if (max > 0 && size > max) {
1692                         var msg = 'File too large: maximum upload size is %d bytes.';
1693                         alert(msg.replace('%d', max));
1694
1695                         // Clear the files.
1696                         $(this).val('');
1697                         event.preventDefault();
1698                         return false;
1699                     }
1700                 }
1701             });
1702         },
1703
1704         CheckBoxes: function() {
1705             $("span[class='checkbox-wrapper']").addClass("unchecked");
1706             $(".checkbox-wrapper").click(function(){
1707                 if($(this).children("input").attr("checked")){
1708                     // uncheck
1709                     $(this).children("input").attr({checked: ""});
1710                     $(this).removeClass("checked");
1711                     $(this).addClass("unchecked");
1712                     $(this).children("label").text("Private?");
1713                 }else{
1714                     // check
1715                     $(this).children("input").attr({checked: "checked"});
1716                     $(this).removeClass("unchecked");
1717                     $(this).addClass("checked");
1718                     $(this).children("label").text("Private");
1719                 }
1720             });
1721         }
1722     }
1723 };
1724
1725 /**
1726  * Run initialization functions on DOM-ready.
1727  *
1728  * Note that if we're waiting on other scripts to load, this won't happen
1729  * until that's done. To load scripts asynchronously without delaying setup,
1730  * don't start them loading until after DOM-ready time!
1731  */
1732 $(document).ready(function(){
1733     SN.Init.AjaxForms();
1734     SN.Init.UploadForms();
1735     SN.Init.CheckBoxes();
1736     if ($('.'+SN.C.S.FormNotice).length > 0) {
1737         SN.Init.NoticeForm();
1738     }
1739     if ($('#content .notices').length > 0) {
1740         SN.Init.Notices();
1741     }
1742     if ($('#content .entity_actions').length > 0) {
1743         SN.Init.EntityActions();
1744     }
1745     if ($('#form_login').length > 0) {
1746         SN.Init.Login();
1747     }
1748     if ($('#profile_search_results').length > 0) {
1749         SN.Init.ProfileSearch();
1750     }
1751     if ($('.user_profile_tags .editable').length > 0) {
1752         SN.Init.PeopleTags();
1753     }
1754 });
1755