Järjestelmäviesti:Gadget-ProveIt-mod.js

Wikipediasta
Siirry navigaatioon Siirry hakuun

Huomautus: Selaimen välimuisti pitää tyhjentää asetusten tallentamisen jälkeen, jotta muutokset tulisivat voimaan.

  • Firefox ja Safari: Napsauta Shift-näppäin pohjassa Päivitä, tai paina Ctrl-F5 tai Ctrl-R (⌘-R Macilla)
  • Google Chrome: Paina Ctrl-Shift-R (⌘-Shift-R Macilla)
  • Internet Explorer ja Edge: Napsauta Ctrl-näppäin pohjassa Päivitä tai paina Ctrl-F5
  • Opera: Paina Ctrl-F5.
/**
 * ProveIt is a powerful GUI tool to find, edit, add and cite references in any MediaWiki wiki
 * Full documentation at https://commons.wikimedia.org/wiki/Help:Gadget-ProveIt
 *
 * The gadget itself is loaded directly from Commons, but here are a few conditions to minimize requests
 * and a few configuration options specific to this wiki
 */

// Only load on appropriate namespaces
var namespace = mw.config.get( 'wgNamespaceNumber' );
if ( namespace === 0 || namespace === 2 ) {

	// Only load when editing 
	var action = mw.config.get( 'wgAction' );
	if ( action === 'edit' || action === 'submit' ) {

		// Only load when editing wikitext (and not in common.js or common.css, for example)
		var contentModel = mw.config.get( 'wgPageContentModel' );
		if ( contentModel === 'wikitext' ) {

			// Configure the gadget for this particular wiki (all options are optional)
			mw.config.set({
				'proveit-tag': 'ProveIt', // Revision tag created at Special:Tags
				'proveit-summary': 'Lisätty viite ProveIt-työkalulla', // Edit summary automatically added by ProveIt
				'proveit-templates': [ // These templates should have their TemplateData defined
					'Template:Verkkoviite',
					'Template:Kirjaviite',
					'Template:Lehtiviite'
				]
			});
	
			// Load the dependencies
			mw.loader.using([
				'mediawiki.cookie',
				'jquery.textSelection',
				'jquery.ui'
			]).then( function () {

				// Load the latest code directly from Commons
				mw.loader.load( '//fi.wikipedia.org/w/index.php?title=MediaWiki:Gadget-ProveItCore.js&action=raw&ctype=text/javascript' );
				mw.loader.load( '//fi.wikipedia.org/w/index.php?title=MediaWiki:Gadget-ProveIt.css&action=raw&ctype=text/css', 'text/css' );
			});
		}
	}
}