MediaWiki:Gadget-refToolbar.js: Różnice pomiędzy wersjami

Z Almanach
(Utworzono nową stronę "/** * RefToolbar * * Adds tools for citing references to the edit toolbar. * See Wikipedia:RefToolbar for further documentation. One of * three possible version...")
 
mNie podano opisu zmian
 
(Nie pokazano 13 pośrednich wersji utworzonych przez tego samego użytkownika)
Linia 3: Linia 3:
  *
  *
  * Adds tools for citing references to the edit toolbar.
  * Adds tools for citing references to the edit toolbar.
  * See [[Wikipedia:RefToolbar]] for further documentation. One of
  * See [[Wikipedia:RefToolbar]] for further documentation. One of two
  * three possible versions will load (Reftoolbar 2.0b, Reftoolbar 2.0a,
  * possible versions will load (Reftoolbar 1.0 or Reftoolbar 2.0)
  * or Reftoolbar 1.0) depending on the user preferences (the
  * depending on the user preferences (the usebetatoolbar preference).
* usebetatoolbar and usebetatoolbar-cgd parameters).
  *
  *
  * @see: [[Wikipedia:RefToolbar]]
  * @see: [[Wikipedia:RefToolbar]]
Linia 14: Linia 13:
  * @see: [[MediaWiki:RefToolbarMessages-en.js]]
  * @see: [[MediaWiki:RefToolbarMessages-en.js]]
  * @see: [[MediaWiki:RefToolbarMessages-de.js]]
  * @see: [[MediaWiki:RefToolbarMessages-de.js]]
* @see: [[MediaWiki:RefToolbarNoDialogs.js]]
  * @see: [[MediaWiki:Gadget-refToolbarBase.js]]
  * @see: [[MediaWiki:Gadget-refToolbarBase.js]]
  * @author: [[User:Mr.Z-man]]
  * @author: [[User:Mr.Z-man]]
Linia 20: Linia 18:
  */
  */
/*jshint browser: true, camelcase: true, curly: true, eqeqeq: true */
/*jshint browser: true, camelcase: true, curly: true, eqeqeq: true */
/*global jQuery, mediaWiki, importScript */
/*global $, mw, importScript */
( function ( mw, $ ) {
( function () {
'use strict';
'use strict';
function initializeRefTools() {
function initializeRefTools() {
if ( window.refToolbarInstalled || $( '#wpTextbox1[readonly]' ).length ){
 
return;
//       mw.loader.load( '/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' );
}
 
if ( mw.user.options.get( 'usebetatoolbar' ) ) {
$.getScript( '/index.php?title=MediaWiki:Gadget-refToolbarBase.js&action=raw&ctype=text/javascript', function() {
// Enhanced editing toolbar is on. Going to load RefToolbar 2.0a or 2.0b.
mw.loader.using( [ /* 'ext.gadget.refToolbarBase', */ 'ext.wikiEditor' ], function () {
if ( mw.user.options.get( 'usebetatoolbar-cgd' ) ) {
mw.loader.load( '/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' );
// Dialogs are on. Loading 2.0b. (standard)
} );
// TODO:
// * Explicitly declare global variables from [[MediaWiki:RefToolbar.js]] using window.*
// * Move [[MediaWiki:RefToolbar.js]] to [[MediaWiki:Gadget-refToolbarDialogs.js]]
// * Create the module 'ext.gadget.refToolbarDialogs' depending on 'ext.gadget.refToolbarBase' and 'ext.wikiEditor.toolbar'
// * Replace the code below by mw.loader.load( 'ext.gadget.refToolbarDialogs' );
mw.loader.using( [ 'ext.gadget.refToolbarBase', 'ext.wikiEditor.toolbar' ], function () {
importScript( 'MediaWiki:RefToolbar.js' );
} );
} );
} else {
 
// Dialogs are off. Loading 2.0a.
  window.refToolbarInstalled = true;
mw.loader.using( 'ext.wikiEditor.toolbar', function () {
importScript( 'MediaWiki:RefToolbarNoDialogs.js' );
} );
}
} else if ( mw.user.options.get( 'showtoolbar' ) ) {
// Enhanced editing toolbar is off. Loading RefToolbar 1.0. (legacy)
importScript( 'MediaWiki:RefToolbarLegacy.js' );
} else {
return;
}
window.refToolbarInstalled = true;
}
}


if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
if ( /^(edit|submit)$/.test( mw.config.get( 'wgAction' ) ) ) {
$( initializeRefTools );
// Double check if user.options is loaded, to prevent errors when copy pasted accross installations
$.when( mw.loader.using( ['user.options'] ), $.ready ).then( initializeRefTools );
}
}


}( mediaWiki, jQuery ) );
}() );

Aktualna wersja na dzień 15:02, 1 mar 2021

/**
 * RefToolbar
 *
 * Adds tools for citing references to the edit toolbar.
 * See [[Wikipedia:RefToolbar]] for further documentation. One of two
 * possible versions will load (Reftoolbar 1.0 or Reftoolbar 2.0)
 * depending on the user preferences (the usebetatoolbar preference).
 *
 * @see: [[Wikipedia:RefToolbar]]
 * @see: [[MediaWiki:RefToolbar.js]]
 * @see: [[MediaWiki:RefToolbarConfig.js]]
 * @see: [[MediaWiki:RefToolbarLegacy.js]]
 * @see: [[MediaWiki:RefToolbarMessages-en.js]]
 * @see: [[MediaWiki:RefToolbarMessages-de.js]]
 * @see: [[MediaWiki:Gadget-refToolbarBase.js]]
 * @author: [[User:Mr.Z-man]]
 * @author: [[User:Kaldari]]
 */
/*jshint browser: true, camelcase: true, curly: true, eqeqeq: true */
/*global $, mw, importScript */
( function () {
'use strict';
function initializeRefTools() {

//        mw.loader.load( '/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' );

			$.getScript( '/index.php?title=MediaWiki:Gadget-refToolbarBase.js&action=raw&ctype=text/javascript', function() {
				mw.loader.using( [ /* 'ext.gadget.refToolbarBase', */ 'ext.wikiEditor' ], function () {
					mw.loader.load( '/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' );
				} );
			} );

   	window.refToolbarInstalled = true;
}

if ( /^(edit|submit)$/.test( mw.config.get( 'wgAction' ) ) ) {
	// Double check if user.options is loaded, to prevent errors when copy pasted accross installations
	$.when( mw.loader.using( ['user.options'] ), $.ready ).then( initializeRefTools );
}

}() );