]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - js/util.js
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into inline-comments
[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         },
36
37         /**
38          * @fixme are these worth the trouble? They seem to mostly just duplicate
39          * themselves while slightly obscuring the actual selector, so it's hard
40          * to pop over to the HTML and find something.
41          *
42          * In theory, minification could reduce them to shorter variable names,
43          * but at present that doesn't happen with yui-compressor.
44          */
45         S: { // Selector
46             Disabled: 'disabled',
47             Warning: 'warning',
48             Error: 'error',
49             Success: 'success',
50             Processing: 'processing',
51             CommandResult: 'command_result',
52             FormNotice: 'form_notice',
53             NoticeDataText: 'notice_data-text',
54             NoticeTextCount: 'notice_text-count',
55             NoticeInReplyTo: 'notice_in-reply-to',
56             NoticeDataAttach: 'notice_data-attach',
57             NoticeDataAttachSelected: 'notice_data-attach_selected',
58             NoticeActionSubmit: 'notice_action-submit',
59             NoticeLat: 'notice_data-lat',
60             NoticeLon: 'notice_data-lon',
61             NoticeLocationId: 'notice_data-location_id',
62             NoticeLocationNs: 'notice_data-location_ns',
63             NoticeGeoName: 'notice_data-geo_name',
64             NoticeDataGeo: 'notice_data-geo',
65             NoticeDataGeoCookie: 'NoticeDataGeo',
66             NoticeDataGeoSelected: 'notice_data-geo_selected',
67             StatusNetInstance:'StatusNetInstance'
68         }
69     },
70
71     /**
72      * Map of localized message strings exported to script from the PHP
73      * side via Action::getScriptMessages().
74      *
75      * Retrieve them via SN.msg(); this array is an implementation detail.
76      *
77      * @access private
78      */
79     messages: {},
80
81     /**
82      * Grabs a localized string that's been previously exported to us
83      * from server-side code via Action::getScriptMessages().
84      *
85      * @example alert(SN.msg('coolplugin-failed'));
86      *
87      * @param {String} key: string key name to pull from message index
88      * @return matching localized message string
89      */
90     msg: function(key) {
91         if (typeof SN.messages[key] == "undefined") {
92             return '[' + key + ']';
93         } else {
94             return SN.messages[key];
95         }
96     },
97
98     U: { // Utils
99         /**
100          * Setup function -- DOES NOT trigger actions immediately.
101          *
102          * Sets up event handlers on the new notice form.
103          *
104          * @param {jQuery} form: jQuery object whose first matching element is the form
105          * @access private
106          */
107         FormNoticeEnhancements: function(form) {
108             if (jQuery.data(form[0], 'ElementData') === undefined) {
109                 MaxLength = form.find('#'+SN.C.S.NoticeTextCount).text();
110                 if (typeof(MaxLength) == 'undefined') {
111                      MaxLength = SN.C.I.MaxLength;
112                 }
113                 jQuery.data(form[0], 'ElementData', {MaxLength:MaxLength});
114
115                 SN.U.Counter(form);
116
117                 NDT = form.find('#'+SN.C.S.NoticeDataText);
118
119                 NDT.bind('keyup', function(e) {
120                     SN.U.Counter(form);
121                 });
122
123                 var delayedUpdate= function(e) {
124                     // Cut and paste events fire *before* the operation,
125                     // so we need to trigger an update in a little bit.
126                     // This would be so much easier if the 'change' event
127                     // actually fired every time the value changed. :P
128                     window.setTimeout(function() {
129                         SN.U.Counter(form);
130                     }, 50);
131                 };
132                 // Note there's still no event for mouse-triggered 'delete'.
133                 NDT.bind('cut', delayedUpdate)
134                    .bind('paste', delayedUpdate);
135
136                 NDT.bind('keydown', function(e) {
137                     SN.U.SubmitOnReturn(e, form);
138                 });
139             }
140             else {
141                 form.find('#'+SN.C.S.NoticeTextCount).text(jQuery.data(form[0], 'ElementData').MaxLength);
142             }
143
144             if ($('body')[0].id != 'conversation' && window.location.hash.length === 0 && $(window).scrollTop() == 0) {
145                 form.find('textarea').focus();
146             }
147         },
148
149         /**
150          * To be called from keydown event handler on the notice import form.
151          * Checks if return or enter key was pressed, and if so attempts to
152          * submit the form and cancel standard processing of the enter key.
153          *
154          * @param {Event} event
155          * @param {jQuery} el: jQuery object whose first element is the notice posting form
156          *
157          * @return {boolean} whether to cancel the event? Does this actually pass through?
158          * @access private
159          */
160         SubmitOnReturn: function(event, el) {
161             if (event.keyCode == 13 || event.keyCode == 10) {
162                 el.submit();
163                 event.preventDefault();
164                 event.stopPropagation();
165                 $('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur();
166                 $('body').focus();
167                 return false;
168             }
169             return true;
170         },
171
172         /**
173          * To be called from event handlers on the notice import form.
174          * Triggers an update of the remaining-characters counter.
175          *
176          * Additional counter updates will be suppressed during the
177          * next half-second to avoid flooding the layout engine with
178          * updates, followed by another automatic check.
179          *
180          * The maximum length is pulled from data established by
181          * FormNoticeEnhancements.
182          *
183          * @param {jQuery} form: jQuery object whose first element is the notice posting form
184          * @access private
185          */
186         Counter: function(form) {
187             SN.C.I.FormNoticeCurrent = form;
188
189             var MaxLength = jQuery.data(form[0], 'ElementData').MaxLength;
190
191             if (MaxLength <= 0) {
192                 return;
193             }
194
195             var remaining = MaxLength - SN.U.CharacterCount(form);
196             var counter = form.find('#'+SN.C.S.NoticeTextCount);
197
198             if (remaining.toString() != counter.text()) {
199                 if (!SN.C.I.CounterBlackout || remaining === 0) {
200                     if (counter.text() != String(remaining)) {
201                         counter.text(remaining);
202                     }
203                     if (remaining < 0) {
204                         form.addClass(SN.C.S.Warning);
205                     } else {
206                         form.removeClass(SN.C.S.Warning);
207                     }
208                     // Skip updates for the next 500ms.
209                     // On slower hardware, updating on every keypress is unpleasant.
210                     if (!SN.C.I.CounterBlackout) {
211                         SN.C.I.CounterBlackout = true;
212                         SN.C.I.FormNoticeCurrent = form;
213                         window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);", 500);
214                     }
215                 }
216             }
217         },
218
219         /**
220          * Pull the count of characters in the current edit field.
221          * Plugins replacing the edit control may need to override this.
222          *
223          * @param {jQuery} form: jQuery object whose first element is the notice posting form
224          * @return number of chars
225          */
226         CharacterCount: function(form) {
227             return form.find('#'+SN.C.S.NoticeDataText).val().length;
228         },
229
230         /**
231          * Called internally after the counter update blackout period expires;
232          * runs another update to make sure we didn't miss anything.
233          *
234          * @param {jQuery} form: jQuery object whose first element is the notice posting form
235          * @access private
236          */
237         ClearCounterBlackout: function(form) {
238             // Allow keyup events to poke the counter again
239             SN.C.I.CounterBlackout = false;
240             // Check if the string changed since we last looked
241             SN.U.Counter(form);
242         },
243
244         /**
245          * Helper function to rewrite default HTTP form action URLs to HTTPS
246          * so we can actually fetch them when on an SSL page in ssl=sometimes
247          * mode.
248          *
249          * It would be better to output URLs that didn't hardcode protocol
250          * and hostname in the first place...
251          *
252          * @param {String} url
253          * @return string
254          */
255         RewriteAjaxAction: function(url) {
256             // Quick hack: rewrite AJAX submits to HTTPS if they'd fail otherwise.
257             if (document.location.protocol == 'https:' && url.substr(0, 5) == 'http:') {
258                 return url.replace(/^http:\/\/[^:\/]+/, 'https://' + document.location.host);
259             } else {
260                 return url;
261             }
262         },
263
264         /**
265          * Grabs form data and submits it asynchronously, with 'ajax=1'
266          * parameter added to the rest.
267          *
268          * If a successful response includes another form, that form
269          * will be extracted and copied in, replacing the original form.
270          * If there's no form, the first paragraph will be used.
271          *
272          * @fixme can sometimes explode confusingly if returnd data is bogus
273          * @fixme error handling is pretty vague
274          * @fixme can't submit file uploads
275          *
276          * @param {jQuery} form: jQuery object whose first element is a form
277          *
278          * @access public
279          */
280         FormXHR: function(form) {
281             $.ajax({
282                 type: 'POST',
283                 dataType: 'xml',
284                 url: SN.U.RewriteAjaxAction(form.attr('action')),
285                 data: form.serialize() + '&ajax=1',
286                 beforeSend: function(xhr) {
287                     form
288                         .addClass(SN.C.S.Processing)
289                         .find('.submit')
290                             .addClass(SN.C.S.Disabled)
291                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
292                 },
293                 error: function (xhr, textStatus, errorThrown) {
294                     alert(errorThrown || textStatus);
295                 },
296                 success: function(data, textStatus) {
297                     if (typeof($('form', data)[0]) != 'undefined') {
298                         form_new = document._importNode($('form', data)[0], true);
299                         form.replaceWith(form_new);
300                     }
301                     else {
302                         form.replaceWith(document._importNode($('p', data)[0], true));
303                     }
304                 }
305             });
306         },
307
308         /**
309          * Setup function -- DOES NOT trigger actions immediately.
310          *
311          * Sets up event handlers for special-cased async submission of the
312          * notice-posting form, including some pre-post validation.
313          *
314          * Unlike FormXHR() this does NOT submit the form immediately!
315          * It sets up event handlers so that any method of submitting the
316          * form (click on submit button, enter, submit() etc) will trigger
317          * it properly.
318          *
319          * Also unlike FormXHR(), this system will use a hidden iframe
320          * automatically to handle file uploads via <input type="file">
321          * controls.
322          *
323          * @fixme tl;dr
324          * @fixme vast swaths of duplicate code and really long variable names clutter this function up real bad
325          * @fixme error handling is unreliable
326          * @fixme cookieValue is a global variable, but probably shouldn't be
327          * @fixme saving the location cache cookies should be split out
328          * @fixme some error messages are hardcoded english: needs i18n
329          * @fixme special-case for bookmarklet is confusing and uses a global var "self". Is this ok?
330          *
331          * @param {jQuery} form: jQuery object whose first element is a form
332          *
333          * @access public
334          */
335         FormNoticeXHR: function(form) {
336             SN.C.I.NoticeDataGeo = {};
337             form.append('<input type="hidden" name="ajax" value="1"/>');
338
339             // Make sure we don't have a mixed HTTP/HTTPS submission...
340             form.attr('action', SN.U.RewriteAjaxAction(form.attr('action')));
341
342             /**
343              * Show a response feedback bit under the new-notice dialog.
344              *
345              * @param {String} cls: CSS class name to use ('error' or 'success')
346              * @param {String} text
347              * @access private
348              */
349             var showFeedback = function(cls, text) {
350                 form.append(
351                     $('<p class="form_response"></p>')
352                         .addClass(cls)
353                         .text(text)
354                 );
355             };
356
357             /**
358              * Hide the previous response feedback, if any.
359              */
360             var removeFeedback = function() {
361                 form.find('.form_response').remove();
362             };
363
364             form.ajaxForm({
365                 dataType: 'xml',
366                 timeout: '60000',
367                 beforeSend: function(formData) {
368                     if (form.find('#'+SN.C.S.NoticeDataText)[0].value.length === 0) {
369                         form.addClass(SN.C.S.Warning);
370                         return false;
371                     }
372                     form
373                         .addClass(SN.C.S.Processing)
374                         .find('#'+SN.C.S.NoticeActionSubmit)
375                             .addClass(SN.C.S.Disabled)
376                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
377
378                     SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val();
379                     SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val();
380                     SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
381                     SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val();
382                     SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked');
383
384                     cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
385
386                     if (cookieValue !== null && cookieValue != 'disabled') {
387                         cookieValue = JSON.parse(cookieValue);
388                         SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat).val();
389                         SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon).val();
390                         if ($('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS)) {
391                             SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS).val();
392                             SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID).val();
393                         }
394                     }
395                     if (cookieValue == 'disabled') {
396                         SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', false).attr('checked');
397                     }
398                     else {
399                         SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', true).attr('checked');
400                     }
401
402                     return true;
403                 },
404                 error: function (xhr, textStatus, errorThrown) {
405                     form
406                         .removeClass(SN.C.S.Processing)
407                         .find('#'+SN.C.S.NoticeActionSubmit)
408                             .removeClass(SN.C.S.Disabled)
409                             .removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
410                     removeFeedback();
411                     if (textStatus == 'timeout') {
412                         // @fixme i18n
413                         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.');
414                     }
415                     else {
416                         var response = SN.U.GetResponseXML(xhr);
417                         if ($('.'+SN.C.S.Error, response).length > 0) {
418                             form.append(document._importNode($('.'+SN.C.S.Error, response)[0], true));
419                         }
420                         else {
421                             if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
422                                 form
423                                     .resetForm()
424                                     .find('#'+SN.C.S.NoticeDataAttachSelected).remove();
425                                 SN.U.FormNoticeEnhancements(form);
426                             }
427                             else {
428                                 // @fixme i18n
429                                 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.');
430                             }
431                         }
432                     }
433                 },
434                 success: function(data, textStatus) {
435                     removeFeedback();
436                     var errorResult = $('#'+SN.C.S.Error, data);
437                     if (errorResult.length > 0) {
438                         showFeedback('error', errorResult.text());
439                     }
440                     else {
441                         if($('body')[0].id == 'bookmarklet') {
442                             // @fixme self is not referenced anywhere?
443                             self.close();
444                         }
445
446                         var commandResult = $('#'+SN.C.S.CommandResult, data);
447                         if (commandResult.length > 0) {
448                             showFeedback('success', commandResult.text());
449                         }
450                         else {
451                             // New notice post was successful. If on our timeline, show it!
452                             var notice = document._importNode($('li', data)[0], true);
453                             var notices = $('#notices_primary .notices');
454                             if (notices.length > 0 && SN.U.belongsOnTimeline(notice)) {
455                                 if ($('#'+notice.id).length === 0) {
456                                     var notice_irt_value = $('#'+SN.C.S.NoticeInReplyTo).val();
457                                     var notice_irt = '#notices_primary #notice-'+notice_irt_value;
458                                     if($('body')[0].id == 'conversation') {
459                                         if(notice_irt_value.length > 0 && $(notice_irt+' .notices').length < 1) {
460                                             $(notice_irt).append('<ul class="notices"></ul>');
461                                         }
462                                         $($(notice_irt+' .notices')[0]).append(notice);
463                                     }
464                                     else {
465                                         notices.prepend(notice);
466                                     }
467                                     $('#'+notice.id)
468                                         .css({display:'none'})
469                                         .fadeIn(2500);
470                                     SN.U.NoticeWithAttachment($('#'+notice.id));
471                                     SN.U.NoticeReplyTo($('#'+notice.id));
472                                 }
473                             }
474                             else {
475                                 // Not on a timeline that this belongs on?
476                                 // Just show a success message.
477                                 showFeedback('success', $('title', data).text());
478                             }
479                         }
480                         form.resetForm();
481                         form.find('#'+SN.C.S.NoticeInReplyTo).val('');
482                         form.find('#'+SN.C.S.NoticeDataAttachSelected).remove();
483                         SN.U.FormNoticeEnhancements(form);
484                     }
485                 },
486                 complete: function(xhr, textStatus) {
487                     form
488                         .removeClass(SN.C.S.Processing)
489                         .find('#'+SN.C.S.NoticeActionSubmit)
490                             .removeAttr(SN.C.S.Disabled)
491                             .removeClass(SN.C.S.Disabled);
492
493                     $('#'+SN.C.S.NoticeLat).val(SN.C.I.NoticeDataGeo.NLat);
494                     $('#'+SN.C.S.NoticeLon).val(SN.C.I.NoticeDataGeo.NLon);
495                     if ($('#'+SN.C.S.NoticeLocationNs)) {
496                         $('#'+SN.C.S.NoticeLocationNs).val(SN.C.I.NoticeDataGeo.NLNS);
497                         $('#'+SN.C.S.NoticeLocationId).val(SN.C.I.NoticeDataGeo.NLID);
498                     }
499                     $('#'+SN.C.S.NoticeDataGeo).attr('checked', SN.C.I.NoticeDataGeo.NDG);
500                 }
501             });
502         },
503
504         /**
505          * Fetch an XML DOM from an XHR's response data.
506          *
507          * Works around unavailable responseXML when document.domain
508          * has been modified by Meteor or other tools, in some but not
509          * all browsers.
510          *
511          * @param {XMLHTTPRequest} xhr
512          * @return DOMDocument
513          */
514         GetResponseXML: function(xhr) {
515             try {
516                 return xhr.responseXML;
517             } catch (e) {
518                 return (new DOMParser()).parseFromString(xhr.responseText, "text/xml");
519             }
520         },
521
522         /**
523          * Setup function -- DOES NOT trigger actions immediately.
524          *
525          * Sets up event handlers on all visible notice's reply buttons to
526          * tweak the new-notice form with needed variables and focus it
527          * when pushed.
528          *
529          * (This replaces the default reply button behavior to submit
530          * directly to a form which comes back with a specialized page
531          * with the form data prefilled.)
532          *
533          * @access private
534          */
535         NoticeReply: function() {
536             if ($('#'+SN.C.S.NoticeDataText).length > 0 && $('#content .notice_reply').length > 0) {
537                 $('#content .notice').each(function() { SN.U.NoticeReplyTo($(this)); });
538             }
539         },
540
541         /**
542          * Setup function -- DOES NOT trigger actions immediately.
543          *
544          * Sets up event handlers on the given notice's reply button to
545          * tweak the new-notice form with needed variables and focus it
546          * when pushed.
547          *
548          * (This replaces the default reply button behavior to submit
549          * directly to a form which comes back with a specialized page
550          * with the form data prefilled.)
551          *
552          * @param {jQuery} notice: jQuery object containing one or more notices
553          * @access private
554          */
555         NoticeReplyTo: function(notice) {
556             notice.find('.notice_reply').live('click', function(e) {
557                 e.preventDefault();
558                 var nickname = ($('.author .nickname', notice).length > 0) ? $($('.author .nickname', notice)[0]) : $('.author .nickname.uid');
559                 /* SN.U.NoticeReplySet(nickname.text(), $($('.notice_id', notice)[0]).text()); */
560                 var id = $($('.notice_id', notice)[0]).text();
561                 SN.U.NoticeInlineReplyTrigger(id, '@' + nickname.text());
562                 return false;
563             });
564         },
565
566         /**
567          * Open up a notice's 
568          * @param {String} id: notice ID
569          * @param {String} initialText
570          */
571         NoticeInlineReplyTrigger: function(id, initialText) {
572             // Find the notice we're replying to...
573             var notice = $('#notice-' + id), parentNotice = notice;
574
575             // Find the threaded replies view we'll be adding to...
576             var list = notice.closest('.notices');
577             if (list.hasClass('threaded-notices')) {
578                 // We're replying to a reply; use reply form on the end of this list.
579                 // We'll add our form at the end of this; grab the root notice.
580                 parentNotice = list.closest('notice');
581             } else {
582                 // We're replying to a parent notice; pull its threaded list
583                 // and we'll add on the end of it. Will add if needed.
584                 list = $('ul.threaded-notices', notice);
585                 if (list.length == 0) {
586                     list = $('<ul class="notices threaded-notices xoxo"></ul>');
587                     notice.append(list);
588                 }
589             }
590
591             // See if the form's already open...
592             var replyForm = $('.notice-reply-form', list);
593             if (replyForm.length == 0) {
594                 // Remove placeholder if any
595                 $('li.notice-reply-placeholder').remove();
596
597                 // Create the reply form entry at the end
598                 var replyItem = $('li.notice-reply', list);
599                 if (replyItem.length == 0) {
600                     replyItem = $('<li class="notice-reply">' +
601                                       '<form class="notice-reply-form" method="post">' +
602                                           '<textarea name="status_textarea"></textarea>' +
603                                           '<div class="controls">' +
604                                           '<input type="hidden" name="token">' +
605                                           '<input type="hidden" name="inreplyto">' +
606                                           '<input type="submit" class="submit">' +
607                                       '</div>' +
608                                       '</form>' +
609                                   '</li>');
610                     replyForm = replyItem.find('form');
611                     replyForm.attr('src', '/mublog/newnotice'); // @fixme
612                     replyForm.find('input[type="submit"]').val(SN.msg('reply_submit'));
613                     if (initialText) {
614                         replyForm.find('textarea').val(initialText + ' ');
615                     }
616                     list.append(replyItem);
617                 }
618             }
619
620             // Override...?
621             replyForm.find('input[name=inreplyto]').val(id);
622
623             // Set focus...
624             var text = replyForm.find('textarea');
625             if (text.length == 0) {
626                 throw "No textarea";
627             }
628             if (initialText) {
629                 var replyto = initialText + ' ';
630                 text.val(replyto + text.val().replace(RegExp(replyto, 'i'), ''));
631             }
632             text.focus();
633             if (text[0].setSelectionRange) {
634                 var len = text.val().length;
635                 text[0].setSelectionRange(len,len);
636             }
637         },
638
639         /**
640          * FIXME OBSOLETE?
641          * Updates the new notice posting form with bits for replying to the
642          * given user. Adds replyto parameter to the form, and a "@foo" to the
643          * text area.
644          *
645          * @fixme replyto is a global variable, but probably shouldn't be
646          *
647          * @param {String} nick
648          * @param {String} id
649          */
650         NoticeReplySet: function(nick,id) {
651             if (nick.match(SN.C.I.PatternUsername)) {
652                 var text = $('#'+SN.C.S.NoticeDataText);
653                 if (text.length > 0) {
654                     replyto = '@' + nick + ' ';
655                     text.val(replyto + text.val().replace(RegExp(replyto, 'i'), ''));
656                     $('#'+SN.C.S.FormNotice+' #'+SN.C.S.NoticeInReplyTo).val(id);
657
658                     text[0].focus();
659                     if (text[0].setSelectionRange) {
660                         var len = text.val().length;
661                         text[0].setSelectionRange(len,len);
662                     }
663                 }
664             }
665         },
666
667         /**
668          * Setup function -- DOES NOT apply immediately.
669          *
670          * Sets up event handlers for favor/disfavor forms to submit via XHR.
671          * Uses 'live' rather than 'bind', so applies to future as well as present items.
672          */
673         NoticeFavor: function() {
674             $('.form_favor').live('click', function() { SN.U.FormXHR($(this)); return false; });
675             $('.form_disfavor').live('click', function() { SN.U.FormXHR($(this)); return false; });
676         },
677
678         NoticeInlineReplyPlaceholder: function(notice) {
679             var id = $($('.notice_id', notice)[0]).text();
680             var list = notice.find('ul.threaded-notices');
681             var placeholder = $('<li class="notice-reply-placeholder">' +
682                                     '<input class="placeholder">' +
683                                 '</li>');
684             placeholder.click(function() {
685                 SN.U.NoticeInlineReplyTrigger(id);
686             });
687             placeholder.find('input').val(SN.msg('reply_comment'));
688             list.append(placeholder);
689         },
690
691         /**
692          * Setup function -- DOES NOT apply immediately.
693          *
694          * Sets up event handlers for favor/disfavor forms to submit via XHR.
695          * Uses 'live' rather than 'bind', so applies to future as well as present items.
696          */
697         NoticeInlineReplySetup: function() {
698             $('.threaded-notices').each(function() {
699                 var list = $(this);
700                 var notice = list.closest('.notice');
701                 SN.U.NoticeInlineReplyPlaceholder(notice);
702             });
703             $('.replyform').live('submit', function(event) {
704                 //SN.U.FormXHR($(this));
705                 var form = $(this);
706                 $.ajax({
707                     type: 'POST',
708                     dataType: 'xml',
709                     url: SN.U.RewriteAjaxAction(form.attr('action')),
710                     data: form.serialize() + '&ajax=1',
711                     beforeSend: function(xhr) {
712                         form
713                             .addClass(SN.C.S.Processing)
714                             .find('.submit')
715                                 .addClass(SN.C.S.Disabled)
716                                 .attr(SN.C.S.Disabled, SN.C.S.Disabled)
717                                 .end()
718                             .find('textarea')
719                                 .addClass(SN.C.S.Disabled)
720                                 .attr(SN.C.S.Disabled, SN.C.S.Disabled);
721                     },
722                     error: function (xhr, textStatus, errorThrown) {
723                         alert(errorThrown || textStatus);
724                     },
725                     success: function(data, textStatus) {
726                         if (typeof($('form', data)[0]) != 'undefined') {
727                             form_new = document._importNode($('form', data)[0], true);
728                             form.replaceWith(form_new);
729                         }
730                         else {
731                             form.replaceWith(document._importNode($('p', data)[0], true));
732                         }
733                     }
734                 });
735                 event.preventDefault();
736                 return false;
737             });
738         },
739
740         /**
741          * Setup function -- DOES NOT trigger actions immediately.
742          *
743          * Sets up event handlers for repeat forms to toss up a confirmation
744          * popout before submitting.
745          *
746          * Uses 'live' rather than 'bind', so applies to future as well as present items.
747          */
748         NoticeRepeat: function() {
749             $('.form_repeat').live('click', function(e) {
750                 e.preventDefault();
751
752                 SN.U.NoticeRepeatConfirmation($(this));
753                 return false;
754             });
755         },
756
757         /**
758          * Shows a confirmation dialog box variant of the repeat button form.
759          * This seems to use a technique where the repeat form contains
760          * _both_ a standalone button _and_ text and buttons for a dialog.
761          * The dialog will close after its copy of the form is submitted,
762          * or if you click its 'close' button.
763          *
764          * The dialog is created by duplicating the original form and changing
765          * its style; while clever, this is hard to generalize and probably
766          * duplicates a lot of unnecessary HTML output.
767          *
768          * @fixme create confirmation dialogs through a generalized interface
769          * that can be reused instead of hardcoded text and styles.
770          *
771          * @param {jQuery} form
772          */
773         NoticeRepeatConfirmation: function(form) {
774             var submit_i = form.find('.submit');
775
776             var submit = submit_i.clone();
777             submit
778                 .addClass('submit_dialogbox')
779                 .removeClass('submit');
780             form.append(submit);
781             submit.bind('click', function() { SN.U.FormXHR(form); return false; });
782
783             submit_i.hide();
784
785             form
786                 .addClass('dialogbox')
787                 .append('<button class="close">&#215;</button>')
788                 .closest('.notice-options')
789                     .addClass('opaque');
790
791             form.find('button.close').click(function(){
792                 $(this).remove();
793
794                 form
795                     .removeClass('dialogbox')
796                     .closest('.notice-options')
797                         .removeClass('opaque');
798
799                 form.find('.submit_dialogbox').remove();
800                 form.find('.submit').show();
801
802                 return false;
803             });
804         },
805
806         /**
807          * Setup function -- DOES NOT trigger actions immediately.
808          *
809          * Goes through all notices currently displayed and sets up attachment
810          * handling if needed.
811          */
812         NoticeAttachments: function() {
813             $('.notice a.attachment').each(function() {
814                 SN.U.NoticeWithAttachment($(this).closest('.notice'));
815             });
816         },
817
818         /**
819          * Setup function -- DOES NOT trigger actions immediately.
820          *
821          * Sets up special attachment link handling if needed. Currently this
822          * consists only of making the "more" button used for OStatus message
823          * cropping turn into an auto-expansion button that loads the full
824          * text from an attachment file.
825          *
826          * @param {jQuery} notice
827          */
828         NoticeWithAttachment: function(notice) {
829             if (notice.find('.attachment').length === 0) {
830                 return;
831             }
832
833             var attachment_more = notice.find('.attachment.more');
834             if (attachment_more.length > 0) {
835                 $(attachment_more[0]).click(function() {
836                     var m = $(this);
837                     m.addClass(SN.C.S.Processing);
838                     $.get(m.attr('href')+'/ajax', null, function(data) {
839                         m.parent('.entry-content').html($(data).find('#attachment_view .entry-content').html());
840                     });
841
842                     return false;
843                 }).attr('title', SN.msg('showmore_tooltip'));
844             }
845         },
846
847         /**
848          * Setup function -- DOES NOT trigger actions immediately.
849          *
850          * Sets up event handlers for the file-attachment widget in the
851          * new notice form. When a file is selected, a box will be added
852          * below the text input showing the filename and, if supported
853          * by the browser, a thumbnail preview.
854          *
855          * This preview box will also allow removing the attachment
856          * prior to posting.
857          */
858         NoticeDataAttach: function() {
859             NDA = $('#'+SN.C.S.NoticeDataAttach);
860             NDA.change(function(event) {
861                 var filename = $(this).val();
862                 if (!filename) {
863                     // No file -- we've been tricked!
864                     $('#'+SN.C.S.NoticeDataAttachSelected).remove();
865                     return false;
866                 }
867
868                 // @fixme appending filename straight in is potentially unsafe
869                 S = '<div id="'+SN.C.S.NoticeDataAttachSelected+'" class="'+SN.C.S.Success+'"><code>'+filename+'</code> <button class="close">&#215;</button></div>';
870                 NDAS = $('#'+SN.C.S.NoticeDataAttachSelected);
871                 if (NDAS.length > 0) {
872                     NDAS.replaceWith(S);
873                 }
874                 else {
875                     $('#'+SN.C.S.FormNotice).append(S);
876                 }
877                 $('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){
878                     $('#'+SN.C.S.NoticeDataAttachSelected).remove();
879                     NDA.val('');
880
881                     return false;
882                 });
883                 if (typeof this.files == "object") {
884                     // Some newer browsers will let us fetch the files for preview.
885                     for (var i = 0; i < this.files.length; i++) {
886                         SN.U.PreviewAttach(this.files[i]);
887                     }
888                 }
889             });
890         },
891
892         /**
893          * Get PHP's MAX_FILE_SIZE setting for this form;
894          * used to apply client-side file size limit checks.
895          *
896          * @param {jQuery} form
897          * @return int max size in bytes; 0 or negative means no limit
898          */
899         maxFileSize: function(form) {
900             var max = $(form).find('input[name=MAX_FILE_SIZE]').attr('value');
901             if (max) {
902                 return parseInt(max);
903             } else {
904                 return 0;
905             }
906         },
907
908         /**
909          * For browsers with FileAPI support: make a thumbnail if possible,
910          * and append it into the attachment display widget.
911          *
912          * Known good:
913          * - Firefox 3.6.6, 4.0b7
914          * - Chrome 8.0.552.210
915          *
916          * Known ok metadata, can't get contents:
917          * - Safari 5.0.2
918          *
919          * Known fail:
920          * - Opera 10.63, 11 beta (no input.files interface)
921          *
922          * @param {File} file
923          *
924          * @todo use configured thumbnail size
925          * @todo detect pixel size?
926          * @todo should we render a thumbnail to a canvas and then use the smaller image?
927          */
928         PreviewAttach: function(file) {
929             var tooltip = file.type + ' ' + Math.round(file.size / 1024) + 'KB';
930             var preview = true;
931
932             var blobAsDataURL;
933             if (typeof window.createObjectURL != "undefined") {
934                 /**
935                  * createObjectURL lets us reference the file directly from an <img>
936                  * This produces a compact URL with an opaque reference to the file,
937                  * which we can reference immediately.
938                  *
939                  * - Firefox 3.6.6: no
940                  * - Firefox 4.0b7: no
941                  * - Safari 5.0.2: no
942                  * - Chrome 8.0.552.210: works!
943                  */
944                 blobAsDataURL = function(blob, callback) {
945                     callback(window.createObjectURL(blob));
946                 }
947             } else if (typeof window.FileReader != "undefined") {
948                 /**
949                  * FileAPI's FileReader can build a data URL from a blob's contents,
950                  * but it must read the file and build it asynchronously. This means
951                  * we'll be passing a giant data URL around, which may be inefficient.
952                  *
953                  * - Firefox 3.6.6: works!
954                  * - Firefox 4.0b7: works!
955                  * - Safari 5.0.2: no
956                  * - Chrome 8.0.552.210: works!
957                  */
958                 blobAsDataURL = function(blob, callback) {
959                     var reader = new FileReader();
960                     reader.onload = function(event) {
961                         callback(reader.result);
962                     }
963                     reader.readAsDataURL(blob);
964                 }
965             } else {
966                 preview = false;
967             }
968
969             var imageTypes = ['image/png', 'image/jpeg', 'image/gif', 'image/svg+xml'];
970             if ($.inArray(file.type, imageTypes) == -1) {
971                 // We probably don't know how to show the file.
972                 preview = false;
973             }
974
975             var maxSize = 8 * 1024 * 1024;
976             if (file.size > maxSize) {
977                 // Don't kill the browser trying to load some giant image.
978                 preview = false;
979             }
980
981             if (preview) {
982                 blobAsDataURL(file, function(url) {
983                     var img = $('<img>')
984                         .attr('title', tooltip)
985                         .attr('alt', tooltip)
986                         .attr('src', url)
987                         .attr('style', 'height: 120px');
988                     $('#'+SN.C.S.NoticeDataAttachSelected).append(img);
989                 });
990             } else {
991                 var img = $('<div></div>').text(tooltip);
992                 $('#'+SN.C.S.NoticeDataAttachSelected).append(img);
993             }
994         },
995
996         /**
997          * Setup function -- DOES NOT trigger actions immediately.
998          *
999          * Initializes state for the location-lookup features in the
1000          * new-notice form. Seems to set up some event handlers for
1001          * triggering lookups and using the new values.
1002          *
1003          * @fixme tl;dr
1004          * @fixme there's not good visual state update here, so users have a
1005          *        hard time figuring out if it's working or fixing if it's wrong.
1006          *
1007          */
1008         NoticeLocationAttach: function() {
1009             var NLat = $('#'+SN.C.S.NoticeLat).val();
1010             var NLon = $('#'+SN.C.S.NoticeLon).val();
1011             var NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
1012             var NLID = $('#'+SN.C.S.NoticeLocationId).val();
1013             var NLN = $('#'+SN.C.S.NoticeGeoName).text();
1014             var NDGe = $('#'+SN.C.S.NoticeDataGeo);
1015
1016             function removeNoticeDataGeo() {
1017                 $('label[for='+SN.C.S.NoticeDataGeo+']')
1018                     .attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()))
1019                     .removeClass('checked');
1020
1021                 $('#'+SN.C.S.NoticeLat).val('');
1022                 $('#'+SN.C.S.NoticeLon).val('');
1023                 $('#'+SN.C.S.NoticeLocationNs).val('');
1024                 $('#'+SN.C.S.NoticeLocationId).val('');
1025                 $('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
1026
1027                 $.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
1028             }
1029
1030             function getJSONgeocodeURL(geocodeURL, data) {
1031                 $.getJSON(geocodeURL, data, function(location) {
1032                     var lns, lid;
1033
1034                     if (typeof(location.location_ns) != 'undefined') {
1035                         $('#'+SN.C.S.NoticeLocationNs).val(location.location_ns);
1036                         lns = location.location_ns;
1037                     }
1038
1039                     if (typeof(location.location_id) != 'undefined') {
1040                         $('#'+SN.C.S.NoticeLocationId).val(location.location_id);
1041                         lid = location.location_id;
1042                     }
1043
1044                     if (typeof(location.name) == 'undefined') {
1045                         NLN_text = data.lat + ';' + data.lon;
1046                     }
1047                     else {
1048                         NLN_text = location.name;
1049                     }
1050
1051                     $('label[for='+SN.C.S.NoticeDataGeo+']')
1052                         .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
1053
1054                     $('#'+SN.C.S.NoticeLat).val(data.lat);
1055                     $('#'+SN.C.S.NoticeLon).val(data.lon);
1056                     $('#'+SN.C.S.NoticeLocationNs).val(lns);
1057                     $('#'+SN.C.S.NoticeLocationId).val(lid);
1058                     $('#'+SN.C.S.NoticeDataGeo).attr('checked', true);
1059
1060                     var cookieValue = {
1061                         NLat: data.lat,
1062                         NLon: data.lon,
1063                         NLNS: lns,
1064                         NLID: lid,
1065                         NLN: NLN_text,
1066                         NLNU: location.url,
1067                         NDG: true
1068                     };
1069
1070                     $.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue), { path: '/' });
1071                 });
1072             }
1073
1074             if (NDGe.length > 0) {
1075                 if ($.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1076                     NDGe.attr('checked', false);
1077                 }
1078                 else {
1079                     NDGe.attr('checked', true);
1080                 }
1081
1082                 var NGW = $('#notice_data-geo_wrap');
1083                 var geocodeURL = NGW.attr('title');
1084                 NGW.removeAttr('title');
1085
1086                 $('label[for='+SN.C.S.NoticeDataGeo+']')
1087                     .attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()));
1088
1089                 NDGe.change(function() {
1090                     if ($('#'+SN.C.S.NoticeDataGeo).attr('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === null) {
1091                         $('label[for='+SN.C.S.NoticeDataGeo+']')
1092                             .attr('title', NoticeDataGeo_text.ShareDisable)
1093                             .addClass('checked');
1094
1095                         if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1096                             if (navigator.geolocation) {
1097                                 navigator.geolocation.getCurrentPosition(
1098                                     function(position) {
1099                                         $('#'+SN.C.S.NoticeLat).val(position.coords.latitude);
1100                                         $('#'+SN.C.S.NoticeLon).val(position.coords.longitude);
1101
1102                                         var data = {
1103                                             lat: position.coords.latitude,
1104                                             lon: position.coords.longitude,
1105                                             token: $('#token').val()
1106                                         };
1107
1108                                         getJSONgeocodeURL(geocodeURL, data);
1109                                     },
1110
1111                                     function(error) {
1112                                         switch(error.code) {
1113                                             case error.PERMISSION_DENIED:
1114                                                 removeNoticeDataGeo();
1115                                                 break;
1116                                             case error.TIMEOUT:
1117                                                 $('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
1118                                                 break;
1119                                         }
1120                                     },
1121
1122                                     {
1123                                         timeout: 10000
1124                                     }
1125                                 );
1126                             }
1127                             else {
1128                                 if (NLat.length > 0 && NLon.length > 0) {
1129                                     var data = {
1130                                         lat: NLat,
1131                                         lon: NLon,
1132                                         token: $('#token').val()
1133                                     };
1134
1135                                     getJSONgeocodeURL(geocodeURL, data);
1136                                 }
1137                                 else {
1138                                     removeNoticeDataGeo();
1139                                     $('#'+SN.C.S.NoticeDataGeo).remove();
1140                                     $('label[for='+SN.C.S.NoticeDataGeo+']').remove();
1141                                 }
1142                             }
1143                         }
1144                         else {
1145                             var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
1146
1147                             $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat);
1148                             $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon);
1149                             $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS);
1150                             $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID);
1151                             $('#'+SN.C.S.NoticeDataGeo).attr('checked', cookieValue.NDG);
1152
1153                             $('label[for='+SN.C.S.NoticeDataGeo+']')
1154                                 .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
1155                                 .addClass('checked');
1156                         }
1157                     }
1158                     else {
1159                         removeNoticeDataGeo();
1160                     }
1161                 }).change();
1162             }
1163         },
1164
1165         /**
1166          * Setup function -- DOES NOT trigger actions immediately.
1167          *
1168          * Initializes event handlers for the "Send direct message" link on
1169          * profile pages, setting it up to display a dialog box when clicked.
1170          *
1171          * Unlike the repeat confirmation form, this appears to fetch
1172          * the form _from the original link target_, so the form itself
1173          * doesn't need to be in the current document.
1174          *
1175          * @fixme breaks ability to open link in new window?
1176          */
1177         NewDirectMessage: function() {
1178             NDM = $('.entity_send-a-message a');
1179             NDM.attr({'href':NDM.attr('href')+'&ajax=1'});
1180             NDM.bind('click', function() {
1181                 var NDMF = $('.entity_send-a-message form');
1182                 if (NDMF.length === 0) {
1183                     $(this).addClass(SN.C.S.Processing);
1184                     $.get(NDM.attr('href'), null, function(data) {
1185                         $('.entity_send-a-message').append(document._importNode($('form', data)[0], true));
1186                         NDMF = $('.entity_send-a-message .form_notice');
1187                         SN.U.FormNoticeXHR(NDMF);
1188                         SN.U.FormNoticeEnhancements(NDMF);
1189                         NDMF.append('<button class="close">&#215;</button>');
1190                         $('.entity_send-a-message button').click(function(){
1191                             NDMF.hide();
1192                             return false;
1193                         });
1194                         NDM.removeClass(SN.C.S.Processing);
1195                     });
1196                 }
1197                 else {
1198                     NDMF.show();
1199                     $('.entity_send-a-message textarea').focus();
1200                 }
1201                 return false;
1202             });
1203         },
1204
1205         /**
1206          * Return a date object with the current local time on the
1207          * given year, month, and day.
1208          *
1209          * @param {number} year: 4-digit year
1210          * @param {number} month: 0 == January
1211          * @param {number} day: 1 == 1
1212          * @return {Date}
1213          */
1214         GetFullYear: function(year, month, day) {
1215             var date = new Date();
1216             date.setFullYear(year, month, day);
1217
1218             return date;
1219         },
1220
1221         /**
1222          * Some sort of object interface for storing some structured
1223          * information in a cookie.
1224          *
1225          * Appears to be used to save the last-used login nickname?
1226          * That's something that browsers usually take care of for us
1227          * these days, do we really need to do it? Does anything else
1228          * use this interface?
1229          *
1230          * @fixme what is this?
1231          * @fixme should this use non-cookie local storage when available?
1232          */
1233         StatusNetInstance: {
1234             /**
1235              * @fixme what is this?
1236              */
1237             Set: function(value) {
1238                 var SNI = SN.U.StatusNetInstance.Get();
1239                 if (SNI !== null) {
1240                     value = $.extend(SNI, value);
1241                 }
1242
1243                 $.cookie(
1244                     SN.C.S.StatusNetInstance,
1245                     JSON.stringify(value),
1246                     {
1247                         path: '/',
1248                         expires: SN.U.GetFullYear(2029, 0, 1)
1249                     });
1250             },
1251
1252             /**
1253              * @fixme what is this?
1254              */
1255             Get: function() {
1256                 var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
1257                 if (cookieValue !== null) {
1258                     return JSON.parse(cookieValue);
1259                 }
1260                 return null;
1261             },
1262
1263             /**
1264              * @fixme what is this?
1265              */
1266             Delete: function() {
1267                 $.cookie(SN.C.S.StatusNetInstance, null);
1268             }
1269         },
1270
1271         /**
1272          * Check if the current page is a timeline where the current user's
1273          * posts should be displayed immediately on success.
1274          *
1275          * @fixme this should be done in a saner way, with machine-readable
1276          * info about what page we're looking at.
1277          *
1278          * @param {DOMElement} notice: HTML chunk with formatted notice
1279          * @return boolean
1280          */
1281         belongsOnTimeline: function(notice) {
1282             var action = $("body").attr('id');
1283             if (action == 'public') {
1284                 return true;
1285             }
1286
1287             var profileLink = $('#nav_profile a').attr('href');
1288             if (profileLink) {
1289                 var authorUrl = $(notice).find('.entry-title .author a.url').attr('href');
1290                 if (authorUrl == profileLink) {
1291                     if (action == 'all' || action == 'showstream') {
1292                         // Posts always show on your own friends and profile streams.
1293                         return true;
1294                     }
1295                 }
1296             }
1297
1298             // @fixme tag, group, reply timelines should be feasible as well.
1299             // Mismatch between id-based and name-based user/group links currently complicates
1300             // the lookup, since all our inline mentions contain the absolute links but the
1301             // UI links currently on the page use malleable names.
1302
1303             return false;
1304         }
1305     },
1306
1307     Init: {
1308         /**
1309          * If user is logged in, run setup code for the new notice form:
1310          *
1311          *  - char counter
1312          *  - AJAX submission
1313          *  - location events
1314          *  - file upload events
1315          */
1316         NoticeForm: function() {
1317             if ($('body.user_in').length > 0) {
1318                 SN.U.NoticeLocationAttach();
1319
1320                 $('.'+SN.C.S.FormNotice).each(function() {
1321                     SN.U.FormNoticeXHR($(this));
1322                     SN.U.FormNoticeEnhancements($(this));
1323                 });
1324
1325                 SN.U.NoticeDataAttach();
1326             }
1327         },
1328
1329         /**
1330          * Run setup code for notice timeline views items:
1331          *
1332          * - AJAX submission for fave/repeat/reply (if logged in)
1333          * - Attachment link extras ('more' links)
1334          */
1335         Notices: function() {
1336             if ($('body.user_in').length > 0) {
1337                 SN.U.NoticeFavor();
1338                 SN.U.NoticeRepeat();
1339                 SN.U.NoticeReply();
1340                 SN.U.NoticeInlineReplySetup();
1341             }
1342
1343             SN.U.NoticeAttachments();
1344         },
1345
1346         /**
1347          * Run setup code for user & group profile page header area if logged in:
1348          *
1349          * - AJAX submission for sub/unsub/join/leave/nudge
1350          * - AJAX form popup for direct-message
1351          */
1352         EntityActions: function() {
1353             if ($('body.user_in').length > 0) {
1354                 $('.form_user_subscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1355                 $('.form_user_unsubscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1356                 $('.form_group_join').live('click', function() { SN.U.FormXHR($(this)); return false; });
1357                 $('.form_group_leave').live('click', function() { SN.U.FormXHR($(this)); return false; });
1358                 $('.form_user_nudge').live('click', function() { SN.U.FormXHR($(this)); return false; });
1359
1360                 SN.U.NewDirectMessage();
1361             }
1362         },
1363
1364         /**
1365          * Run setup code for login form:
1366          *
1367          * - loads saved last-used-nickname from cookie
1368          * - sets event handler to save nickname to cookie on submit
1369          *
1370          * @fixme is this necessary? Browsers do their own form saving these days.
1371          */
1372         Login: function() {
1373             if (SN.U.StatusNetInstance.Get() !== null) {
1374                 var nickname = SN.U.StatusNetInstance.Get().Nickname;
1375                 if (nickname !== null) {
1376                     $('#form_login #nickname').val(nickname);
1377                 }
1378             }
1379
1380             $('#form_login').bind('submit', function() {
1381                 SN.U.StatusNetInstance.Set({Nickname: $('#form_login #nickname').val()});
1382                 return true;
1383             });
1384         },
1385
1386         /**
1387          * Add logic to any file upload forms to handle file size limits,
1388          * on browsers that support basic FileAPI.
1389          */
1390         UploadForms: function () {
1391             $('input[type=file]').change(function(event) {
1392                 if (typeof this.files == "object" && this.files.length > 0) {
1393                     var size = 0;
1394                     for (var i = 0; i < this.files.length; i++) {
1395                         size += this.files[i].size;
1396                     }
1397
1398                     var max = SN.U.maxFileSize($(this.form));
1399                     if (max > 0 && size > max) {
1400                         var msg = 'File too large: maximum upload size is %d bytes.';
1401                         alert(msg.replace('%d', max));
1402
1403                         // Clear the files.
1404                         $(this).val('');
1405                         event.preventDefault();
1406                         return false;
1407                     }
1408                 }
1409             });
1410         }
1411     }
1412 };
1413
1414 /**
1415  * Run initialization functions on DOM-ready.
1416  *
1417  * Note that if we're waiting on other scripts to load, this won't happen
1418  * until that's done. To load scripts asynchronously without delaying setup,
1419  * don't start them loading until after DOM-ready time!
1420  */
1421 $(document).ready(function(){
1422     SN.Init.UploadForms();
1423     if ($('.'+SN.C.S.FormNotice).length > 0) {
1424         SN.Init.NoticeForm();
1425     }
1426     if ($('#content .notices').length > 0) {
1427         SN.Init.Notices();
1428     }
1429     if ($('#content .entity_actions').length > 0) {
1430         SN.Init.EntityActions();
1431     }
1432     if ($('#form_login').length > 0) {
1433         SN.Init.Login();
1434     }
1435 });