User:Mainframe98/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 is at User:Mainframe98/common.css. |
mw.loader.load( '//en.wikipedia.org/w/index.php?title=User:Lenore/autolink.js&action=raw&ctype=text/javascript' );
// Mark all pages on Special:Shortpages that are candidates for (speedy) (un)deletion, stubs, set indices or redirects to wiktionary.
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Shortpages' ) {
mw.loader.using( [ 'mediawiki.api' ] ).then( function() {
var api = new mw.Api();
function markLogicalShortPages( continueParams ) {
var requestParameters = {
action: 'query',
format: 'json',
prop: 'categories',
generator: 'querypage',
formatversion: 'latest',
clcategories: [
'Category:Candidates for speedy deletion',
'Category:Candidates for undeletion',
'Category:All set index articles',
'Category:All stub articles',
'Category:All articles proposed for deletion',
'Category:Redirects to Wiktionary',
'Category:Redirects to Wikispecies',
'Category:Redirects to Wikimedia Commons',
'Category:Wikipedia soft redirects'
],
gqppage: 'Shortpages',
gqplimit: 50,
maxlag: 5
};
for ( var continueParameter in continueParams ) {
requestParameters[continueParameter] = continueParams[continueParameter];
}
api.get( requestParameters ).done( function ( data ) {
if ( data.error ) {
console.log( 'Special:Shortpages query failed.', data.error );
return;
} else if ( data.batchcomplete !== true && data.continue ) {
markLogicalShortPages( data.continue );
}
for ( var i = 0; i < data.query.pages.length; i++ ) {
var page = data.query.pages[i];
if ( !page.categories ) {
continue;
}
var url = mw.Title.makeTitle( page.ns, page.title ).getUrl();
$( 'a[href$="' + url + '"]' ).css( {
'text-decoration': 'line-through'
} );
}
} );
}
markLogicalShortPages( {} );
} );
}