MediaWiki:Gadget-ProveIt.js
Jump to navigation
Jump to search
Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: hold down the Ctrl key and click the Refresh or Reload button. Firefox: hold down the Shift key while clicking Reload (or press Ctrl-Shift-R). Google Chrome and Safari users can just click the Reload button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/**
* ProveIt is a powerful reference manager for Wikipedia
* Documentation at https://commons.wikimedia.org/wiki/Help:Gadget-ProveIt
*
* The gadget code is loaded directly from Wikimedia Commons,
* but here are a few conditionals to minimize requests
* and some configuration options specific to this wiki
*/
// Only load on appropriate namespaces
var namespace = mw.config.get( 'wgNamespaceNumber' );
if ( namespace === 0 || namespace === 2 || namespace === 118 ) {
// Only load when editing
var action = mw.config.get( 'wgAction' );
if ( action === 'edit' || action === 'submit' ) {
// Only with the basic wikitext editor and the classic wikieditor, not the new one
var textbox = document.getElementById( 'wpTextbox1' );
if ( textbox ) {
// 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 (all options are optional)
mw.config.set({
'proveit-tag': 'ProveIt edit', // Revision tag created at Special:Tags
'proveit-summary': 'Reference edited with [[Wikipedia:ProveIt|ProveIt]]', // Edit summary automatically added by ProveIt
'proveit-templates': [ // These templates should have their TemplateData defined
'Template:Citation',
'Template:Cite AV media',
'Template:Cite book',
'Template:Cite encyclopedia',
'Template:Cite episode',
'Template:Cite journal',
'Template:Cite magazine',
'Template:Cite news',
'Template:Cite paper',
'Template:Cite press release',
'Template:Cite sign',
'Template:Cite thesis',
'Template:Cite tweet',
'Template:Cite video',
'Template:Cite web'
]
});
// Load the latest code directly from Commons
mw.loader.load( '//commons.wikimedia.org/w/load.php?modules=ext.gadget.ProveIt&only=scripts' );
mw.loader.load( '//commons.wikimedia.org/w/load.php?modules=ext.gadget.ProveIt&only=styles', 'text/css' );
}
}
}
}