MediaWiki:Common.js: Difference between revisions

From Protoball
Jump to navigation Jump to search
No edit summary
No edit summary
Line 65: Line 65:
                 theme_advanced_font_sizes: "10px,12px,13px,14px,16px,18px,20px",
                 theme_advanced_font_sizes: "10px,12px,13px,14px,16px,18px,20px",
                 font_size_style_values : "10px,12px,13px,14px,16px,18px,20px",
                 font_size_style_values : "10px,12px,13px,14px,16px,18px,20px",
                width: 500px,
         })});
         })});
  }
  }

Revision as of 05:56, 26 May 2012

/* Any JavaScript here will be loaded for all users on every page load. */

function formPrep() {
 if(wgPageName.indexOf("Special:FormEdit") > -1 || wgAction.indexOf("formedit") > -1) {
	function copy_year_to_year_date() {
		var val = $('[name="Chronology Entry[Year]"]').val();
		$('[name="Chronology Entry[Date][year]"]').val(val);
	}

	function set_date_to_beginning_of_year() {
		if($(this).val() != "") {
			$('[name="Chronology Entry[Date][day]"]').val("1");
			$('[name="Chronology Entry[Date][month]"]').val("01");
		}
	}

	function modify_selected_values() {
		var input = $(this).parent().prev('span').children('input');
		var chk_value = this.value;
		var selected_values = input.val() ? input.val().split(/ *, */) : [];
		if(this.checked) {
			selected_values.push(this.value);
			selected_values.sort();
		} else {
			selected_values = $.grep(selected_values, function(value) { return value != chk_value; });
		}
		input.val(selected_values.join(", "));
	}

	function add_new_input() {
		var span = this;
		var input = $(this).children('span').first().children('input').first();
		var name = input.attr('name');
		var index =  "" + $(this).children('input').length;
		name = name.replace("[0]", "[" + index + "]");
		var new_item = $('<span class="checkboxSpan"><span>&nbsp;<a href="" class="new_multi_property_link">new</a>&nbsp;</span><span style="display:none;">&nbsp;new&nbsp;<input name="' + name + '" /></span></span>');
		$(this).append(new_item);
		$(".new_multi_property_link").click(function(){ $(this).parent().parent().children('span').toggle(); return false; });
	}

	$(function () {
		$('[name="Chronology Entry[Year]"]').keyup(copy_year_to_year_date).change(copy_year_to_year_date);
		$('[name="Chronology Entry[Year Suffix]"]').change(set_date_to_beginning_of_year);
		$('.checkboxesSpan').each(add_new_input);
	});

        $.getScript("/tinymce/jscripts/tiny_mce/jquery.tinymce.js", function() { $('textarea.tinymce').tinymce({
                // Location of TinyMCE script
                script_url : '/tinymce/jscripts/tiny_mce/tiny_mce.js',

                // General options
                theme : "advanced",
                plugins : "pagebreak,style,layer,save,advhr,advimage,advlink,iespell,inlinepopups,insertdatetime,preview,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",

                // Theme options
                theme_advanced_buttons1 : "justifyleft,justifycenter,justifyright,justifyfull,|,hr,nonbreaking,removeformat,visualaid,|,sub,sup,|,charmap,iespell,advhr,|,fullscreen",
                theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,insertdate,inserttime,preview",
                theme_advanced_buttons3 : "bold,italic,underline,strikethrough,|,link,unlink,anchor,cleanup,help,code" ,
                theme_advanced_toolbar_location : "top",
                theme_advanced_toolbar_align : "left",
                theme_advanced_statusbar_location : "bottom",
                theme_advanced_resizing : true,

                content_css : "/tinymce/css/custom_content.css",
                theme_advanced_font_sizes: "10px,12px,13px,14px,16px,18px,20px",
                font_size_style_values : "10px,12px,13px,14px,16px,18px,20px",

                width: 500px,
        })});
 }
}

addOnloadHook(formPrep);