User:Keegan/common.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .css page for this skin can be added at User:Keegan/common.css. |
importScript('User:Timotheus Canens/spihelper.js');
importScript('User:Keegan/MarkBlocked.js');
importScript('User:Timotheus Canens/SPIW.js');
importScript('User:Ale_jrb/Scripts/csdhelper.js');
importScript('User:GregU/dashes.js');
//<nowiki> Admin tools
mw.loader.load('//wiki.riteme.site/w/index.php?title=User:Voice_of_All/admin/monobook.js&action=raw&ctype=text/javascript');
//</nowiki>[[Category:Wikipedia administrators who use VoA script|{{PAGENAME}}]]
// This code does an asynchronous check to see if there are any pages or files in
// "Category:Candidates for speedy deletion as attack pages" and if there are will
// place a big red button in the navigation window to take me there. It is my hopes
// that this can reduce the time that attack pages are present.
addOnloadHook(function () {
mw.loader.using( 'mediawiki.api', function () {
( new mw.Api() ).get( {
action: 'query',
prop: 'categoryinfo',
titles: 'Category:Candidates for speedy deletion as attack pages'
} ).done( function ( data ) {
var attackExists = data.query.pages[38838529].categoryinfo.files ||
data.query.pages[38838529].categoryinfo.pages;
if( attackExists ) {
mw.util.addPortletLink(
'p-navigation',
mw.config.get('wgServer')+mw.config.get('wgScriptPath')+
'/index.php?title=Category:Candidates for speedy deletion as attack pages',
'Attack page!',
'attackNotification'
);
attackNotification.children[0].style = 'background-color:red;color:white;font-weight:bold;';
}
} );
} );
});
importScript('User:Shubinator/DYKcheck.js');
importScript('User:Dr_pda/prosesize.js');