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