MediaWiki:Common.js: Unterschied zwischen den Versionen

K
keine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
KKeine Bearbeitungszusammenfassung
Markierung: Manuelle Zurücksetzung
 
Zeile 1: Zeile 1:
/*----------------------------------------------------------------------------------------------*/
/* ACHTUNG! JavaScript hier wird für alle Benutzer für jede Seite der deutschsprachigen Wikipedia geladen. */
/*----------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------*/
/* ACHTUNG! MediaWiki:Common.js steht in der mobilen Version nicht zur
* Verfügung. Anpassungen müssen ggf. separat in MediaWiki:Mobile.js übernommen werden. */
/*----------------------------------------------------------------------------------------------*/
/**
* Sortierung von Umlauten und ß auch ohne [[Vorlage:SortKey]] ermöglichen
* For jquery.tablesorter.js
*/
mw.config.set( 'tableSorterCollation', {'Ä':'A', 'Ö':'O', 'Ü':'U', 'ä':'a', 'ö':'o', 'ü':'u', 'ß':'ss'} );
/**
* load the Edittools on [[Special:Upload]] and prefill the summary textarea
* Load pages: [[MediaWiki:Gadget-uploadtools.js]]
*/
if (mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload') {
mw.loader.load('ext.gadget.uploadtools');
}
/**
* Nachrichten aus [[MediaWiki:watchlist-summary]] auf der Beobachtungliste ausblenden
* Load page: [[MediaWiki:Common.js/watchlist.js]]
*/
if (mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist') {
mw.loader.load('//de.wikipedia.org/w/index.php?title=MediaWiki:Common.js/watchlist.js&action=raw&ctype=text/javascript');
}
/**
/**
  * Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
  * force the loading of another JavaScript file
* loaded for all users on every wiki page. If possible create a gadget that is
  * Deprecated function, function alias kept for backward compatibility
* enabled by default instead of adding it here (since gadgets are fully
  * mw.log.deprecate since 08.11.2013
  * 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.
  */
  */
mw.log.deprecate( window, 'includePage', importScript, 'includePage ist veraltet, verwende stattdessen importScript' );


/* global mw, $ */
//================================================================================
/* jshint strict:false, browser:true */
//*** Dynamic Navigation Bars


mw.loader.using( [ 'mediawiki.util' ] ).done( function () {
// set up max count of Navigation Bars on page,
/* Begin of mw.loader.using callback */
// if there are more, all will be hidden
// mw.user.options.set( 'NavigationBarShowDefault', 0 ); // all bars will be hidden
// mw.user.options.set( 'NavigationBarShowDefault', 1 ); // on pages with more than 1 bar all bars will be hidden


/**
// adds show/hide-button to navigation bars
* Map addPortletLink to mw.util
// using 'jquery.makeCollapsible': for messages
* @deprecated: Use mw.util.addPortletLink instead.
// using 'user', 'mediawiki.user', 'user.options': wait for overrides in user.js
*/
mw.loader.using( [ 'jquery.makeCollapsible', 'user', 'mediawiki.user', 'user.options' ], function() { mw.hook( 'wikipage.content' ).add( function( $content ) {
mw.log.deprecate( window, 'addPortletLink', mw.util.addPortletLink, 'Use mw.util.addPortletLink instead' );
// allow setting NavigationBarShowDefault
var showDefaultCount = mw.user.options.get( 'NavigationBarShowDefault',
typeof NavigationBarShowDefault !== 'undefined' ? NavigationBarShowDefault : 1 );
// allow user overrides for b/c
var textHide = typeof NavigationBarHide === 'string' ? NavigationBarHide : mw.msg( 'collapsible-collapse' );
var textShow = typeof NavigationBarShow === 'string' ? NavigationBarShow : mw.msg( 'collapsible-expand' );


/**
// shows and hides content and picture (if available) of navigation bars
* Test if an element has a certain class
// Parameters:
* @deprecated: Use $(element).hasClass() instead.
//     indexNavigationBar: the index of navigation bar to be toggled
*/
function toggleNavigationBar(NavToggle, NavFrame)
mw.log.deprecate( window, 'hasClass', function ( element, className ) {
{
return $( element ).hasClass( className );
if (!NavFrame || !NavToggle) {
}, 'Use jQuery.hasClass() instead' );
return false;
}


/**
// if shown now
* @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
if (NavToggle.firstChild.data === textHide) {
* @rev 6
for (
*/
var NavChild = NavFrame.firstChild;
var extraCSS = mw.util.getParamValue( 'withCSS' ),
NavChild !== null;
extraJS = mw.util.getParamValue( 'withJS' );
NavChild = NavChild.nextSibling
) {
if (NavChild.className === 'NavPic' || NavChild.className === 'NavContent') {
NavChild.style.display = 'none';
}
}
NavToggle.firstChild.data = textShow;


if ( extraCSS ) {
// if hidden now
if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) {
} else if (NavToggle.firstChild.data === textShow) {
mw.loader.load( '/w/index.php?title=' + extraCSS + '&action=raw&ctype=text/css', 'text/css' );
for (
} else {
var NavChild = NavFrame.firstChild;
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
NavChild !== null;
NavChild = NavChild.nextSibling
) {
if (NavChild.className === 'NavPic' || NavChild.className === 'NavContent') {
NavChild.style.display = 'block';
}
}
NavToggle.firstChild.data = textHide;
}
}
}
}


if ( extraJS ) {
function toggleNavigationBarFunction(NavToggle, NavFrame) {
if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
return function() {
mw.loader.load( '/w/index.php?title=' + extraJS + '&action=raw&ctype=text/javascript' );
toggleNavigationBar(NavToggle, NavFrame);
} else {
return false;
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
};
}
}
}
// iterate over all NavFrames
var NavFrames = $content.find( 'div.NavFrame' );


/**
// if more Navigation Bars found and not template namespace than Default: hide all
* WikiMiniAtlas
var initiallyToggle = showDefaultCount < NavFrames.length && mw.config.get( 'wgNamespaceNumber' ) !== 10;
*
for (var i=0; i<NavFrames.length; i++) {
* Description: WikiMiniAtlas is a popup click and drag world map.
var NavFrame = NavFrames[i];
*              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
var NavToggle = document.createElement("a");
*              The script itself is located on the Meta-Wiki because it is used by many projects.
NavToggle.className = 'NavToggle';
*              See [[Meta:WikiMiniAtlas]] for more information.
NavToggle.setAttribute('href', '#');
* Note - use of this service is recommended to be replaced with mw:Help:Extension:Kartographer
 
*/
var NavToggleText = document.createTextNode(textHide);
$( function () {
NavToggle.appendChild(NavToggleText);
var requireWikiminiatlas = $( 'a.external.text[href*="geohack"]' ).length || $( 'div.kmldata' ).length;
if ( requireWikiminiatlas ) {
mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript' );
}
} );


/**
// add NavToggle-Button as first div-element
* Collapsible tables; reimplemented with mw-collapsible
// in < div class="NavFrame" >
* Styling is also in place to avoid FOUC
NavFrame.insertBefore(NavToggle, NavFrame.firstChild);
*
* Allows tables to be collapsed, showing only the header. See [[Help:Collapsing]].
* @version 3.0.0 (2018-05-20)
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-collapsibleTables.js
* @author [[User:R. Koot]]
* @author [[User:Krinkle]]
* @author [[User:TheDJ]]
* @deprecated Since MediaWiki 1.20: Use class="mw-collapsible" instead which
* is supported in MediaWiki core. Shimmable since MediaWiki 1.32
*
* @param {jQuery} $content
*/
function makeCollapsibleMwCollapsible( $content ) {
var $tables = $content
.find( 'table.collapsible:not(.mw-collapsible)' )
.addClass( 'mw-collapsible' );


$.each( $tables, function ( index, table ) {
NavToggle.onclick = toggleNavigationBarFunction(NavToggle, NavFrame);
// mw.log.warn( 'This page is using the deprecated class collapsible. Please replace it with mw-collapsible.');
if (initiallyToggle) {
if ( $( table ).hasClass( 'collapsed' ) ) {
toggleNavigationBar(NavToggle, NavFrame);
$( table ).addClass( 'mw-collapsed' );
} else { // make sure that 'display' is always set for every NavFrame
// mw.log.warn( 'This page is using the deprecated class collapsed. Please replace it with mw-collapsed.');
for (
var NavChild = NavFrame.firstChild;
NavChild !== null;
NavChild = NavChild.nextSibling
) {
if (NavChild.className === 'NavPic' || NavChild.className === 'NavContent') {
NavChild.style.display = 'block';
}
}
}
} );
if ( $tables.length > 0 ) {
mw.loader.using( 'jquery.makeCollapsible' ).then( function () {
$tables.makeCollapsible();
} );
}
}
}
}
mw.hook( 'wikipage.content' ).add( makeCollapsibleMwCollapsible );
})});
 
//================================================================================
 
/** Skript für [[Vorlage:Galerie]] */
$( function() {
  if (document.URL.match(/printable/g)) return;
 
  function toggleImageFunction(group,  remindex, shwindex) {
    return function() {
      document.getElementById("ImageGroupsGr" + group + "Im" + remindex).style["display"] = "none";
      document.getElementById("ImageGroupsGr" + group + "Im" + shwindex).style["display"] = "block";
      return false;
    };
  }


/**
  var divs = document.getElementsByTagName("div");
* Add support to mw-collapsible for autocollapse, innercollapse and outercollapse
  var i = 0, j = 0;
*
  var units, search;
* Maintainers: TheDJ
  var currentimage;
*/
  var UnitNode;
function mwCollapsibleSetup( $collapsibleContent ) {
  for (i = 0; i < divs.length; i++) {
var $element,
    if (divs[i].className !== "ImageGroup") { continue; }
$toggle,
    UnitNode = undefined;
autoCollapseThreshold = 2;
    search = divs[i].getElementsByTagName("div");
$.each( $collapsibleContent, function ( index, element ) {
    for (j = 0; j < search.length; j++) {
$element = $( element );
      if (search[j].className !== "ImageGroupUnits") { continue; }
if ( $element.hasClass( 'collapsible' ) ) {
      UnitNode=search[j];
$element.find( 'tr:first > th:first' ).prepend( $element.find( 'tr:first > * > .mw-collapsible-toggle' ) );
      break;
}
    }
if ( $collapsibleContent.length >= autoCollapseThreshold && $element.hasClass( 'autocollapse' ) ) {
    if (UnitNode === undefined) { continue; }
$element.data( 'mw-collapsible' ).collapse();
    units = [];
} else if ( $element.hasClass( 'innercollapse' ) ) {
    for (j = 0 ; j < UnitNode.childNodes.length ; j++ ) {
if ( $element.parents( '.outercollapse' ).length > 0 ) {
      var temp = UnitNode.childNodes[j];
$element.data( 'mw-collapsible' ).collapse();
      if (temp.className === "center") { units.push(temp); }
}
    }
}
    var rightlink = undefined;
// because of colored backgrounds, style the link in the text color
    var commentText = undefined;
// to ensure accessible contrast
    for (j = 0; j < units.length; j++) {
$toggle = $element.find( '.mw-collapsible-toggle' );
      currentimage = units[j];
if ( $toggle.length ) {
      currentimage.id = "ImageGroupsGr" + i + "Im" + j;
// Make the toggle inherit text color
      var leftlink = document.createElement("a");
if ( $toggle.parent()[ 0 ].style.color ) {
      if (commentText !== undefined) {
$toggle.find( 'a' ).css( 'color', 'inherit' );
        leftlink.setAttribute("title", commentText);
}
      }
}
      var comment;
} );
      if (typeof(currentimage.getAttribute("title")) !== "string") {
}
        commentText = (j+1) + "/" + units.length;
        comment = document.createElement("tt").appendChild(document.createTextNode("("+ commentText + ")"));
      } else {
        commentText = currentimage.getAttribute("title");
        comment = document.createElement("span").appendChild(document.createTextNode(commentText));
        currentimage.removeAttribute("title");
      }
      if(rightlink !== undefined) {
        rightlink.setAttribute("title", commentText);
      }
      var imghead = document.createElement("div");
      rightlink = document.createElement("a");
      if (j !== 0) {
        leftlink.href = "#";
        leftlink.onclick = toggleImageFunction(i, j, j-1);
        leftlink.appendChild(document.createTextNode("◀"));
      }
      if (j !== units.length - 1) {
        rightlink.href = "#";
        rightlink.onclick = toggleImageFunction(i, j, j+1);
        rightlink.appendChild(document.createTextNode("▶"));
      }
      imghead.style["fontSize"] = "110%";
      imghead.style["fontweight"] = "bold";
      imghead.appendChild(leftlink);
      imghead.appendChild(document.createTextNode("\xA0"));
      imghead.appendChild(comment);
      imghead.appendChild(document.createTextNode("\xA0"));
      imghead.appendChild(rightlink);
      if (units.length > 1) {
        currentimage.insertBefore(imghead,currentimage.childNodes[0]);
      }
      if (j !== 0) {
        currentimage.style["display"] = "none";
      }
    }
  }
});


mw.hook( 'wikipage.collapsibleContent' ).add( mwCollapsibleSetup );
/**
* Fügt eine Betreffzeile auf leeren Artikel-Diskussionsseiten ein
*/
if( mw.config.get( 'wgNamespaceNumber' ) === 0 || mw.config.get( 'wgNamespaceNumber' ) === 1 ) {
$(function() {
  $( '#ca-talk.new a' ).attr( 'href', function( index, attr ) {
  return attr + '&section=new';
  });
});
}


/**
/**
* Magic editintros ****************************************************
* Fügt bei SVG-Grafiken Links zu gerenderten PNGs in verschiedenen Breiten hinzu
*
*/
* Description: Adds editintros on disambiguation pages and BLP pages.
if (mw.config.get( 'wgNamespaceNumber' ) === 6) {
* Maintainers: [[User:RockMFR]]
$( function() {
*
  var file = $( '#file' ); // might fail if MediaWiki can't render the SVG
* @param {string} name
  if( file.length && mw.config.get( 'wgIsArticle' ) && mw.config.get( 'wgTitle' ).match( /\.svg$/i ) ) {
*/
  var thumbsrc = file.find( 'img' ).attr( 'src' );
function addEditIntro( name ) {
  if( !thumbsrc ) {
$( '.mw-editsection, #ca-edit, #ca-ve-edit' ).find( 'a' ).each( function ( i, el ) {
    return;
el.href = $( this ).attr( 'href' ) + '&editintro=' + name;
  }
} );
}


if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
  var svgAltSize = function( w, title ) {
$( function () {
    var path = thumbsrc.replace( /\/\d+(px-[^\/]+$)/, "/" + w + "$1" );
if ( document.getElementById( 'disambigbox' ) ) {
    var a = $( document.createElement("a") );
addEditIntro( 'Template:Disambig_editintro' );
    a.attr( 'href', path );
}
    a.text( title );
} );
    return a;
  };


$( function () {
  var p = $( document.createElement("p") );
var cats = mw.config.get( 'wgCategories' );
  p.addClass( "SVGThumbs" );
if ( !cats ) {
  p.append( document.createTextNode( "Aus SVG automatisch erzeugte PNG-Grafiken in verschiedenen Auflösungen"+": " ) );
return;
  var l = [ 200, 500, 1000, 2000 ];
}
  for( var i = 0; i < l.length; i++ ) {
if ( $.inArray( 'Living people', cats ) !== -1 || $.inArray( 'Possibly living people', cats ) !== -1 ) {
    if( i !== 0 ) {
addEditIntro( 'Template:BLP_editintro' );
    p.append( document.createTextNode( ", " ) );
}
    }
} );
    p.append( svgAltSize( l[i], l[i] + "px" ) );
}
  }
  p.append( document.createTextNode( "." ) );
  $( file.parent() ).find( 'div.fullMedia' ).append( p );
  }
});
}


/* Actions specific to the edit page */
/**
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' ) {
* Ändere den Spenden-Link im Sidebar für Besucher aus Deutschland
/**
*/
* Fix edit summary prompt for undo
$( function() {
*
if ( typeof window.Geo === "object" && window.Geo && window.Geo.country === 'DE' ) {
*  Fixes the fact that the undo function combined with the "no edit summary prompter"
  var baseUrl = 'https://spenden.wikimedia.de/';
*  complains about missing editsummary, if leaving the edit summary unchanged.
  var queryString = $.param({
*  Added by [[User:Deskana]], code by [[User:Tra]].
      'piwik_campaign': 'de.wikipedia.org',
*  See also [[phab:T10912]].
      'piwik_kwd': 'sidebar'
*/
  });
$( function () {
  $("#n-sitesupport a").attr("href", baseUrl + '?' + queryString);
if ( document.location.search.indexOf( 'undo=' ) !== -1 && document.getElementsByName( 'wpAutoSummary' )[ 0 ] ) {
}
document.getElementsByName( 'wpAutoSummary' )[ 0 ].value = '1';
});
}
} );
}


/* End of mw.loader.using callback */
/**
} );
* erzeuge einen "Neuen Abschnitt"-Link an der letzten Überschrift
/* DO NOT ADD CODE BELOW THIS LINE */
*/
mw.loader.using( [ 'mediawiki.util' ], function() { $( function() {
var newSectionLink = $( '#ca-addsection a' );
if( newSectionLink.length ) {
  var link = newSectionLink.clone(); //create a copy
  //avoid duplicate accesskey
  link.removeAttr( 'accesskey' ).updateTooltipAccessKeys();
  //add it within the brackets
  var lastEditsectionLink = $( 'span.mw-editsection:last a:last' );
  lastEditsectionLink.after( link );
  lastEditsectionLink.after( ' | ' ); //see [[MediaWiki:Pipe-separator]]
}
})});