User:McIntireEvan/afch-rewrite.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. |
Documentation for this user script can be added at User:McIntireEvan/afch-rewrite. This user script seems to have an accompanying .css page at User:McIntireEvan/afch-rewrite.css. |
/* Uploaded from https://github.com/WPAFC/afch-rewrite, commit: 5059ac05b812b07ffbf8e8b8112d049813cad9bd (master) */
//<nowiki>
( function ( $, mw ) {
var subscriptToLoad = false,
pageName = mw.config.get( 'wgPageName' ).replace( /_/g, ' ' ),
// `loadMap` determines which scripts should be loaded
// on each page. Each key is a subscript name and
// its value is a list of page prefixes on which it
// should be loaded.
loadMap = {
// `submissions.js` is for reviewing textual
// Articles for Creation submissions.
submissions: [
'Wikipedia:Articles for creation/',
'Wikipedia talk:Articles for creation/',
'User:',
'Draft:'
]
};
$.each( loadMap, function ( script, prefixes ) {
$.each( prefixes, function ( _, prefix ) {
if ( pageName.indexOf( prefix ) === 0 ) {
subscriptToLoad = script;
return false;
}
} );
// Return false and break out of the loop if already found
return !!subscriptToLoad;
} );
if ( subscriptToLoad ) {
// Initialize the AFCH object
window.AFCH = {};
// Set up constants
AFCH.consts = {};
// Master version data
AFCH.consts.version = '0.9';
AFCH.consts.versionName = 'Hatted Hamster';
// FIXME: Change when moving into production
AFCH.consts.beta = true;
AFCH.consts.scriptpath = mw.config.get( 'wgServer' ) + mw.config.get( 'wgScript' );
AFCH.consts.baseurl = AFCH.consts.scriptpath +
'?action=raw&ctype=text/javascript&title=User:McIntireEvan/afch-rewrite.js';
$.getScript( AFCH.consts.baseurl + '/core.js' ).done( function () {
var loaded = AFCH.load( subscriptToLoad );
if ( !loaded ) {
mw.notify( 'AFCH could not be loaded: ' + ( AFCH.error || 'unknown error' ),
{ title: 'AFCH error' } );
}
} );
}
}( jQuery, mediaWiki ) );
//</nowiki>