Difference between revisions of "MediaWiki:Common.js"

From MarineSpecies Introduced Traits Wiki
Jump to: navigation, search
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
//<pre>
 
//Version: 3.1
 
//============================================================
 
// en: ADD SOME EXTRA BUTTONS TO THE EDITPANEL
 
// de: FÜGE NEUE BUTTON IN DIE WERKZEUGLEISTE
 
//============================================================
 
// Vorschläge für neue Buttons werden gerne entgegengenommen
 
// Die Reihenfolge und Anzahl der Buttons ist über die (alphabetische) Variable XEBOrder wählbar.
 
 
//================================
 
//Control Variables
 
//
 
//rmEditButtons - Removes standard toolbar buttons
 
//XEBOrder - The order in which the buttons are displayed
 
 
document.write('<link rel="stylesheet" type="text/css" href="' +
 
      'http://en.wikipedia.org/w/index.php?title=User:MarkS/XEB/live.css' +
 
      '&action=raw&ctype=text/css&dontcountme=s">');
 
 
if(typeof XEBPopups== 'undefined')XEBPopups=true;
 
if(typeof XEBHideDelay== 'undefined')XEBHideDelay=0.5; //Time before the popup disappears after the mouse moves out
 
if(typeof XEBExtendEditSummary == 'undefined')XEBExtendEditSummary=true; // Is the edit summary extended after a popup
 
 
//fills the variable mwCustomEditButtons (s. function in /wikibits.js), with buttons for the Toolbar 
 
function addCustomButton(imageFile, speedTip, tagOpen, tagClose, sampleText){
 
mwCustomEditButtons.push({
 
  "imageFile": imageFile,
 
  "speedTip": speedTip,
 
  "tagOpen": tagOpen,
 
  "tagClose": tagClose,
 
  "sampleText": sampleText});
 
}
 
 
 
if (typeof usersignature == 'undefined') var usersignature = '-- \~\~\~\~';
 
if (typeof usersignature == 'undefined') var usersignature = '-- \~\~\~\~';
 
+
/**
var Isrc='http://upload.wikimedia.org/wikipedia/commons/';
+
* Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
 
+
* loaded for all users on every wiki page. If possible create a gadget that is
// English Wikipedia creates 11 extra buttons which are stored in mwCustomEditButtons
+
* enabled by default instead of adding it here (since gadgets are fully
// rather than mwEditButtons. However, there is no guarantee it will always be 11
+
* optimized ResourceLoader modules with possibility to add dependencies etc.)
// so we count them here.  
+
*
var enExtraButtons=mwCustomEditButtons.length;
+
  * Since Common.js isn't a gadget, there is no place to declare its
 
+
  * dependencies, so we have to lazy load them with mw.loader.using on demand and
 
+
* then execute the rest in the callback. In most cases these dependencies will
var BDict={
+
* be loaded (or loading) already and the callback will not be delayed. In case a
'A':['e/e9/Button_headline2.png','Secondary headline','\n===','===','Secondary headline'],
+
* dependency hasn't arrived yet it'll make sure those are loaded before this.
'B':['1/13/Button_enter.png','Line break','<br />','',''],
+
*/
'C':['5/5f/Button_center.png','Center','<div style="text-align: center;">\n','\n<\/div>','Centred text'],
+
'D':['e/ea/Button_align_left.png','Left-Align','<div style="text-align: left; direction: ltr; margin-left: 1em;">\n','\n<\/div>','Left-aligned text'],
+
/* global mw, $, importStylesheet, importScript */
'D1':['a/a5/Button_align_right.png','Right-Align','<div style="text-align: right; direction: ltr; margin-left: 1em;">\n','\n<\/div>','Right-aligned text'],
+
/* jshint curly:false eqnull:true, strict:false, browser:true */
'E':['0/04/Button_array.png','Table','\n{| class="wikitable" \n|- \n| 1 || 2\n|- \n| 3 || 4','\n|}\n',''],
+
'F':['1/1e/Button_font_color.png','Insert coloured text','<span style="color: ','">Coloured text<\/span>','ColourName'],
+
mw.loader.using( ['mediawiki.util', 'mediawiki.notify', 'jquery.client'], function () {
'FS':['1/1b/Button_miss_signature.png','Unsigned post','{{subst:unsigned|','|date}}','user name or IP'],
+
/* Begin of mw.loader.using callback */
'G':['9/9e/Btn_toolbar_gallery.png','Picture gallery',"\n<gallery>\nImage:","|[[M63]]\nImage:Mona Lisa.jpg|[[Mona Lisa]]\nImage:Truite arc-en-ciel.jpg|Eine [[Forelle ]]\n<\/gallery>",'M63.jpg'],
+
'H':['7/74/Button_comment.png','Comment',"<!--","-->",'Comment'],
+
/**
'I1':['6/6a/Button_sup_letter.png','Superscript','<sup>','<\/sup>','Superscript text'],
+
* Main Page layout fixes
'I2':['a/aa/Button_sub_letter.png','Subscript','<sub>','<\/sub>','Subscript text'],
+
*
'J1':['5/58/Button_small.png','Small','<small>','<\/small>','Small Text'],
+
* Description: Adds an additional link to the complete list of languages available.
'J2':['5/56/Button_big.png','Big text','<big>','<\/big>','Big text'],
+
* Maintainers: [[User:AzaToth]], [[User:R. Koot]], [[User:Alex Smotrov]]
'K':['b/b4/Button_category03.png','Category',"[[Category:","]]",'Category name'],
+
*/
'L':['8/8e/Button_shifting.png','Insert tab(s)',':','',':'],
+
if ( mw.config.get( 'wgPageName' ) === 'Main_Page' || mw.config.get( 'wgPageName' ) === 'Talk:Main_Page' ) {
'M':['f/fd/Button_blockquote.png','Insert block of quoted text','<blockquote style="border: 1px solid blue; padding: 2em;">\n','\n<\/blockquote>','Block quote'],
+
    $( function () {
'N':['4/4b/Button_nbsp.png','nonbreaking space','&nbsp;','',''],
+
        mw.util.addPortletLink( 'p-lang', '//meta.wikimedia.org/wiki/List_of_Wikipedias',
'O':['2/23/Button_code.png','Insert code','<code>','<\/code>','Code'],
+
            'Complete list', 'interwiki-completelist', 'Complete list of Wikipedias' );
'P':['3/3c/Button_pre.png','Pre formatted Text','<pre>','<\/pre>','Pre formatted text'],
+
    } );
'P1':['9/93/Button_sub_link.png','Insert link to sub-page','[[','/Sub_Page]]','Page'],
 
'Q':['d/d3/Button_definition_list.png','Insert definition list','\n; ','\n: Item 1\n: Item 2','Definition'],
 
'R':['7/79/Button_reflink.png','Insert a reference','<ref>','<\/ref>','Insert reference material'],
 
'R1':['7/79/Button_reflink.png','Start a reference','<ref name="','','Reference name'],
 
'R2':['9/99/Button_reflink_advanced_2.png','Insert reference material','">','</ref>','Reference material'],
 
'R3':['1/1a/Button_reflink_advanced_3.png','No reference material','','"/>',''],
 
'R4':['9/9a/Button_references.png','Reference footer',"\n==Notes==\n<!--See http://en.wikipedia.org/wiki/Wikipedia:Footnotes for an explanation of how to generate footnotes using the <ref(erences/)> tags-->\n<div class=\'references-small\'>\n<references/>\n</div>",'',''],
 
'S':['c/c9/Button_strike.png','Strikeout','<s>','<\/s>','Struck out text'],
 
'T':['e/eb/Button_plantilla.png','Template','{{','}}','Template name'],
 
'TS':['a/a4/TableStart.png','Start a table','{|','',''],
 
'TC':['7/71/TableCell.png','Table cell','|','',''],
 
'TE':['0/06/TableEnd.png','End a table','','|}',''],
 
'TR':['4/4c/TableRow.png','Start a table row','|-','',''],
 
'T1':['3/30/Tt_icon.png','Teletype text','<tt>','<\/tt>','Teletype Text'],
 
'TL':['3/37/Button_tl_template.png','Template link',"{{subst:"+"tl|",'}}','Template name'],
 
'U':['f/fd/Button_underline.png','Underlined',"<u>","<\/u>",'Underlined text'],
 
'V':['c/c8/Button_redirect.png','Redirect',"#REDIRECT [[","]]",'Article Name'],
 
'W':['8/88/Btn_toolbar_enum.png','Numbering',"\n# ","\n# Element 2\n# Element 3",'Element 1'],
 
'X':['1/11/Btn_toolbar_liste.png','List',"\n* ","\n* Element B\n* Element C",'Element A'],
 
'Y1':['c/ce/Button_no_include.png','No Include',"<noinclude>","<\/noinclude>",'Text'],
 
'Y2':['7/79/Button_include.png','Include only',"<includeonly>","<\/includeonly>",'Text'],
 
'Z':['3/35/Button_substitute.png','Substitute',"{{subst:","}}",'Template'],
 
'AI':['1/1c/Button_advanced_image.png','Advanaced Image',"[[Image:","|thumb|right|px|Caption]]",'FileName.jpg'],
 
'GEO':['b/b8/Button_Globe.png','Geo location',"","",""],
 
'TALK':['4/49/Button_talk.png','Add talk template',"","",""]
 
};
 
 
 
var XEBOrder2=[];
 
 
 
 
 
 
 
 
 
addOnloadHook(initButtons);
 
if(!wgIsArticle)// only if edit
 
{
 
 
 
if(XEBPopups)hookEvent("load", extendButtons);
 
 
}
 
}
 
+
function initButtons(){
+
/**
 
+
* Redirect User:Name/skin.js and skin.css to the current skin's pages
var bc,d;
+
* (unless the 'skin' page really exists)
 
+
* @source: http://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
if (typeof XEBOrder!='string') // can be modified
+
* @rev: 2
XEBOrder2="A,D,C,D1,F,U,J1,E,G,Q,W,X,K,L,H,O,R,T".split(",");
+
*/
else if (XEBOrder.toLowerCase()=='all')  
+
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
for (b in BDict) XEBOrder2.push(b);
+
    var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
else XEBOrder2=XEBOrder.toUpperCase().split(",");
+
    /* Make sure there was a part before and after the slash
 
+
      and that the latter is 'skin.js' or 'skin.css' */
for (b in BDict) BDict[b][0] = Isrc+BDict[b][0]; // // Add the start of the URL (Isrc) to the XEB buttons
+
    if ( titleParts.length == 2 ) {
// If the user has defined any buttons then add them into the available button lists
+
        var userSkinPage = titleParts.shift() + '/' + mw.config.get( 'skin' );
 
+
        if ( titleParts.slice( -1 ) == 'skin.js' ) {
if (typeof myButtons=='object')
+
            window.location.href = mw.util.getUrl( userSkinPage + '.js' );
  for (b in myButtons) BDict[b] = myButtons[b]; // custom user buttons
+
        } else if ( titleParts.slice( -1 ) == 'skin.css' ) {
// Add the media wiki standard buttons into the available buttons
+
            window.location.href = mw.util.getUrl( userSkinPage + '.css' );
 
+
        }
for (b in mwEditButtons) { // add standard buttons for full XEB order changing
+
    }
 
 
// BDict[b]=[];
 
BDict[b]=[mwEditButtons[b].imageFile,mwEditButtons[b].speedTip,mwEditButtons[b].tagOpen,mwEditButtons[b].tagClose,mwEditButtons[b].sampleText];
 
 
 
// for (d in mwEditButtons[b]) BDict[b].push(mwEditButtons[b][d]);
 
}
 
 
 
// Build the new buttons
 
 
 
for (i=0;i<XEBOrder2.length;i++) {
 
bc = BDict[XEBOrder2[i]];
 
 
 
//Check if bc is an object
 
// - protects if user specified a non-existant buttons
 
// - IE causes a javascript error when viewing a page
 
if(typeof bc=='object')
 
{
 
 
 
//Call addCustomButton in wikibits
 
addCustomButton(bc[0],bc[1],bc[2],bc[3],bc[4]);
 
}
 
}
 
 
 
// Remove the default buttons (if requested by the user)
 
eraseButtons();
 
 
}
 
}
 
+
 
+
/**
/** en: Removes arbitrary standard buttons from the toolbar
+
* Map addPortletLink to mw.util
* @author: [[:de:User:Olliminatore]]
+
*
* @version: 0.1 (01.10.2006) **/
+
* @deprecated: Use mw.util.addPortletLink instead.
 
+
*/
function eraseButtons(){
+
mw.log.deprecate( window, 'addPortletLink', mw.util.addPortletLink,
 
+
'Use mw.util.addPortletLink instead' );
//Remove the buttons the user doesn't want
+
 
+
/**
if(typeof rmEditButtons!='object') return;
+
* Extract a URL parameter from the current URL
 
+
*
if (typeof rmEditButtons[0] == 'string' && rmEditButtons[0].toLowerCase() == 'all')
+
* @deprecated: Use mw.util.getParamValue with proper escaping
{
+
*/
mwEditButtons=[];
+
mw.log.deprecate( window, 'getURLParamValue', mw.util.getParamValue, 'Use mw.util.getParamValue instead' );
for(i=0;i<enExtraButtons;i++){mwCustomEditButtons.shift();}
+
}
+
/**
//Sort the user's requests so we remove the button with the highest index first
+
* Test if an element has a certain class
//- This ensures we remove the buttons the user expects whatever order he requested the buttons in
+
*
rmEditButtons.sort(sortit);
+
* @deprecated:  Use $(element).hasClass() instead.
 
+
*/
//Remove individual buttons the user doesn't want
+
mw.log.deprecate( window, 'hasClass', function ( element, className ) {
 
+
    return $( element ).hasClass( className );
for(i=0;i<rmEditButtons.length;i++){
+
}, 'Use jQuery.hasClass() instead' );
var n=rmEditButtons[i];
+
//Standard Wikimedia buttons
+
/**
if(n>=0 && n<mwEditButtons.length){
+
* @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
if(n<mwEditButtons.length){
+
* @rev 5
var x = -1;
+
*/
while((++x)<mwEditButtons.length)
+
// CSS
if(x>=n)
+
var extraCSS = mw.util.getParamValue( 'withCSS' );
mwEditButtons[x] = mwEditButtons[x+1];
+
if ( extraCSS ) {
}
+
if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) {
mwEditButtons.pop();
+
importStylesheet( extraCSS );
}
+
} else {
//Extra buttons in English Wikipedia
+
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
n=n-mwEditButtons.length;
 
if(n>0 && n<mwCustomEditButtons.length){
 
if(n<mwCustomEditButtons.length){
 
var x = -1;
 
while((++x)<mwCustomEditButtons.length)
 
if(x>=n)
 
mwCustomEditButtons[x] = mwCustomEditButtons[x+1];
 
}
 
mwCustomEditButtons.pop();
 
}
 
 
}
 
}
};
 
 
//Function:
 
// sortit
 
//Purpose:
 
// Used to sort the rmEditButtons array into descending order
 
function sortit(a,b){
 
return(b-a)
 
 
}
 
}
 
+
 
+
// JS
//Function:
+
var extraJS = mw.util.getParamValue( 'withJS' );
//Purpose:
+
if ( extraJS ) {
// Adds extended onclick-function to some buttons
+
if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
function extendButtons(){
+
importScript( extraJS );
 
+
} else {
if(!(allEditButtons = document.getElementById('toolbar'))) return false;
+
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
if(typeof editform != 'undefined')
 
if(!(window.editform = document.forms['editform'])) return false;
 
 
 
//  table
 
extendAButton(Isrc+"0/04/Button_array.png",XEBPopupTable)
 
extendAButton(Isrc+"7/79/Button_reflink.png",XEBPopupRef)
 
extendAButton(Isrc+"b/b8/Button_Globe.png",XEBPopupGeoLink)
 
extendAButton(Isrc+"4/49/Button_talk.png",XEBPopupTalk)
 
extendAButton(Isrc+"1/1c/Button_advanced_image.png",XEBPopupImage)
 
//extendAButton(Isrc+"6/6a/Button_sup_letter.png",XEBPopupFormattedText)
 
 
 
// redirect -##IE doesn't like this line. Object doesn't support this property or method
 
//c=XEBOrder2.getIndex('V');
 
 
 
// if(c != -1)
 
// allEditButtons[bu_len+c].onclick=function(){
 
// var a='#REDIRECT \[\['+prompt("Which page do you want to redirect to\?")+'\]\]';
 
// document.editform.elements['wpTextbox1'].value=a;
 
// document.editform.elements['wpSummary'].value=a;
 
// document.editform.elements['wpWatchthis'].checked=false
 
// };
 
};
 
 
 
function extendAButton(url,newfunc)
 
{
 
if(!(allEditButtons = document.getElementById('toolbar'))) return false;
 
if(typeof editform != 'undefined')
 
if(!(window.editform = document.forms['editform'])) return false;
 
allEditButtons = allEditButtons.getElementsByTagName('img');
 
for(i=0;i<allEditButtons.length;i++)
 
{
 
if(allEditButtons[i].src==url)
 
{
 
allEditButtons[i].onclick=newfunc;
 
}
 
}
 
}
 
 
 
//==========================================================================================================
 
// General purpose popup code
 
//==========================================================================================================
 
 
 
function getXEBPopupDiv(name)
 
{
 
XEBMainDiv= document.getElementById("XEB");
 
if(XEBMainDiv==null){
 
XEBMainDiv=document.createElement("div");
 
document.body.appendChild(XEBMainDiv);
 
XEBMainDiv.id="XEB";
 
 
}
 
}
 
me= document.getElementById("XEBPopup" & name);
 
if(!(me==null))return me;
 
me=document.createElement("div");
 
XEBMainDiv.appendChild(me);
 
 
me.id="XEBPopup";
 
me.style.position='absolute';
 
me.display='none';
 
me.visibility='hidden';
 
me.onmouseout=CheckHideXEBPopup;
 
me.onmouseover=cancelHidePopup;
 
return me;
 
 
}
 
}
 
   
 
   
//Function:
+
/**
// CheckHideXEBPopup
+
* Import more specific scripts if necessary
//Purpose:
+
*/
// Looks at the cursor position and if it has moved outside the popup it will close the popup
+
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload' ) {
//Called:
+
    /* scripts specific to editing pages */
// When the onMouseEvent is fired on the popup
+
    importScript( 'MediaWiki:Common.js/edit.js' );
 
+
} else if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
function CheckHideXEBPopup(e){
+
    /* watchlist scripts */
m= document.getElementById("XEBmnu");
+
    importScript( 'MediaWiki:Common.js/watchlist.js' );
if(is_gecko)
 
{
 
ph=m.offsetHeight;
 
var x=e.clientX + window.scrollX;
 
var y=e.clientY + window.scrollY;;
 
s=window.getComputedStyle(m,"");
 
ph=s.height;
 
ph=Number(ph.substring(0,ph.length-2));
 
}
 
else
 
{
 
var x=event.clientX+ document.documentElement.scrollLeft + document.body.scrollLeft;
 
var y=event.clientY+ document.documentElement.scrollTop + document.body.scrollTop;
 
ph=m.offsetHeight;
 
}
 
pl=curPopup.x;
 
pt=curPopup.y;
 
pw=m.style.width;
 
pw=Number(pw.substring(0,pw.length-2));
 
 
 
if(x>(pl+2)&&x<(pl+pw-5)&&y>(pt+2)&&y<(pt+ph-5))return;
 
curPopup.hideTimeout=setTimeout('hideXEBPopup()',XEBHideDelay*1000);
 
 
}
 
}
 
+
if ( mw.config.get( 'wgNamespaceNumber' ) === 6 ) {
function cancelHidePopup()
+
    /* file description page scripts */
{
+
    importScript( 'MediaWiki:Common.js/file.js' );
clearTimeout(curPopup.hideTimeout)
 
 
}
 
}
 
+
function hideXEBPopup(){
+
/**
XEBMainDiv= document.getElementById("XEB");
+
* Load scripts specific to Internet Explorer
m= document.getElementById("XEBPopup");
+
*/
XEBMainDiv.removeChild(m);
+
if ( $.client.profile().name === 'msie' ) {
 +
    importScript( 'MediaWiki:Common.js/IEFixes.js' );
 
}
 
}
 
+
function XEBstartDrag(e)
+
/**
{
+
* Fix for Windows XP Unicode font rendering
m=new GetPos(e||event);
+
*/
curPopup.startDrag.mouse=m;
+
if ( navigator.appVersion.search(/windows nt 5/i) !== -1 ) {
curPopup.startDrag.floatpopup.y=parseInt(curPopup.div.style.top);
+
    mw.util.addCSS( '.IPA { font-family: "Lucida Sans Unicode", "Arial Unicode MS"; } ' +
curPopup.startDrag.floatpopup.x=parseInt(curPopup.div.style.left);
+
                '.Unicode { font-family: "Arial Unicode MS", "Lucida Sans Unicode"; } ' );
curPopup.dragging=true;
 
 
}
 
}
 
+
function XEBstopDrag(e)
+
/**
{
+
* WikiMiniAtlas
if(curPopup.dragging==false)return;
+
*
curPopup.dragging=false;
+
* Description: WikiMiniAtlas is a popup click and drag world map.
}
+
*              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
 
+
*              The script itself is located on meta because it is used by many projects.
function XEBDrag(e)
+
*              See [[Meta:WikiMiniAtlas]] for more information.  
{
+
* Maintainers: [[User:Dschwen]]
if(curPopup.dragging==false)return;
+
*/
 
+
( function () {
m=new GetPos(e||event);
+
    var require_wikiminiatlas = false;
x=parseInt(curPopup.startDrag.floatpopup.x+(m.x-curPopup.startDrag.mouse.x));
+
    var coord_filter = /geohack/;
y=parseInt(curPopup.startDrag.floatpopup.y+(m.y-curPopup.startDrag.mouse.y));
+
    $( function () {
 
+
        $( 'a.external.text' ).each( function( key, link ) {
curPopup.div.style.top=y+"px";
+
            if ( link.href && coord_filter.exec( link.href ) ) {
curPopup.div.style.left=x+"px";
+
                require_wikiminiatlas = true;
 
+
                // break from loop
curPopup.x=x;
+
                return false;
curPopup.y=y;
+
            }
}
+
        } );
 
+
        if ( $( 'div.kmldata' ).length ) {
//=============================================================================
+
            require_wikiminiatlas = true;
// Popup: Table
+
        }
//=============================================================================
+
        if ( require_wikiminiatlas ) {
 
+
            mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript' );
function XEBPopup(name,x,y)
+
        }
{
+
    } );
// Make sure the popup can appear on the screen
+
} )();
 
+
this.IESelectedRange=XEBgetIESelectedRange();
+
/**
 
+
* Collapsible tables
winW=(is_gecko)?window.innerWidth:document.body.offsetWidth;
+
*
if((winW-this.width)<x)x=(winW-this.width);
+
* Allows tables to be collapsed, showing only the header. See [[Wikipedia:NavFrame]].
 
+
*
this.div=getXEBPopupDiv(name);
+
  * @version 2.0.3 (2014-03-14)
this.div.style.zIndex=2000;
+
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-collapsibleTables.js
this.div.display="inline";
+
* @author [[User:R. Koot]]
this.div.visibility="visible";
+
* @author [[User:Krinkle]]
this.div.style.top=y + "px";
+
* @deprecated Since MediaWiki 1.20: Use class="mw-collapsible" instead which
this.x=x;
+
* is supported in MediaWiki core.
this.y=y;
+
*/
this.name=name;
 
 
 
this.startDrag=new Object;
 
this.startDrag.floatpopup=new Object;
 
}
 
 
 
function setInnerHTML(text)
 
{
 
winW=(is_gecko)?window.innerWidth:document.body.offsetWidth;
 
if((winW-this.width)<this.x)this.x=(winW-this.width);
 
this.div.style.left=this.x+ "px";
 
 
 
mt="<div id='XEBmnu' style='width:" + this.width + "px' >";
 
mt+='<div id="XEBmnuTitle" class="XEBPopupTitle" onmousedown="XEBstartDrag(event)" onmouseup="XEBstopDrag(event)" onmousemove="XEBDrag(event)">Title</div>'
 
mt+=text;
 
mt+="</div>";
 
this.div.innerHTML=mt;
 
//Turn off autocomplete. If the mouse moves over the autocomplete popup then x,y in CheckHidePopup is relative to the
 
// autocomplete popup and our popup is hidden
 
var InTexts = this.div.getElementsByTagName('input');
 
for (var i = 0; i < InTexts.length; i++) {
 
        var theInput = InTexts[i];
 
if (theInput.type == 'text'){theInput.setAttribute('autocomplete','off');}
 
}
 
//Add rollover features to menu items. Doing it here means we don't have to do it for each menu
 
x=XEBgetElementsByClassName(this.div,'XEBMnuItm','span');
 
for (var i = 0; i < x.length; i++) {
 
        var theItm = x[i];
 
theItm.onmouseout=XEBMenuMouseOut;
 
theItm.onmouseover=XEBMenuMouseOver;
 
}
 
 
 
this.div.style.borderWidth='thin';
 
this.div.style.borderStyle='solid';
 
this.div.style.backgroundColor='#D0D0D0';
 
}
 
XEBPopup.prototype.width=250;
 
XEBPopup.prototype.dragging=false;
 
XEBPopup.prototype.setInnerHTML=setInnerHTML;
 
 
 
var curPopup;
 
 
 
function GetPos(e)
 
{
 
this.x=e.clientX-10+ document.documentElement.scrollLeft + document.body.scrollLeft;
 
this.y=e.clientY-10+ document.documentElement.scrollTop + document.body.scrollTop;
 
}
 
 
 
function XEBPopupTable(e){
 
m=new GetPos(e||event);
 
 
 
curPopup=new XEBPopup("table",m.x,m.y);
 
 
 
mt='<p>Enter the table parameters below: <\/p>'
 
+'<form name="XEBPopupTableForm">'
 
+'Table caption: <input type="checkbox" name="inputCaption"><p\/>'
 
+'Table alignment: center<input type="checkbox" name="inputAlign"><p\/>'
 
+'Table headline: colored<input type="checkbox" name="inputHead"><p\/>'
 
+'Number of rows: <input type="text" name="inputRow" value="3" size="2"><p\/>'
 
+'Number of columns: <input type="text" name="inputCol" value="3" size="2"><p\/>'
 
//+'Alternating grey lines: <input type="checkbox" name="inputLine" checked="1" ><p\/>'
 
+'Item column: <input type="checkbox" name="inputItems" ><p\/>'
 
+'Sortable: <input type="checkbox" name="inputSort" ><p\/>'
 
+'<\/form>'
 
+'<i>The default table allows for fields and values only.<\/i><p\/>'
 
+'Check "Item column" to allow for the table to have fields, items, and values.<\/i><p\/>'
 
+'<p><button onClick="javascript:insertTableCode()">Insert</button>'
 
+'<button onClick="hideXEBPopup()">Cancel</button>'
 
 
 
curPopup.setInnerHTML(mt);
 
 
 
return true;
 
}
 
 
 
function insertTableCode(){
 
f=document.XEBPopupTableForm;
 
var caption = (f.inputCaption.checked)?"|+ TABLE CAPTION \n":"";
 
var exhead = (f.inputHead.checked)?'|- style="background: #DDFFDD;"\n':"";
 
var nbRow = parseInt(f.inputRow.value);
 
var nbCol = parseInt(f.inputCol.value);
 
var exfield = f.inputItems.checked;
 
var align = (f.inputAlign.checked)?'align="center"':"";  
 
 
 
//generateTable(caption, exhead, nbCol, nbRow, exfield, align);
 
 
 
var code = "\n";
 
code += '{| {{prettytable}} ' + align + ' '; // en: class="wikitable"
 
code+=(f.inputSort.checked)?'class="sortable" \n':'\n';
 
code += caption + exhead;
 
if (exfield) code += '!\n';
 
for (i=1;i<nbCol+1;i++) code += '! FELD ' + i + '\n';
 
var items = 0;
 
for (var j=0;j<nbRow;j++){
 
if (exfield) {
 
items++;
 
code += '|-\n! style="background: #FFDDDD;"|ITEM ' + items + '\n';
 
} else code += '|-\n';
 
for (i=0;i<nbCol;i++) code += '| Element\n';
 
}
 
code += '|}\n';
 
hideXEBPopup();
 
insertTags('','', code);
 
extendSummary('table');
 
 
 
return false;
 
}
 
 
 
// Get the text currently selected by user in the textAra
 
// This code is based on part of the insertTags function in wikibits.js
 
 
 
function XEBGetSelectedText()
 
{
 
var txtarea;
 
if (document.editform) {
 
txtarea = document.editform.wpTextbox1;
 
} else {
 
// some alternate form? take the first one we can find
 
var areas = document.getElementsByTagName('textarea');
 
 
 
txtarea = areas[0];
 
}
 
// IE & Opera
 
if (document.selection  && !is_gecko)
 
{
 
var theSelection = document.selection.createRange().text;
 
if (!theSelection) theSelection='';
 
}
 
// Mozilla
 
else if(txtarea.selectionStart || txtarea.selectionStart == '0') {
 
var replaced = false;
 
var startPos = txtarea.selectionStart;
 
var endPos = txtarea.selectionEnd;
 
var theSelection = (txtarea.value).substring(startPos, endPos);
 
if (!theSelection) theSelection='';
 
}
 
return theSelection;
 
}
 
 
 
//Notes:
 
// IE loses the cursor position in the textarea when the popup is used.  
 
// So we save the cursor position here
 
function XEBgetIESelectedRange(){
 
var IESel=new Object;
 
var txtarea;
 
if (document.editform) {
 
txtarea = document.editform.wpTextbox1;
 
} else {
 
// some alternate form? take the first one we can find
 
var areas = document.getElementsByTagName('textarea');
 
 
 
txtarea = areas[0];
 
}
 
// IE & Opera
 
 
 
if (document.selection  && !is_gecko)
 
{
 
txtarea.focus();
 
IESel.Rng=document.selection.createRange();
 
return IESel;
 
}
 
}
 
 
 
function XEBinsertText(beforeText,selText,afterText,IESelectedRange) {
 
var newText=beforeText + selText + afterText;
 
var txtarea;
 
if (document.editform) {
 
txtarea = document.editform.wpTextbox1;
 
} else {
 
// some alternate form? take the first one we can find
 
var areas = document.getElementsByTagName('textarea');
 
txtarea = areas[0];
 
}
 
 
 
// IE
 
if (document.selection  && !is_gecko) {
 
 
 
tr=IESelectedRange.Rng;
 
tr.text=newText;
 
txtarea.focus();
 
//txtarea.caretpos=tr.duplicate();
 
tr.select();
 
 
 
return;
 
 
 
// Mozilla
 
} else if(txtarea.selectionStart || txtarea.selectionStart == '0') {
 
var replaced = false;
 
var startPos = txtarea.selectionStart;
 
var endPos = txtarea.selectionEnd;
 
 
 
if (endPos-startPos) {
 
replaced = true;
 
}
 
var scrollTop = txtarea.scrollTop;
 
// var myText = (txtarea.value).substring(startPos, endPos);
 
// if (!myText) {
 
// myText=sampleText;
 
// }
 
// if (myText.charAt(myText.length - 1) == " ") { // exclude ending space char, if any
 
// subst = tagOpen + myText.substring(0, (myText.length - 1)) + tagClose + " ";
 
// } else {
 
// subst = tagOpen + myText + tagClose;
 
// }
 
txtarea.value = txtarea.value.substring(0, startPos) + newText +
 
txtarea.value.substring(endPos, txtarea.value.length);
 
txtarea.focus();
 
//set new selection
 
if (!replaced) {
 
var cPos = startPos+(newText.length);
 
txtarea.selectionStart = cPos;
 
txtarea.selectionEnd = cPos;
 
} else {
 
txtarea.selectionStart = startPos+beforeText.length;
 
txtarea.selectionEnd = startPos+beforeText.length+selText.length;
 
}
 
txtarea.scrollTop = scrollTop;
 
 
 
// All other browsers get no toolbar.
 
// There was previously support for a crippled "help"
 
// bar, but that caused more problems than it solved.
 
}
 
// reposition cursor if possible
 
if (txtarea.createTextRange) {
 
 
 
txtarea.caretPos = document.selection.createRange().duplicate();
 
//txtarea.caretPos =IESelectedRange.Rng;
 
}
 
txtarea.focus();
 
}
 
 
 
 
 
 
 
 
 
/** Collapsible tables *********************************************************
 
  *
 
  * Description: Allows tables to be collapsed, showing only the header. See
 
  *              [[Wikipedia:NavFrame]].
 
  Maintainer on Wikipedia: [[User:R. Koot]]
 
  */
 
 
   
 
   
 
var autoCollapse = 2;
 
var autoCollapse = 2;
var collapseCaption = "hide";
+
var collapseCaption = 'hide';
var expandCaption = "show";
+
var expandCaption = 'show';
 +
 +
function collapseTable( tableIndex ) {
 +
    var Button = document.getElementById( 'collapseButton' + tableIndex );
 +
    var Table = document.getElementById( 'collapsibleTable' + tableIndex );
 
   
 
   
function hasClass( element, className ) {
+
     if ( !Table || !Button ) {
  var Classes = element.className.split( " " );
+
        return false;
  for ( var i = 0; i < Classes.length; i++ ) {
 
     if ( Classes[i] == className ) {
 
      return ( true );
 
 
     }
 
     }
  }
 
  return ( false );
 
}
 
 
function collapseTable( tableIndex )
 
{
 
    var Button = document.getElementById( "collapseButton" + tableIndex );
 
    var Table = document.getElementById( "collapsibleTable" + tableIndex );
 
 
   
 
   
    if ( !Table || !Button ) {
+
    var Rows = Table.rows;
        return false;
+
    var i;
    }
 
 
   
 
   
    var Rows = Table.getElementsByTagName( "tr" );  
+
    if ( Button.firstChild.data === collapseCaption ) {
 +
        for ( i = 1; i < Rows.length; i++ ) {
 +
            Rows[i].style.display = 'none';
 +
        }
 +
        Button.firstChild.data = expandCaption;
 +
    } else {
 +
        for ( i = 1; i < Rows.length; i++ ) {
 +
            Rows[i].style.display = Rows[0].style.display;
 +
        }
 +
        Button.firstChild.data = collapseCaption;
 +
    }
 +
}
 
   
 
   
    if ( Button.firstChild.data == collapseCaption ) {
+
function createClickHandler( tableIndex ) {
        for ( var i = 1; i < Rows.length; i++ ) {
+
    return function ( e ) {
            Rows[i].style.display = "none";
+
        e.preventDefault();
        }
+
        collapseTable( tableIndex );
        Button.firstChild.data = expandCaption;
+
    };
    } else {
 
        for ( var i = 1; i < Rows.length; i++ ) {
 
            Rows[i].style.display = Rows[0].style.display;
 
        }
 
        Button.firstChild.data = collapseCaption;
 
    }
 
 
}
 
}
 
   
 
   
function createCollapseButtons()
+
function createCollapseButtons() {
{
+
    var tableIndex = 0;
    var tableIndex = 0;
+
    var NavigationBoxes = {};
    var NavigationBoxes = new Object();
+
    var Tables = document.getElementsByTagName( 'table' );
    var Tables = document.getElementsByTagName( "table" );
+
    var i;
 +
 +
    for ( i = 0; i < Tables.length; i++ ) {
 +
        if ( $( Tables[i] ).hasClass( 'collapsible' ) ) {
 
   
 
   
    for ( var i = 0; i < Tables.length; i++ ) {
+
            /* only add button and increment count if there is a header row to work with */
        if ( hasClass( Tables[i], "collapsible" ) ) {
+
            var HeaderRow = Tables[i].getElementsByTagName( 'tr' )[0];
            NavigationBoxes[ tableIndex ] = Tables[i];
+
            if ( !HeaderRow ) {
            Tables[i].setAttribute( "id", "collapsibleTable" + tableIndex );
+
                continue;
 +
            }
 +
            var Header = HeaderRow.getElementsByTagName( 'th' )[0];
 +
            if ( !Header ) {
 +
                continue;
 +
            }
 
   
 
   
            var Button    = document.createElement( "span" );
+
            NavigationBoxes[ tableIndex ] = Tables[i];
            var ButtonLink = document.createElement( "a" );
+
            Tables[i].setAttribute( 'id', 'collapsibleTable' + tableIndex );
            var ButtonText = document.createTextNode( collapseCaption );
 
 
   
 
   
            Button.style.styleFloat = "right";
+
            var Button     = document.createElement( 'span' );
            Button.style.cssFloat = "right";
+
            var ButtonLink = document.createElement( 'a' );
            Button.style.fontWeight = "normal";
+
            var ButtonText = document.createTextNode( collapseCaption );
            Button.style.textAlign = "right";
+
            // Styles are declared in [[MediaWiki:Common.css]]
            Button.style.width = "6em";
+
            Button.className = 'collapseButton';
 
   
 
   
            ButtonLink.setAttribute( "id", "collapseButton" + tableIndex );
+
            ButtonLink.style.color = Header.style.color;
            ButtonLink.setAttribute( "href", "javascript:collapseTable(" + tableIndex + ");" );
+
            ButtonLink.setAttribute( 'id', 'collapseButton' + tableIndex );
            ButtonLink.appendChild( ButtonText );
+
            ButtonLink.setAttribute( 'href', '#' );
 +
            $( ButtonLink ).on( 'click', createClickHandler( tableIndex ) );
 +
            ButtonLink.appendChild( ButtonText );
 
   
 
   
            Button.appendChild( document.createTextNode( "[" ) );
+
 
            Button.appendChild( ButtonLink );
+
            Button.appendChild( ButtonLink );
            Button.appendChild( document.createTextNode( "]" ) );
+
 
 
   
 
   
            var Header = Tables[i].getElementsByTagName( "tr" )[0].getElementsByTagName( "th" )[0];
+
            Header.insertBefore( Button, Header.firstChild );
            /* only add button and increment count if there is a header row to work with */
+
            tableIndex++;
            if (Header) {
+
        }
                Header.insertBefore( Button, Header.childNodes[0] );
+
    }
                tableIndex++;
 
            }
 
        }
 
    }
 
 
   
 
   
    for ( var i = 0;  i < tableIndex; i++ ) {
+
    for ( i = 0;  i < tableIndex; i++ ) {
        if ( hasClass( NavigationBoxes[i], "collapsed" ) || ( tableIndex >= autoCollapse && hasClass( NavigationBoxes[i], "autocollapse" ) ) ) {
+
        if ( $( NavigationBoxes[i] ).hasClass( 'collapsed' ) ||
            collapseTable( i );
+
            ( tableIndex >= autoCollapse && $( NavigationBoxes[i] ).hasClass( 'autocollapse' ) )
        }
+
        ) {
    }
+
            collapseTable( i );
 +
        }
 +
        else if ( $( NavigationBoxes[i] ).hasClass ( 'innercollapse' ) ) {
 +
            var element = NavigationBoxes[i];
 +
            while ((element = element.parentNode)) {
 +
                if ( $( element ).hasClass( 'outercollapse' ) ) {
 +
                    collapseTable ( i );
 +
                    break;
 +
                }
 +
            }
 +
        }
 +
    }
 
}
 
}
 
   
 
   
addOnloadHook( createCollapseButtons );
+
mw.hook( 'wikipage.content' ).add( createCollapseButtons );
 
+
/** Dynamic Navigation Bars (experimental) *************************************
+
/**
*
+
* Dynamic Navigation Bars (experimental)
* Description: See [[Wikipedia:NavFrame]].
+
*
* Maintainers: UNMAINTAINED
+
* Description: See [[Wikipedia:NavFrame]].
*/
+
* Maintainers: UNMAINTAINED
 +
*/
 
   
 
   
// set up the words in your language
+
/* set up the words in your language */
var NavigationBarHide = '[' + collapseCaption + ']';
+
var NavigationBarHide = collapseCaption;
var NavigationBarShow = '[' + expandCaption + ']';
+
var NavigationBarShow = expandCaption;
 
   
 
   
// shows and hides content and picture (if available) of navigation bars
+
/**
// Parameters:
+
* Shows and hides content and picture (if available) of navigation bars
//     indexNavigationBar: the index of navigation bar to be toggled
+
* Parameters:
function toggleNavigationBar(indexNavigationBar)
+
*     indexNavigationBar: the index of navigation bar to be toggled
{
+
**/
     var NavToggle = document.getElementById("NavToggle" + indexNavigationBar);
+
window.toggleNavigationBar = function ( indexNavigationBar, event ) {
     var NavFrame = document.getElementById("NavFrame" + indexNavigationBar);
+
     var NavToggle = document.getElementById( 'NavToggle' + indexNavigationBar );
 +
     var NavFrame = document.getElementById( 'NavFrame' + indexNavigationBar );
 +
    var NavChild;
 
   
 
   
     if (!NavFrame || !NavToggle) {
+
     if ( !NavFrame || !NavToggle ) {
 
         return false;
 
         return false;
 
     }
 
     }
 
   
 
   
     // if shown now
+
     /* if shown now */
     if (NavToggle.firstChild.data == NavigationBarHide) {
+
     if ( NavToggle.firstChild.data === NavigationBarHide ) {
         for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
+
         for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
             if ( hasClass( NavChild, 'NavPic' ) ) {
+
             if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
                NavChild.style.display = 'none';
 
            }
 
            if ( hasClass( NavChild, 'NavContent') ) {
 
 
                 NavChild.style.display = 'none';
 
                 NavChild.style.display = 'none';
 
             }
 
             }
Line 728: Line 304:
 
     NavToggle.firstChild.data = NavigationBarShow;
 
     NavToggle.firstChild.data = NavigationBarShow;
 
   
 
   
     // if hidden now
+
     /* if hidden now */
     } else if (NavToggle.firstChild.data == NavigationBarShow) {
+
     } else if ( NavToggle.firstChild.data === NavigationBarShow ) {
         for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
+
         for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
             if (hasClass(NavChild, 'NavPic')) {
+
             if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
                NavChild.style.display = 'block';
 
            }
 
            if (hasClass(NavChild, 'NavContent')) {
 
 
                 NavChild.style.display = 'block';
 
                 NavChild.style.display = 'block';
 
             }
 
             }
Line 740: Line 313:
 
         NavToggle.firstChild.data = NavigationBarHide;
 
         NavToggle.firstChild.data = NavigationBarHide;
 
     }
 
     }
}
 
 
   
 
   
// adds show/hide-button to navigation bars
+
    event.preventDefault();
function createNavigationBarToggleButton()
+
};
{
+
 +
/* adds show/hide-button to navigation bars */
 +
function createNavigationBarToggleButton() {
 
     var indexNavigationBar = 0;
 
     var indexNavigationBar = 0;
     // iterate over all < div >-elements  
+
    var NavFrame;
     var divs = document.getElementsByTagName("div");
+
    var NavChild;
     for (var i = 0; NavFrame = divs[i]; i++) {
+
     /* iterate over all < div >-elements */
         // if found a navigation bar
+
     var divs = document.getElementsByTagName( 'div' );
         if (hasClass(NavFrame, "NavFrame")) {
+
     for ( var i = 0; (NavFrame = divs[i]); i++ ) {
 +
         /* if found a navigation bar */
 +
         if ( $( NavFrame ).hasClass( 'NavFrame' ) ) {
 
   
 
   
 
             indexNavigationBar++;
 
             indexNavigationBar++;
             var NavToggle = document.createElement("a");
+
             var NavToggle = document.createElement( 'a' );
 
             NavToggle.className = 'NavToggle';
 
             NavToggle.className = 'NavToggle';
             NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar);
+
             NavToggle.setAttribute( 'id', 'NavToggle' + indexNavigationBar );
             NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');');
+
             NavToggle.setAttribute( 'href', '#' );
 +
            $( NavToggle ).on( 'click', $.proxy( window.toggleNavigationBar, window, indexNavigationBar ) );
 
   
 
   
             var NavToggleText = document.createTextNode(NavigationBarHide);
+
             var isCollapsed = $( NavFrame ).hasClass( 'collapsed' );
             for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
+
            /**
                 if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) {
+
            * Check if any children are already hidden.  This loop is here for backwards compatibility:
                     if (NavChild.style.display == 'none') {
+
            * the old way of making NavFrames start out collapsed was to manually add style="display:none"
                         NavToggleText = document.createTextNode(NavigationBarShow);
+
            * to all the NavPic/NavContent elements.  Since this was bad for accessibility (no way to make
                         break;
+
            * the content visible without JavaScript support), the new recommended way is to add the class
 +
            * "collapsed" to the NavFrame itself, just like with collapsible tables.
 +
            */
 +
             for ( NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling ) {
 +
                 if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
 +
                     if ( NavChild.style.display === 'none' ) {
 +
                         isCollapsed = true;
 +
                    }
 +
                }
 +
            }
 +
            if ( isCollapsed ) {
 +
                for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
 +
                    if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
 +
                         NavChild.style.display = 'none';
 
                     }
 
                     }
 
                 }
 
                 }
 
             }
 
             }
 +
            var NavToggleText = document.createTextNode( isCollapsed ? NavigationBarShow : NavigationBarHide );
 +
            NavToggle.appendChild( NavToggleText );
 
   
 
   
            NavToggle.appendChild(NavToggleText);
+
             /* Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked) */
             // Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked)
+
             for( var j = 0; j < NavFrame.childNodes.length; j++ ) {
             for(var j=0; j < NavFrame.childNodes.length; j++) {
+
                 if ( $( NavFrame.childNodes[j] ).hasClass( 'NavHead' ) ) {
                 if (hasClass(NavFrame.childNodes[j], "NavHead")) {
+
                    NavToggle.style.color = NavFrame.childNodes[j].style.color;
                     NavFrame.childNodes[j].appendChild(NavToggle);
+
                     NavFrame.childNodes[j].appendChild( NavToggle );
 
                 }
 
                 }
 
             }
 
             }
             NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar);
+
             NavFrame.setAttribute( 'id', 'NavFrame' + indexNavigationBar );
 
         }
 
         }
 
     }
 
     }
 
}
 
}
 
   
 
   
addOnloadHook( createNavigationBarToggleButton );
+
mw.hook( 'wikipage.content' ).add( createNavigationBarToggleButton );
 
   
 
   
 
+
/**
 
+
* Uploadwizard_newusers
 
+
* Switches in a message for non-autoconfirmed users at [[Wikipedia:Upload]]
//============================================================
+
*
// Table generator
+
* Maintainers: [[User:Krimpet]]
//============================================================
+
*/
/** en: Generate an array using Mediawiki syntax
+
function uploadwizard_newusers() {
* @author: originally from fr:user:dake
+
    if ( mw.config.get( 'wgNamespaceNumber' ) === 4 && mw.config.get( 'wgTitle' ) === 'Upload' && mw.config.get( 'wgAction' ) === 'view' ) {
* @version: 0.2 */
+
        var oldDiv = document.getElementById( 'autoconfirmedusers' ),
function generateTable(caption, exhead, nbCol, nbRow, exfield, align){
+
            newDiv = document.getElementById( 'newusers' );
+
        if ( oldDiv && newDiv ) {
};
+
            var userGroups = mw.config.get( 'wgUserGroups' );
 
+
            if ( userGroups ) {
 
+
                for ( var i = 0; i < userGroups.length; i++ ) {
function XEBPopupRef(e){
+
                    if ( userGroups[i] === 'autoconfirmed' ) {
 
+
                        oldDiv.style.display = 'block';
m=new GetPos(e||event);
+
                        newDiv.style.display = 'none';
 
+
                        return;
curPopup=new XEBPopup("ref",m.x,m.y);
+
                    }
curPopup.width=500;
+
                }
mt='<p>Enter the reference parameters below: <\/p>'
+
            }
+'<form name="XEBPopupRefForm">'
+
            oldDiv.style.display = 'none';
+'Name:<input type="text" name="refName" value="" size="10"><p\/>'
+
            newDiv.style.display = 'block';
+'Material:<input type="text" name="refMaterial" value="' + XEBGetSelectedText() + '" size="20">'
+
            return;
+'<\/form>'
+
        }
+'<p><button onClick="javascript:insertRef()">Insert</button>'
+
    }
+'<button onClick="hideXEBPopup()">Cancel</button>';
 
 
 
curPopup.setInnerHTML(mt);
 
// document.XEBPopupRefForm.refName.focus();
 
return true;
 
 
}
 
}
 
+
function insertRef(){
+
$(uploadwizard_newusers);
f=document.XEBPopupRefForm;
+
var refName = f.refName.value;
+
/**
var refMaterial=f.refMaterial.value;
+
* Magic editintros ****************************************************
+
*
hideXEBPopup();
+
* Description: Adds editintros on disambiguation pages and BLP pages.
var code1='<ref';
+
* Maintainers: [[User:RockMFR]]
code1+=(refName)?' name="'+refName+'">':'>';
+
*/
code2=refMaterial;
+
function addEditIntro( name ) {
code3='<\/ref>'
+
    $( '.mw-editsection, #ca-edit' ).find( 'a' ).each( function ( i, el ) {
XEBinsertText(code1,code2,code3,curPopup.IESelectedRange);
+
        el.href = $( this ).attr( 'href' ) + '&editintro=' + name;
 
+
    } );
extendSummary('ref');
 
return false;
 
}
 
 
 
//===GEO LINK Function==================================================
 
 
 
function XEBPopupGeoLink(e)
 
{
 
m=new GetPos(e||event);
 
 
 
curPopup=new XEBPopup("geo",m.x,m.y);
 
curPopup.width=300;
 
mt='<p>Enter the location parameters below: <\/p>'
 
+'<form name="XEBPopupGeoLinkForm">'
 
+'Loction:<p\/>'
 
+'<table style="background: transparent;">'
 
+'<tr><td>Latitude:<\/td><td><input type="text" autocomplete="off" name="geoLatDeg" value="" size="4"><\/td>'
 
+'<td><input type="text" name="geoLatMin" size="4"><\/td>'
 
+'<td><input type="text" name="geoLatSec" size="4"><\/td>'
 
+'<td><select name="geoLatNS"><option value="N">N<option value="S">S</select><\/td><\/tr>'
 
+'<tr><td>Longitude:<\/td><td><input type="text" name="geoLonDeg" value="" size="4"><\/td>'
 
+'<td><input type="text" name="geoLonMin" value="" size="4"><\/td>'
 
+'<td><input type="text" name="geoLonSec" value="" size="4"><\/td>'
 
+'<td><select name="geoLonEW"><option value="E">E<option value="W">W</select><\/td><\/tr>'
 
+'<\/table>'
 
+'Region:<input type="text" name="geoRegion" value="" size="4"><p\/>'
 
+'Type:'
 
+'<SELECT NAME="geoType" size="5">'
 
+'<OPTION VALUE="country">Country<OPTION VALUE="state">State'
 
+'<OPTION VALUE="adm1st">Admin unit, 1st level<OPTION VALUE="adm2st">Admin unit, 2nd level'
 
+'<OPTION VALUE="city">City<OPTION VALUE="airport">Airport'
 
+'<OPTION VALUE="mountain">Mountain<OPTION VALUE="isle">Isle'
 
+'<OPTION VALUE="waterbody">Waterbody<OPTION VALUE="landmark" SELECTED>Landmark'
 
+'<OPTION VALUE="forest">forest</SELECT><br>'
 
+'Title: <input type="checkbox" name="geoTitle" ><p\/>'
 
+'<\/form>'
 
+'<p><button onClick="javascript:insertGeoLink()">Insert</button>'
 
+'<button onClick="hideXEBPopup()">Cancel</button>';
 
 
 
curPopup.setInnerHTML(mt);
 
document.paramForm.refName.focus();
 
return true;
 
 
 
 
}
 
}
function insertGeoLink()
+
{
+
if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
f=document.XEBPopupGeoLinkForm;
+
    $( function () {
 
+
        if ( document.getElementById( 'disambigbox' ) ) {
var code='{{Coor ';
+
            addEditIntro( 'Template:Disambig_editintro' );
if(f.geoTitle.checked)code+='title ';
+
        }
ft='dms';
+
    } );
if(f.geoLatSec.value==''&&f.geoLonSec.value=='')ft='dm';
+
if(ft=='dm'&&f.geoLatMin.value==''&&f.geoLonMin.value=='')ft='d';
+
    $( function () {
code+=ft;
+
        var cats = mw.config.get('wgCategories');
code+='|'+f.geoLatDeg.value;
+
        if ( !cats ) {
code+=(ft=='dm'||ft=='dms')?'|'+f.geoLatMin.value:'';
+
            return;
code+=(ft=='dms')?'|'+f.geoLatSec.value:'';
+
        }
code+='|'+f.geoLatNS.value;
+
        if ( $.inArray( 'Living people', cats ) !== -1 || $.inArray( 'Possibly living people', cats ) !== -1 ) {
code+='|'+f.geoLonDeg.value;
+
            addEditIntro( 'Template:BLP_editintro' );
code+=(ft=='dm'||ft=='dms')?'|'+f.geoLonMin.value:'';
+
        }
code+=(ft=='dms')?'|'+f.geoLonSec.value:'';
+
    } );
code+='|'+f.geoLonEW.value;
 
code+='|type:'+f.geoType.value+'_region:'+f.geoRegion.value
 
code+='}}';
 
insertTags('','', code);
 
extendSummary('geo-location');
 
hideXEBPopup();
 
return false;
 
 
}
 
}
 +
  
//===Talk Page entry Function===========================================
+
/* End of mw.loader.using callback */
 
+
} );
function XEBPopupTalk(e)
+
/* DO NOT ADD CODE BELOW THIS LINE */
{
 
m=new GetPos(e||event);
 
 
 
curPopup=new XEBPopup("talk",m.x,m.y);
 
curPopup.width=200;
 
mt='<div style="font-size:medium"><p>Please choose:<\/p>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(1)">Test1<\/span><br>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(2)">Self Test<\/span><br>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(3)">Nonsense<\/span><br>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(4)">Please stop<\/span><br>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(5)">Last chance<\/span><br>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(6)">Blanking<\/span><br>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(7)">Blatant<\/span><br>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(8)">*BLOCKED*<\/span><br>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(9)">Spam<\/span><br>'
 
mt+='<span class="XEBMnuItm" onclick="XEBInsertTalk(10)">Npov<\/span></div>'
 
 
 
curPopup.setInnerHTML(mt);
 
 
 
return true;
 
 
 
}
 
function XEBInsertTalk(itm)
 
{
 
hideXEBPopup();
 
if(itm==1)code='{{subst:test1-n|}}';
 
if(itm==2)code='{{subst:selftest-n|}}';
 
if(itm==3)code='{{subst:test2-n|}}';
 
if(itm==4)code='{{subst:test3-n|}}';
 
if(itm==5)code='{{subst:test4-n|}}';
 
if(itm==6)code='{{subst:test2a-n|}}';
 
if(itm==7)code='{{subst:bv-n|}}';
 
if(itm==8)code='{{subst:blantant|}}';
 
if(itm==9)code='{{subst:spam-n|}}';
 
if(itm==10)code='{{subst:NPOV user}}';
 
 
 
insertTags('','', code);
 
return false;
 
}
 
function XEBPopupImage(e)
 
{
 
m=new GetPos(e||event);
 
 
 
curPopup=new XEBPopup("image",m.x,m.y);
 
curPopup.width=300;
 
 
 
mt='<p>Enter the image parameters below: <\/p>'
 
+'<form name="XEBPopupImageForm">'
 
+'File:<input type="text" name="imgFile" value="' + XEBGetSelectedText() + '" size="30"><br>'
 
+'Type:<SELECT NAME="imgType">'
 
+'<OPTION VALUE="thumb">Thumbnail'
 
+'<OPTION VALUE="frame">Frame'
 
+'<OPTION VALUE="none">[not specified]'
 
+'</SELECT><br>'
 
+'Location:<SELECT NAME="imgLocation">'
 
+'<OPTION VALUE="left">Left'
 
+'<OPTION VALUE="center">Centre'
 
+'<OPTION VALUE="right">Right'
 
+'<OPTION VALUE="none">None'
 
+'</SELECT><br>'
 
+'Size:<input type="text" name="imgSize" value="100" size="3">px<br>'
 
+'Caption:<input type="text" name="imgCaption" value="" size="30"><\/p>'
 
+'<\/form>'
 
+'<p><button onClick="javascript:XEBInsertImage()">Insert</button>'
 
+'<button onClick="hideXEBPopup()">Cancel</button>';
 
 
 
curPopup.setInnerHTML(mt);
 
 
 
return true;
 
}
 
function XEBInsertImage()
 
{
 
f=document.XEBPopupImageForm;
 
hideXEBPopup();
 
var code='[[Image:';
 
code+=f.imgFile.value;
 
code+='|'+f.imgType.value;
 
code+='|'+f.imgLocation.value;
 
code+='|'+f.imgSize.value;
 
code+='|'+f.imgCaption.value;
 
code+=']]';
 
insertTags('','', code);
 
extendSummary('image');
 
 
 
return false;
 
}
 
 
 
function XEBPopupFormattedText(e)
 
{
 
m=new GetPos(e||event);
 
 
 
curPopup=new XEBPopup("image",m.x,m.y);
 
curPopup.width=300;
 
 
mt='<form name="XEBPopupImageForm">'
 
+'<table  style="background: transparent;">'
 
+'<tr><td>Bold:<\/td><td><input type="checkbox" name="textBold"><\/td>'
 
+'<td>Superscript:<\/td><td><input type="checkbox" name="textSuperscript"><\/td><\/tr>'
 
+'<tr><td>Italic:<\/td><td><input type="checkbox" name="textItalic"><\/td>'
 
+'<td>Subscript:<\/td><td><input type="checkbox" name="textSubscript"><\/td><\/tr>'
 
+'<tr><td>Strike:<\/td><td><input type="checkbox" name="textStrike"><\/td>'
 
+'<td>&nbsp;<\/td><\/tr>'
 
+'</table>'
 
+'Size:<SELECT NAME="textSize">'
 
+'<OPTION VALUE="small">small'
 
+'<OPTION VALUE="normal">[Normal]'
 
+'<OPTION VALUE="big">big'
 
+'</SELECT><br><table style="background:transparent;"><tr><td>Colour:<\/td><td>'
 
+'<table width="100px">'
 
+'<tr><td colspan="4">None<\/td></tr>'
 
+'<tr><td bgcolor="aqua">&nbsp;<\/td><td bgcolor="gray"> &nbsp;<\/td>'
 
+'<td bgcolor="olive">&nbsp;<\/td><td bgcolor="navy">&nbsp;<\/td><\/tr>'
 
+'<tr><td bgcolor="black">&nbsp;<\/td><td bgcolor="green"> &nbsp;<\/td>'
 
+'<td bgcolor="purple">&nbsp;<\/td><td bgcolor="teal">&nbsp;<\/td><\/tr>'
 
+'<tr><td bgcolor="blue">&nbsp;<\/td><td bgcolor="lime">&nbsp;<\/td>'
 
+'<td bgcolor="red">&nbsp;<\/td><td bgcolor="white">&nbsp;<\/td><\/tr>'
 
+'<tr><td bgcolor="fuchsia">&nbsp;<\/td><td bgcolor="maroon">&nbsp;<\/td>'
 
+'<td bgcolor="silver">&nbsp;<\/td><td bgcolor="yellow">&nbsp;<\/td><\/tr>'
 
+'</table><\/td><\/tr>'
 
+'<\/form>'
 
+'Sample:'
 
+'<span id="sampleText">Text</span>"'
 
+'<p><button onClick="javascript:XEBInsertFormattedText()">Insert</button>'
 
+'<button onClick="hideXEBPopup()">Cancel</button>';
 
 
 
curPopup.setInnerHTML(mt);
 
 
 
return true;
 
}
 
 
 
function XEBUpdateSampleText()
 
{
 
f=document.XEBPopupImageForm;
 
}
 
 
 
//====================
 
 
 
function XEBMenuMouseOut(e)
 
{
 
var targ;
 
if (!e) var e = window.event;
 
if (e.target) targ = e.target;
 
else if (e.srcElement) targ = e.srcElement;
 
 
 
targ.style.color='black';
 
}
 
 
 
function XEBMenuMouseOver(e)
 
{ var targ;
 
if (!e) var e = window.event;
 
if (e.target) targ = e.target;
 
else if (e.srcElement) targ = e.srcElement;
 
 
 
targ.style.color='red';
 
}
 
 
 
//=======================================================================
 
// Other functions
 
//=======================================================================
 
 
 
function XEBgetElementsByClassName(parent,clsName,htmltag){
 
var arr = new Array();
 
var elems = parent.getElementsByTagName(htmltag);
 
for ( var cls, i = 0; ( elem = elems[i] ); i++ ){
 
if ( elem.className == clsName ){
 
arr[arr.length] = elem;
 
}
 
}
 
return arr;
 
}
 
 
 
function extendSummary(newText)
 
{
 
if(!XEBExtendEditSummary)return;
 
s=document.editform.elements['wpSummary'].value;
 
s+=(s=='')?newText:' +'+newText;
 
document.editform.elements['wpSummary'].value=s;
 
}
 
 
 
function bug(msg)
 
{
 
if(wgUserName=='MarkS')alert(msg);
 
}
 
 
 
 
 
//</pre>
 

Latest revision as of 14:12, 8 October 2014

if (typeof usersignature == 'undefined') var usersignature = '-- \~\~\~\~';
/**
 * Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
 * loaded for all users on every wiki page. If possible create a gadget that is
 * enabled by default instead of adding it here (since gadgets are fully
 * optimized ResourceLoader modules with possibility to add dependencies etc.)
 *
 * Since Common.js isn't a gadget, there is no place to declare its
 * dependencies, so we have to lazy load them with mw.loader.using on demand and
 * then execute the rest in the callback. In most cases these dependencies will
 * be loaded (or loading) already and the callback will not be delayed. In case a
 * dependency hasn't arrived yet it'll make sure those are loaded before this.
 */
 
/* global mw, $, importStylesheet, importScript */
/* jshint curly:false eqnull:true, strict:false, browser:true */
 
mw.loader.using( ['mediawiki.util', 'mediawiki.notify', 'jquery.client'], function () {
/* Begin of mw.loader.using callback */
 
/**
 * Main Page layout fixes
 *
 * Description: Adds an additional link to the complete list of languages available.
 * Maintainers: [[User:AzaToth]], [[User:R. Koot]], [[User:Alex Smotrov]]
 */
if ( mw.config.get( 'wgPageName' ) === 'Main_Page' || mw.config.get( 'wgPageName' ) === 'Talk:Main_Page' ) {
    $( function () {
        mw.util.addPortletLink( 'p-lang', '//meta.wikimedia.org/wiki/List_of_Wikipedias',
            'Complete list', 'interwiki-completelist', 'Complete list of Wikipedias' );
    } );
}
 
/**
 * Redirect User:Name/skin.js and skin.css to the current skin's pages
 * (unless the 'skin' page really exists)
 * @source: http://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
 * @rev: 2
 */
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
    var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
    /* Make sure there was a part before and after the slash
       and that the latter is 'skin.js' or 'skin.css' */
    if ( titleParts.length == 2 ) {
        var userSkinPage = titleParts.shift() + '/' + mw.config.get( 'skin' );
        if ( titleParts.slice( -1 ) == 'skin.js' ) {
            window.location.href = mw.util.getUrl( userSkinPage + '.js' );
        } else if ( titleParts.slice( -1 ) == 'skin.css' ) {
            window.location.href = mw.util.getUrl( userSkinPage + '.css' );
        }
    }
}
 
/**
 * Map addPortletLink to mw.util 
 *
 * @deprecated: Use mw.util.addPortletLink instead.
 */
mw.log.deprecate( window, 'addPortletLink', mw.util.addPortletLink,
 'Use mw.util.addPortletLink instead' );
 
/**
 * Extract a URL parameter from the current URL
 *
 * @deprecated: Use mw.util.getParamValue with proper escaping
 */
mw.log.deprecate( window, 'getURLParamValue', mw.util.getParamValue, 'Use mw.util.getParamValue instead' );
 
/** 
 * Test if an element has a certain class
 *
 * @deprecated:  Use $(element).hasClass() instead.
 */
mw.log.deprecate( window, 'hasClass', function ( element, className ) {
    return $( element ).hasClass( className );
}, 'Use jQuery.hasClass() instead' );
 
/**
 * @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
 * @rev 5
 */
// CSS
var extraCSS = mw.util.getParamValue( 'withCSS' );
if ( extraCSS ) {
	if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) {
		importStylesheet( extraCSS );
	} else {
		mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
	}
}
 
// JS
var extraJS = mw.util.getParamValue( 'withJS' );
if ( extraJS ) {
	if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
		importScript( extraJS );
	} else {
		mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
	}
}
 
/**
 * Import more specific scripts if necessary
 */
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload' ) {
    /* scripts specific to editing pages */
    importScript( 'MediaWiki:Common.js/edit.js' );
} else if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
    /* watchlist scripts */
    importScript( 'MediaWiki:Common.js/watchlist.js' );
}
if ( mw.config.get( 'wgNamespaceNumber' ) === 6 ) {
    /* file description page scripts */
    importScript( 'MediaWiki:Common.js/file.js' );
}
 
/**
 * Load scripts specific to Internet Explorer
 */
if ( $.client.profile().name === 'msie' ) {
    importScript( 'MediaWiki:Common.js/IEFixes.js' );
}
 
/**
 * Fix for Windows XP Unicode font rendering
 */
if ( navigator.appVersion.search(/windows nt 5/i) !== -1 ) {
    mw.util.addCSS( '.IPA { font-family: "Lucida Sans Unicode", "Arial Unicode MS"; } ' + 
                '.Unicode { font-family: "Arial Unicode MS", "Lucida Sans Unicode"; } ' );
}
 
/**
 * WikiMiniAtlas
 *
 * Description: WikiMiniAtlas is a popup click and drag world map.
 *              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
 *              The script itself is located on meta because it is used by many projects.
 *              See [[Meta:WikiMiniAtlas]] for more information. 
 * Maintainers: [[User:Dschwen]]
 */
( function () {
    var require_wikiminiatlas = false;
    var coord_filter = /geohack/;
    $( function () {
        $( 'a.external.text' ).each( function( key, link ) {
            if ( link.href && coord_filter.exec( link.href ) ) {
                require_wikiminiatlas = true;
                // break from loop
                return false;
            }
        } );
        if ( $( 'div.kmldata' ).length ) {
            require_wikiminiatlas = true;
        }
        if ( require_wikiminiatlas ) {
            mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript' );
        }
    } );
} )();
 
/**
 * Collapsible tables
 *
 * Allows tables to be collapsed, showing only the header. See  [[Wikipedia:NavFrame]].
 *
 * @version 2.0.3 (2014-03-14)
 * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-collapsibleTables.js
 * @author [[User:R. Koot]]
 * @author [[User:Krinkle]]
 * @deprecated Since MediaWiki 1.20: Use class="mw-collapsible" instead which
 * is supported in MediaWiki core.
 */
 
var autoCollapse = 2;
var collapseCaption = 'hide';
var expandCaption = 'show';
 
function collapseTable( tableIndex ) {
    var Button = document.getElementById( 'collapseButton' + tableIndex );
    var Table = document.getElementById( 'collapsibleTable' + tableIndex );
 
    if ( !Table || !Button ) {
        return false;
    }
 
    var Rows = Table.rows;
    var i;
 
    if ( Button.firstChild.data === collapseCaption ) {
        for ( i = 1; i < Rows.length; i++ ) {
            Rows[i].style.display = 'none';
        }
        Button.firstChild.data = expandCaption;
    } else {
        for ( i = 1; i < Rows.length; i++ ) {
            Rows[i].style.display = Rows[0].style.display;
        }
        Button.firstChild.data = collapseCaption;
    }
}
 
function createClickHandler( tableIndex ) {
    return function ( e ) {
        e.preventDefault();
        collapseTable( tableIndex );
    };
}
 
function createCollapseButtons() {
    var tableIndex = 0;
    var NavigationBoxes = {};
    var Tables = document.getElementsByTagName( 'table' );
    var i;
 
    for ( i = 0; i < Tables.length; i++ ) {
        if ( $( Tables[i] ).hasClass( 'collapsible' ) ) {
 
            /* only add button and increment count if there is a header row to work with */
            var HeaderRow = Tables[i].getElementsByTagName( 'tr' )[0];
            if ( !HeaderRow ) {
                continue;
            }
            var Header = HeaderRow.getElementsByTagName( 'th' )[0];
            if ( !Header ) {
                continue;
            }
 
            NavigationBoxes[ tableIndex ] = Tables[i];
            Tables[i].setAttribute( 'id', 'collapsibleTable' + tableIndex );
 
            var Button     = document.createElement( 'span' );
            var ButtonLink = document.createElement( 'a' );
            var ButtonText = document.createTextNode( collapseCaption );
            // Styles are declared in [[MediaWiki:Common.css]]
            Button.className = 'collapseButton';
 
            ButtonLink.style.color = Header.style.color;
            ButtonLink.setAttribute( 'id', 'collapseButton' + tableIndex );
            ButtonLink.setAttribute( 'href', '#' );
            $( ButtonLink ).on( 'click', createClickHandler( tableIndex ) );
            ButtonLink.appendChild( ButtonText );
 

            Button.appendChild( ButtonLink );

 
            Header.insertBefore( Button, Header.firstChild );
            tableIndex++;
        }
    }
 
    for ( i = 0;  i < tableIndex; i++ ) {
        if ( $( NavigationBoxes[i] ).hasClass( 'collapsed' ) ||
            ( tableIndex >= autoCollapse && $( NavigationBoxes[i] ).hasClass( 'autocollapse' ) )
        ) {
            collapseTable( i );
        } 
        else if ( $( NavigationBoxes[i] ).hasClass ( 'innercollapse' ) ) {
            var element = NavigationBoxes[i];
            while ((element = element.parentNode)) {
                if ( $( element ).hasClass( 'outercollapse' ) ) {
                    collapseTable ( i );
                    break;
                }
            }
        }
    }
}
 
mw.hook( 'wikipage.content' ).add( createCollapseButtons );
 
/**
 * Dynamic Navigation Bars (experimental)
 *
 * Description: See [[Wikipedia:NavFrame]].
 * Maintainers: UNMAINTAINED
 */
 
/* set up the words in your language */
var NavigationBarHide = collapseCaption;
var NavigationBarShow = expandCaption;
 
/**
 * Shows and hides content and picture (if available) of navigation bars
 * Parameters:
 *     indexNavigationBar: the index of navigation bar to be toggled
 **/
window.toggleNavigationBar = function ( indexNavigationBar, event ) {
    var NavToggle = document.getElementById( 'NavToggle' + indexNavigationBar );
    var NavFrame = document.getElementById( 'NavFrame' + indexNavigationBar );
    var NavChild;
 
    if ( !NavFrame || !NavToggle ) {
        return false;
    }
 
    /* if shown now */
    if ( NavToggle.firstChild.data === NavigationBarHide ) {
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
                NavChild.style.display = 'none';
            }
        }
    NavToggle.firstChild.data = NavigationBarShow;
 
    /* if hidden now */
    } else if ( NavToggle.firstChild.data === NavigationBarShow ) {
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
                NavChild.style.display = 'block';
            }
        }
        NavToggle.firstChild.data = NavigationBarHide;
    }
 
    event.preventDefault();
};
 
/* adds show/hide-button to navigation bars */
function createNavigationBarToggleButton() {
    var indexNavigationBar = 0;
    var NavFrame;
    var NavChild;
    /* iterate over all < div >-elements */
    var divs = document.getElementsByTagName( 'div' );
    for ( var i = 0; (NavFrame = divs[i]); i++ ) {
        /* if found a navigation bar */
        if ( $( NavFrame ).hasClass( 'NavFrame' ) ) {
 
            indexNavigationBar++;
            var NavToggle = document.createElement( 'a' );
            NavToggle.className = 'NavToggle';
            NavToggle.setAttribute( 'id', 'NavToggle' + indexNavigationBar );
            NavToggle.setAttribute( 'href', '#' );
            $( NavToggle ).on( 'click', $.proxy( window.toggleNavigationBar, window, indexNavigationBar ) );
 
            var isCollapsed = $( NavFrame ).hasClass( 'collapsed' );
            /**
             * Check if any children are already hidden.  This loop is here for backwards compatibility:
             * the old way of making NavFrames start out collapsed was to manually add style="display:none"
             * to all the NavPic/NavContent elements.  Since this was bad for accessibility (no way to make
             * the content visible without JavaScript support), the new recommended way is to add the class
             * "collapsed" to the NavFrame itself, just like with collapsible tables.
             */
            for ( NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling ) {
                if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
                    if ( NavChild.style.display === 'none' ) {
                        isCollapsed = true;
                    }
                }
            }
            if ( isCollapsed ) {
                for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
                    if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
                        NavChild.style.display = 'none';
                    }
                }
            }
            var NavToggleText = document.createTextNode( isCollapsed ? NavigationBarShow : NavigationBarHide );
            NavToggle.appendChild( NavToggleText );
 
            /* Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked) */
            for( var j = 0; j < NavFrame.childNodes.length; j++ ) {
                if ( $( NavFrame.childNodes[j] ).hasClass( 'NavHead' ) ) {
                    NavToggle.style.color = NavFrame.childNodes[j].style.color;
                    NavFrame.childNodes[j].appendChild( NavToggle );
                }
            }
            NavFrame.setAttribute( 'id', 'NavFrame' + indexNavigationBar );
        }
    }
}
 
mw.hook( 'wikipage.content' ).add( createNavigationBarToggleButton );
 
/**
 * Uploadwizard_newusers
 * Switches in a message for non-autoconfirmed users at [[Wikipedia:Upload]]
 *
 * Maintainers: [[User:Krimpet]]
 */
function uploadwizard_newusers() {
    if ( mw.config.get( 'wgNamespaceNumber' ) === 4 && mw.config.get( 'wgTitle' ) === 'Upload' && mw.config.get( 'wgAction' ) === 'view' ) {
        var oldDiv = document.getElementById( 'autoconfirmedusers' ),
            newDiv = document.getElementById( 'newusers' );
        if ( oldDiv && newDiv ) {
            var userGroups = mw.config.get( 'wgUserGroups' );
            if ( userGroups ) {
                for ( var i = 0; i < userGroups.length; i++ ) {
                    if ( userGroups[i] === 'autoconfirmed' ) {
                        oldDiv.style.display = 'block';
                        newDiv.style.display = 'none';
                        return;
                    }
                }
            }
            oldDiv.style.display = 'none';
            newDiv.style.display = 'block';
            return;
        }
    }
}
 
$(uploadwizard_newusers);
 
/**
 * Magic editintros ****************************************************
 *
 * Description: Adds editintros on disambiguation pages and BLP pages.
 * Maintainers: [[User:RockMFR]]
 */
function addEditIntro( name ) {
    $( '.mw-editsection, #ca-edit' ).find( 'a' ).each( function ( i, el ) {
        el.href = $( this ).attr( 'href' ) + '&editintro=' + name;
    } );
}
 
if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
    $( function () {
        if ( document.getElementById( 'disambigbox' ) ) {
            addEditIntro( 'Template:Disambig_editintro' );
        }
    } );
 
    $( function () {
        var cats = mw.config.get('wgCategories');
        if ( !cats ) {
            return;
        }
        if ( $.inArray( 'Living people', cats ) !== -1 || $.inArray( 'Possibly living people', cats ) !== -1 ) {
            addEditIntro( 'Template:BLP_editintro' );
        }
    } );
}
 

/* End of mw.loader.using callback */
} );
/* DO NOT ADD CODE BELOW THIS LINE */