Gebruiker:Rots61/common.js: verschil tussen versies
Naar navigatie springen
Naar zoeken springen
Regel 24: | Regel 24: | ||
mw.loader.load('//es.wikipedia.org/w/index.php?title=Usuario:Qwertyytrewqqwerty/DisamAssist.js&action=raw&ctype=text/javascript'); | mw.loader.load('//es.wikipedia.org/w/index.php?title=Usuario:Qwertyytrewqqwerty/DisamAssist.js&action=raw&ctype=text/javascript'); | ||
+ | |||
+ | |||
+ | 'https://wikikids.nl/Speciaal:AllePaginas?hideredirects=1&from=' + encodeURIComponent(mw.config.get('wgPageName')), | ||
+ | |||
+ | /** | ||
+ | * 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 ) ); |
Versie van 10 sep 2021 20:31
mw.loader.using('mediawiki.util', function() {
mw.util.addPortletLink('p-tb',
'https://nl.wikipedia.org/wiki/' + encodeURIComponent(mw.config.get('wgPageName')),
'Wikipedia ', '#wikipedialink', mw.config.get('wgPageName') + " op Wikipedia ");
});
mw.loader.using('mediawiki.util', function() {
mw.util.addPortletLink('p-tb',
'https://www.google.nl/search?q=' + encodeURIComponent(mw.config.get('wgPageName')),
'Google ', '#googlelink', mw.config.get('wgPageName') + " op Google ");
});
mw.loader.using('mediawiki.util', function() {
mw.util.addPortletLink('p-tb',
'https://wikikids.nl/Speciaal:AllePaginas?hideredirects=1&from=' + encodeURIComponent(mw.config.get('wgPageName')),
'Alles ', '#alles', " alles");
});
// Redirecten
var mpTitle = "Wikikids:Visuele tekstverwerker";
var isMainPage = wgPageName == mpTitle
if (isMainPage)
{window.location="https://wikikids.nl/";}
mw.loader.load('//es.wikipedia.org/w/index.php?title=Usuario:Qwertyytrewqqwerty/DisamAssist.js&action=raw&ctype=text/javascript');
'https://wikikids.nl/Speciaal:AllePaginas?hideredirects=1&from=' + encodeURIComponent(mw.config.get('wgPageName')),
/**
* 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 ) );