]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - js/util.js
Removed unnecessary form_id. Using jQuery .find() instead of
[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  * @copyright 2009 StatusNet, Inc.
23  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
24  * @link      http://status.net/
25  */
26
27 var SN = { // StatusNet
28     C: { // Config
29         I: { // Init
30             CounterBlackout: false,
31             MaxLength: 140,
32             PatternUsername: /^[0-9a-zA-Z\-_.]*$/,
33             HTTP20x30x: [200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307]
34         },
35
36         S: { // Selector
37             Disabled: 'disabled',
38             Warning: 'warning',
39             Error: 'error',
40             Success: 'success',
41             Processing: 'processing',
42             CommandResult: 'command_result',
43             FormNotice: 'form_notice',
44             NoticeDataText: 'notice_data-text',
45             NoticeTextCount: 'notice_text-count',
46             NoticeInReplyTo: 'notice_in-reply-to',
47             NoticeDataAttach: 'notice_data-attach',
48             NoticeDataAttachSelected: 'notice_data-attach_selected',
49             NoticeActionSubmit: 'notice_action-submit',
50             NoticeLat: 'notice_data-lat',
51             NoticeLon: 'notice_data-lon',
52             NoticeLocationId: 'notice_data-location_id',
53             NoticeLocationNs: 'notice_data-location_ns',
54             NoticeGeoName: 'notice_data-geo_name',
55             NoticeDataGeo: 'notice_data-geo',
56             NoticeDataGeoCookie: 'NoticeDataGeo',
57             NoticeDataGeoSelected: 'notice_data-geo_selected',
58             StatusNetInstance:'StatusNetInstance'
59         }
60     },
61
62     U: { // Utils
63         FormNoticeEnhancements: function(form) {
64             if (jQuery.data(form[0], 'ElementData') === undefined) {
65                 MaxLength = form.find('#'+SN.C.S.NoticeTextCount).text();
66                 if (typeof(MaxLength) == 'undefined') {
67                      MaxLength = SN.C.I.MaxLength;
68                 }
69                 jQuery.data(form[0], 'ElementData', {MaxLength:MaxLength});
70
71                 SN.U.Counter(form);
72
73                 NDT = form.find('#'+SN.C.S.NoticeDataText);
74
75                 NDT.bind('keyup', function(e) {
76                     SN.U.Counter(form);
77                 });
78
79                 NDT.bind('keydown', function(e) {
80                     SN.U.SubmitOnReturn(e, form);
81                 });
82             }
83             else {
84                 form.find('#'+SN.C.S.NoticeTextCount).text(jQuery.data(form[0], 'ElementData').MaxLength);
85             }
86
87             if ($('body')[0].id != 'conversation' && window.location.hash.length === 0) {
88                 form.find('textarea').focus();
89             }
90         },
91
92         SubmitOnReturn: function(event, el) {
93             if (event.keyCode == 13 || event.keyCode == 10) {
94                 el.submit();
95                 event.preventDefault();
96                 event.stopPropagation();
97                 $('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur();
98                 $('body').focus();
99                 return false;
100             }
101             return true;
102         },
103
104         Counter: function(form) {
105             SN.C.I.FormNoticeCurrent = form;
106
107             var MaxLength = jQuery.data(form[0], 'ElementData').MaxLength;
108
109             if (MaxLength <= 0) {
110                 return;
111             }
112
113             var remaining = MaxLength - form.find('#'+SN.C.S.NoticeDataText).val().length;
114             var counter = form.find('#'+SN.C.S.NoticeTextCount);
115
116             if (remaining.toString() != counter.text()) {
117                 if (!SN.C.I.CounterBlackout || remaining === 0) {
118                     if (counter.text() != String(remaining)) {
119                         counter.text(remaining);
120                     }
121                     if (remaining < 0) {
122                         form.addClass(SN.C.S.Warning);
123                     } else {
124                         form.removeClass(SN.C.S.Warning);
125                     }
126                     // Skip updates for the next 500ms.
127                     // On slower hardware, updating on every keypress is unpleasant.
128                     if (!SN.C.I.CounterBlackout) {
129                         SN.C.I.CounterBlackout = true;
130                         SN.C.I.FormNoticeCurrent = form;
131                         window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);", 500);
132                     }
133                 }
134             }
135         },
136
137         ClearCounterBlackout: function(form) {
138             // Allow keyup events to poke the counter again
139             SN.C.I.CounterBlackout = false;
140             // Check if the string changed since we last looked
141             SN.U.Counter(form);
142         },
143
144         FormXHR: function(form) {
145             $.ajax({
146                 type: 'POST',
147                 dataType: 'xml',
148                 url: form.attr('action'),
149                 data: form.serialize() + '&ajax=1',
150                 beforeSend: function(xhr) {
151                     form
152                         .addClass(SN.C.S.Processing)
153                         .find('.submit')
154                             .addClass(SN.C.S.Disabled)
155                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
156                 },
157                 error: function (xhr, textStatus, errorThrown) {
158                     alert(errorThrown || textStatus);
159                 },
160                 success: function(data, textStatus) {
161                     if (typeof($('form', data)[0]) != 'undefined') {
162                         form_new = document._importNode($('form', data)[0], true);
163                         form.replaceWith(form_new);
164                     }
165                     else {
166                         form.replaceWith(document._importNode($('p', data)[0], true));
167                     }
168                 }
169             });
170         },
171
172         FormNoticeXHR: function(form) {
173             SN.C.I.NoticeDataGeo = {};
174             form.append('<input type="hidden" name="ajax" value="1"/>');
175             form.ajaxForm({
176                 dataType: 'xml',
177                 timeout: '60000',
178                 beforeSend: function(formData) {
179                     if (form.find('#'+SN.C.S.NoticeDataText)[0].value.length === 0) {
180                         form.addClass(SN.C.S.Warning);
181                         return false;
182                     }
183                     form
184                         .addClass(SN.C.S.Processing)
185                         .find('#'+SN.C.S.NoticeActionSubmit)
186                             .addClass(SN.C.S.Disabled)
187                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
188
189                     SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val();
190                     SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val();
191                     SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
192                     SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val();
193                     SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked');
194
195                     cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
196
197                     if (cookieValue !== null && cookieValue != 'disabled') {
198                         cookieValue = JSON.parse(cookieValue);
199                         SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat).val();
200                         SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon).val();
201                         if ($('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS)) {
202                             SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS).val();
203                             SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID).val();
204                         }
205                     }
206                     if (cookieValue == 'disabled') {
207                         SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', false).attr('checked');
208                     }
209                     else {
210                         SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', true).attr('checked');
211                     }
212
213                     return true;
214                 },
215                 error: function (xhr, textStatus, errorThrown) {
216                     form
217                         .removeClass(SN.C.S.Processing)
218                         .find('#'+SN.C.S.NoticeActionSubmit)
219                             .removeClass(SN.C.S.Disabled)
220                             .removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
221                     form.find('.form_response').remove();
222                     if (textStatus == 'timeout') {
223                         form.append('<p class="form_response error">Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.</p>');
224                     }
225                     else {
226                         if ($('.'+SN.C.S.Error, xhr.responseXML).length > 0) {
227                             form.append(document._importNode($('.'+SN.C.S.Error, xhr.responseXML)[0], true));
228                         }
229                         else {
230                             if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
231                                 form
232                                     .resetForm()
233                                     .find('#'+SN.C.S.NoticeDataAttachSelected).remove();
234                                 SN.U.FormNoticeEnhancements(form);
235                             }
236                             else {
237                                 form.append('<p class="form_response error">(Sorry! We had trouble sending your notice ('+xhr.status+' '+xhr.statusText+'). Please report the problem to the site administrator if this happens again.</p>');
238                             }
239                         }
240                     }
241                 },
242                 success: function(data, textStatus) {
243                     form.find('.form_response').remove();
244                     var result;
245                     if ($('#'+SN.C.S.Error, data).length > 0) {
246                         result = document._importNode($('p', data)[0], true);
247                         result = result.textContent || result.innerHTML;
248                         form.append('<p class="form_response error">'+result+'</p>');
249                     }
250                     else {
251                         if($('body')[0].id == 'bookmarklet') {
252                             self.close();
253                         }
254
255                         if ($('#'+SN.C.S.CommandResult, data).length > 0) {
256                             result = document._importNode($('p', data)[0], true);
257                             result = result.textContent || result.innerHTML;
258                             form.append('<p class="form_response success">'+result+'</p>');
259                         }
260                         else {
261                             var notices = $('#notices_primary .notices');
262                             if (notices.length > 0) {
263                                 var notice = document._importNode($('li', data)[0], true);
264                                 if ($('#'+notice.id).length === 0) {
265                                     var notice_irt_value = $('#'+SN.C.S.NoticeInReplyTo).val();
266                                     var notice_irt = '#notices_primary #notice-'+notice_irt_value;
267                                     if($('body')[0].id == 'conversation') {
268                                         if(notice_irt_value.length > 0 && $(notice_irt+' .notices').length < 1) {
269                                             $(notice_irt).append('<ul class="notices"></ul>');
270                                         }
271                                         $($(notice_irt+' .notices')[0]).append(notice);
272                                     }
273                                     else {
274                                         notices.prepend(notice);
275                                     }
276                                     $('#'+notice.id)
277                                         .css({display:'none'})
278                                         .fadeIn(2500);
279                                     SN.U.NoticeWithAttachment($('#'+notice.id));
280                                     SN.U.NoticeReplyTo($('#'+notice.id));
281                                 }
282                             }
283                             else {
284                                 result = document._importNode($('title', data)[0], true);
285                                 result_title = result.textContent || result.innerHTML;
286                                 form.append('<p class="form_response success">'+result_title+'</p>');
287                             }
288                         }
289                         form.resetForm();
290                         form.find('#'+SN.C.S.NoticeInReplyTo).val('');
291                         form.find('#'+SN.C.S.NoticeDataAttachSelected).remove();
292                         SN.U.FormNoticeEnhancements(form);
293                     }
294                 },
295                 complete: function(xhr, textStatus) {
296                     form
297                         .removeClass(SN.C.S.Processing)
298                         .find('#'+SN.C.S.NoticeActionSubmit)
299                             .removeAttr(SN.C.S.Disabled)
300                             .removeClass(SN.C.S.Disabled);
301
302                     $('#'+SN.C.S.NoticeLat).val(SN.C.I.NoticeDataGeo.NLat);
303                     $('#'+SN.C.S.NoticeLon).val(SN.C.I.NoticeDataGeo.NLon);
304                     if ($('#'+SN.C.S.NoticeLocationNs)) {
305                         $('#'+SN.C.S.NoticeLocationNs).val(SN.C.I.NoticeDataGeo.NLNS);
306                         $('#'+SN.C.S.NoticeLocationId).val(SN.C.I.NoticeDataGeo.NLID);
307                     }
308                     $('#'+SN.C.S.NoticeDataGeo).attr('checked', SN.C.I.NoticeDataGeo.NDG);
309                 }
310             });
311         },
312
313         NoticeReply: function() {
314             if ($('#'+SN.C.S.NoticeDataText).length > 0 && $('#content .notice_reply').length > 0) {
315                 $('#content .notice').each(function() { SN.U.NoticeReplyTo($(this)); });
316             }
317         },
318
319         NoticeReplyTo: function(notice) {
320             notice.find('.notice_reply').live('click', function() {
321                 var nickname = ($('.author .nickname', notice).length > 0) ? $($('.author .nickname', notice)[0]) : $('.author .nickname.uid');
322                 SN.U.NoticeReplySet(nickname.text(), $($('.notice_id', notice)[0]).text());
323                 return false;
324             });
325         },
326
327         NoticeReplySet: function(nick,id) {
328             if (nick.match(SN.C.I.PatternUsername)) {
329                 var text = $('#'+SN.C.S.NoticeDataText);
330                 if (text.length > 0) {
331                     replyto = '@' + nick + ' ';
332                     text.val(replyto + text.val().replace(RegExp(replyto, 'i'), ''));
333                     $('#'+SN.C.S.FormNotice+' #'+SN.C.S.NoticeInReplyTo).val(id);
334
335                     text[0].focus();
336                     if (text[0].setSelectionRange) {
337                         var len = text.val().length;
338                         text[0].setSelectionRange(len,len);
339                     }
340                 }
341             }
342         },
343
344         NoticeFavor: function() {
345             $('.form_favor').live('click', function() { SN.U.FormXHR($(this)); return false; });
346             $('.form_disfavor').live('click', function() { SN.U.FormXHR($(this)); return false; });
347         },
348
349         NoticeRepeat: function() {
350             $('.form_repeat').live('click', function(e) {
351                 e.preventDefault();
352
353                 SN.U.NoticeRepeatConfirmation($(this));
354                 return false;
355             });
356         },
357
358         NoticeRepeatConfirmation: function(form) {
359             var submit_i = form.find('.submit');
360
361             var submit = submit_i.clone();
362             submit
363                 .addClass('submit_dialogbox')
364                 .removeClass('submit');
365             form.append(submit);
366             submit.bind('click', function() { SN.U.FormXHR(form); return false; });
367
368             submit_i.hide();
369
370             form
371                 .addClass('dialogbox')
372                 .append('<button class="close">&#215;</button>')
373                 .closest('.notice-options')
374                     .addClass('opaque');
375
376             form.find('button.close').click(function(){
377                 $(this).remove();
378
379                 form
380                     .removeClass('dialogbox')
381                     .closest('.notice-options')
382                         .removeClass('opaque');
383
384                 form.find('.submit_dialogbox').remove();
385                 form.find('.submit').show();
386
387                 return false;
388             });
389         },
390
391         NoticeAttachments: function() {
392             $('.notice a.attachment').each(function() {
393                 SN.U.NoticeWithAttachment($(this).closest('.notice'));
394             });
395         },
396
397         NoticeWithAttachment: function(notice) {
398             if (notice.find('.attachment').length === 0) {
399                 return;
400             }
401
402             $.fn.jOverlay.options = {
403                 method : 'GET',
404                 data : '',
405                 url : '',
406                 color : '#000',
407                 opacity : '0.6',
408                 zIndex : 9999,
409                 center : false,
410                 imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif',
411                 bgClickToClose : true,
412                 success : function() {
413                     $('#jOverlayContent').append('<button class="close">&#215;</button>');
414                     $('#jOverlayContent button').click($.closeOverlay);
415                 },
416                 timeout : 0,
417                 autoHide : true,
418                 css : {'max-width':'542px', 'top':'5%', 'left':'32.5%'}
419             };
420
421             notice.find('a.attachment').click(function() {
422                 var attachId = ($(this).attr('id').substring('attachment'.length + 1));
423                 if (attachId) {
424                     $().jOverlay({url: $('address .url')[0].href+'attachment/' + attachId + '/ajax'});
425                     return false;
426                 }
427             });
428
429             if ($('#shownotice').length == 0) {
430                 var t;
431                 notice.find('a.thumbnail').hover(
432                     function() {
433                         var anchor = $(this);
434                         $('a.thumbnail').children('img').hide();
435                         anchor.closest(".entry-title").addClass('ov');
436
437                         if (anchor.children('img').length === 0) {
438                             t = setTimeout(function() {
439                                 $.get($('address .url')[0].href+'attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
440                                     anchor.append(data);
441                                 });
442                             }, 500);
443                         }
444                         else {
445                             anchor.children('img').show();
446                         }
447                     },
448                     function() {
449                         clearTimeout(t);
450                         $('a.thumbnail').children('img').hide();
451                         $(this).closest('.entry-title').removeClass('ov');
452                     }
453                 );
454             }
455         },
456
457         NoticeDataAttach: function() {
458             NDA = $('#'+SN.C.S.NoticeDataAttach);
459             NDA.change(function() {
460                 S = '<div id="'+SN.C.S.NoticeDataAttachSelected+'" class="'+SN.C.S.Success+'"><code>'+$(this).val()+'</code> <button class="close">&#215;</button></div>';
461                 NDAS = $('#'+SN.C.S.NoticeDataAttachSelected);
462                 if (NDAS.length > 0) {
463                     NDAS.replaceWith(S);
464                 }
465                 else {
466                     $('#'+SN.C.S.FormNotice).append(S);
467                 }
468                 $('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){
469                     $('#'+SN.C.S.NoticeDataAttachSelected).remove();
470                     NDA.val('');
471
472                     return false;
473                 });
474             });
475         },
476
477         NoticeLocationAttach: function() {
478             var NLat = $('#'+SN.C.S.NoticeLat).val();
479             var NLon = $('#'+SN.C.S.NoticeLon).val();
480             var NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
481             var NLID = $('#'+SN.C.S.NoticeLocationId).val();
482             var NLN = $('#'+SN.C.S.NoticeGeoName).text();
483             var NDGe = $('#'+SN.C.S.NoticeDataGeo);
484
485             function removeNoticeDataGeo() {
486                 $('label[for='+SN.C.S.NoticeDataGeo+']')
487                     .attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()))
488                     .removeClass('checked');
489
490                 $('#'+SN.C.S.NoticeLat).val('');
491                 $('#'+SN.C.S.NoticeLon).val('');
492                 $('#'+SN.C.S.NoticeLocationNs).val('');
493                 $('#'+SN.C.S.NoticeLocationId).val('');
494                 $('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
495
496                 $.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
497             }
498
499             function getJSONgeocodeURL(geocodeURL, data) {
500                 $.getJSON(geocodeURL, data, function(location) {
501                     var lns, lid;
502
503                     if (typeof(location.location_ns) != 'undefined') {
504                         $('#'+SN.C.S.NoticeLocationNs).val(location.location_ns);
505                         lns = location.location_ns;
506                     }
507
508                     if (typeof(location.location_id) != 'undefined') {
509                         $('#'+SN.C.S.NoticeLocationId).val(location.location_id);
510                         lid = location.location_id;
511                     }
512
513                     if (typeof(location.name) == 'undefined') {
514                         NLN_text = data.lat + ';' + data.lon;
515                     }
516                     else {
517                         NLN_text = location.name;
518                     }
519
520                     $('label[for='+SN.C.S.NoticeDataGeo+']')
521                         .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
522
523                     $('#'+SN.C.S.NoticeLat).val(data.lat);
524                     $('#'+SN.C.S.NoticeLon).val(data.lon);
525                     $('#'+SN.C.S.NoticeLocationNs).val(lns);
526                     $('#'+SN.C.S.NoticeLocationId).val(lid);
527                     $('#'+SN.C.S.NoticeDataGeo).attr('checked', true);
528
529                     var cookieValue = {
530                         NLat: data.lat,
531                         NLon: data.lon,
532                         NLNS: lns,
533                         NLID: lid,
534                         NLN: NLN_text,
535                         NLNU: location.url,
536                         NDG: true
537                     };
538
539                     $.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue), { path: '/' });
540                 });
541             }
542
543             if (NDGe.length > 0) {
544                 if ($.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
545                     NDGe.attr('checked', false);
546                 }
547                 else {
548                     NDGe.attr('checked', true);
549                 }
550
551                 var NGW = $('#notice_data-geo_wrap');
552                 var geocodeURL = NGW.attr('title');
553                 NGW.removeAttr('title');
554
555                 $('label[for='+SN.C.S.NoticeDataGeo+']')
556                     .attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()));
557
558                 NDGe.change(function() {
559                     if ($('#'+SN.C.S.NoticeDataGeo).attr('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === null) {
560                         $('label[for='+SN.C.S.NoticeDataGeo+']')
561                             .attr('title', NoticeDataGeo_text.ShareDisable)
562                             .addClass('checked');
563
564                         if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
565                             if (navigator.geolocation) {
566                                 navigator.geolocation.getCurrentPosition(
567                                     function(position) {
568                                         $('#'+SN.C.S.NoticeLat).val(position.coords.latitude);
569                                         $('#'+SN.C.S.NoticeLon).val(position.coords.longitude);
570
571                                         var data = {
572                                             lat: position.coords.latitude,
573                                             lon: position.coords.longitude,
574                                             token: $('#token').val()
575                                         };
576
577                                         getJSONgeocodeURL(geocodeURL, data);
578                                     },
579
580                                     function(error) {
581                                         switch(error.code) {
582                                             case error.PERMISSION_DENIED:
583                                                 removeNoticeDataGeo();
584                                                 break;
585                                             case error.TIMEOUT:
586                                                 $('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
587                                                 break;
588                                         }
589                                     },
590
591                                     {
592                                         timeout: 10000
593                                     }
594                                 );
595                             }
596                             else {
597                                 if (NLat.length > 0 && NLon.length > 0) {
598                                     var data = {
599                                         lat: NLat,
600                                         lon: NLon,
601                                         token: $('#token').val()
602                                     };
603
604                                     getJSONgeocodeURL(geocodeURL, data);
605                                 }
606                                 else {
607                                     removeNoticeDataGeo();
608                                     $('#'+SN.C.S.NoticeDataGeo).remove();
609                                     $('label[for='+SN.C.S.NoticeDataGeo+']').remove();
610                                 }
611                             }
612                         }
613                         else {
614                             var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
615
616                             $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat);
617                             $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon);
618                             $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS);
619                             $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID);
620                             $('#'+SN.C.S.NoticeDataGeo).attr('checked', cookieValue.NDG);
621
622                             $('label[for='+SN.C.S.NoticeDataGeo+']')
623                                 .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
624                                 .addClass('checked');
625                         }
626                     }
627                     else {
628                         removeNoticeDataGeo();
629                     }
630                 }).change();
631             }
632         },
633
634         NewDirectMessage: function() {
635             NDM = $('.entity_send-a-message a');
636             NDM.attr({'href':NDM.attr('href')+'&ajax=1'});
637             NDM.bind('click', function() {
638                 var NDMF = $('.entity_send-a-message form');
639                 if (NDMF.length === 0) {
640                     $(this).addClass(SN.C.S.Processing);
641                     $.get(NDM.attr('href'), null, function(data) {
642                         $('.entity_send-a-message').append(document._importNode($('form', data)[0], true));
643                         NDMF = $('.entity_send-a-message .form_notice');
644                         SN.U.FormNoticeXHR(NDMF);
645                         SN.U.FormNoticeEnhancements(NDMF);
646                         NDMF.append('<button class="close">&#215;</button>');
647                         $('.entity_send-a-message button').click(function(){
648                             NDMF.hide();
649                             return false;
650                         });
651                         NDM.removeClass(SN.C.S.Processing);
652                     });
653                 }
654                 else {
655                     NDMF.show();
656                     $('.entity_send-a-message textarea').focus();
657                 }
658                 return false;
659             });
660         },
661
662         GetFullYear: function(year, month, day) {
663             var date = new Date();
664             date.setFullYear(year, month, day);
665
666             return date;
667         },
668
669         StatusNetInstance: {
670             Set: function(value) {
671                 var SNI = SN.U.StatusNetInstance.Get();
672                 if (SNI !== null) {
673                     value = $.extend(SNI, value);
674                 }
675
676                 $.cookie(
677                     SN.C.S.StatusNetInstance,
678                     JSON.stringify(value),
679                     {
680                         path: '/',
681                         expires: SN.U.GetFullYear(2029, 0, 1)
682                     });
683             },
684
685             Get: function() {
686                 var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
687                 if (cookieValue !== null) {
688                     return JSON.parse(cookieValue);
689                 }
690                 return null;
691             },
692
693             Delete: function() {
694                 $.cookie(SN.C.S.StatusNetInstance, null);
695             }
696         }
697     },
698
699     Init: {
700         NoticeForm: function() {
701             if ($('body.user_in').length > 0) {
702                 SN.U.NoticeLocationAttach();
703
704                 $('.'+SN.C.S.FormNotice).each(function() {
705                     SN.U.FormNoticeXHR($(this));
706                     SN.U.FormNoticeEnhancements($(this));
707                 });
708
709                 SN.U.NoticeDataAttach();
710             }
711         },
712
713         Notices: function() {
714             if ($('body.user_in').length > 0) {
715                 SN.U.NoticeFavor();
716                 SN.U.NoticeRepeat();
717                 SN.U.NoticeReply();
718             }
719
720             SN.U.NoticeAttachments();
721         },
722
723         EntityActions: function() {
724             if ($('body.user_in').length > 0) {
725                 $('.form_user_subscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
726                 $('.form_user_unsubscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
727                 $('.form_group_join').live('click', function() { SN.U.FormXHR($(this)); return false; });
728                 $('.form_group_leave').live('click', function() { SN.U.FormXHR($(this)); return false; });
729                 $('.form_user_nudge').live('click', function() { SN.U.FormXHR($(this)); return false; });
730
731                 SN.U.NewDirectMessage();
732             }
733         },
734
735         Login: function() {
736             if (SN.U.StatusNetInstance.Get() !== null) {
737                 var nickname = SN.U.StatusNetInstance.Get().Nickname;
738                 if (nickname !== null) {
739                     $('#form_login #nickname').val(nickname);
740                 }
741             }
742
743             $('#form_login').bind('submit', function() {
744                 SN.U.StatusNetInstance.Set({Nickname: $('#form_login #nickname').val()});
745                 return true;
746             });
747         }
748     }
749 };
750
751 $(document).ready(function(){
752     if ($('.'+SN.C.S.FormNotice).length > 0) {
753         SN.Init.NoticeForm();
754     }
755     if ($('#content .notices').length > 0) {
756         SN.Init.Notices();
757     }
758     if ($('#content .entity_actions').length > 0) {
759         SN.Init.EntityActions();
760     }
761     if ($('#form_login').length > 0) {
762         SN.Init.Login();
763     }
764 });
765