2  * We do not want the CSRF protection enabled for the AJAX post requests, it causes only trouble.
\r 
   3  * Get the csrftoken cookie and pass it to the X-CSRFToken HTTP request property.
\r 
   6 $('html').ajaxSend(function(event, xhr, settings) {
\r 
   7     function getCookie(name) {
\r 
   8         var cookieValue = null;
\r 
   9         if (document.cookie && document.cookie != '') {
\r 
  10             var cookies = document.cookie.split(';');
\r 
  11             for (var i = 0; i < cookies.length; i++) {
\r 
  12                 var cookie = jQuery.trim(cookies[i]);
\r 
  13                 // Does this cookie string begin with the name we want?
\r 
  14                 if (cookie.substring(0, name.length + 1) == (name + '=')) {
\r 
  15                     cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
\r 
  23         if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) {
\r 
  24             // Only send the token to relative URLs i.e. locally.
\r 
  25             xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken'));
\r 
  30 var response_commands = {
\r 
  31     refresh_page: function() {
\r 
  32         window.location.reload(true)
\r 
  35     update_post_score: function(id, inc) {
\r 
  36         var $score_board = $('#post-' + id + '-score');
\r 
  37         var current = parseInt($score_board.html())
\r 
  38         if (isNaN(current)){
\r 
  41         $score_board.html(current + inc)
\r 
  44     update_user_post_vote: function(id, vote_type) {
\r 
  45         var $upvote_button = $('#post-' + id + '-upvote');
\r 
  46         var $downvote_button = $('#post-' + id + '-downvote');
\r 
  48         $upvote_button.removeClass('on');
\r 
  49         $downvote_button.removeClass('on');
\r 
  51         if (vote_type == 'up') {
\r 
  52             $upvote_button.addClass('on');
\r 
  53         } else if (vote_type == 'down') {
\r 
  54             $downvote_button.addClass('on');
\r 
  58     update_favorite_count: function(inc) {
\r 
  59         var $favorite_count = $('#favorite-count');
\r 
  60         var count = parseInt($favorite_count.html());
\r 
  70         $favorite_count.html(count);
\r 
  73     update_favorite_mark: function(type) {
\r 
  75             $('#favorite-mark').addClass('on');
\r 
  77             $('#favorite-mark').removeClass('on');
\r 
  81     mark_accepted: function(id) {        
\r 
  82         var $answer = $('#answer-container-' + id);
\r 
  83         $answer.addClass('accepted-answer');
\r 
  84         $answer.find('.accept-answer').addClass('on');
\r 
  85         $answer.find('.accept-answer').attr('title', $answer.find('.accept-answer').attr('bn:on'));
\r 
  88     unmark_accepted: function(id) {
\r 
  89         var $answer = $('#answer-container-' + id);
\r 
  90         $answer.removeClass('accepted-answer');
\r 
  91         $answer.find('.accept-answer').removeClass('on');
\r 
  92         $answer.find('.accept-answer').attr('title', $answer.find('.accept-answer').attr('bn:off'));
\r 
  95     remove_comment: function(id) {
\r 
  96         var $comment = $('#comment-' + id);
\r 
  97         $comment.css('background', 'red')
\r 
  98         $comment.fadeOut('slow', function() {
\r 
 103     award_points: function(id) {
\r 
 107     insert_comment: function(post_id, comment_id, comment, username, profile_url, delete_url, edit_url, convert_url, can_convert, show_latest_comments_first) {
\r 
 108         var $container = $('#comments-container-' + post_id);
\r 
 109         var skeleton = $('#new-comment-skeleton-' + post_id).html().toString();
\r 
 111         skeleton = skeleton.replace(new RegExp('%ID%', 'g'), comment_id)
\r 
 112                 .replace(new RegExp('%COMMENT%', 'g'), comment)
\r 
 113                 .replace(new RegExp('%USERNAME%', 'g'), username)
\r 
 114                 .replace(new RegExp('%PROFILE_URL%', 'g'), profile_url)
\r 
 115                 .replace(new RegExp('%DELETE_URL%', 'g'), delete_url)
\r 
 116                 .replace(new RegExp('%EDIT_URL%', 'g'), edit_url)
\r 
 117                 .replace(new RegExp('%CONVERT_URL%', 'g'), convert_url);
\r 
 118         if (show_latest_comments_first) {
\r 
 119             $container.prepend(skeleton);
\r 
 121             $container.append(skeleton);
\r 
 124         // Show the convert comment to answer tool only if the current comment can be converted
\r 
 125         if (can_convert == true) {
\r 
 126             $('#comment-' + comment_id + '-convert').show();
\r 
 129         $('#comment-' + comment_id).slideDown('slow');
\r 
 132     update_comment: function(comment_id, comment_text) {
\r 
 133         var $comment = $('#comment-' + comment_id);
\r 
 134         $comment.find('.comment-text').html(comment_text);
\r 
 136         $comment.slideDown('slow');
\r 
 139     mark_deleted: function(post_type, post_id) {
\r 
 140         if (post_type == 'question') {
\r 
 141             var $container = $('#question-table');
\r 
 142             $container.addClass('deleted');
\r 
 144             var $el = $('#' + post_type + '-container-' + post_id);
\r 
 145             $el.addClass('deleted');
\r 
 149     unmark_deleted: function(post_type, post_id) {
\r 
 150         if (post_type == 'answer') {
\r 
 151             var $answer = $('#answer-container-' + post_id);
\r 
 152             $answer.removeClass('deleted');
\r 
 154             var $container = $('#question-table');
\r 
 155             $container.removeClass('deleted');
\r 
 159     set_subscription_button: function(text) {
\r 
 160         $('.subscription_switch').html(text);
\r 
 163     set_subscription_status: function(text) {
\r 
 164         $('.subscription-status').html(text);
\r 
 167     copy_url: function(url) {
\r 
 171 function show_dialog (extern) {
\r 
 172     var default_close_function = function($diag) {
\r 
 173         $diag.fadeOut('fast', function() {
\r 
 181             x: ($(window).width() / 2) + $(window).scrollLeft(),
\r 
 182             y: ($(window).height() / 2) + $(window).scrollTop()
\r 
 185         yes_text: messages.ok,
\r 
 186         yes_callback: default_close_function,
\r 
 187         no_text: messages.cancel,
\r 
 189         close_on_clickoutside: false,
\r 
 193     $.extend(options, extern);
\r 
 196     if (options.copy) {
\r 
 197         copy_id = ' id="copy_clip_button"'
\r 
 200     if (options.event != undefined && options.event.pageX != undefined && options.event.pageY != undefined) {
\r 
 201         options.pos = {x: options.event.pageX, y: options.event.pageY};
\r 
 202     } else if (options.event.currentTarget != undefined) {
\r 
 203         var el = jQuery("#" + options.event.currentTarget.id);
\r 
 204         var position = el.offset();
\r 
 211     var html = '<div class="dialog ' + options.extra_class + '" style="display: none; z-index: 999;">'
\r 
 212              + '<div class="dialog-content">' + options.html + '</div><div class="dialog-buttons">';
\r 
 214     if (options.show_no) {
\r 
 215         html += '<button class="dialog-no">' + options.no_text + '</button>';
\r 
 218     html += '<button class="dialog-yes"' + copy_id + '>' + options.yes_text + '</button>' + '</div></div>';
\r 
 220     var $dialog = $(html);
\r 
 222     $('body').append($dialog);
\r 
 223     var message = $('.dialog-content')[0];
\r 
 224     message.style.visibility = "hidden";
\r 
 226     if (options.dim === false) {
\r 
 228             visibility: 'hidden',
\r 
 232         options.dim = {w: $dialog.width(), h: $dialog.height()};
\r 
 237             visibility: 'visible'
\r 
 242         top: options.pos.y,
\r 
 243         left: options.pos.x
\r 
 246     top_position_change = (options.dim.h / 2)
\r 
 247     left_position_change = (options.dim.w / 2)
\r 
 249     new_top_position = options.pos.y - top_position_change
\r 
 250     new_left_position = options.pos.x - left_position_change
\r 
 252     if (new_left_position < 0) {
\r 
 253         left_position_change = 0
\r 
 255     if (($(window).scrollTop() - new_top_position) > 0) {
\r 
 256         top_position_change = 0
\r 
 258     if ((options.event.pageY + options.dim.h) > ($(window).height() + $(window).scrollTop())) {
\r 
 259         top_position_change = options.dim.h
\r 
 261     if ((options.event.pageX + options.dim.w) > ($(window).width() + $(window).scrollLeft())) {
\r 
 262         left_position_change = options.dim.w
\r 
 266         top: "-=" + top_position_change,
\r 
 267         left: "-=" + left_position_change,
\r 
 268         width: options.dim.w,
\r 
 269         height: options.dim.h
\r 
 270     }, 200, function() {
\r 
 271         message.style.visibility = "visible";
\r 
 274     $dialog.find('.dialog-yes').click(function() {
\r 
 275         options.yes_callback($dialog);
\r 
 278     if (options.hasOwnProperty("no_callback")) {
\r 
 279         $dialog.find('.dialog-no:first-child').click(function() {
\r 
 280             options.no_callback($dialog);
\r 
 283         $dialog.find('.dialog-no:first-child').click(function() {
\r 
 284             default_close_function($dialog);
\r 
 288     if (options.close_on_clickoutside) {
\r 
 289         $dialog.one('clickoutside', function() {
\r 
 290             default_close_function($dialog);
\r 
 297 function show_message(evt, msg, callback) {
\r 
 298     var $dialog = show_dialog({
\r 
 300         extra_class: 'warning',
\r 
 302         yes_callback: function() {
\r 
 303             $dialog.fadeOut('fast', function() {
\r 
 310         close_on_clickoutside: true
\r 
 314 function load_prompt(evt, el, url) {
\r 
 315     $.get(url, function(data) {
\r 
 318             extra_class: 'prompt',
\r 
 319             yes_callback: function() {
\r 
 321                 $dialog.find('input, textarea, select').each(function() {
\r 
 322                     postvars[$(this).attr('name')] = $(this).val();
\r 
 324                 $.post(url, postvars, function(data) {
\r 
 325                     $dialog.fadeOut('fast', function() {
\r 
 328                     process_ajax_response(data, evt);
\r 
 335         if (el.hasClass('copy')) {
\r 
 336             $.extend(doptions, { yes_text : 'Copy', copy: true});
\r 
 339         if (!el.is('.centered')) {
\r 
 340             doptions.event = evt;
\r 
 343         var $dialog = show_dialog(doptions);
\r 
 347 function process_ajax_response(data, evt, callback) {
\r 
 348     if (!data.success && data['error_message'] != undefined) {
\r 
 349         show_message(evt, data.error_message, function() {if (callback) callback(true);});
\r 
 350         end_command(false);
\r 
 352     if (typeof data['commands'] != undefined){
\r 
 353         for (var command in data.commands) {
\r 
 354             response_commands[command].apply(null, data.commands[command])
\r 
 359         if (data['message'] != undefined) {
\r 
 360             show_message(evt, data.message, function() {if (callback) callback(false);})
\r 
 362             if (callback) callback(false);
\r 
 368 var running = false;
\r 
 370 function start_command() {
\r 
 371     $('body').append($('<div id="command-loader"></div>'));
\r 
 375 function end_command(success) {
\r 
 377         $('#command-loader').addClass('success');
\r 
 378         $('#command-loader').fadeOut("slow", function() {
\r 
 379             $('#command-loader').remove();
\r 
 383         $('#command-loader').remove();
\r 
 388 var comment_box_cursor_position = 0;
\r 
 389 function canned_comment(post_id, comment) {
\r 
 390     textarea = $('#comment-' + post_id + '-form textarea')
\r 
 392     // Get the text from the beginning to the caret
\r 
 393     textarea_start = textarea.val().substr(0, comment_box_cursor_position)
\r 
 395     // Get the text from the caret to the end
\r 
 396     textarea_end = textarea.val().substr(comment_box_cursor_position, textarea.val().length)
\r 
 398     textarea.val(textarea_start + comment + textarea_end);
\r 
 402     $('textarea.commentBox').bind('keydown keyup mousedown mouseup mousemove', function(evt) {
\r 
 403         comment_box_cursor_position = $(this).caret().start;
\r 
 406     $('textarea.commentBox').blur(function() {
\r 
 407         //alert(comment_box_cursor_position);
\r 
 410     $('a.ajax-command').live('click', function(evt) {
\r 
 411         if (running) return false;
\r 
 415         var ajax_url = el.attr('href')
\r 
 416         ajax_url = ajax_url + "?nocache=" + new Date().getTime()
\r 
 418         $('.context-menu-dropdown').slideUp('fast');
\r 
 420         if (el.is('.withprompt')) {
\r 
 421             load_prompt(evt, el, ajax_url);
\r 
 422         } else if(el.is('.confirm')) {
\r 
 424                 html: messages.confirm,
\r 
 425                 extra_class: 'confirm',
\r 
 426                 yes_callback: function() {
\r 
 428                     $.getJSON(ajax_url, function(data) {
\r 
 429                         process_ajax_response(data, evt);
\r 
 430                         $dialog.fadeOut('fast', function() {
\r 
 435                 yes_text: messages.yes,
\r 
 437                 no_text: messages.no
\r 
 440             if (!el.is('.centered')) {
\r 
 441                 doptions.event = evt;
\r 
 443             var $dialog = show_dialog(doptions);
\r 
 450                 contentType: "application/json; charset=utf-8",
\r 
 451                 success: function(data) {
\r 
 452                     process_ajax_response(data, evt);
\r 
 460     $('.context-menu').each(function() {
\r 
 461         var $menu = $(this);
\r 
 462         var $trigger = $menu.find('.context-menu-trigger');
\r 
 463         var $dropdown = $menu.find('.context-menu-dropdown');
\r 
 465         $trigger.click(function() {
\r 
 466             $dropdown.slideToggle('fast', function() {
\r 
 467                 if ($dropdown.is(':visible')) {
\r 
 468                    $dropdown.one('clickoutside', function() {
\r 
 469                        if ($dropdown.is(':visible'))
\r 
 470                             $dropdown.slideUp('fast');
\r 
 477     $('div.comment-form-container').each(function() {
\r 
 478         var $container = $(this);
\r 
 479         var $comment_tools = $container.parent().find('.comment-tools');
\r 
 480         var $comments_container = $container.parent().find('.comments-container');
\r 
 482         var $form = $container.find('form');
\r 
 484         if ($form.length) {
\r 
 485             var $textarea = $container.find('textarea');
\r 
 486             var textarea = $textarea.get(0);
\r 
 487             var $button = $container.find('.comment-submit');
\r 
 488             var $cancel = $container.find('.comment-cancel');
\r 
 489             var $chars_left_message = $container.find('.comments-chars-left-msg');
\r 
 490             var $chars_togo_message = $container.find('.comments-chars-togo-msg');
\r 
 491             var $chars_counter = $container.find('.comments-char-left-count');
\r 
 493             var $add_comment_link = $comment_tools.find('.add-comment-link');
\r 
 495             var chars_limits = $chars_counter.html().split('|');
\r 
 497             var min_length = parseInt(chars_limits[0]);
\r 
 498             var max_length = parseInt(chars_limits[1]);
\r 
 500             var warn_length = max_length - 30;
\r 
 501             var current_length = 0;
\r 
 502             var comment_in_form = false;
\r 
 503             var interval = null;
\r 
 505             var hcheck = !($.browser.msie || $.browser.opera);
\r 
 507             $textarea.css("padding-top", 0).css("padding-bottom", 0).css("resize", "none");
\r 
 508             textarea.style.overflow = 'hidden';
\r 
 511             function cleanup_form() {
\r 
 513                 $textarea.css('height', 80);
\r 
 514                 $chars_counter.html(max_length);
\r 
 515                 $chars_left_message.removeClass('warn');
\r 
 516                 comment_in_form = false;
\r 
 517                 current_length = 0;
\r 
 519                 $chars_left_message.hide();
\r 
 520                 $chars_togo_message.show();
\r 
 522                 $chars_counter.removeClass('warn');
\r 
 523                 $chars_counter.html(min_length);
\r 
 524                 $button.attr("disabled","disabled");
\r 
 531             function process_form_changes() {
\r 
 532                 var length = $textarea.val().replace(/[ ]{2,}/g," ").length;
\r 
 534                 if (current_length == length)
\r 
 537                 if (length < warn_length && current_length >= warn_length) {
\r 
 538                     $chars_counter.removeClass('warn');
\r 
 539                 } else if (current_length < warn_length && length >= warn_length){
\r 
 540                     $chars_counter.addClass('warn');
\r 
 543                 if (length < min_length) {
\r 
 544                     $chars_left_message.hide();
\r 
 545                     $chars_togo_message.show();
\r 
 546                     $chars_counter.html(min_length - length);
\r 
 548                     length = $textarea.val().length;
\r 
 549                     $chars_togo_message.hide();
\r 
 550                     $chars_left_message.show();
\r 
 551                     $chars_counter.html(max_length - length);
\r 
 554                 if (length > max_length || length < min_length) {
\r 
 555                     $button.attr("disabled","disabled");
\r 
 557                     $button.removeAttr("disabled");
\r 
 560                 var current_height = textarea.style.height;
\r 
 562                     textarea.style.height = "0px";
\r 
 564                 var h = Math.max(80, textarea.scrollHeight);
\r 
 565                 textarea.style.height = current_height;
\r 
 566                 $textarea.animate({height: h + 'px'}, 50);
\r 
 568                 current_length = length;
\r 
 571             function show_comment_form() {
\r 
 572                 $container.slideDown('slow');
\r 
 573                 $add_comment_link.fadeOut('slow');
\r 
 575                 interval = window.setInterval(function() {
\r 
 576                     process_form_changes();
\r 
 580             function hide_comment_form() {
\r 
 581                 if (interval != null) {
\r 
 582                     window.clearInterval(interval);
\r 
 585                 $container.slideUp('slow');
\r 
 586                 $add_comment_link.fadeIn('slow');
\r 
 589             $add_comment_link.click(function(){
\r 
 591                 show_comment_form();
\r 
 595             $('#' + $comments_container.attr('id') + ' .comment-edit').live('click', function() {
\r 
 596                 var $link = $(this);
\r 
 597                 var comment_id = /comment-(\d+)-edit/.exec($link.attr('id'))[1];
\r 
 598                 var $comment = $('#comment-' + comment_id);
\r 
 600                 comment_in_form = comment_id;
\r 
 602                 $.get($link.attr('href'), function(data) {
\r 
 603                     $textarea.val(data);
\r 
 606                 $comment.slideUp('slow');
\r 
 607                 show_comment_form();
\r 
 611             $button.click(function(evt) {
\r 
 612                 if (running) return false;
\r 
 615                     comment: $textarea.val()
\r 
 618                 if (comment_in_form) {
\r 
 619                     post_data['id'] = comment_in_form;
\r 
 623                 $.post($form.attr('action'), post_data, function(data) {
\r 
 624                     process_ajax_response(data, evt, function(error) {
\r 
 627                             hide_comment_form();
\r 
 636             // Submit comment with CTRL + Enter
\r 
 637             $textarea.keydown(function(e) {
\r 
 638                 if (e.ctrlKey && e.keyCode == 13 && !$button.attr('disabled')) {
\r 
 639                     // console.log('submit');
\r 
 640                     $(this).parent().find('input.comment-submit').click();
\r 
 644             $cancel.click(function(event) {
\r 
 645                 if (confirm("You will lose all of your changes in this comment.  Do you still wish to proceed?")){
\r 
 646                     if (comment_in_form) {
\r 
 647                         $comment = $('#comment-' + comment_in_form).slideDown('slow');
\r 
 649                     hide_comment_form();
\r 
 656         $comment_tools.find('.show-all-comments-link').click(function() {
\r 
 657             $comments_container.find('.not_top_scorer').slideDown('slow');
\r 
 658             $(this).fadeOut('slow');
\r 
 659             $comment_tools.find('.comments-showing').fadeOut('slow');
\r 
 664     if ($('#editor').length) {
\r 
 665         var $editor = $('#editor');
\r 
 666         var $previewer = $('#previewer');
\r 
 667         var $container = $('#editor-metrics');
\r 
 669         var initial_whitespace_rExp = /^[^A-Za-zА-Яа-я0-9]+/gi;
\r 
 670         var non_alphanumerics_rExp = rExp = /[^A-Za-zА-Яа-я0-9]+/gi;
\r 
 671         var editor_interval = null;
\r 
 673         $editor.focus(function() {
\r 
 674             if (editor_interval == null) {
\r 
 675                 editor_interval = window.setInterval(function() {
\r 
 681         function recalc_metrics() {
\r 
 682             var text = $previewer.text();
\r 
 684             var char_count = text.length;
\r 
 685             var fullStr = text + " ";
\r 
 686             var left_trimmedStr = fullStr.replace(initial_whitespace_rExp, "");
\r 
 687             var cleanedStr = left_trimmedStr.replace(non_alphanumerics_rExp, " ");
\r 
 688             var splitString = cleanedStr.split(" ");
\r 
 689             var word_count = splitString.length - 1;
\r 
 691             var metrics = char_count + " " + (char_count == 1 ? messages.character : messages.characters);
\r 
 692             metrics += " / " + word_count + " " + (word_count == 1 ? messages.word : messages.words);
\r 
 693             $container.html(metrics);
\r 
 698 //var scriptUrl, interestingTags, ignoredTags, tags, $;
\r 
 699 function pickedTags(){
\r 
 701     var sendAjax = function(tagname, reason, action, callback){
\r 
 702         var url = scriptUrl;
\r 
 703         if (action == 'add'){
\r 
 704             url += $.i18n._('mark-tag/');
\r 
 705             if (reason == 'good'){
\r 
 706                 url += $.i18n._('interesting/');
\r 
 709                 url += $.i18n._('ignored/');
\r 
 713             url += $.i18n._('unmark-tag/');
\r 
 715         url = url + tagname + '/';
\r 
 717         var call_settings = {
\r 
 722         if (callback !== false){
\r 
 723             call_settings.success = callback;
\r 
 725         $.ajax(call_settings);
\r 
 729     var unpickTag = function(from_target ,tagname, reason, send_ajax){
\r 
 730         //send ajax request to delete tag
\r 
 731         var deleteTagLocally = function(){
\r 
 732             from_target[tagname].remove();
\r 
 733             delete from_target[tagname];
\r 
 734             $(".tags.interesting").trigger('contentchanged');
\r 
 738             sendAjax(tagname,reason,'remove',deleteTagLocally);
\r 
 741             deleteTagLocally();
\r 
 745     var setupTagDeleteEvents = function(obj,tag_store,tagname,reason,send_ajax){
\r 
 746         obj.unbind('mouseover').bind('mouseover', function(){
\r 
 747             $(this).attr('src', mediaUrl('media/images/close-small-hover.png'));
\r 
 749         obj.unbind('mouseout').bind('mouseout', function(){
\r 
 750             $(this).attr('src', mediaUrl('media/images/close-small-dark.png'));
\r 
 752         obj.click( function(){
\r 
 753             unpickTag(tag_store,tagname,reason,send_ajax);
\r 
 757     var handlePickedTag = function(obj,reason){
\r 
 758         var tagname = $.trim($(obj).prev().attr('value'));
\r 
 759         var to_target = interestingTags;
\r 
 760         var from_target = ignoredTags;
\r 
 761         var to_tag_container;
\r 
 762         if (reason == 'bad'){
\r 
 763             to_target = ignoredTags;
\r 
 764             from_target = interestingTags;
\r 
 765             to_tag_container = $('div .tags.ignored');
\r 
 767         else if (reason != 'good'){
\r 
 771             to_tag_container = $('div .tags.interesting');
\r 
 774         if (tagname in from_target){
\r 
 775             unpickTag(from_target,tagname,reason,false);
\r 
 778         if (!(tagname in to_target)){
\r 
 779             //send ajax request to pick this tag
\r 
 781             sendAjax(tagname,reason,'add',function(){
\r 
 782                 var new_tag = $('<span></span>');
\r 
 783                 new_tag.addClass('deletable-tag');
\r 
 784                 var tag_link = $('<a></a>');
\r 
 785                 tag_link.attr('rel','tag');
\r 
 786                 tag_link.attr('href', scriptUrl + $.i18n._('tags/') + tagname + '/');
\r 
 787                 tag_link.html(tagname);
\r 
 788                 var del_link = $('<img />');
\r 
 789                 del_link.addClass('delete-icon');
\r 
 790                 del_link.attr('src', mediaUrl('media/images/close-small-dark.png'));
\r 
 792                 setupTagDeleteEvents(del_link, to_target, tagname, reason, true);
\r 
 794                 new_tag.append(tag_link);
\r 
 795                 new_tag.append(del_link);
\r 
 796                 to_tag_container.append(new_tag);
\r 
 798                 to_target[tagname] = new_tag;
\r 
 800                 to_tag_container.trigger('contentchanged');
\r 
 805     var collectPickedTags = function(){
\r 
 806         var good_prefix = 'interesting-tag-';
\r 
 807         var bad_prefix = 'ignored-tag-';
\r 
 808         var good_re = RegExp('^' + good_prefix);
\r 
 809         var bad_re = RegExp('^' + bad_prefix);
\r 
 810         interestingTags = {};
\r 
 812         $('.deletable-tag').each(
\r 
 814                 var item_id = $(item).attr('id');
\r 
 815                 var tag_name, tag_store;
\r 
 816                 if (good_re.test(item_id)){
\r 
 817                     tag_name = item_id.replace(good_prefix,'');
\r 
 818                     tag_store = interestingTags;
\r 
 821                 else if (bad_re.test(item_id)){
\r 
 822                     tag_name = item_id.replace(bad_prefix,'');
\r 
 823                     tag_store = ignoredTags;
\r 
 829                 tag_store[tag_name] = $(item);
\r 
 830                 setupTagDeleteEvents($(item).find('img'),tag_store,tag_name,reason,true);
\r 
 835     var setupHideIgnoredQuestionsControl = function(){
\r 
 836         $('#hideIgnoredTagsCb').unbind('click').click(function(){
\r 
 841                         url: scriptUrl + $.i18n._('command/'),
\r 
 842                         data: {command:'toggle-ignored-questions'}
\r 
 848             collectPickedTags();
\r 
 849             setupHideIgnoredQuestionsControl();
\r 
 850             $("#interestingTagInput, #ignoredTagInput").autocomplete(messages.matching_tags_url, {
\r 
 852                 matchContains: true,
\r 
 854                 /*multiple: false, - the favorite tags and ignore tags don't let you do multiple tags
\r 
 855                 multipleSeparator: " "*/
\r 
 857                 formatItem: function(row, i, max, value) {
\r 
 858                     return row[1] + " (" + row[2] + ")";
\r 
 861                 formatResult: function(row, i, max, value){
\r 
 866             $("#interestingTagAdd").click(function(){handlePickedTag(this,'good');});
\r 
 867             $("#ignoredTagAdd").click(function(){handlePickedTag(this,'bad');});
\r 
 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()}}}};
\r 
 874 var mediaUrl = function(resource){
\r 
 875     return scriptUrl + 'm/' + osqaSkin + '/' + resource;
\r 
 879  * jQuery i18n plugin
\r 
 880  * @requires jQuery v1.1 or later
\r 
 882  * Examples at: http://recurser.com/articles/2008/02/21/jquery-i18n-translation-plugin/
\r 
 883  * Dual licensed under the MIT and GPL licenses:
\r 
 884  *   http://www.opensource.org/licenses/mit-license.php
\r 
 885  *   http://www.gnu.org/licenses/gpl.html
\r 
 887  * Based on 'javascript i18n that almost doesn't suck' by markos
\r 
 888  * http://markos.gaivo.net/blog/?p=100
\r 
 891  * Version: 1.0.0  Feb-10-2008
\r 
 895  * i18n provides a mechanism for translating strings using a jscript dictionary.
\r 
 901  * i18n property list
\r 
 907  * Initialise the dictionary and translate nodes
\r 
 909  * @param property_list i18n_dict : The dictionary to use for translation
\r 
 911         setDictionary: function(i18n_dict) {
\r 
 912                 i18n_dict = i18n_dict;
\r 
 917  * The actual translation function. Looks the given string up in the
\r 
 918  * dictionary and returns the translation if one exists. If a translation
\r 
 919  * is not found, returns the original word
\r 
 921  * @param string str : The string to translate
\r 
 922  * @param property_list params : params for using printf() on the string
\r 
 923  * @return string : Translated word
\r 
 926         _: function (str, params) {
\r 
 928                 if (i18n_dict&& i18n_dict[str]) {
\r 
 929                         transl = i18n_dict[str];
\r 
 931                 return this.printf(transl, params);
\r 
 936  * Change non-ASCII characters to entity representation
\r 
 938  * @param string str : The string to transform
\r 
 939  * @return string result : Original string with non-ASCII content converted to entities
\r 
 942         toEntity: function (str) {
\r 
 944                 for (var i=0;i<str.length; i++) {
\r 
 945                         if (str.charCodeAt(i) > 128)
\r 
 946                                 result += "&#"+str.charCodeAt(i)+";";
\r 
 948                                 result += str.charAt(i);
\r 
 956  * @param string str : The string to strip
\r 
 957  * @return string result : Stripped string
\r 
 960         stripStr: function(str) {
\r 
 961                 return str.replace(/^\s*/, "").replace(/\s*$/, "");
\r 
 967  * @param string str : The multi-line string to strip
\r 
 968  * @return string result : Stripped string
\r 
 971         stripStrML: function(str) {
\r 
 972                 // Split because m flag doesn't exist before JS1.5 and we need to
\r 
 973                 // strip newlines anyway
\r 
 974                 var parts = str.split('\n');
\r 
 975                 for (var i=0; i<parts.length; i++)
\r 
 976                         parts[i] = stripStr(parts[i]);
\r 
 978                 // Don't join with empty strings, because it "concats" words
\r 
 980                 return stripStr(parts.join(" "));
\r 
 985  * C-printf like function, which substitutes %s with parameters
\r 
 986  * given in list. %%s is used to escape %s.
\r 
 988  * Doesn't work in IE5.0 (splice)
\r 
 990  * @param string S : string to perform printf on.
\r 
 991  * @param string L : Array of arguments for printf()
\r 
 993         printf: function(S, L) {
\r 
 997                 var tS = S.split("%s");
\r 
 999                 for(var i=0; i<L.length; i++) {
\r 
1000                         if (tS[i].lastIndexOf('%') == tS[i].length-1 && i != L.length-1)
\r 
1001                                 tS[i] += "s"+tS.splice(i+1,1)[0];
\r 
1002                         nS += tS[i] + L[i];
\r 
1004                 return nS + tS[tS.length-1];
\r 
1015         'insufficient privilege':'??????????',
\r 
1016         'cannot pick own answer as best':'??????????????',
\r 
1017         'anonymous users cannot select favorite questions':'?????????????',
\r 
1018         'please login':'??????',
\r 
1019         'anonymous users cannot vote':'????????',
\r 
1020         '>15 points requried to upvote':'??+15?????????',
\r 
1021         '>100 points required to downvote':'??+100?????????',
\r 
1022         'please see': '??',
\r 
1023         'cannot vote for own posts':'??????????',
\r 
1024         'daily vote cap exhausted':'????????????????',
\r 
1025         'cannot revoke old vote':'??????????????',
\r 
1026         'please confirm offensive':"??????????????????????",
\r 
1027         'anonymous users cannot flag offensive posts':'???????????',
\r 
1028         'cannot flag message as offensive twice':'???????',
\r 
1029         'flag offensive cap exhausted':'?????????????5?
\91??
\92???',
\r 
1030         'need >15 points to report spam':"??+15??????
\91???
\92?",
\r 
1031         'confirm delete':"?????/????????",
\r 
1032         'anonymous users cannot delete/undelete':"???????????????",
\r 
1033         'post recovered':"?????????????",
\r 
1034         'post deleted':"????????????",
\r 
1035         'add comment':'????',
\r 
1036         'community karma points':'????',
\r 
1037         'to comment, need':'????',
\r 
1038         'delete this comment':'?????',
\r 
1039         'hide comments':"????",
\r 
1040         'add a comment':"????",
\r 
1042         'confirm delete comment':"?????????",
\r 
1043         'characters':'??',
\r 
1044         'can write':'???',
\r 
1045         'click to close':'???????',
\r 
1046         'loading...':'???...',
\r 
1047         'tags cannot be empty':'???????',
\r 
1048         'tablimits info':"??5????????????20????",
\r 
1049         'content cannot be empty':'???????',
\r 
1050         'content minchars': '????? {0} ???',
\r 
1051         'please enter title':'??????',
\r 
1052         'title minchars':"????? {0} ???",
\r 
1059         'preformatted text':'??',
\r 
1061         'numbered list':'??????',
\r 
1062         'bulleted list':'??????',
\r 
1064         'horizontal bar':'???',
\r 
1067         'enter image url':'<b>??????</b></p><p>???<br />http://www.example.com/image.jpg   \"????\"',
\r 
1068         'enter url':'<b>??Web??</b></p><p>???<br />http://www.cnprog.com/   \"????\"</p>"',
\r 
1069         'upload image':'?????????'
\r 
1073         'need >15 points to report spam':'need >15 points to report spam ',
\r 
1074     '>15 points requried to upvote':'>15 points required to upvote ',
\r 
1075         'tags cannot be empty':'please enter at least one tag',
\r 
1076         'anonymous users cannot vote':'sorry, anonymous users cannot vote ',
\r 
1077         'anonymous users cannot select favorite questions':'sorry, anonymous users cannot select favorite questions ',
\r 
1078         'to comment, need': '(to comment other people\'s posts, karma ',
\r 
1079         'please see':'please see ',
\r 
1080         'community karma points':' or more is necessary) - ',
\r 
1081         'upload image':'Upload image:',
\r 
1082         'enter image url':'enter URL of the image, e.g. http://www.example.com/image.jpg \"image title\"',
\r 
1083         'enter url':'enter Web address, e.g. http://www.example.com \"page title\"',
\r 
1084         'daily vote cap exhausted':'sorry, you\'ve used up todays vote cap',
\r 
1085         'cannot pick own answer as best':'sorry, you cannot accept your own answer',
\r 
1086         'cannot revoke old vote':'sorry, older votes cannot be revoked',
\r 
1087         'please confirm offensive':'are you sure this post is offensive, contains spam, advertising, malicious remarks, etc.?',
\r 
1088         'flag offensive cap exhausted':'sorry, you\'ve used up todays cap of flagging offensive messages ',
\r 
1089         'confirm delete':'are you sure you want to delete this?',
\r 
1090         'anonymous users cannot delete/undelete':'sorry, anonymous users cannot delete or undelete posts',
\r 
1091         'post recovered':'your post is now restored!',
\r 
1092         'post deleted':'your post has been deleted',
\r 
1093         'confirm delete comment':'do you really want to delete this comment?',
\r 
1094         'can write':'have ',
\r 
1095         'tablimits info':'up to 5 tags, no more than 20 characters each',
\r 
1096         'content minchars': 'please enter more than {0} characters',
\r 
1097         'title minchars':"please enter at least {0} characters",
\r 
1098         'characters':'characters left',
\r 
1099     'cannot vote for own posts':'sorry, you cannot vote for your own posts',
\r 
1100     'cannot flag message as offensive twice':'cannot flag message as offensive twice ',
\r 
1101         '>100 points required to downvote':'>100 points required to downvote '
\r 
1105         'insufficient privilege':'privilegio insuficiente',
\r 
1106         'cannot pick own answer as best':'no puede escoger su propia respuesta como la mejor',
\r 
1107         'anonymous users cannot select favorite questions':'usuarios anonimos no pueden seleccionar',
\r 
1108         'please login':'por favor inicie sesión',
\r 
1109         'anonymous users cannot vote':'usuarios anónimos no pueden votar',
\r 
1110         '>15 points requried to upvote': '>15 puntos requeridos para votar positivamente',
\r 
1111         '>100 points required to downvote':'>100 puntos requeridos para votar negativamente',
\r 
1112         'please see': 'por favor vea',
\r 
1113         'cannot vote for own posts':'no se puede votar por sus propias publicaciones',
\r 
1114         'daily vote cap exhausted':'cuota de votos diarios excedida',
\r 
1115         'cannot revoke old vote':'no puede revocar un voto viejo',
\r 
1116         'please confirm offensive':"por favor confirme ofensiva",
\r 
1117         'anonymous users cannot flag offensive posts':'usuarios anónimos no pueden marcar publicaciones como ofensivas',
\r 
1118         'cannot flag message as offensive twice':'no puede marcar mensaje como ofensivo dos veces',
\r 
1119         'flag offensive cap exhausted':'cuota para marcar ofensivas ha sido excedida',
\r 
1120         'need >15 points to report spam':"necesita >15 puntos para reportar spam",
\r 
1121         'confirm delete':"¿Está seguro que desea borrar esto?",
\r 
1122         'anonymous users cannot delete/undelete':"usuarios anónimos no pueden borrar o recuperar publicaciones",
\r 
1123         'post recovered':"publicación recuperada",
\r 
1124         'post deleted':"publicación borrada?",
\r 
1125         'add comment':'agregar comentario',
\r 
1126         'community karma points':'reputación comunitaria',
\r 
1127         'to comment, need':'para comentar, necesita reputación',
\r 
1128         'delete this comment':'borrar este comentario',
\r 
1129         'hide comments':"ocultar comentarios",
\r 
1130         'add a comment':"agregar comentarios",
\r 
1131         'comments':"comentarios",
\r 
1132         'confirm delete comment':"¿Realmente desea borrar este comentario?",
\r 
1133         'characters':'caracteres faltantes',
\r 
1134         'can write':'tiene ',
\r 
1135         'click to close':'haga click para cerrar',
\r 
1136         'loading...':'cargando...',
\r 
1137         'tags cannot be empty':'las etiquetas no pueden estar vacías',
\r 
1138         'tablimits info':"hasta 5 etiquetas de no mas de 20 caracteres cada una",
\r 
1139         'content cannot be empty':'el contenido no puede estar vacío',
\r 
1140         'content minchars': 'por favor introduzca mas de {0} caracteres',
\r 
1141         'please enter title':'por favor ingrese un título',
\r 
1142         'title minchars':"por favor introduzca al menos {0} caracteres",
\r 
1143         'delete':'borrar',
\r 
1144         'undelete':     'recuperar',
\r 
1145         'bold': 'negrita',
\r 
1146         'italic':'cursiva',
\r 
1149         'preformatted text':'texto preformateado',
\r 
1151         'numbered list':'lista numerada',
\r 
1152         'bulleted list':'lista no numerada',
\r 
1154         'horizontal bar':'barra horizontal',
\r 
1155         'undo':'deshacer',
\r 
1157         'enter image url':'introduzca la URL de la imagen, por ejemplo?<br />http://www.example.com/image.jpg   \"titulo de imagen\"',
\r 
1158         'enter url':'introduzca direcciones web, ejemplo?<br />http://www.cnprog.com/   \"titulo del enlace\"</p>"',
\r 
1159         'upload image':'cargar imagen?',
\r 
1160         'questions/' : 'preguntas/',
\r 
1161         'vote/' : 'votar/'
\r 
1170 var i18n_dict = i18n[i18nLang];
\r 
1173         jQuery TextAreaResizer plugin
\r 
1174         Created on 17th January 2008 by Ryan O'Dell
\r 
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);
\r 
1178  * Autocomplete - jQuery plugin 1.0.3
\r 
1180  * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer
\r 
1182  * Dual licensed under the MIT and GPL licenses:
\r 
1183  *   http://www.opensource.org/licenses/mit-license.php
\r 
1184  *   http://www.gnu.org/licenses/gpl.html
\r 
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);
\r 
1189 var notify = function() {
\r 
1190     var visible = false;
\r 
1192         show: function(html) {
\r 
1194                 $("body").css("margin-top", "2.2em");
\r 
1195                 $(".notify span").html(html);
\r 
1197             $(".notify").fadeIn("slow");
\r 
1200         close: function(doPostback) {
\r 
1201             $(".notify").fadeOut("fast");
\r 
1202             $("body").css("margin-top", "0");
\r 
1205         isVisible: function() { return visible; }
\r 
1210  * jQuery outside events - v1.1 - 3/16/2010
\r 
1211  * http://benalman.com/projects/jquery-outside-events-plugin/
\r 
1213  * Copyright (c) 2010 "Cowboy" Ben Alman
\r 
1214  * Dual licensed under the MIT and GPL licenses.
\r 
1215  * http://benalman.com/about/license/
\r 
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");
\r 
1219 $(document).ready( function(){
\r 
1220     pickedTags().init();
\r 
1222     $('input#bnewaccount').click(function() {
\r 
1223         $('#bnewaccount').disabled=true;
\r 
1227 function yourWorkWillBeLost(e) {
\r 
1228     if(browserTester('chrome')) {
\r 
1229         return "Are you sure you want to leave?  Your work will be lost.";
\r 
1230     } else if(browserTester('safari')) {
\r 
1231         return "Are you sure you want to leave?  Your work will be lost.";
\r 
1233         if(!e) e = window.event;
\r 
1234         e.cancelBubble = true;
\r 
1235         e.returnValue = 'If you leave, your work will be lost.';
\r 
1237         if (e.stopPropagation) {
\r 
1238             e.stopPropagation();
\r 
1239             e.preventDefault();
\r 
1245 function browserTester(browserString) {
\r 
1246     return navigator.userAgent.toLowerCase().indexOf(browserString) > -1;
\r 
1249 // Add missing IE functionality
\r 
1250 if (!window.addEventListener) {
\r 
1251     if (window.attachEvent) {
\r 
1252         window.addEventListener = function (type, listener, useCapture) {
\r 
1253             window.attachEvent('on' + type, listener);
\r 
1255         window.removeEventListener = function (type, listener, useCapture) {
\r 
1256             window.detachEvent('on' + type, listener);
\r 
1259         window.addEventListener = function (type, listener, useCapture) {
\r 
1260             window['on' + type] = listener;
\r 
1262         window.removeEventListener = function (type, listener, useCapture) {
\r 
1263             window['on' + type] = null;
\r