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.
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));
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'));
30 var response_commands = {
31 refresh_page: function() {
32 window.location.reload(true)
35 update_post_score: function(id, inc) {
36 var $score_board = $('#post-' + id + '-score');
37 var current = parseInt($score_board.html())
41 $score_board.html(current + inc)
44 update_user_post_vote: function(id, vote_type) {
45 var $upvote_button = $('#post-' + id + '-upvote');
46 var $downvote_button = $('#post-' + id + '-downvote');
48 $upvote_button.removeClass('on');
49 $downvote_button.removeClass('on');
51 if (vote_type == 'up') {
52 $upvote_button.addClass('on');
53 } else if (vote_type == 'down') {
54 $downvote_button.addClass('on');
58 update_favorite_count: function(inc) {
59 var $favorite_count = $('#favorite-count');
60 var count = parseInt($favorite_count.html());
70 $favorite_count.html(count);
73 update_favorite_mark: function(type) {
75 $('#favorite-mark').addClass('on');
77 $('#favorite-mark').removeClass('on');
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'));
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'));
95 remove_comment: function(id) {
96 var $comment = $('#comment-' + id);
97 $comment.css('background', 'red')
98 $comment.fadeOut('slow', function() {
103 award_points: function(id) {
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();
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);
121 $container.append(skeleton);
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();
129 $('#comment-' + comment_id).slideDown('slow');
132 update_comment: function(comment_id, comment_text) {
133 var $comment = $('#comment-' + comment_id);
134 $comment.find('.comment-text').html(comment_text);
136 $comment.slideDown('slow');
139 mark_deleted: function(post_type, post_id) {
140 if (post_type == 'question') {
141 var $container = $('#question-table');
142 $container.addClass('deleted');
144 var $el = $('#' + post_type + '-container-' + post_id);
145 $el.addClass('deleted');
149 unmark_deleted: function(post_type, post_id) {
150 if (post_type == 'answer') {
151 var $answer = $('#answer-container-' + post_id);
152 $answer.removeClass('deleted');
154 var $container = $('#question-table');
155 $container.removeClass('deleted');
159 set_subscription_button: function(text) {
160 $('.subscription_switch').html(text);
163 set_subscription_status: function(text) {
164 $('.subscription-status').html(text);
167 copy_url: function(url) {
171 function show_dialog (extern) {
172 var default_close_function = function($diag) {
173 $diag.fadeOut('fast', function() {
181 x: ($(window).width() / 2) + $(window).scrollLeft(),
182 y: ($(window).height() / 2) + $(window).scrollTop()
185 yes_text: messages.ok,
186 yes_callback: default_close_function,
187 no_text: messages.cancel,
189 close_on_clickoutside: false,
193 $.extend(options, extern);
197 copy_id = ' id="copy_clip_button"'
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();
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">';
214 if (options.show_no) {
215 html += '<button class="dialog-no">' + options.no_text + '</button>';
218 html += '<button class="dialog-yes"' + copy_id + '>' + options.yes_text + '</button>' + '</div></div>';
220 var $dialog = $(html);
222 $('body').append($dialog);
223 var message = $('.dialog-content')[0];
224 message.style.visibility = "hidden";
226 if (options.dim === false) {
228 visibility: 'hidden',
232 options.dim = {w: $dialog.width(), h: $dialog.height()};
237 visibility: 'visible'
246 top_position_change = (options.dim.h / 2)
247 left_position_change = (options.dim.w / 2)
249 new_top_position = options.pos.y - top_position_change
250 new_left_position = options.pos.x - left_position_change
252 if (new_left_position < 0) {
253 left_position_change = 0
255 if (($(window).scrollTop() - new_top_position) > 0) {
256 top_position_change = 0
258 if ((options.event.pageY + options.dim.h) > ($(window).height() + $(window).scrollTop())) {
259 top_position_change = options.dim.h
261 if ((options.event.pageX + options.dim.w) > ($(window).width() + $(window).scrollLeft())) {
262 left_position_change = options.dim.w
266 top: "-=" + top_position_change,
267 left: "-=" + left_position_change,
268 width: options.dim.w,
269 height: options.dim.h
271 message.style.visibility = "visible";
274 $dialog.find('.dialog-yes').click(function() {
275 options.yes_callback($dialog);
278 if (options.hasOwnProperty("no_callback")) {
279 $dialog.find('.dialog-no:first-child').click(function() {
280 options.no_callback($dialog);
283 $dialog.find('.dialog-no:first-child').click(function() {
284 default_close_function($dialog);
288 if (options.close_on_clickoutside) {
289 $dialog.one('clickoutside', function() {
290 default_close_function($dialog);
297 function show_message(evt, msg, callback) {
298 var $dialog = show_dialog({
300 extra_class: 'warning',
302 yes_callback: function() {
303 $dialog.fadeOut('fast', function() {
310 close_on_clickoutside: true
314 function load_prompt(evt, el, url) {
315 $.get(url, function(data) {
318 extra_class: 'prompt',
319 yes_callback: function() {
321 $dialog.find('input, textarea, select').each(function() {
322 postvars[$(this).attr('name')] = $(this).val();
324 $.post(url, postvars, function(data) {
325 $dialog.fadeOut('fast', function() {
328 process_ajax_response(data, evt);
335 if (el.hasClass('copy')) {
336 $.extend(doptions, { yes_text : 'Copy', copy: true});
339 if (!el.is('.centered')) {
340 doptions.event = evt;
343 var $dialog = show_dialog(doptions);
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);});
352 if (typeof data['commands'] != undefined){
353 for (var command in data.commands) {
354 response_commands[command].apply(null, data.commands[command])
359 if (data['message'] != undefined) {
360 show_message(evt, data.message, function() {if (callback) callback(false);})
362 if (callback) callback(false);
370 function start_command() {
371 $('body').append($('<div id="command-loader"></div>'));
375 function end_command(success) {
377 $('#command-loader').addClass('success');
378 $('#command-loader').fadeOut("slow", function() {
379 $('#command-loader').remove();
383 $('#command-loader').remove();
388 var comment_box_cursor_position = 0;
389 function canned_comment(post_id, comment) {
390 textarea = $('#comment-' + post_id + '-form textarea')
392 // Get the text from the beginning to the caret
393 textarea_start = textarea.val().substr(0, comment_box_cursor_position)
395 // Get the text from the caret to the end
396 textarea_end = textarea.val().substr(comment_box_cursor_position, textarea.val().length)
398 textarea.val(textarea_start + comment + textarea_end);
402 $('textarea.commentBox').bind('keydown keyup mousedown mouseup mousemove', function(evt) {
403 comment_box_cursor_position = $(this).caret().start;
406 $('textarea.commentBox').blur(function() {
407 //alert(comment_box_cursor_position);
410 $('a.ajax-command').live('click', function(evt) {
411 if (running) return false;
415 var ajax_url = el.attr('href')
416 ajax_url = ajax_url + "?nocache=" + new Date().getTime()
418 $('.context-menu-dropdown').slideUp('fast');
420 if (el.is('.withprompt')) {
421 load_prompt(evt, el, ajax_url);
422 } else if(el.is('.confirm')) {
424 html: messages.confirm,
425 extra_class: 'confirm',
426 yes_callback: function() {
428 $.getJSON(ajax_url, function(data) {
429 process_ajax_response(data, evt);
430 $dialog.fadeOut('fast', function() {
435 yes_text: messages.yes,
440 if (!el.is('.centered')) {
441 doptions.event = evt;
443 var $dialog = show_dialog(doptions);
450 contentType: "application/json; charset=utf-8",
451 success: function(data) {
452 process_ajax_response(data, evt);
460 $('.context-menu').each(function() {
462 var $trigger = $menu.find('.context-menu-trigger');
463 var $dropdown = $menu.find('.context-menu-dropdown');
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');
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');
482 var $form = $container.find('form');
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');
493 var $add_comment_link = $comment_tools.find('.add-comment-link');
495 var chars_limits = $chars_counter.html().split('|');
497 var min_length = parseInt(chars_limits[0]);
498 var max_length = parseInt(chars_limits[1]);
500 var warn_length = max_length - 30;
501 var current_length = 0;
502 var comment_in_form = false;
505 var hcheck = !($.browser.msie || $.browser.opera);
507 $textarea.css("padding-top", 0).css("padding-bottom", 0).css("resize", "none");
508 textarea.style.overflow = 'hidden';
511 function cleanup_form() {
513 $textarea.css('height', 80);
514 $chars_counter.html(max_length);
515 $chars_left_message.removeClass('warn');
516 comment_in_form = false;
519 $chars_left_message.hide();
520 $chars_togo_message.show();
522 $chars_counter.removeClass('warn');
523 $chars_counter.html(min_length);
524 $button.attr("disabled","disabled");
531 function process_form_changes() {
532 var length = $textarea.val().replace(/[ ]{2,}/g," ").length;
534 if (current_length == length)
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');
543 if (length < min_length) {
544 $chars_left_message.hide();
545 $chars_togo_message.show();
546 $chars_counter.html(min_length - length);
548 length = $textarea.val().length;
549 $chars_togo_message.hide();
550 $chars_left_message.show();
551 $chars_counter.html(max_length - length);
554 if (length > max_length || length < min_length) {
555 $button.attr("disabled","disabled");
557 $button.removeAttr("disabled");
560 var current_height = textarea.style.height;
562 textarea.style.height = "0px";
564 var h = Math.max(80, textarea.scrollHeight);
565 textarea.style.height = current_height;
566 $textarea.animate({height: h + 'px'}, 50);
568 current_length = length;
571 function show_comment_form() {
572 $container.slideDown('slow');
573 $add_comment_link.fadeOut('slow');
575 interval = window.setInterval(function() {
576 process_form_changes();
580 function hide_comment_form() {
581 if (interval != null) {
582 window.clearInterval(interval);
585 $container.slideUp('slow');
586 $add_comment_link.fadeIn('slow');
589 $add_comment_link.click(function(){
595 $('#' + $comments_container.attr('id') + ' .comment-edit').live('click', function() {
597 var comment_id = /comment-(\d+)-edit/.exec($link.attr('id'))[1];
598 var $comment = $('#comment-' + comment_id);
600 comment_in_form = comment_id;
602 $.get($link.attr('href'), function(data) {
606 $comment.slideUp('slow');
611 $button.click(function(evt) {
612 if (running) return false;
615 comment: $textarea.val()
618 if (comment_in_form) {
619 post_data['id'] = comment_in_form;
623 $.post($form.attr('action'), post_data, function(data) {
624 process_ajax_response(data, evt, function(error) {
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();
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');
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');
664 if ($('#editor').length) {
665 var $editor = $('#editor');
666 var $previewer = $('#previewer');
667 var $container = $('#editor-metrics');
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;
673 $editor.focus(function() {
674 if (editor_interval == null) {
675 editor_interval = window.setInterval(function() {
681 function recalc_metrics() {
682 var text = $previewer.text();
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;
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);
698 //var scriptUrl, interestingTags, ignoredTags, tags, $;
699 function pickedTags(){
701 var sendAjax = function(tagname, reason, action, callback){
703 if (action == 'add'){
704 url += $.i18n._('mark-tag/');
705 if (reason == 'good'){
706 url += $.i18n._('interesting/');
709 url += $.i18n._('ignored/');
713 url += $.i18n._('unmark-tag/');
715 url = url + tagname + '/';
717 var call_settings = {
722 if (callback !== false){
723 call_settings.success = callback;
725 $.ajax(call_settings);
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');
738 sendAjax(tagname,reason,'remove',deleteTagLocally);
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'));
749 obj.unbind('mouseout').bind('mouseout', function(){
750 $(this).attr('src', mediaUrl('media/images/close-small-dark.png'));
752 obj.click( function(){
753 unpickTag(tag_store,tagname,reason,send_ajax);
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');
767 else if (reason != 'good'){
771 to_tag_container = $('div .tags.interesting');
774 if (tagname in from_target){
775 unpickTag(from_target,tagname,reason,false);
778 if (!(tagname in to_target)){
779 //send ajax request to pick this tag
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'));
792 setupTagDeleteEvents(del_link, to_target, tagname, reason, true);
794 new_tag.append(tag_link);
795 new_tag.append(del_link);
796 to_tag_container.append(new_tag);
798 to_target[tagname] = new_tag;
800 to_tag_container.trigger('contentchanged');
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 = {};
812 $('.deletable-tag').each(
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;
821 else if (bad_re.test(item_id)){
822 tag_name = item_id.replace(bad_prefix,'');
823 tag_store = ignoredTags;
829 tag_store[tag_name] = $(item);
830 setupTagDeleteEvents($(item).find('img'),tag_store,tag_name,reason,true);
835 var setupHideIgnoredQuestionsControl = function(){
836 $('#hideIgnoredTagsCb').unbind('click').click(function(){
841 url: scriptUrl + $.i18n._('command/'),
842 data: {command:'toggle-ignored-questions'}
849 setupHideIgnoredQuestionsControl();
850 $("#interestingTagInput, #ignoredTagInput").autocomplete(messages.matching_tags_url, {
854 /*multiple: false, - the favorite tags and ignore tags don't let you do multiple tags
855 multipleSeparator: " "*/
857 formatItem: function(row, i, max, value) {
858 return row[1] + " (" + row[2] + ")";
861 formatResult: function(row, i, max, value){
866 $("#interestingTagAdd").click(function(){handlePickedTag(this,'good');});
867 $("#ignoredTagAdd").click(function(){handlePickedTag(this,'bad');});
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()}}}};
874 var mediaUrl = function(resource){
875 return scriptUrl + 'm/' + osqaSkin + '/' + resource;
880 * @requires jQuery v1.1 or later
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
887 * Based on 'javascript i18n that almost doesn't suck' by markos
888 * http://markos.gaivo.net/blog/?p=100
891 * Version: 1.0.0 Feb-10-2008
895 * i18n provides a mechanism for translating strings using a jscript dictionary.
907 * Initialise the dictionary and translate nodes
909 * @param property_list i18n_dict : The dictionary to use for translation
911 setDictionary: function(i18n_dict) {
912 i18n_dict = i18n_dict;
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
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
926 _: function (str, params) {
928 if (i18n_dict&& i18n_dict[str]) {
929 transl = i18n_dict[str];
931 return this.printf(transl, params);
936 * Change non-ASCII characters to entity representation
938 * @param string str : The string to transform
939 * @return string result : Original string with non-ASCII content converted to entities
942 toEntity: function (str) {
944 for (var i=0;i<str.length; i++) {
945 if (str.charCodeAt(i) > 128)
946 result += "&#"+str.charCodeAt(i)+";";
948 result += str.charAt(i);
956 * @param string str : The string to strip
957 * @return string result : Stripped string
960 stripStr: function(str) {
961 return str.replace(/^\s*/, "").replace(/\s*$/, "");
967 * @param string str : The multi-line string to strip
968 * @return string result : Stripped string
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]);
978 // Don't join with empty strings, because it "concats" words
980 return stripStr(parts.join(" "));
985 * C-printf like function, which substitutes %s with parameters
986 * given in list. %%s is used to escape %s.
988 * Doesn't work in IE5.0 (splice)
990 * @param string S : string to perform printf on.
991 * @param string L : Array of arguments for printf()
993 printf: function(S, L) {
997 var tS = S.split("%s");
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];
1004 return nS + tS[tS.length-1];
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?????????',
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':"????",
1042 'confirm delete comment':"?????????",
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} ???",
1059 'preformatted text':'??',
1061 'numbered list':'??????',
1062 'bulleted list':'??????',
1064 'horizontal bar':'???',
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':'?????????'
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 '
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",
1144 'undelete': 'recuperar',
1149 'preformatted text':'texto preformateado',
1151 'numbered list':'lista numerada',
1152 'bulleted list':'lista no numerada',
1154 'horizontal bar':'barra horizontal',
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/',
1170 var i18n_dict = i18n[i18nLang];
1173 jQuery TextAreaResizer plugin
1174 Created on 17th January 2008 by Ryan O'Dell
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);
1178 * Autocomplete - jQuery plugin 1.0.3
1180 * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer
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
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);
1189 var notify = function() {
1190 var visible = false;
1192 show: function(html) {
1194 $("body").css("margin-top", "2.2em");
1195 $(".notify span").html(html);
1197 $(".notify").fadeIn("slow");
1200 close: function(doPostback) {
1201 $(".notify").fadeOut("fast");
1202 $("body").css("margin-top", "0");
1205 isVisible: function() { return visible; }
1210 * jQuery outside events - v1.1 - 3/16/2010
1211 * http://benalman.com/projects/jquery-outside-events-plugin/
1213 * Copyright (c) 2010 "Cowboy" Ben Alman
1214 * Dual licensed under the MIT and GPL licenses.
1215 * http://benalman.com/about/license/
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");
1219 $(document).ready( function(){
1220 pickedTags().init();
1222 $('input#bnewaccount').click(function() {
1223 $('#bnewaccount').disabled=true;
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.";
1233 if(!e) e = window.event;
1234 e.cancelBubble = true;
1235 e.returnValue = 'If you leave, your work will be lost.';
1237 if (e.stopPropagation) {
1238 e.stopPropagation();
1245 function browserTester(browserString) {
1246 return navigator.userAgent.toLowerCase().indexOf(browserString) > -1;
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);
1255 window.removeEventListener = function (type, listener, useCapture) {
1256 window.detachEvent('on' + type, listener);
1259 window.addEventListener = function (type, listener, useCapture) {
1260 window['on' + type] = listener;
1262 window.removeEventListener = function (type, listener, useCapture) {
1263 window['on' + type] = null;