Gebruiker:Jos1950/common.js: verschil tussen versies

Uit LinuxMintNL WiKi
Ga naar: navigatie, zoeken
(Aanvullingen)
(SandBox)
 
(7 tussenliggende versies door dezelfde gebruiker niet weergegeven)
Regel 1: Regel 1:
// [[File:Krinkle_RTRC.js]]
+
// install [[Wikipedia:User:Cacycle/wikEd]] in-browser text editor
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Krinkle/RTRC.js&action=raw&ctype=text/javascript');
+
importScriptURI('//en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
 +
+ '&action=raw&ctype=text/javascript');
  
// [[File:Krinkle_WhatLeavesHere.js]]
+
/**
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Krinkle/Tools/WhatLeavesHere.js&action=raw&ctype=text/javascript');
+
* Add a "My sandbox" link to the personal portlet menu.
 +
*
 +
* Required modules: mediawiki.util, mediawiki.Title, mediawiki.Uri
 +
*
 +
* @source https://www.mediawiki.org/wiki/Snippets/MySandbox
 +
* @version 2014-07-16
 +
*/
 +
( function ( mw, $ ) {
 +
$( function () {
 +
var conf, title, url;
 +
 
 +
// Customize/Translate this to your needs
 +
conf = {
 +
subpageName: 'sandbox',
 +
portletLabel: 'Sandbox',
 +
portletTooltip: 'Go to your sandbox',
 +
editintroPagename: 'Template:User_sandbox',
 +
preloadPagename: 'Template:User_sandbox/preload'
 +
};
 +
// Don't alter the code below
 +
 
 +
// Use Special:MyPage (as opposed to mw.user.getName()) so that it
 +
// works for logged-out users as well.
 +
title = new mw.Title( 'Special:MyPage/' + conf.subpageName );
 +
 
 +
url = new mw.Uri( title.getUrl() );
 +
url.extend( {
 +
action: 'edit',
 +
redlink: 1,
 +
editintro: new mw.Title( conf.editintroPagename ),
 +
preload: new mw.Title( conf.preloadPagename )
 +
} );
 +
 
 +
mw.util.addPortletLink(
 +
'p-personal',
 +
url,
 +
conf.portletLabel,
 +
'pt-sandbox',
 +
conf.portletTooltip,
 +
null,
 +
'#pt-preferences'
 +
);
 +
} );
 +
}( mediaWiki, jQuery ) );

Huidige versie van 11 feb 2017 om 14:55

// install [[Wikipedia:User:Cacycle/wikEd]] in-browser text editor
importScriptURI('//en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
+ '&action=raw&ctype=text/javascript');

/**
 * Add a "My sandbox" link to the personal portlet menu.
 *
 * Required modules: mediawiki.util, mediawiki.Title, mediawiki.Uri
 *
 * @source https://www.mediawiki.org/wiki/Snippets/MySandbox
 * @version 2014-07-16
 */
( function ( mw, $ ) {
	$( function () {
		var conf, title, url;

		// Customize/Translate this to your needs
		conf = {
			subpageName: 'sandbox',
			portletLabel: 'Sandbox',
			portletTooltip: 'Go to your sandbox',
			editintroPagename: 'Template:User_sandbox',
			preloadPagename: 'Template:User_sandbox/preload'
		};
		// Don't alter the code below

		// Use Special:MyPage (as opposed to mw.user.getName()) so that it
		// works for logged-out users as well.
		title = new mw.Title( 'Special:MyPage/' + conf.subpageName );

		url = new mw.Uri( title.getUrl() );
		url.extend( {
			action: 'edit',
			redlink: 1,
			editintro: new mw.Title( conf.editintroPagename ),
			preload: new mw.Title( conf.preloadPagename )
		} );

		mw.util.addPortletLink(
			'p-personal',
			url,
			conf.portletLabel,
			'pt-sandbox',
			conf.portletTooltip,
			null,
			'#pt-preferences'
		);
	} );
}( mediaWiki, jQuery ) );