MediaWiki:Common.js: differenze tra le versioni

Da SWX | DataBank Italiano su Star Wars - Guerre Stellari.
 
(11 versioni intermedie di 2 utenti non mostrate)
Riga 1: Riga 1:
 
/* <pre><nowiki> */
 
/* <pre><nowiki> */
.page-Main_Page h1.firstHeading { display: none; }
 
  
document.write('<script type="text/javascript" src="'
+
/*questo nasconde il titolo in home page*/
    + '/index.php?title=MediaWiki:Functions.js&action=raw&ctype=text/javascript"></script>');
+
var isMainPage = (document.title.substr(0, document.title.lastIndexOf(" - ")) == "Main Page");
 +
var isDiff = (document.location.search &&
 +
(document.location.search.indexOf("diff=") != -1 ||
 +
document.location.search.indexOf("oldid=") != -1
 +
)
 +
);
 +
if( isMainPage && !isDiff ) {
 +
document.write('<style type="text/css">/*<![CDATA[*/ h1.firstHeading { display: none !important; } /*]]>*/</style>');
 +
}
  
  
 +
 +
importScript('MediaWiki:Functions.js');
  
 
// Load upload form JS
 
// Load upload form JS
var ShowHideConfig = { autoCollapse: Infinity };
 
 
importScript('MediaWiki:Upload.js');
 
importScript('MediaWiki:Upload.js');
 
      
 
      
/*
 
 
*/
 
/*
 
* Copyright © 2009, Daniel Friesen
 
* All rights reserved.
 
*
 
* Redistribution and use in source and binary forms, with or without
 
* modification, are permitted provided that the following conditions are met:
 
*    * Redistributions of source code must retain the above copyright
 
*      notice, this list of conditions and the following disclaimer.
 
*    * Redistributions in binary form must reproduce the above copyright
 
*      notice, this list of conditions and the following disclaimer in the
 
*      documentation and/or other materials provided with the distribution.
 
*    * Neither the name of the script nor the
 
*      names of its contributors may be used to endorse or promote products
 
*      derived from this software without specific prior written permission.
 
*
 
* THIS SOFTWARE IS PROVIDED BY DANIEL FRIESEN ''AS IS'' AND ANY
 
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
* DISCLAIMED. IN NO EVENT SHALL DANIEL FRIESEN BE LIABLE FOR ANY
 
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
*/
 
(function($) {
 
 
// CONFIG
 
var config = window.ShowHideConfig = $.extend(true, {
 
autoCollapse: 2,
 
userLang: true,
 
brackets: '[]',
 
linkBefore: false,
 
// English
 
en: {
 
show: "show",
 
hide: "hide",
 
showAll: "show all",
 
hideAll: "hide all"
 
},
 
// Spanish
 
es: {
 
show: "Mostrar",
 
hide: "Ocultar",
 
showAll: "Mostrar todo",
 
hideAll: "Ocultar todo"
 
}
 
// Make a post on the talkpage if you have i18n updates
 
}, window.ShowHideConfig || {});
 
 
// i18n function
 
function msg(name) {
 
if ( config.userLang && wgUserLanguage in config && name in config[wgUserLanguage] )
 
return config[wgUserLanguage][name];
 
if ( wgContentLanguage in config && name in config[wgContentLanguage] )
 
return config[wgContentLanguage][name];
 
return config.en[name];
 
}
 
 
// common
 
$.fn.onLink = function(fn) {
 
return this.bind('click keypress', function(e) {
 
if ( e.type === 'click' || ( e.type === 'keypress' && ( e.keyCode === 13 || e.charCode === 32 ) ) )
 
fn.call(this, e);
 
});
 
};
 
 
/** Collapsible tables using jQuery
 
*
 
*  Description: Allows tables to be collapsed, showing only the header.
 
*/
 
function collapseTable( node, state ) {
 
var $table = $(node);
 
var $button = $table.find("tr:first > th:first .collapseLink");
 
 
if (!$table.length || !$button.length) {
 
return false;
 
}
 
 
if ( typeof state === 'boolean' )
 
$table.toggleClass('collapsed', !state);
 
else
 
$table.toggleClass('collapsed');
 
 
var hidden = $table.hasClass('collapsed');
 
$table.find('> * > tr:not(:first):not(.nocollapse)')[hidden?"hide":"show"]();
 
$button.text( msg( hidden ? "show" : "hide" ) );
 
}
 
 
function createCollapseButtons() {
 
var NavigationBoxes = [];
 
$("table.collapsible").each(function() {
 
NavigationBoxes.push(this);
 
var $buttonLink = $('<span tabIndex=0 class=collapseLink />').text( msg("hide") )
 
.onLink(function(e) { collapseTable( $(this).closest('table') ); });
 
var $button = $("<span class=collapseButton />").css({
 
"float": "right",
 
textAlign: "right",
 
fontWeight: "normal",
 
width: "6em",
 
marginLeft: "-100%"
 
});
 
$button.append( document.createTextNode(config.brackets.substr(0, config.brackets.length/2)), $buttonLink, config.brackets.substr(config.brackets.length/2) );
 
 
var $header = $(this).find('tr:first > th:first').prepend($button);
 
});
 
 
// if more Navigation Bars found than Default: hide all
 
if ($(NavigationBoxes).filter('.autocollapse').length >= config.autoCollapse)
 
$(NavigationBoxes).filter('.autocollapse').each(function() { collapseTable( this, false ); });
 
else
 
$(NavigationBoxes).filter('.collapsed').each(function() { collapseTable( this, false ); });
 
}
 
 
$( createCollapseButtons );
 
 
/*</pre>*/
 
 
/*<pre>*/
 
 
/** Dynamic Navigation Bars with jQuery
 
*
 
*  Base Description: See Wikipedia:Wikipedia:NavFrame.
 
*/
 
 
// shows and hides content and picture (if available) of navigation bars
 
function toggleNavigationBar( node ) {
 
var $navFrame = $(node);
 
var $navToggle = $navFrame.find(".NavHead:first .collapseLink");
 
 
if (!$navFrame.length || !$navToggle.length) {
 
return false;
 
}
 
 
$navFrame.toggleClass('NavVisible');
 
$navFrame.find('.NavPic, .NavContent').not($navFrame.find('.NavFrame .NavPic, .NavFrame .NavContent')).slideToggle();
 
$navToggle.text( msg( $navFrame.hasClass('NavVisible') ? "hide" : "show" ) );
 
}
 
 
// adds show/hide-button to navigation bars
 
function createNavigationBarToggleButton() {
 
var NavFrames = $('.NavFrame').addClass('NavVisible').each(function() {
 
var $navHead = $(this).find('.NavHead:first');
 
$navHead.filter('legend').append(' - ');
 
var $buttonLink = $('<span tabIndex=0 class=collapseLink />').text( msg("hide") )
 
.onLink(function(e) { toggleNavigationBar( $(this).closest('.NavFrame') ); });
 
var $button = $('<span class="NavToggle collapseButton" />')
 
if ( config.brackets )
 
$button.append( document.createTextNode(config.brackets.substr(0, config.brackets.length/2)), $buttonLink, config.brackets.substr(config.brackets.length/2) );
 
else
 
$button.append( $buttonLink );
 
$navHead[config.linkBefore?"prepend":"append"]($button);
 
});
 
// if more Navigation Bars found than Default: hide all
 
if (NavFrames.length >= config.autoCollapse)
 
NavFrames.not('.noautocollapse').each(function() { toggleNavigationBar(this); });
 
else
 
NavFrames.filter('.collapsed').each(function() { toggleNavigationBar(this); });
 
}
 
 
$( createNavigationBarToggleButton );
 
 
$(function() {
 
$('.NavGlobal').each(function() {
 
$('<span class=NavGlobalShow />').append(
 
document.createTextNode('['),
 
$('<span tabIndex=0 class=collapseLink />').text( msg("showAll") ).onLink(function(e) {
 
$('.NavFrame').each(function() { if ( !$(this).hasClass('NavVisible') ) toggleNavigationBar(this); });
 
}),
 
']'
 
).appendTo(this);
 
$(this).append(' ');
 
$('<span class=NavGlobalHide />').append(
 
document.createTextNode('['),
 
$('<span tabIndex=0 class=collapseLink />').text( msg("hideAll") ).onLink(function(e) {
 
$('.NavFrame').each(function() { if ( $(this).hasClass('NavVisible') ) toggleNavigationBar(this); });
 
}),
 
']'
 
).appendTo(this);
 
});
 
});
 
 
})(jQuery);
 
/*
 
  
 
// onload stuff
 
// onload stuff
Riga 231: Riga 51:
 
rewriteSearchFormLink();
 
rewriteSearchFormLink();
 
fillEditSummaries();
 
fillEditSummaries();
fillDeleteReasons();
 
 
fillPreloads();
 
fillPreloads();
  
Riga 260: Riga 79:
 
var page = window.pageName.replace(/\W/g, '_');
 
var page = window.pageName.replace(/\W/g, '_');
 
var nowShown;
 
var nowShown;
 
+
 
if(document.getElementById('infoboxtoggle').innerHTML == '[Hide]') {
 
if(document.getElementById('infoboxtoggle').innerHTML == '[Hide]') {
 
document.getElementById('infoboxinternal').style.display = 'none';
 
document.getElementById('infoboxinternal').style.display = 'none';
Riga 270: Riga 89:
 
nowShown = true;
 
nowShown = true;
 
}
 
}
 
+
 
if(window.storagePresent) {
 
if(window.storagePresent) {
var storage = globalStorage[window.location.hostname];
+
localStorage.setItem('infoboxshow-' + page, nowShown);
storage.setItem('infoboxshow-' + page, nowShown);
+
 
}
 
}
 
}
 
}
Riga 291: Riga 109:
  
 
function onStdSummaryChange() {
 
function onStdSummaryChange() {
var combo = document.getElementById("stdSummaries");
+
var value = $('#stdSummaries').val();
var value = combo.options[combo.selectedIndex].value;
+
  
 
if( value != "" ) {
 
if( value != "" ) {
 
if( skin == 'monaco' ) {
 
if( skin == 'monaco' ) {
document.getElementById("wpSummaryEnhanced").value = value;
+
$("#wpSummaryEnhanced").val(value);
 
} else {
 
} else {
document.getElementById("wpSummary").value = value;
+
$("#wpSummary").val(value);
 
}
 
}
 
}
 
}
}
 
 
function fillDeleteReasons() {
 
var label = document.getElementById("wpReason");
 
 
if( label == null )
 
return;
 
 
label = document.getElementById("contentSub");
 
 
if( label == null )
 
return;
 
}
 
 
function onStdReasonChange() {
 
var combo = document.getElementById("stdReasons");
 
var value = combo.options[combo.selectedIndex].value;
 
 
if( value != "" )
 
document.getElementById("wpReason").value = value;
 
 
}
 
}
  
Riga 476: Riga 273:
 
function addHideButtons() {
 
function addHideButtons() {
 
var hidables = getElementsByClass('hidable');
 
var hidables = getElementsByClass('hidable');
   
+
 
for( var i = 0; i < hidables.length; i++ ) {
 
for( var i = 0; i < hidables.length; i++ ) {
 
var box = hidables[i];
 
var box = hidables[i];
 
var button = getElementsByClass('hidable-button', box, 'span');
 
var button = getElementsByClass('hidable-button', box, 'span');
       
+
 
if( button != null && button.length > 0 ) {
 
if( button != null && button.length > 0 ) {
 
button = button[0];
 
button = button[0];
           
+
 
button.onclick = toggleHidable;
 
button.onclick = toggleHidable;
 
button.appendChild( document.createTextNode('[Hide]') );
 
button.appendChild( document.createTextNode('[Hide]') );
 
+
 
if( new ClassTester('start-hidden').isMatch(box) )
 
if( new ClassTester('start-hidden').isMatch(box) )
 
button.onclick('bypass');
 
button.onclick('bypass');
Riga 492: Riga 289:
 
}
 
}
 
}
 
}
 
+
 
function toggleHidable(bypassStorage) {
 
function toggleHidable(bypassStorage) {
 
var parent = getParentByClass('hidable', this);
 
var parent = getParentByClass('hidable', this);
 
var content = getElementsByClass('hidable-content', parent);
 
var content = getElementsByClass('hidable-content', parent);
 
var nowShown;
 
var nowShown;
   
+
 
if( content != null && content.length > 0 ) {
 
if( content != null && content.length > 0 ) {
 
content = content[0];
 
content = content[0];
       
+
 
if( content.style.display == 'none' ) {
 
if( content.style.display == 'none' ) {
 
content.style.display = content.oldDisplayStyle;
 
content.style.display = content.oldDisplayStyle;
Riga 511: Riga 308:
 
nowShown = false;
 
nowShown = false;
 
}
 
}
       
+
 
if( window.storagePresent && ( typeof( bypassStorage ) == 'undefined' || bypassStorage != 'bypass' ) ) {
 
if( window.storagePresent && ( typeof( bypassStorage ) == 'undefined' || bypassStorage != 'bypass' ) ) {
 
var page = window.pageName.replace(/\W/g, '_');
 
var page = window.pageName.replace(/\W/g, '_');
 
var items = getElementsByClass('hidable');
 
var items = getElementsByClass('hidable');
 
var item = -1;
 
var item = -1;
           
+
 
for( var i = 0; i < items.length; i++ ) {
 
for( var i = 0; i < items.length; i++ ) {
 
if( items[i] == parent ) {
 
if( items[i] == parent ) {
Riga 523: Riga 320:
 
}
 
}
 
}
 
}
           
+
 
if( item == -1 ) {
 
if( item == -1 ) {
 
return;
 
return;
 
}
 
}
       
+
var storage = globalStorage[window.location.hostname];
+
localStorage.setItem('hidableshow-' + item + '_' + page, nowShown);
storage.setItem('hidableshow-' + item + '_' + page, nowShown);
+
 
}
 
}
 
}
 
}
Riga 670: Riga 466:
  
  
// Reskin parser script from [[Uncyclopedia:MediaWiki:Uncyclopedia.js]]
+
///////////////////////////////////////////////////////////////////////////////////////////////////////////
skinjs = {
+
    "Logout": "Logout.js"
+
}
+
  
var re = RegExp("(.*) - Wookieepedia, the Star Wars Wiki");
+
// END OF AJAX AUTO-REFRESH
var matches = re.exec(document.title);
+
  
var skinNamejs;
+
///////////////////////////////////////////////////////////////////////////////////////////////////////////
  
if (matches) {
+
//Link FA
    if (skinjs[matches][1]] != undefined) {
+
 
        skinNamejs = (skinjs[matches][1]].length > 0) ? skinjs[matches][1]] : matches[1] + '.js';
+
var FA_enabled  = true;
        document.write('<script type="text/javascript" src="/index.php?title=MediaWiki:Skin/' + skinNamejs + '&action=raw&ctype=text/javascript"></script>');
+
 
    }
+
function addfaicon() {
 +
// if disabled
 +
if (!FA_enabled) return;
 +
var pLang = document.getElementById("p-lang");
 +
if (!pLang) return;
 +
var lis = pLang.getElementsByTagName("li");
 +
for (var i = 0; i < lis.length; i++) {
 +
var li = lis[i];
 +
// only links with a corresponding Link_FA template are interesting
 +
if (!document.getElementById(li.className + "-fa"))  continue;
 +
// additional class so the template can be hidden with CSS
 +
li.className += " FA";
 +
// change title (mouse over)
 +
li.title = "This article is rated as featured article.";
 +
}
 
}
 
}
 +
addOnloadHook(addfaicon);
  
function fixSearch()
+
/* Magic edit intro. Copied from Wikipedia's MediaWiki:Common.js, modified for use in both Monaco and Monobook skins by Sikon*/
{
+
function addEditIntro(name) {
    var button = document.getElementById('searchSubmit');
+
// Top link
 +
var el = document.getElementById('ca-edit');
  
    if(button)
+
if( typeof(el.href) == 'undefined' ) {
        button.name = 'go';
+
el = el.getElementsByTagName('a')[0];
 +
}
 +
 
 +
if (el)
 +
el.href += '&editintro=' + name;
 +
 
 +
// Section links
 +
var spans = document.getElementsByTagName('span');
 +
for ( var i = 0; i < spans.length; i++ ) {
 +
el = null;
 +
 
 +
if (spans[i].className == 'editsection') {
 +
el = spans[i].getElementsByTagName('a')[0];
 +
if (el)
 +
el.href += '&editintro=' + name;
 +
} else if (spans[i].className == 'editsection-upper') {
 +
el = spans[i].getElementsByTagName('a')[0];
 +
if (el)
 +
el.href += '&editintro=' + name;
 +
}
 +
}
 
}
 
}
  
//addOnloadHook(loadFunc);
+
if (wgNamespaceNumber == 0) {
 +
addOnloadHook(function(){
 +
var cats = document.getElementById('mw-normal-catlinks');
 +
if (!cats)
 +
return;
 +
cats = cats.getElementsByTagName('a');
 +
for (var i = 0; i < cats.length; i++) {
 +
if (cats[i].title == 'Category:Wookieepedia featured articles') {
 +
addEditIntro('Template:Featured_editintro');
 +
break;
 +
} else if (cats[i].title == 'Category:Wookieepedia good articles') {
 +
addEditIntro('Template:Good_editintro');
 +
break;
 +
} else if ( cats[i].title == 'Category:Articles undergoing major edits' || cats[i].title == 'Category:Works in progress' ) {
 +
addEditIntro('Template:Inuse_editintro‎');
 +
break;
 +
}
 +
}
 +
});
 +
}
  
YAHOO.util.Event.onDOMReady(loadFunc);
+
// [[Main Page]] JS transform. Originally from [[Wikipedia:MediaWiki:Monobook.js]]/[[Wikipedia:MediaWiki:Common.js]] and may be further modified for local use.
 +
function mainPageRenameNamespaceTab() {
 +
try {
 +
var Node = document.getElementById( 'ca-nstab-main' ).firstChild;
 +
if ( Node.textContent ) {      // Per DOM Level 3
 +
Node.textContent = 'Main Page';
 +
} else if ( Node.innerText ) { // IE doesn't handle .textContent
 +
Node.innerText = 'Main Page';
 +
} else {                      // Fallback
 +
Node.replaceChild( Node.firstChild, document.createTextNode( 'Main Page' ) );
 +
}
 +
} catch(e) {
 +
// bailing out!
 +
}
 +
}
  
 +
if ( wgTitle == 'Main Page' && ( wgNamespaceNumber == 0 || wgNamespaceNumber == 1 ) ) {
 +
addOnloadHook( mainPageRenameNamespaceTab );
 +
}
 +
 +
// -------------------------------------------------------------------------------
 +
//  Force Preview  JavaScript code - Start
 +
//
 +
//  To allow any group to bypass being forced to preview,
 +
//  enter the group name in the permittedGroups array.
 +
//  E.g.
 +
//    var permittedGroups = [];                      // force everyone
 +
//    var permittedGroups = [ "user"];                // permit logged-in users
 +
//    var permittedGroups = [ "sysop", "bureaucrat"]; // permit sysop, bureaucrat
 +
// -------------------------------------------------------------------------------
 +
var permittedGroups = ["bureaucrat","sysop"];
 +
 +
Array.prototype.intersects = function() {
 +
  // --------------------------------------------------------
 +
  //  Returns true if any element in the argument array
 +
  //  is the same as an element in this array
 +
  // --------------------------------------------------------
 +
  if( !arguments.length ){
 +
    return false;
 +
  }
 +
  var array2 = arguments[0];
 +
 +
  var len1 = this.length;
 +
  var len2 = array2.length;
 +
  if( len2 == 0 ){
 +
    return false;
 +
  }
 +
 +
  for(var i=0; i<len1; i++){
 +
    for(var j=0; j<len2; j++) {
 +
      if( this[i] === array2[j] ) {
 +
        return true;
 +
      }
 +
    }
 +
  }
 +
  return false;
 +
};
 +
 +
function forcePreview()
 +
{
 +
  if( wgAction != "edit") return;
 +
  if( wgUserGroups === null) {
 +
    wgUserGroups = [];
 +
  }
 +
  if( wgUserGroups.intersects(permittedGroups) ) {
 +
    return;
 +
  }
 +
  var saveButton = document.getElementById("wpSave");
 +
  if( !saveButton )
 +
    return;
 +
  saveButton.disabled = true;
 +
  saveButton.value = "Save page (use preview first)";
 +
  saveButton.style.fontWeight = "normal";
 +
  document.getElementById("wpPreview").style.fontWeight = "bold";
 +
}
 +
 +
addOnloadHook(forcePreview);
 +
// -----------------------------------------------------
 +
//  Force Preview  JavaScript code - End
 +
// -----------------------------------------------------
 +
 +
 
// </nowiki></pre>
 
// </nowiki></pre>

Versione attuale delle 14:03, 3 gen 2017

/* <pre><nowiki> */
 
/*questo nasconde il titolo in home page*/
var isMainPage = (document.title.substr(0, document.title.lastIndexOf(" - ")) == "Main Page");
var isDiff = (document.location.search &&
		(document.location.search.indexOf("diff=") != -1 ||
			document.location.search.indexOf("oldid=") != -1
		)
	);
if( isMainPage && !isDiff ) {
	document.write('<style type="text/css">/*<![CDATA[*/ h1.firstHeading { display: none !important; } /*]]>*/</style>');
}
 
 
 
importScript('MediaWiki:Functions.js');
 
// Load upload form JS
importScript('MediaWiki:Upload.js');
 
 
// onload stuff
var firstRun = true;
 
function loadFunc() {
	if( firstRun )
		firstRun = false;
	else
		return;
 
	initFunctionsJS();
 
	// DEPRECATED
	if( document.getElementById('infoboxinternal') != null && document.getElementById('infoboxend') != null ) {
		document.getElementById('infoboxend').innerHTML = '<a id="infoboxtoggle" href="javascript:infoboxToggle()">[Hide]</a>';
	}
 
	// Upload form - need to run before adding hide buttons
	setupUploadForm();
 
	addHideButtons();
 
	if( document.getElementById('mp3-navlink') != null ) {
		document.getElementById('mp3-navlink').onclick = onArticleNavClick;
		document.getElementById('mp3-navlink').getElementsByTagName('a')[0].href = 'javascript:void(0)';
	}
 
	if( window.storagePresent )
		initVisibility();
 
	rewriteSearchFormLink();
	fillEditSummaries();
	fillPreloads();
 
	substUsername();
	substUsernameTOC();
	rewriteTitle();
	showEras('title-eraicons');
	showEras('title-shortcut');
	rewriteHover();
	addAlternatingRowColors();
	// replaceSearchIcon(); this is now called from MediaWiki:Monobook.js
	fixSearch();
 
	var body = document.getElementsByTagName('body')[0];
	var bodyClass = body.className;
 
	if( !bodyClass || (bodyClass.indexOf('page-') == -1) ) {
		var page = window.pageName.replace(/\W/g, '_');
		body.className += ' page-' + page;
	}
 
	if( typeof(onPageLoad) != "undefined" ) {
		onPageLoad();
	}
}
 
function infoboxToggle() {
	var page = window.pageName.replace(/\W/g, '_');
	var nowShown;
 
	if(document.getElementById('infoboxtoggle').innerHTML == '[Hide]') {
		document.getElementById('infoboxinternal').style.display = 'none';
		document.getElementById('infoboxtoggle').innerHTML = '[Show]';
		nowShown = false;
	} else {
		document.getElementById('infoboxinternal').style.display = 'block';
		document.getElementById('infoboxtoggle').innerHTML = '[Hide]';
		nowShown = true;
	}
 
	if(window.storagePresent) {
		localStorage.setItem('infoboxshow-' + page, nowShown);
	}
}
 
function fillEditSummaries() {
	var label = document.getElementById("wpSummaryLabel");
 
	if( label == null )
		return;
 
	var comboString = "Standard summaries: <select id='stdSummaries' onchange='onStdSummaryChange()'>";
	comboString += "</select><br />";
	label.innerHTML = comboString + label.innerHTML;
 
	requestComboFill('stdSummaries', 'Template:Stdsummaries');
}
 
function onStdSummaryChange() {
	var value = $('#stdSummaries').val();
 
	if( value != "" ) {
		if( skin == 'monaco' ) {
			$("#wpSummaryEnhanced").val(value);
		} else {
			$("#wpSummary").val(value);
		}
	}
}
 
function fillPreloads() {
	var div = document.getElementById("lf-preload");
 
	if( div == null )
		return;
 
	div.style.display = 'block';
	var span = document.getElementById('lf-preload-cbox');
 
	var comboString = "<select id='stdPreloads' onchange='onPreloadChange()'>";
	comboString += "</select>";
	span.innerHTML = comboString;
 
	span = document.getElementById('lf-preload-pagename');
	span.innerHTML = '<input type="text" class="textbox" />';
	span = document.getElementById('lf-preload-button');
	span.innerHTML = '<input type="button" class="button" value="Insert" onclick="doCustomPreload()" />';
 
	requestComboFill('stdPreloads', "Template:Stdpreloads");
}
 
function doCustomPreload() {
	doPreload(document.getElementById('lf-preload-pagename').getElementsByTagName('input')[0].value);
}
 
function onPreloadChange() {
	var combo = document.getElementById("stdPreloads");
	var value = combo.options[combo.selectedIndex].value;
 
	if( value == "" )
		return;
 
	value = "Template:" + value + "/preload";
	value = value.replace(" ", "_");
	doPreload(value);
}
 
// ============================================================
// BEGIN JavaScript title rewrite
 
function rewriteTitle() {
	if( typeof( window.SKIP_TITLE_REWRITE ) != 'undefined' && window.SKIP_TITLE_REWRITE )
		return;
	var titleDiv = document.getElementById('title-meta');
 
	if( titleDiv == null )
		return;
 
	var cloneNode = titleDiv.cloneNode(true);
	var firstHeading = getFirstHeading();
	var node = firstHeading.childNodes[0];
 
	// new, then old!
	firstHeading.replaceChild(cloneNode, node);
	cloneNode.style.display = "inline";
 
	var titleAlign = document.getElementById('title-align');
	firstHeading.style.textAlign = titleAlign.childNodes[0].nodeValue;
}
 
function showEras(className) {
	if( typeof( SKIP_ERAS ) != 'undefined' && SKIP_ERAS )
		return;
 
	var titleDiv = document.getElementById( className );
 
	if( titleDiv == null || titleDiv == undefined )
		return;
 
	var cloneNode = titleDiv.cloneNode(true);
	var firstHeading = getFirstHeading();
	firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
	cloneNode.style.display = "block";
}
// END JavaScript title rewrite
 
function initVisibility() {
	var storage = globalStorage[window.location.hostname];
 
	var page = window.pageName.replace(/\W/g,'_');
	var show = storage.getItem('infoboxshow-' + page);
 
	if( show == 'false' ) {
		infoboxToggle();
	}
 
	var hidables = getElementsByClass('hidable');
 
	for(var i = 0; i < hidables.length; i++) {
		show = storage.getItem('hidableshow-' + i  + '_' + page);
 
		if( show == 'false' ) {
			var content = getElementsByClass('hidable-content', hidables[i]);
			var button = getElementsByClass('hidable-button', hidables[i]);
 
			if( content != null && content.length > 0 &&
				button != null && button.length > 0 && content[0].style.display != 'none' )
			{
				button[0].onclick('bypass');
			}
		} else if( show == 'true' ) {
			var content = getElementsByClass('hidable-content', hidables[i]);
			var button = getElementsByClass('hidable-button', hidables[i]);
 
			if( content != null && content.length > 0 &&
				button != null && button.length > 0 && content[0].style.display == 'none' )
			{
				button[0].onclick('bypass');
			}
		}
	}
}
 
function onArticleNavClick() {
	var div = document.getElementById('mp3-nav');
 
	if( div.style.display == 'block' )
		div.style.display = 'none';
	else
		div.style.display = 'block';
}
 
function addAlternatingRowColors() {
	var infoboxes = getElementsByClass('infobox', document.getElementById('content'));
 
	if( infoboxes.length == 0 )
		return;
 
	for( var k = 0; k < infoboxes.length; k++ ) {
		var infobox = infoboxes[k];
 
		var rows = infobox.getElementsByTagName('tr');
		var changeColor = false;
 
		for( var i = 0; i < rows.length; i++ ) {
			if(rows[i].className.indexOf('infoboxstopalt') != -1)
			break;
 
			var ths = rows[i].getElementsByTagName('th');
 
			if( ths.length > 0 ) {
				continue;
			}
 
			if(changeColor)
				rows[i].style.backgroundColor = '#f9f9f9';
			changeColor = !changeColor;
		}
	}
}
 
function addHideButtons() {
	var hidables = getElementsByClass('hidable');
 
	for( var i = 0; i < hidables.length; i++ ) {
		var box = hidables[i];
		var button = getElementsByClass('hidable-button', box, 'span');
 
		if( button != null && button.length > 0 ) {
			button = button[0];
 
			button.onclick = toggleHidable;
			button.appendChild( document.createTextNode('[Hide]') );
 
			if( new ClassTester('start-hidden').isMatch(box) )
				button.onclick('bypass');
		}
	}
}
 
function toggleHidable(bypassStorage) {
	var parent = getParentByClass('hidable', this);
	var content = getElementsByClass('hidable-content', parent);
	var nowShown;
 
	if( content != null && content.length > 0 ) {
		content = content[0];
 
		if( content.style.display == 'none' ) {
			content.style.display = content.oldDisplayStyle;
			this.firstChild.nodeValue = '[Hide]';
			nowShown = true;
		} else {
			content.oldDisplayStyle = content.style.display;
			content.style.display = 'none';
			this.firstChild.nodeValue = '[Show]';
			nowShown = false;
		}
 
		if( window.storagePresent && ( typeof( bypassStorage ) == 'undefined' || bypassStorage != 'bypass' ) ) {
			var page = window.pageName.replace(/\W/g, '_');
			var items = getElementsByClass('hidable');
			var item = -1;
 
			for( var i = 0; i < items.length; i++ ) {
				if( items[i] == parent ) {
					item = i;
					break;
				}
			}
 
			if( item == -1 ) {
				return;
			}
 
			localStorage.setItem('hidableshow-' + item + '_' + page, nowShown);
		}
	}
}
 
function substUsernameTOC() {
	var toc = document.getElementById('toc');
	var userpage = document.getElementById('pt-userpage');
 
	if( !userpage || !toc )
		return;
 
	var username = userpage.firstChild.firstChild.nodeValue;
	var elements = getElementsByClass('toctext', toc, 'span');
 
	for( var i = 0; i < elements.length; i++ )
		elements[i].firstChild.nodeValue = elements[i].firstChild.nodeValue.replace('<insert name here>', username);
}
 
// Reskin parser script from [[Uncyclopedia:MediaWiki:Uncyclopedia.js]]
skinjs = {
	"Logout": "Logout.js"
}
 
var re = RegExp("(.*) - Wookieepedia, the Star Wars Wiki");
var matches = re.exec(document.title);
 
var skinNamejs;
 
if (matches) {
	if (skinjs[matches[1]] != undefined) {
		skinNamejs = (skinjs[matches[1]].length > 0) ? skinjs[matches[1]] : matches[1] + '.js';
		document.write('<script type="text/javascript" src="/index.php?title=MediaWiki:Skin/' + skinNamejs + '&action=raw&ctype=text/javascript"></script>');
	}
}
 
function fixSearch() {
	var button = document.getElementById('searchSubmit');
 
	if( button )
		button.name = 'go';
}
 
//addOnloadHook(loadFunc);
 
$(loadFunc);
 
///////////////////////////////////////////////////////////////////////////////////////////////////////////
 
// ADVANCED AJAX AUTO-REFRESHING ARTICLES
// Code courtesy of "pcj" of WoWWiki.
 
///////////////////////////////////////////////////////////////////////////////////////////////////////////
 
ajaxPages = new Array("Special:RecentChanges", "Special:Watchlist", "Special:Log", "Special:NewFiles");
 
function setCookie(c_name,value,expiredays) {
var exdate=new Date()
exdate.setDate(exdate.getDate()+expiredays)
document.cookie=c_name+ "=" +escape(value) + ((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
}
 
function getCookie(c_name) {
if (document.cookie.length>0) {
c_start=document.cookie.indexOf(c_name + "=")
if (c_start!=-1) { 
c_start=c_start + c_name.length+1 
c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) c_end=document.cookie.length
return unescape(document.cookie.substring(c_start,c_end))
} 
}
return ""
}
 
function getXmlHttpRequestObject() {
if (window.XMLHttpRequest) {
return new XMLHttpRequest(); //Not Internet Explorer
} else if(window.ActiveXObject) {
return new ActiveXObject("Microsoft.XMLHTTP"); //Internet Explorer
} else {
//fail silently
}
}
getRCDataRO = getXmlHttpRequestObject();
var cr = new RegExp("\r", "gm");
var lf = new RegExp("\n", "gm");
var endText = new RegExp('</div>[\t\s]*?<!-- end content -->[\t\s]*?<div class="visualClear">', "mi");
var rcTimer;
var rcRefresh = 60000;
function preloadAJAXRC() {
if (skin == "monaco") {
s = 1;
} else {
s = 0;
}
ajaxRCCookie = (getCookie("ajaxload-"+wgPageName)=="on") ? true:false;
document.getElementsByTagName("h1")[0].innerHTML += ' <span style="font-size: xx-small; border-bottom: 1px dotted; cursor:help;" title="Enable auto-refreshing page loads">Automatically refresh:</span><input type="checkbox" id="ajaxRCtoggle" onClick="toggleRC();">';
document.getElementById("ajaxRCtoggle").checked = ajaxRCCookie;
if (getCookie("ajaxload-"+wgPageName)=="on") loadRCData();
}
 
function toggleRC() {
if (document.getElementById("ajaxRCtoggle").checked == true) {
setCookie("ajaxload-"+wgPageName, "on", 30);
loadRCData();
} else {
setCookie("ajaxload-"+wgPageName, "off", 30);
clearTimeout(rcTimer);
}
}
 
function loadRCData() {
if (getRCDataRO.readyState == 4 || getRCDataRO.readyState == 0) {
if (location.href.indexOf("/wiki/")) {
rcURL = "http://" + location.hostname + "/wiki/" + wgPageName + location.search;
} else {
rcURL = "http://" + location.hostname + "/" + wgPageName + location.search;
}
getRCDataRO.open("GET", rcURL, true);
getRCDataRO.onreadystatechange = parseRCdata;
getRCDataRO.send(null);
}
}
 
function parseRCdata() {
if (getRCDataRO.readyState == 4) {
textFilter = new RegExp('<div id="bodyContent">.*?</div>[\t\s]*?<!-- end content -->[\t\s]*?<div class="visualClear">', "i");
rawRCdata = getRCDataRO.responseText.replace(cr, "").replace(lf, "");
filteredRCdata = textFilter.exec(rawRCdata);
updatedText = filteredRCdata[0].replace('<div id="bodyContent">', "").replace(endText, "");
document.getElementById("bodyContent").innerHTML = updatedText;
rcTimer = setTimeout("loadRCData();", rcRefresh);
}
}
 
for (x in ajaxPages) {
if (wgPageName == ajaxPages[x]) addOnloadHook(preloadAJAXRC);
}
 
 
///////////////////////////////////////////////////////////////////////////////////////////////////////////
 
// END OF AJAX AUTO-REFRESH
 
///////////////////////////////////////////////////////////////////////////////////////////////////////////
 
//Link FA
 
var FA_enabled  = true;
 
function addfaicon() {
	// if disabled
	if (!FA_enabled) return;
	var pLang = document.getElementById("p-lang");
	if (!pLang) return;
	var lis = pLang.getElementsByTagName("li");
	for (var i = 0; i < lis.length; i++) {
		var li = lis[i];
		// only links with a corresponding Link_FA template are interesting
		if (!document.getElementById(li.className + "-fa"))   continue;
		// additional class so the template can be hidden with CSS
		li.className += " FA";
		// change title (mouse over)
		li.title = "This article is rated as featured article.";
	}
}
addOnloadHook(addfaicon);
 
/* Magic edit intro. Copied from Wikipedia's MediaWiki:Common.js, modified for use in both Monaco and Monobook skins by Sikon*/
function addEditIntro(name) {
	// Top link
	var el = document.getElementById('ca-edit');
 
	if( typeof(el.href) == 'undefined' ) {
		el = el.getElementsByTagName('a')[0];
	}
 
	if (el)
		el.href += '&editintro=' + name;
 
	// Section links
	var spans = document.getElementsByTagName('span');
	for ( var i = 0; i < spans.length; i++ ) {
		el = null;
 
		if (spans[i].className == 'editsection') {
			el = spans[i].getElementsByTagName('a')[0];
			if (el)
				el.href += '&editintro=' + name;
		} else if (spans[i].className == 'editsection-upper') {
			el = spans[i].getElementsByTagName('a')[0];
			if (el)
				el.href += '&editintro=' + name;
		}
	}
}
 
if (wgNamespaceNumber == 0) {
	addOnloadHook(function(){
		var cats = document.getElementById('mw-normal-catlinks');
		if (!cats)
			return;
		cats = cats.getElementsByTagName('a');
		for (var i = 0; i < cats.length; i++) {
			if (cats[i].title == 'Category:Wookieepedia featured articles') {
				addEditIntro('Template:Featured_editintro');
				break;
			} else if (cats[i].title == 'Category:Wookieepedia good articles') {
				addEditIntro('Template:Good_editintro');
				break;
			} else if ( cats[i].title == 'Category:Articles undergoing major edits' || cats[i].title == 'Category:Works in progress' ) {
				addEditIntro('Template:Inuse_editintro‎');
				break;
			}
		}
	});
}
 
// [[Main Page]] JS transform. Originally from [[Wikipedia:MediaWiki:Monobook.js]]/[[Wikipedia:MediaWiki:Common.js]] and may be further modified for local use.
function mainPageRenameNamespaceTab() {
	try {
		var Node = document.getElementById( 'ca-nstab-main' ).firstChild;
		if ( Node.textContent ) {      // Per DOM Level 3
			Node.textContent = 'Main Page';
		} else if ( Node.innerText ) { // IE doesn't handle .textContent
			Node.innerText = 'Main Page';
		} else {                       // Fallback
			Node.replaceChild( Node.firstChild, document.createTextNode( 'Main Page' ) ); 
		}
	} catch(e) {
		// bailing out!
	}
}
 
if ( wgTitle == 'Main Page' && ( wgNamespaceNumber == 0 || wgNamespaceNumber == 1 ) ) {
	addOnloadHook( mainPageRenameNamespaceTab );
} 
 
// -------------------------------------------------------------------------------
//  Force Preview  JavaScript code - Start
//
//  To allow any group to bypass being forced to preview, 
//  enter the group name in the permittedGroups array.
//  E.g.
//    var permittedGroups = [];                       // force everyone
//    var permittedGroups = [ "user"];                // permit logged-in users 
//    var permittedGroups = [ "sysop", "bureaucrat"]; // permit sysop, bureaucrat 
// -------------------------------------------------------------------------------
var permittedGroups = ["bureaucrat","sysop"];
 
Array.prototype.intersects = function() {
  // --------------------------------------------------------
  //  Returns true if any element in the argument array
  //  is the same as an element in this array
  // --------------------------------------------------------
  if( !arguments.length ){
    return false;
  }
  var array2 = arguments[0];
 
  var len1 = this.length;
  var len2 = array2.length;
  if( len2 == 0 ){
    return false;
  }
 
  for(var i=0; i<len1; i++){
    for(var j=0; j<len2; j++) {
      if( this[i] === array2[j] ) {
        return true;
      }
    }
  }
  return false;
};
 
function forcePreview() 
{
  if( wgAction != "edit") return;
  if( wgUserGroups === null) {
    wgUserGroups = [];
  }
  if( wgUserGroups.intersects(permittedGroups) ) {
    return;
  }
  var saveButton = document.getElementById("wpSave");
  if( !saveButton )
    return;
  saveButton.disabled = true;
  saveButton.value = "Save page (use preview first)";
  saveButton.style.fontWeight = "normal";
  document.getElementById("wpPreview").style.fontWeight = "bold";
}
 
addOnloadHook(forcePreview);
// -----------------------------------------------------
//  Force Preview  JavaScript code - End
// -----------------------------------------------------
 
 
// </nowiki></pre>