]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/media/js/osqa.main.js
Remove footer link to squatted domain
[osqa.git] / forum / skins / default / media / js / osqa.main.js
1 /**
2  * We do not want the CSRF protection enabled for the AJAX post requests, it causes only trouble.
3  * Get the csrftoken cookie and pass it to the X-CSRFToken HTTP request property.
4  */
5
6 $('html').ajaxSend(function(event, xhr, settings) {
7     function getCookie(name) {
8         var cookieValue = null;
9         if (document.cookie && document.cookie != '') {
10             var cookies = document.cookie.split(';');
11             for (var i = 0; i < cookies.length; i++) {
12                 var cookie = jQuery.trim(cookies[i]);
13                 // Does this cookie string begin with the name we want?
14                 if (cookie.substring(0, name.length + 1) == (name + '=')) {
15                     cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
16                     break;
17                 }
18             }
19         }
20         return cookieValue;
21     }
22     try {
23         if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) {
24             // Only send the token to relative URLs i.e. locally.
25             xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken'));
26         }
27     } catch (e) {}
28 });
29
30 var response_commands = {
31     refresh_page: function() {
32         window.location.reload(true)
33     },
34     
35     update_post_score: function(id, inc) {
36         var $score_board = $('#post-' + id + '-score');
37         var current = parseInt($score_board.html())
38         if (isNaN(current)){
39             current = 0;
40         }
41         $score_board.html(current + inc)
42     },
43
44     update_user_post_vote: function(id, vote_type) {
45         var $upvote_button = $('#post-' + id + '-upvote');
46         var $downvote_button = $('#post-' + id + '-downvote');
47
48         $upvote_button.removeClass('on');
49         $downvote_button.removeClass('on');
50
51         if (vote_type == 'up') {
52             $upvote_button.addClass('on');
53         } else if (vote_type == 'down') {
54             $downvote_button.addClass('on');
55         }
56     },
57
58     update_favorite_count: function(inc) {
59         var $favorite_count = $('#favorite-count');
60         var count = parseInt($favorite_count.html());
61
62         if (isNaN(count))
63             count = 0;
64
65         count += inc;
66
67         if (count == 0)
68             count = '';
69
70         $favorite_count.html(count);
71     },
72
73     update_favorite_mark: function(type) {
74         if (type == 'on') {
75             $('#favorite-mark').addClass('on');
76         } else {
77             $('#favorite-mark').removeClass('on');
78         }
79     },
80
81     mark_accepted: function(id) {        
82         var $answer = $('#answer-container-' + id);
83         $answer.addClass('accepted-answer');
84         $answer.find('.accept-answer').addClass('on');
85         $answer.find('.accept-answer').attr('title', $answer.find('.accept-answer').attr('bn:on'));
86     },
87
88     unmark_accepted: function(id) {
89         var $answer = $('#answer-container-' + id);
90         $answer.removeClass('accepted-answer');
91         $answer.find('.accept-answer').removeClass('on');
92         $answer.find('.accept-answer').attr('title', $answer.find('.accept-answer').attr('bn:off'));
93     },
94
95     remove_comment: function(id) {
96         var $comment = $('#comment-' + id);
97         $comment.css('background', 'red')
98         $comment.fadeOut('slow', function() {
99             $comment.remove();    
100         });
101     },
102
103     award_points: function(id) {
104         alert('ok');
105     },
106
107     insert_comment: function(post_id, comment_id, comment, username, profile_url, delete_url, edit_url, convert_url, can_convert, show_latest_comments_first) {
108         var $container = $('#comments-container-' + post_id);
109         var skeleton = $('#new-comment-skeleton-' + post_id).html().toString();
110
111         skeleton = skeleton.replace(new RegExp('%ID%', 'g'), comment_id)
112                 .replace(new RegExp('%COMMENT%', 'g'), comment)
113                 .replace(new RegExp('%USERNAME%', 'g'), username)
114                 .replace(new RegExp('%PROFILE_URL%', 'g'), profile_url)
115                 .replace(new RegExp('%DELETE_URL%', 'g'), delete_url)
116                 .replace(new RegExp('%EDIT_URL%', 'g'), edit_url)
117                 .replace(new RegExp('%CONVERT_URL%', 'g'), convert_url);
118         if (show_latest_comments_first) {
119             $container.prepend(skeleton);
120         } else {
121             $container.append(skeleton);
122         }
123
124         // Show the convert comment to answer tool only if the current comment can be converted
125         if (can_convert == true) {
126             $('#comment-' + comment_id + '-convert').show();
127         }
128
129         $('#comment-' + comment_id).slideDown('slow');
130     },
131
132     update_comment: function(comment_id, comment_text) {
133         var $comment = $('#comment-' + comment_id);
134         $comment.find('.comment-text').html(comment_text);
135
136         $comment.slideDown('slow');
137     },
138
139     mark_deleted: function(post_type, post_id) {
140         if (post_type == 'question') {
141             var $container = $('#question-table');
142             $container.addClass('deleted');
143         } else {
144             var $el = $('#' + post_type + '-container-' + post_id);
145             $el.addClass('deleted');
146         }
147     },
148
149     unmark_deleted: function(post_type, post_id) {
150         if (post_type == 'answer') {
151             var $answer = $('#answer-container-' + post_id);
152             $answer.removeClass('deleted');
153         } else {
154             var $container = $('#question-table');
155             $container.removeClass('deleted');
156         }
157     },
158
159     set_subscription_button: function(text) {
160         $('.subscription_switch').html(text);
161     },
162
163     set_subscription_status: function(text) {
164         $('.subscription-status').html(text);
165     },
166
167     copy_url: function(url) {
168     }
169 }
170
171 function show_dialog (extern) {
172     var default_close_function = function($diag) {
173         $diag.fadeOut('fast', function() {
174             $diag.remove();
175         });
176     };
177
178     var options = {
179         extra_class: '',
180         pos: {
181             x: ($(window).width() / 2) + $(window).scrollLeft(),
182             y: ($(window).height() / 2) + $(window).scrollTop()
183         },
184         dim: false, 
185         yes_text: messages.ok,
186         yes_callback: default_close_function,
187         no_text: messages.cancel,
188         show_no: false,
189         close_on_clickoutside: false,
190         copy: false
191     }
192
193     $.extend(options, extern);
194
195     var copy_id = '';
196     if (options.copy) {
197         copy_id = ' id="copy_clip_button"'
198     }
199
200     if (options.event != undefined && options.event.pageX != undefined && options.event.pageY != undefined) {
201         options.pos = {x: options.event.pageX, y: options.event.pageY};
202     } else if (options.event.currentTarget != undefined) {
203         var el = jQuery("#" + options.event.currentTarget.id);
204         var position = el.offset();
205         options.pos = {
206             x: position.left,
207             y: position.top
208         }
209     }
210
211     var html = '<div class="dialog ' + options.extra_class + '" style="display: none; z-index: 999;">'
212              + '<div class="dialog-content">' + options.html + '</div><div class="dialog-buttons">';
213
214     if (options.show_no) {
215         html += '<button class="dialog-no">' + options.no_text + '</button>';
216     }
217
218     html += '<button class="dialog-yes"' + copy_id + '>' + options.yes_text + '</button>' + '</div></div>';
219
220     var $dialog = $(html);
221
222     $('body').append($dialog);
223     var message = $('.dialog-content')[0];
224     message.style.visibility = "hidden";
225
226     if (options.dim === false) {
227         $dialog.css({
228             visibility: 'hidden',
229             display: 'block'
230         });
231
232         options.dim = {w: $dialog.width(), h: $dialog.height()};
233
234         $dialog.css({
235             width: 1,
236             height: 1,
237             visibility: 'visible'
238         });
239     }
240
241     $dialog.css({
242         top: options.pos.y,
243         left: options.pos.x
244     });
245     
246     top_position_change = (options.dim.h / 2)
247     left_position_change = (options.dim.w / 2)
248     
249     new_top_position = options.pos.y - top_position_change
250     new_left_position = options.pos.x - left_position_change
251     
252     if (new_left_position < 0) {
253         left_position_change = 0
254     }
255     if (($(window).scrollTop() - new_top_position) > 0) {
256         top_position_change = 0
257     }
258     if ((options.event.pageY + options.dim.h) > ($(window).height() + $(window).scrollTop())) {
259         top_position_change = options.dim.h
260     }
261     if ((options.event.pageX + options.dim.w) > ($(window).width() + $(window).scrollLeft())) {
262         left_position_change = options.dim.w
263     }
264     
265     $dialog.animate({
266         top: "-=" + top_position_change,
267         left: "-=" + left_position_change,
268         width: options.dim.w,
269         height: options.dim.h
270     }, 200, function() {
271         message.style.visibility = "visible";
272     });
273
274     $dialog.find('.dialog-yes').click(function() {
275         options.yes_callback($dialog);
276     });
277
278     if (options.hasOwnProperty("no_callback")) {
279         $dialog.find('.dialog-no:first-child').click(function() {
280             options.no_callback($dialog);
281         });
282     } else {
283         $dialog.find('.dialog-no:first-child').click(function() {
284             default_close_function($dialog);
285         });
286     }
287
288     if (options.close_on_clickoutside) {
289         $dialog.one('clickoutside', function() {
290             default_close_function($dialog);
291         });
292     }
293
294     return $dialog;
295 }
296
297 function show_message(evt, msg, callback) {
298     var $dialog = show_dialog({
299         html: msg,
300         extra_class: 'warning',
301         event: evt,
302         yes_callback: function() {
303             $dialog.fadeOut('fast', function() {
304                 $dialog.remove();
305             });
306             if (callback) {
307                 callback();
308             }
309         },
310         close_on_clickoutside: true
311     });
312 }
313
314 function load_prompt(evt, el, url) {
315     $.get(url, function(data) {
316         var doptions = {
317          html: data,
318             extra_class: 'prompt',
319             yes_callback: function() {
320                 var postvars = {};
321                 $dialog.find('input, textarea, select').each(function() {
322                     postvars[$(this).attr('name')] = $(this).val();
323                 });
324                 $.post(url, postvars, function(data) {
325                     $dialog.fadeOut('fast', function() {
326                         $dialog.remove();
327                     });
328                     process_ajax_response(data, evt);
329                 }, 'json');
330             },
331             show_no: true,
332             copy: false
333         }
334
335         if (el.hasClass('copy')) {
336             $.extend(doptions, { yes_text : 'Copy', copy: true});
337         }
338
339         if (!el.is('.centered')) {
340             doptions.event = evt;
341         }
342
343         var $dialog = show_dialog(doptions);
344     });
345 }
346
347 function process_ajax_response(data, evt, callback) {
348     if (!data.success && data['error_message'] != undefined) {
349         show_message(evt, data.error_message, function() {if (callback) callback(true);});
350         end_command(false);
351     }
352     if (typeof data['commands'] != undefined){
353         for (var command in data.commands) {
354             response_commands[command].apply(null, data.commands[command])
355
356
357         }
358
359         if (data['message'] != undefined) {
360             show_message(evt, data.message, function() {if (callback) callback(false);})
361         } else {
362             if (callback) callback(false);
363         }
364         end_command(true);
365     }
366 }
367
368 var running = false;
369
370 function start_command() {
371     $('body').append($('<div id="command-loader"></div>'));
372     running = true;
373 }
374
375 function end_command(success) {
376     if (success) {
377         $('#command-loader').addClass('success');
378         $('#command-loader').fadeOut("slow", function() {
379             $('#command-loader').remove();
380             running = false;
381         });
382     } else {
383         $('#command-loader').remove();
384         running = false;
385     }
386 }
387
388 var comment_box_cursor_position = 0;
389 function canned_comment(post_id, comment) {
390     textarea = $('#comment-' + post_id + '-form textarea')
391
392     // Get the text from the beginning to the caret
393     textarea_start = textarea.val().substr(0, comment_box_cursor_position)
394
395     // Get the text from the caret to the end
396     textarea_end = textarea.val().substr(comment_box_cursor_position, textarea.val().length)
397
398     textarea.val(textarea_start + comment + textarea_end);
399 }
400
401 $(function() {
402     $('textarea.commentBox').bind('keydown keyup mousedown mouseup mousemove', function(evt) {
403         comment_box_cursor_position = $(this).caret().start;
404     });
405
406     $('textarea.commentBox').blur(function() {
407         //alert(comment_box_cursor_position);
408     });
409
410     $('a.ajax-command').live('click', function(evt) {
411         if (running) return false;
412
413         var el = $(this);
414
415         var ajax_url = el.attr('href')
416         ajax_url = ajax_url + "?nocache=" + new Date().getTime()
417
418         $('.context-menu-dropdown').slideUp('fast');
419
420         if (el.is('.withprompt')) {
421             load_prompt(evt, el, ajax_url);
422         } else if(el.is('.confirm')) {
423             var doptions = {
424                 html: messages.confirm,
425                 extra_class: 'confirm',
426                 yes_callback: function() {
427                     start_command();
428                     $.getJSON(ajax_url, function(data) {
429                         process_ajax_response(data, evt);
430                         $dialog.fadeOut('fast', function() {
431                             $dialog.remove();
432                         });
433                     });
434                 },
435                 yes_text: messages.yes,
436                 show_no: true,
437                 no_text: messages.no
438             }
439
440             if (!el.is('.centered')) {
441                 doptions.event = evt;
442             }
443             var $dialog = show_dialog(doptions);
444         } else {
445             start_command();
446             $.ajax({
447                 url: ajax_url,
448                 type: "POST",
449                 dataType: "json",
450                 contentType: "application/json; charset=utf-8",
451                 success: function(data) {
452                     process_ajax_response(data, evt);
453                 }
454             });
455         }
456
457         return false
458     });
459
460     $('.context-menu').each(function() {
461         var $menu = $(this);
462         var $trigger = $menu.find('.context-menu-trigger');
463         var $dropdown = $menu.find('.context-menu-dropdown');
464
465         $trigger.click(function() {
466             $dropdown.slideToggle('fast', function() {
467                 if ($dropdown.is(':visible')) {
468                    $dropdown.one('clickoutside', function() {
469                        if ($dropdown.is(':visible'))
470                             $dropdown.slideUp('fast');
471                     });
472                 }
473             });    
474         });
475     });
476
477     $('div.comment-form-container').each(function() {
478         var $container = $(this);
479         var $comment_tools = $container.parent().find('.comment-tools');
480         var $comments_container = $container.parent().find('.comments-container');
481         
482         var $form = $container.find('form');
483
484         if ($form.length) {
485             var $textarea = $container.find('textarea');
486             var textarea = $textarea.get(0);
487             var $button = $container.find('.comment-submit');
488             var $cancel = $container.find('.comment-cancel');
489             var $chars_left_message = $container.find('.comments-chars-left-msg');
490             var $chars_togo_message = $container.find('.comments-chars-togo-msg');
491             var $chars_counter = $container.find('.comments-char-left-count');
492
493             var $add_comment_link = $comment_tools.find('.add-comment-link');
494
495             var chars_limits = $chars_counter.html().split('|');
496
497             var min_length = parseInt(chars_limits[0]);
498             var max_length = parseInt(chars_limits[1]);
499
500             var warn_length = max_length - 30;
501             var current_length = 0;
502             var comment_in_form = false;
503             var interval = null;
504
505             var hcheck = !($.browser.msie || $.browser.opera);
506
507             $textarea.css("padding-top", 0).css("padding-bottom", 0).css("resize", "none");
508             textarea.style.overflow = 'hidden';
509
510
511             function cleanup_form() {
512                 $textarea.val('');
513                 $textarea.css('height', 80);
514                 $chars_counter.html(max_length);
515                 $chars_left_message.removeClass('warn');
516                 comment_in_form = false;
517                 current_length = 0;
518
519                 $chars_left_message.hide();
520                 $chars_togo_message.show();
521
522                 $chars_counter.removeClass('warn');
523                 $chars_counter.html(min_length);
524                 $button.attr("disabled","disabled");
525
526                 interval = null;
527             }
528
529             cleanup_form();
530
531             function process_form_changes() {
532                 var length = $textarea.val().replace(/[ ]{2,}/g," ").length;
533
534                 if (current_length == length)
535                     return;
536
537                 if (length < warn_length && current_length >= warn_length) {
538                     $chars_counter.removeClass('warn');
539                 } else if (current_length < warn_length && length >= warn_length){
540                     $chars_counter.addClass('warn');
541                 }
542
543                 if (length < min_length) {
544                     $chars_left_message.hide();
545                     $chars_togo_message.show();
546                     $chars_counter.html(min_length - length);
547                 } else {
548                     length = $textarea.val().length;
549                     $chars_togo_message.hide();
550                     $chars_left_message.show();
551                     $chars_counter.html(max_length - length);
552                 }
553
554                 if (length > max_length || length < min_length) {
555                     $button.attr("disabled","disabled");
556                 } else {
557                     $button.removeAttr("disabled");
558                 }
559
560                 var current_height = textarea.style.height;
561                 if (hcheck)
562                     textarea.style.height = "0px";
563
564                 var h = Math.max(80, textarea.scrollHeight);
565                 textarea.style.height = current_height;
566                 $textarea.animate({height: h + 'px'}, 50);
567
568                 current_length = length;
569             }
570
571             function show_comment_form() {
572                 $container.slideDown('slow');
573                 $add_comment_link.fadeOut('slow');
574                 $textarea.focus();
575                 interval = window.setInterval(function() {
576                     process_form_changes();
577                 }, 200);
578             }
579
580             function hide_comment_form() {
581                 if (interval != null) {
582                     window.clearInterval(interval);
583                     interval = null;
584                 }
585                 $container.slideUp('slow');
586                 $add_comment_link.fadeIn('slow');
587             }
588
589             $add_comment_link.click(function(){
590                 cleanup_form();
591                 show_comment_form();
592                 return false;
593             });
594
595             $('#' + $comments_container.attr('id') + ' .comment-edit').live('click', function() {
596                 var $link = $(this);
597                 var comment_id = /comment-(\d+)-edit/.exec($link.attr('id'))[1];
598                 var $comment = $('#comment-' + comment_id);
599
600                 comment_in_form = comment_id;
601
602                 $.get($link.attr('href'), function(data) {
603                     $textarea.val(data);
604                 });
605
606                 $comment.slideUp('slow');
607                 show_comment_form();
608                 return false;
609             });
610
611             $button.click(function(evt) {
612                 if (running) return false;
613
614                 var post_data = {
615                     comment: $textarea.val()
616                 }
617
618                 if (comment_in_form) {
619                     post_data['id'] = comment_in_form;
620                 }
621
622                 start_command();
623                 $.post($form.attr('action'), post_data, function(data) {
624                     process_ajax_response(data, evt, function(error) {
625                         if (!error) {
626                             cleanup_form();
627                             hide_comment_form();
628                         }
629                     });
630
631                 }, "json");
632
633                 return false;
634             });
635
636             // Submit comment with CTRL + Enter
637             $textarea.keydown(function(e) {
638                 if (e.ctrlKey && e.keyCode == 13 && !$button.attr('disabled')) {
639                     // console.log('submit');
640                     $(this).parent().find('input.comment-submit').click();
641                 }
642             });
643
644             $cancel.click(function(event) {
645                 if (confirm("You will lose all of your changes in this comment.  Do you still wish to proceed?")){
646                     if (comment_in_form) {
647                         $comment = $('#comment-' + comment_in_form).slideDown('slow');
648                     }
649                     hide_comment_form();
650                     cleanup_form();
651                 }
652                 return false;
653             });
654         }
655
656         $comment_tools.find('.show-all-comments-link').click(function() {
657             $comments_container.find('.not_top_scorer').slideDown('slow');
658             $(this).fadeOut('slow');
659             $comment_tools.find('.comments-showing').fadeOut('slow');
660             return false;
661         });
662     });
663
664     if ($('#editor').length) {
665         var $editor = $('#editor');
666         var $previewer = $('#previewer');
667         var $container = $('#editor-metrics');
668
669         var initial_whitespace_rExp = /^[^A-Za-zА-Яа-я0-9]+/gi;
670         var non_alphanumerics_rExp = rExp = /[^A-Za-zА-Яа-я0-9]+/gi;
671         var editor_interval = null;
672
673         $editor.focus(function() {
674             if (editor_interval == null) {
675                 editor_interval = window.setInterval(function() {
676                     recalc_metrics();
677                 }, 200);
678             }
679         });
680
681         function recalc_metrics() {
682             var text = $previewer.text();
683
684             var char_count = text.length;
685             var fullStr = text + " ";
686             var left_trimmedStr = fullStr.replace(initial_whitespace_rExp, "");
687             var cleanedStr = left_trimmedStr.replace(non_alphanumerics_rExp, " ");
688             var splitString = cleanedStr.split(" ");
689             var word_count = splitString.length - 1;
690
691             var metrics = char_count + " " + (char_count == 1 ? messages.character : messages.characters);
692             metrics += " / " + word_count + " " + (word_count == 1 ? messages.word : messages.words);
693             $container.html(metrics);
694         }
695     }
696 });
697
698 //var scriptUrl, interestingTags, ignoredTags, tags, $;
699 function pickedTags(){
700
701     var sendAjax = function(tagname, reason, action, callback){
702         var url = scriptUrl;
703         if (action == 'add'){
704             url += $.i18n._('mark-tag/');
705             if (reason == 'good'){
706                 url += $.i18n._('interesting/');
707             }
708             else {
709                 url += $.i18n._('ignored/');
710             }
711         }
712         else {
713             url += $.i18n._('unmark-tag/');
714         }
715         url = url + tagname + '/';
716
717         var call_settings = {
718             type:'POST',
719             url:url,
720             data: ''
721         };
722         if (callback !== false){
723             call_settings.success = callback;
724         }
725         $.ajax(call_settings);
726     };
727
728
729     var unpickTag = function(from_target ,tagname, reason, send_ajax){
730         //send ajax request to delete tag
731         var deleteTagLocally = function(){
732             from_target[tagname].remove();
733             delete from_target[tagname];
734             $(".tags.interesting").trigger('contentchanged');
735         };
736
737         if (send_ajax){
738             sendAjax(tagname,reason,'remove',deleteTagLocally);
739         }
740         else {
741             deleteTagLocally();
742         }
743     };
744
745     var setupTagDeleteEvents = function(obj,tag_store,tagname,reason,send_ajax){
746         obj.unbind('mouseover').bind('mouseover', function(){
747             $(this).attr('src', mediaUrl('media/images/close-small-hover.png'));
748         });
749         obj.unbind('mouseout').bind('mouseout', function(){
750             $(this).attr('src', mediaUrl('media/images/close-small-dark.png'));
751         });
752         obj.click( function(){
753             unpickTag(tag_store,tagname,reason,send_ajax);
754         });
755     };
756
757     var handlePickedTag = function(obj,reason){
758         var tagname = $.trim($(obj).prev().attr('value'));
759         var to_target = interestingTags;
760         var from_target = ignoredTags;
761         var to_tag_container;
762         if (reason == 'bad'){
763             to_target = ignoredTags;
764             from_target = interestingTags;
765             to_tag_container = $('div .tags.ignored');
766         }
767         else if (reason != 'good'){
768             return;
769         }
770         else {
771             to_tag_container = $('div .tags.interesting');
772         }
773
774         if (tagname in from_target){
775             unpickTag(from_target,tagname,reason,false);
776         }
777
778         if (!(tagname in to_target)){
779             //send ajax request to pick this tag
780
781             sendAjax(tagname,reason,'add',function(){
782                 var new_tag = $('<span></span>');
783                 new_tag.addClass('deletable-tag');
784                 var tag_link = $('<a></a>');
785                 tag_link.attr('rel','tag');
786                 tag_link.attr('href', scriptUrl + $.i18n._('tags/') + tagname + '/');
787                 tag_link.html(tagname);
788                 var del_link = $('<img />');
789                 del_link.addClass('delete-icon');
790                 del_link.attr('src', mediaUrl('media/images/close-small-dark.png'));
791
792                 setupTagDeleteEvents(del_link, to_target, tagname, reason, true);
793
794                 new_tag.append(tag_link);
795                 new_tag.append(del_link);
796                 to_tag_container.append(new_tag);
797
798                 to_target[tagname] = new_tag;
799
800                 to_tag_container.trigger('contentchanged');
801             });
802         }
803     };
804
805     var collectPickedTags = function(){
806         var good_prefix = 'interesting-tag-';
807         var bad_prefix = 'ignored-tag-';
808         var good_re = RegExp('^' + good_prefix);
809         var bad_re = RegExp('^' + bad_prefix);
810         interestingTags = {};
811         ignoredTags = {};
812         $('.deletable-tag').each(
813             function(i,item){
814                 var item_id = $(item).attr('id');
815                 var tag_name, tag_store;
816                 if (good_re.test(item_id)){
817                     tag_name = item_id.replace(good_prefix,'');
818                     tag_store = interestingTags;
819                     reason = 'good';
820                 }
821                 else if (bad_re.test(item_id)){
822                     tag_name = item_id.replace(bad_prefix,'');
823                     tag_store = ignoredTags;
824                     reason = 'bad';
825                 }
826                 else {
827                     return;
828                 }
829                 tag_store[tag_name] = $(item);
830                 setupTagDeleteEvents($(item).find('img'),tag_store,tag_name,reason,true);
831             }
832         );
833     };
834
835     var setupHideIgnoredQuestionsControl = function(){
836         $('#hideIgnoredTagsCb').unbind('click').click(function(){
837             $.ajax({
838                         type: 'POST',
839                         dataType: 'json',
840                         cache: false,
841                         url: scriptUrl + $.i18n._('command/'),
842                         data: {command:'toggle-ignored-questions'}
843                     });
844         });
845     };
846     return {
847         init: function(){
848             collectPickedTags();
849             setupHideIgnoredQuestionsControl();
850             $("#interestingTagInput, #ignoredTagInput").autocomplete(messages.matching_tags_url, {
851                 minChars: 1,
852                 matchContains: true,
853                 max: 20,
854                 /*multiple: false, - the favorite tags and ignore tags don't let you do multiple tags
855                 multipleSeparator: " "*/
856
857                 formatItem: function(row, i, max, value) {
858                     return row[1] + " (" + row[2] + ")";
859                 },
860
861                 formatResult: function(row, i, max, value){
862                     return row[1];
863                 }
864
865             });
866             $("#interestingTagAdd").click(function(){handlePickedTag(this,'good');});
867             $("#ignoredTagAdd").click(function(){handlePickedTag(this,'bad');});
868         }
869     };
870 }
871
872 Hilite={elementid:"content",exact:true,max_nodes:1000,onload:true,style_name:"hilite",style_name_suffix:true,debug_referrer:""};Hilite.search_engines=[["local","q"],["cnprog\\.","q"],["google\\.","q"],["search\\.yahoo\\.","p"],["search\\.msn\\.","q"],["search\\.live\\.","query"],["search\\.aol\\.","userQuery"],["ask\\.com","q"],["altavista\\.","q"],["feedster\\.","q"],["search\\.lycos\\.","q"],["alltheweb\\.","q"],["technorati\\.com/search/([^\\?/]+)",1],["dogpile\\.com/info\\.dogpl/search/web/([^\\?/]+)",1,true]];Hilite.decodeReferrer=function(d){var g=null;var e=new RegExp("");for(var c=0;c<Hilite.search_engines.length;c++){var f=Hilite.search_engines[c];e.compile("^http://(www\\.)?"+f[0],"i");var b=d.match(e);if(b){var a;if(isNaN(f[1])){a=Hilite.decodeReferrerQS(d,f[1])}else{a=b[f[1]+1]}if(a){a=decodeURIComponent(a);if(f.length>2&&f[2]){a=decodeURIComponent(a)}a=a.replace(/\'|"/g,"");a=a.split(/[\s,\+\.]+/);return a}break}}return null};Hilite.decodeReferrerQS=function(f,d){var b=f.indexOf("?");var c;if(b>=0){var a=new String(f.substring(b+1));b=0;c=0;while((b>=0)&&((c=a.indexOf("=",b))>=0)){var e,g;e=a.substring(b,c);b=a.indexOf("&",c)+1;if(e==d){if(b<=0){return a.substring(c+1)}else{return a.substring(c+1,b-1)}}else{if(b<=0){return null}}}}return null};Hilite.hiliteElement=function(f,e){if(!e||f.childNodes.length==0){return}var c=new Array();for(var b=0;b<e.length;b++){e[b]=e[b].toLowerCase();if(Hilite.exact){c.push("\\b"+e[b]+"\\b")}else{c.push(e[b])}}c=new RegExp(c.join("|"),"i");var a={};for(var b=0;b<e.length;b++){if(Hilite.style_name_suffix){a[e[b]]=Hilite.style_name+(b+1)}else{a[e[b]]=Hilite.style_name}}var d=function(m){var j=c.exec(m.data);if(j){var n=j[0];var i="";var h=m.splitText(j.index);var g=h.splitText(n.length);var l=m.ownerDocument.createElement("SPAN");m.parentNode.replaceChild(l,h);l.className=a[n.toLowerCase()];l.appendChild(h);return l}else{return m}};Hilite.walkElements(f.childNodes[0],1,d)};Hilite.hilite=function(){var a=Hilite.debug_referrer?Hilite.debug_referrer:document.referrer;var b=null;a=Hilite.decodeReferrer(a);if(a&&((Hilite.elementid&&(b=document.getElementById(Hilite.elementid)))||(b=document.body))){Hilite.hiliteElement(b,a)}};Hilite.walkElements=function(d,f,e){var a=/^(script|style|textarea)/i;var c=0;while(d&&f>0){c++;if(c>=Hilite.max_nodes){var b=function(){Hilite.walkElements(d,f,e)};setTimeout(b,50);return}if(d.nodeType==1){if(!a.test(d.tagName)&&d.childNodes.length>0){d=d.childNodes[0];f++;continue}}else{if(d.nodeType==3){d=e(d)}}if(d.nextSibling){d=d.nextSibling}else{while(f>0){d=d.parentNode;f--;if(d.nextSibling){d=d.nextSibling;break}}}}};if(Hilite.onload){if(window.attachEvent){window.attachEvent("onload",Hilite.hilite)}else{if(window.addEventListener){window.addEventListener("load",Hilite.hilite,false)}else{var __onload=window.onload;window.onload=function(){Hilite.hilite();__onload()}}}};
873
874 var mediaUrl = function(resource){
875     return scriptUrl + 'm/' + osqaSkin + '/' + resource;
876 };
877
878 /*
879  * jQuery i18n plugin
880  * @requires jQuery v1.1 or later
881  *
882  * Examples at: http://recurser.com/articles/2008/02/21/jquery-i18n-translation-plugin/
883  * Dual licensed under the MIT and GPL licenses:
884  *   http://www.opensource.org/licenses/mit-license.php
885  *   http://www.gnu.org/licenses/gpl.html
886  *
887  * Based on 'javascript i18n that almost doesn't suck' by markos
888  * http://markos.gaivo.net/blog/?p=100
889  *
890  * Revision: $Id$
891  * Version: 1.0.0  Feb-10-2008
892  */
893  (function($) {
894 /**
895  * i18n provides a mechanism for translating strings using a jscript dictionary.
896  *
897  */
898
899
900 /*
901  * i18n property list
902  */
903 $.i18n = {
904
905 /**
906  * setDictionary()
907  * Initialise the dictionary and translate nodes
908  *
909  * @param property_list i18n_dict : The dictionary to use for translation
910  */
911         setDictionary: function(i18n_dict) {
912                 i18n_dict = i18n_dict;
913         },
914
915 /**
916  * _()
917  * The actual translation function. Looks the given string up in the
918  * dictionary and returns the translation if one exists. If a translation
919  * is not found, returns the original word
920  *
921  * @param string str : The string to translate
922  * @param property_list params : params for using printf() on the string
923  * @return string : Translated word
924  *
925  */
926         _: function (str, params) {
927                 var transl = str;
928                 if (i18n_dict&& i18n_dict[str]) {
929                         transl = i18n_dict[str];
930                 }
931                 return this.printf(transl, params);
932         },
933
934 /**
935  * toEntity()
936  * Change non-ASCII characters to entity representation
937  *
938  * @param string str : The string to transform
939  * @return string result : Original string with non-ASCII content converted to entities
940  *
941  */
942         toEntity: function (str) {
943                 var result = '';
944                 for (var i=0;i<str.length; i++) {
945                         if (str.charCodeAt(i) > 128)
946                                 result += "&#"+str.charCodeAt(i)+";";
947                         else
948                                 result += str.charAt(i);
949                 }
950                 return result;
951         },
952
953 /**
954  * stripStr()
955  *
956  * @param string str : The string to strip
957  * @return string result : Stripped string
958  *
959  */
960         stripStr: function(str) {
961                 return str.replace(/^\s*/, "").replace(/\s*$/, "");
962         },
963
964 /**
965  * stripStrML()
966  *
967  * @param string str : The multi-line string to strip
968  * @return string result : Stripped string
969  *
970  */
971         stripStrML: function(str) {
972                 // Split because m flag doesn't exist before JS1.5 and we need to
973                 // strip newlines anyway
974                 var parts = str.split('\n');
975                 for (var i=0; i<parts.length; i++)
976                         parts[i] = stripStr(parts[i]);
977
978                 // Don't join with empty strings, because it "concats" words
979                 // And strip again
980                 return stripStr(parts.join(" "));
981         },
982
983 /*
984  * printf()
985  * C-printf like function, which substitutes %s with parameters
986  * given in list. %%s is used to escape %s.
987  *
988  * Doesn't work in IE5.0 (splice)
989  *
990  * @param string S : string to perform printf on.
991  * @param string L : Array of arguments for printf()
992  */
993         printf: function(S, L) {
994                 if (!L) return S;
995
996                 var nS = "";
997                 var tS = S.split("%s");
998
999                 for(var i=0; i<L.length; i++) {
1000                         if (tS[i].lastIndexOf('%') == tS[i].length-1 && i != L.length-1)
1001                                 tS[i] += "s"+tS.splice(i+1,1)[0];
1002                         nS += tS[i] + L[i];
1003                 }
1004                 return nS + tS[tS.length-1];
1005         }
1006
1007 };
1008
1009
1010 })(jQuery);
1011
1012
1013 //var i18nLang;
1014 var i18nZh = {
1015         'insufficient privilege':'??????????',
1016         'cannot pick own answer as best':'??????????????',
1017         'anonymous users cannot select favorite questions':'?????????????',
1018         'please login':'??????',
1019         'anonymous users cannot vote':'????????',
1020         '>15 points requried to upvote':'??+15?????????',
1021         '>100 points required to downvote':'??+100?????????',
1022         'please see': '??',
1023         'cannot vote for own posts':'??????????',
1024         'daily vote cap exhausted':'????????????????',
1025         'cannot revoke old vote':'??????????????',
1026         'please confirm offensive':"??????????????????????",
1027         'anonymous users cannot flag offensive posts':'???????????',
1028         'cannot flag message as offensive twice':'???????',
1029         'flag offensive cap exhausted':'?????????????5?\91??\92???',
1030         'need >15 points to report spam':"??+15??????\91???\92?",
1031         'confirm delete':"?????/????????",
1032         'anonymous users cannot delete/undelete':"???????????????",
1033         'post recovered':"?????????????",
1034         'post deleted':"????????????",
1035         'add comment':'????',
1036         'community karma points':'????',
1037         'to comment, need':'????',
1038         'delete this comment':'?????',
1039         'hide comments':"????",
1040         'add a comment':"????",
1041         'comments':"??",
1042         'confirm delete comment':"?????????",
1043         'characters':'??',
1044         'can write':'???',
1045         'click to close':'???????',
1046         'loading...':'???...',
1047         'tags cannot be empty':'???????',
1048         'tablimits info':"??5????????????20????",
1049         'content cannot be empty':'???????',
1050         'content minchars': '????? {0} ???',
1051         'please enter title':'??????',
1052         'title minchars':"????? {0} ???",
1053         'delete':'??',
1054         'undelete':     '??',
1055         'bold':'??',
1056         'italic':'??',
1057         'link':'???',
1058         'quote':'??',
1059         'preformatted text':'??',
1060         'image':'??',
1061         'numbered list':'??????',
1062         'bulleted list':'??????',
1063         'heading':'??',
1064         'horizontal bar':'???',
1065         'undo':'??',
1066         'redo':'??',
1067         'enter image url':'<b>??????</b></p><p>???<br />http://www.example.com/image.jpg   \"????\"',
1068         'enter url':'<b>??Web??</b></p><p>???<br />http://www.cnprog.com/   \"????\"</p>"',
1069         'upload image':'?????????'
1070 };
1071
1072 var i18nEn = {
1073         'need >15 points to report spam':'need >15 points to report spam ',
1074     '>15 points requried to upvote':'>15 points required to upvote ',
1075         'tags cannot be empty':'please enter at least one tag',
1076         'anonymous users cannot vote':'sorry, anonymous users cannot vote ',
1077         'anonymous users cannot select favorite questions':'sorry, anonymous users cannot select favorite questions ',
1078         'to comment, need': '(to comment other people\'s posts, karma ',
1079         'please see':'please see ',
1080         'community karma points':' or more is necessary) - ',
1081         'upload image':'Upload image:',
1082         'enter image url':'enter URL of the image, e.g. http://www.example.com/image.jpg \"image title\"',
1083         'enter url':'enter Web address, e.g. http://www.example.com \"page title\"',
1084         'daily vote cap exhausted':'sorry, you\'ve used up todays vote cap',
1085         'cannot pick own answer as best':'sorry, you cannot accept your own answer',
1086         'cannot revoke old vote':'sorry, older votes cannot be revoked',
1087         'please confirm offensive':'are you sure this post is offensive, contains spam, advertising, malicious remarks, etc.?',
1088         'flag offensive cap exhausted':'sorry, you\'ve used up todays cap of flagging offensive messages ',
1089         'confirm delete':'are you sure you want to delete this?',
1090         'anonymous users cannot delete/undelete':'sorry, anonymous users cannot delete or undelete posts',
1091         'post recovered':'your post is now restored!',
1092         'post deleted':'your post has been deleted',
1093         'confirm delete comment':'do you really want to delete this comment?',
1094         'can write':'have ',
1095         'tablimits info':'up to 5 tags, no more than 20 characters each',
1096         'content minchars': 'please enter more than {0} characters',
1097         'title minchars':"please enter at least {0} characters",
1098         'characters':'characters left',
1099     'cannot vote for own posts':'sorry, you cannot vote for your own posts',
1100     'cannot flag message as offensive twice':'cannot flag message as offensive twice ',
1101         '>100 points required to downvote':'>100 points required to downvote '
1102 };
1103
1104 var i18nEs = {
1105         'insufficient privilege':'privilegio insuficiente',
1106         'cannot pick own answer as best':'no puede escoger su propia respuesta como la mejor',
1107         'anonymous users cannot select favorite questions':'usuarios anonimos no pueden seleccionar',
1108         'please login':'por favor inicie sesión',
1109         'anonymous users cannot vote':'usuarios anónimos no pueden votar',
1110         '>15 points requried to upvote': '>15 puntos requeridos para votar positivamente',
1111         '>100 points required to downvote':'>100 puntos requeridos para votar negativamente',
1112         'please see': 'por favor vea',
1113         'cannot vote for own posts':'no se puede votar por sus propias publicaciones',
1114         'daily vote cap exhausted':'cuota de votos diarios excedida',
1115         'cannot revoke old vote':'no puede revocar un voto viejo',
1116         'please confirm offensive':"por favor confirme ofensiva",
1117         'anonymous users cannot flag offensive posts':'usuarios anónimos no pueden marcar publicaciones como ofensivas',
1118         'cannot flag message as offensive twice':'no puede marcar mensaje como ofensivo dos veces',
1119         'flag offensive cap exhausted':'cuota para marcar ofensivas ha sido excedida',
1120         'need >15 points to report spam':"necesita >15 puntos para reportar spam",
1121         'confirm delete':"¿Está seguro que desea borrar esto?",
1122         'anonymous users cannot delete/undelete':"usuarios anónimos no pueden borrar o recuperar publicaciones",
1123         'post recovered':"publicación recuperada",
1124         'post deleted':"publicación borrada?",
1125         'add comment':'agregar comentario',
1126         'community karma points':'reputación comunitaria',
1127         'to comment, need':'para comentar, necesita reputación',
1128         'delete this comment':'borrar este comentario',
1129         'hide comments':"ocultar comentarios",
1130         'add a comment':"agregar comentarios",
1131         'comments':"comentarios",
1132         'confirm delete comment':"¿Realmente desea borrar este comentario?",
1133         'characters':'caracteres faltantes',
1134         'can write':'tiene ',
1135         'click to close':'haga click para cerrar',
1136         'loading...':'cargando...',
1137         'tags cannot be empty':'las etiquetas no pueden estar vacías',
1138         'tablimits info':"hasta 5 etiquetas de no mas de 20 caracteres cada una",
1139         'content cannot be empty':'el contenido no puede estar vacío',
1140         'content minchars': 'por favor introduzca mas de {0} caracteres',
1141         'please enter title':'por favor ingrese un título',
1142         'title minchars':"por favor introduzca al menos {0} caracteres",
1143         'delete':'borrar',
1144         'undelete':     'recuperar',
1145         'bold': 'negrita',
1146         'italic':'cursiva',
1147         'link':'enlace',
1148         'quote':'citar',
1149         'preformatted text':'texto preformateado',
1150         'image':'imagen',
1151         'numbered list':'lista numerada',
1152         'bulleted list':'lista no numerada',
1153         'heading':'??',
1154         'horizontal bar':'barra horizontal',
1155         'undo':'deshacer',
1156         'redo':'rehacer',
1157         'enter image url':'introduzca la URL de la imagen, por ejemplo?<br />http://www.example.com/image.jpg   \"titulo de imagen\"',
1158         'enter url':'introduzca direcciones web, ejemplo?<br />http://www.cnprog.com/   \"titulo del enlace\"</p>"',
1159         'upload image':'cargar imagen?',
1160         'questions/' : 'preguntas/',
1161         'vote/' : 'votar/'
1162 };
1163
1164 var i18n = {
1165         'en':i18nEn,
1166         'zh_CN':i18nZh,
1167         'es':i18nEs
1168 };
1169
1170 var i18n_dict = i18n[i18nLang];
1171
1172 /*
1173         jQuery TextAreaResizer plugin
1174         Created on 17th January 2008 by Ryan O'Dell
1175         Version 1.0.4
1176 */(function($){var textarea,staticOffset;var iLastMousePos=0;var iMin=32;var grip;$.fn.TextAreaResizer=function(){return this.each(function(){textarea=$(this).addClass('processed'),staticOffset=null;$(this).wrap('<div class="resizable-textarea"><span></span></div>').parent().append($('<div class="grippie"></div>').bind("mousedown",{el:this},startDrag));var grippie=$('div.grippie',$(this).parent())[0];grippie.style.marginRight=(grippie.offsetWidth-$(this)[0].offsetWidth)+'px'})};function startDrag(e){textarea=$(e.data.el);textarea.blur();iLastMousePos=mousePosition(e).y;staticOffset=textarea.height()-iLastMousePos;textarea.css('opacity',0.25);$(document).mousemove(performDrag).mouseup(endDrag);return false}function performDrag(e){var iThisMousePos=mousePosition(e).y;var iMousePos=staticOffset+iThisMousePos;if(iLastMousePos>=(iThisMousePos)){iMousePos-=5}iLastMousePos=iThisMousePos;iMousePos=Math.max(iMin,iMousePos);textarea.height(iMousePos+'px');if(iMousePos<iMin){endDrag(e)}return false}function endDrag(e){$(document).unbind('mousemove',performDrag).unbind('mouseup',endDrag);textarea.css('opacity',1);textarea.focus();textarea=null;staticOffset=null;iLastMousePos=0}function mousePosition(e){return{x:e.clientX+document.documentElement.scrollLeft,y:e.clientY+document.documentElement.scrollTop}}})(jQuery);
1177 /*
1178  * Autocomplete - jQuery plugin 1.0.3
1179  *
1180  * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer
1181  *
1182  * Dual licensed under the MIT and GPL licenses:
1183  *   http://www.opensource.org/licenses/mit-license.php
1184  *   http://www.gnu.org/licenses/gpl.html
1185  *
1186  */
1187 (function(a){a.fn.extend({autocomplete:function(b,c){var d=typeof b=="string";c=a.extend({},a.Autocompleter.defaults,{url:d?b:null,data:d?null:b,delay:d?a.Autocompleter.defaults.delay:10,max:c&&!c.scroll?10:150},c);c.highlight=c.highlight||function(e){return e};c.formatMatch=c.formatMatch||c.formatItem;return this.each(function(){new a.Autocompleter(this,c)})},result:function(b){return this.bind("result",b)},search:function(b){return this.trigger("search",[b])},flushCache:function(){return this.trigger("flushCache")},setOptions:function(b){return this.trigger("setOptions",[b])},unautocomplete:function(){return this.trigger("unautocomplete")}});a.Autocompleter=function(l,g){var c={UP:38,DOWN:40,DEL:46,TAB:9,RETURN:13,ESC:27,COMMA:188,PAGEUP:33,PAGEDOWN:34,BACKSPACE:8};var b=a(l).attr("autocomplete","off").addClass(g.inputClass);var j;var p="";var m=a.Autocompleter.Cache(g);var e=0;var u;var x={mouseDownOnSelect:false};var r=a.Autocompleter.Select(g,l,d,x);var w;a.browser.opera&&a(l.form).bind("submit.autocomplete",function(){if(w){w=false;return false}});b.bind((a.browser.opera?"keypress":"keydown")+".autocomplete",function(y){u=y.keyCode;switch(y.keyCode){case c.UP:y.preventDefault();if(r.visible()){r.prev()}else{t(0,true)}break;case c.DOWN:y.preventDefault();if(r.visible()){r.next()}else{t(0,true)}break;case c.PAGEUP:y.preventDefault();if(r.visible()){r.pageUp()}else{t(0,true)}break;case c.PAGEDOWN:y.preventDefault();if(r.visible()){r.pageDown()}else{t(0,true)}break;case g.multiple&&a.trim(g.multipleSeparator)==","&&c.COMMA:case c.TAB:case c.RETURN:if(d()){y.preventDefault();w=true;return false}break;case c.ESC:r.hide();break;default:clearTimeout(j);j=setTimeout(t,g.delay);break}}).focus(function(){e++}).blur(function(){e=0;if(!x.mouseDownOnSelect){s()}}).click(function(){if(e++>1&&!r.visible()){t(0,true)}}).bind("search",function(){var y=(arguments.length>1)?arguments[1]:null;function z(D,C){var A;if(C&&C.length){for(var B=0;B<C.length;B++){if(C[B].result.toLowerCase()==D.toLowerCase()){A=C[B];break}}}if(typeof y=="function"){y(A)}else{b.trigger("result",A&&[A.data,A.value])}}a.each(h(b.val()),function(A,B){f(B,z,z)})}).bind("flushCache",function(){m.flush()}).bind("setOptions",function(){a.extend(g,arguments[1]);if("data" in arguments[1]){m.populate()}}).bind("unautocomplete",function(){r.unbind();b.unbind();a(l.form).unbind(".autocomplete")});function d(){var z=r.selected();if(!z){return false}var y=z.result;p=y;if(g.multiple){var A=h(b.val());if(A.length>1){y=A.slice(0,A.length-1).join(g.multipleSeparator)+g.multipleSeparator+y}y+=g.multipleSeparator}b.val(y);v();b.trigger("result",[z.data,z.value]);return true}function t(A,z){if(u==c.DEL){r.hide();return}var y=b.val();if(!z&&y==p){return}p=y;y=i(y);if(y.length>=g.minChars){b.addClass(g.loadingClass);if(!g.matchCase){y=y.toLowerCase()}f(y,k,v)}else{n();r.hide()}}function h(z){if(!z){return[""]}var A=z.split(g.multipleSeparator);var y=[];a.each(A,function(B,C){if(a.trim(C)){y[B]=a.trim(C)}});return y}function i(y){if(!g.multiple){return y}var z=h(y);return z[z.length-1]}function q(y,z){if(g.autoFill&&(i(b.val()).toLowerCase()==y.toLowerCase())&&u!=c.BACKSPACE){b.val(b.val()+z.substring(i(p).length));a.Autocompleter.Selection(l,p.length,p.length+z.length)}}function s(){clearTimeout(j);j=setTimeout(v,200)}function v(){var y=r.visible();r.hide();clearTimeout(j);n();if(g.mustMatch){b.search(function(z){if(!z){if(g.multiple){var A=h(b.val()).slice(0,-1);b.val(A.join(g.multipleSeparator)+(A.length?g.multipleSeparator:""))}else{b.val("")}}})}if(y){a.Autocompleter.Selection(l,l.value.length,l.value.length)}}function k(z,y){if(y&&y.length&&e){n();r.display(y,z);q(z,y[0].value);r.show()}else{v()}}function f(z,B,y){if(!g.matchCase){z=z.toLowerCase()}var A=m.load(z);if(A&&A.length){B(z,A)}else{if((typeof g.url=="string")&&(g.url.length>0)){var C={timestamp:+new Date()};a.each(g.extraParams,function(D,E){C[D]=typeof E=="function"?E():E});a.ajax({mode:"abort",port:"autocomplete"+l.name,dataType:g.dataType,url:g.url,data:a.extend({q:i(z),limit:g.max},C),success:function(E){var D=g.parse&&g.parse(E)||o(E);m.add(z,D);B(z,D)}})}else{r.emptyList();y(z)}}}function o(B){var y=[];var A=B.split("\n");for(var z=0;z<A.length;z++){var C=a.trim(A[z]);if(C){C=C.split("|");y[y.length]={data:C,value:C[0],result:g.formatResult&&g.formatResult(C,C[0])||C[0]}}}return y}function n(){b.removeClass(g.loadingClass)}};a.Autocompleter.defaults={inputClass:"ac_input",resultsClass:"ac_results",loadingClass:"ac_loading",minChars:1,delay:400,matchCase:false,matchSubset:true,matchContains:false,cacheLength:10,max:100,mustMatch:false,extraParams:{},selectFirst:true,formatItem:function(b){return b[0]},formatMatch:null,autoFill:false,width:0,multiple:false,multipleSeparator:", ",highlight:function(c,b){return c.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)("+b.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,"\\$1")+")(?![^<>]*>)(?![^&;]+;)","gi"),"<strong>$1</strong>")},scroll:true,scrollHeight:180};a.Autocompleter.Cache=function(c){var f={};var d=0;function h(l,k){if(!c.matchCase){l=l.toLowerCase()}var j=l.indexOf(k);if(j==-1){return false}return j==0||c.matchContains}function g(j,i){if(d>c.cacheLength){b()}if(!f[j]){d++}f[j]=i}function e(){if(!c.data){return false}var k={},j=0;if(!c.url){c.cacheLength=1}k[""]=[];for(var m=0,l=c.data.length;m<l;m++){var p=c.data[m];p=(typeof p=="string")?[p]:p;var o=c.formatMatch(p,m+1,c.data.length);if(o===false){continue}var n=o.charAt(0).toLowerCase();if(!k[n]){k[n]=[]}var q={value:o,data:p,result:c.formatResult&&c.formatResult(p)||o};k[n].push(q);if(j++<c.max){k[""].push(q)}}a.each(k,function(r,s){c.cacheLength++;g(r,s)})}setTimeout(e,25);function b(){f={};d=0}return{flush:b,add:g,populate:e,load:function(n){if(!c.cacheLength||!d){return null}if(!c.url&&c.matchContains){var m=[];for(var j in f){if(j.length>0){var o=f[j];a.each(o,function(p,k){if(h(k.value,n)){m.push(k)}})}}return m}else{if(f[n]){return f[n]}else{if(c.matchSubset){for(var l=n.length-1;l>=c.minChars;l--){var o=f[n.substr(0,l)];if(o){var m=[];a.each(o,function(p,k){if(h(k.value,n)){m[m.length]=k}});return m}}}}}return null}}};a.Autocompleter.Select=function(e,j,l,p){var i={ACTIVE:"ac_over"};var k,f=-1,r,m="",s=true,c,o;function n(){if(!s){return}c=a("<div/>").hide().addClass(e.resultsClass).css("position","absolute").appendTo(document.body);o=a("<ul/>").appendTo(c).mouseover(function(t){if(q(t).nodeName&&q(t).nodeName.toUpperCase()=="LI"){f=a("li",o).removeClass(i.ACTIVE).index(q(t));a(q(t)).addClass(i.ACTIVE)}}).click(function(t){a(q(t)).addClass(i.ACTIVE);l();j.focus();return false}).mousedown(function(){p.mouseDownOnSelect=true}).mouseup(function(){p.mouseDownOnSelect=false});if(e.width>0){c.css("width",e.width)}s=false}function q(u){var t=u.target;while(t&&t.tagName!="LI"){t=t.parentNode}if(!t){return[]}return t}function h(t){k.slice(f,f+1).removeClass(i.ACTIVE);g(t);var v=k.slice(f,f+1).addClass(i.ACTIVE);if(e.scroll){var u=0;k.slice(0,f).each(function(){u+=this.offsetHeight});if((u+v[0].offsetHeight-o.scrollTop())>o[0].clientHeight){o.scrollTop(u+v[0].offsetHeight-o.innerHeight())}else{if(u<o.scrollTop()){o.scrollTop(u)}}}}function g(t){f+=t;if(f<0){f=k.size()-1}else{if(f>=k.size()){f=0}}}function b(t){return e.max&&e.max<t?e.max:t}function d(){o.empty();var u=b(r.length);for(var v=0;v<u;v++){if(!r[v]){continue}var w=e.formatItem(r[v].data,v+1,u,r[v].value,m);if(w===false){continue}var t=a("<li/>").html(e.highlight(w,m)).addClass(v%2==0?"ac_even":"ac_odd").appendTo(o)[0];a.data(t,"ac_data",r[v])}k=o.find("li");if(e.selectFirst){k.slice(0,1).addClass(i.ACTIVE);f=0}if(a.fn.bgiframe){o.bgiframe()}}return{display:function(u,t){n();r=u;m=t;d()},next:function(){h(1)},prev:function(){h(-1)},pageUp:function(){if(f!=0&&f-8<0){h(-f)}else{h(-8)}},pageDown:function(){if(f!=k.size()-1&&f+8>k.size()){h(k.size()-1-f)}else{h(8)}},hide:function(){c&&c.hide();k&&k.removeClass(i.ACTIVE);f=-1},visible:function(){return c&&c.is(":visible")},current:function(){return this.visible()&&(k.filter("."+i.ACTIVE)[0]||e.selectFirst&&k[0])},show:function(){var v=a(j).offset();c.css({width:typeof e.width=="string"||e.width>0?e.width:a(j).width(),top:v.top+j.offsetHeight,left:v.left}).show();if(e.scroll){o.scrollTop(0);o.css({maxHeight:e.scrollHeight,overflow:"auto"});if(a.browser.msie&&typeof document.body.style.maxHeight==="undefined"){var t=0;k.each(function(){t+=this.offsetHeight});var u=t>e.scrollHeight;o.css("height",u?e.scrollHeight:t);if(!u){k.width(o.width()-parseInt(k.css("padding-left"))-parseInt(k.css("padding-right")))}}}},selected:function(){var t=k&&k.filter("."+i.ACTIVE).removeClass(i.ACTIVE);return t&&t.length&&a.data(t[0],"ac_data")},emptyList:function(){o&&o.empty()},unbind:function(){c&&c.remove()}}};a.Autocompleter.Selection=function(d,e,c){if(d.setSelectionRange){d.setSelectionRange(e,c)}else{if(d.createTextRange){var b=d.createTextRange();b.collapse(true);b.moveStart("character",e);b.moveEnd("character",c);b.select()}else{if(d.selectionStart){d.selectionStart=e;d.selectionEnd=c}}}d.focus()}})(jQuery);
1188
1189 var notify = function() {
1190     var visible = false;
1191     return {
1192         show: function(html) {
1193             if (html) {
1194                 $("body").css("margin-top", "2.2em");
1195                 $(".notify span").html(html);
1196             }
1197             $(".notify").fadeIn("slow");
1198             visible = true;
1199         },
1200         close: function(doPostback) {
1201             $(".notify").fadeOut("fast");
1202             $("body").css("margin-top", "0");
1203             visible = false;
1204         },
1205         isVisible: function() { return visible; }
1206     };
1207 } ();
1208
1209 /*
1210  * jQuery outside events - v1.1 - 3/16/2010
1211  * http://benalman.com/projects/jquery-outside-events-plugin/
1212  *
1213  * Copyright (c) 2010 "Cowboy" Ben Alman
1214  * Dual licensed under the MIT and GPL licenses.
1215  * http://benalman.com/about/license/
1216  */
1217 (function($,c,b){$.map("click dblclick mousemove mousedown mouseup mouseover mouseout change select submit keydown keypress keyup".split(" "),function(d){a(d)});a("focusin","focus"+b);a("focusout","blur"+b);$.addOutsideEvent=a;function a(g,e){e=e||g+b;var d=$(),h=g+"."+e+"-special-event";$.event.special[e]={setup:function(){d=d.add(this);if(d.length===1){$(c).bind(h,f)}},teardown:function(){d=d.not(this);if(d.length===0){$(c).unbind(h)}},add:function(i){var j=i.handler;i.handler=function(l,k){l.target=k;j.apply(this,arguments)}}};function f(i){$(d).each(function(){var j=$(this);if(this!==i.target&&!j.has(i.target).length){j.triggerHandler(e,[i.target])}})}}})(jQuery,document,"outside");
1218
1219 $(document).ready( function(){
1220     pickedTags().init();
1221
1222     $('input#bnewaccount').click(function() {
1223         $('#bnewaccount').disabled=true;
1224     });
1225 });
1226
1227 function yourWorkWillBeLost(e) {
1228     if(browserTester('chrome')) {
1229         return "Are you sure you want to leave?  Your work will be lost.";
1230     } else if(browserTester('safari')) {
1231         return "Are you sure you want to leave?  Your work will be lost.";
1232     } else {
1233         if(!e) e = window.event;
1234         e.cancelBubble = true;
1235         e.returnValue = 'If you leave, your work will be lost.';
1236
1237         if (e.stopPropagation) {
1238             e.stopPropagation();
1239             e.preventDefault();
1240         }
1241         return e;
1242     }
1243 }
1244
1245 function browserTester(browserString) {
1246     return navigator.userAgent.toLowerCase().indexOf(browserString) > -1;
1247 }
1248
1249 // Add missing IE functionality
1250 if (!window.addEventListener) {
1251     if (window.attachEvent) {
1252         window.addEventListener = function (type, listener, useCapture) {
1253             window.attachEvent('on' + type, listener);
1254         };
1255         window.removeEventListener = function (type, listener, useCapture) {
1256             window.detachEvent('on' + type, listener);
1257         };
1258     } else {
1259         window.addEventListener = function (type, listener, useCapture) {
1260             window['on' + type] = listener;
1261         };
1262         window.removeEventListener = function (type, listener, useCapture) {
1263             window['on' + type] = null;
1264         };
1265     }
1266 }