Jump to content

User:Jackmcbarn/common.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jackmcbarn (talk | contribs) at 21:47, 18 June 2015 (add nowiki tags). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// <nowiki>

// If you want this next script, you probably want to remove -unstable from it
importScript('User:Jackmcbarn/editProtectedHelper-unstable.js'); // Linkback: [[User:Jackmcbarn/editProtectedHelper.js]]

if(/^User:.*\/(CSD|PROD)_log$/.test(mw.config.get('wgPageName'))) {
	$('#mw-content-text').prepend($('<button>Show/hide redlinked pages</button>').click(function(){
		$('ol>li>a.new:first-child').parent().toggle();
	}));
}

importScript('User:Ale_jrb/Scripts/csdhelper.js');  //[[User:Ale_jrb/Scripts]]

importScript('User:Dr pda/prosesize.js');
importScript('User:Mr.Z-man/closeAFD.js');
window.LinkClassifierOnDemand = true; // not really, but we want to make our own onLoad hook
$(importScript('User:Anomie/linkclassifier.js')) // Linkback: [[User:Anomie/linkclassifier.js]]
	.load(function() {
		$(document).ready(function() {
			window.LinkClassifierOnDemand = false;
			LinkClassifier.cats['soft-redirect'] = ['Category:Wikipedia soft redirects', 'Category:Protected soft redirects', 'Category:Redirects to Wiktionary'].sort();
			LinkClassifier.onLoad();
		});
	});
importStylesheet('User:Jackmcbarn/linkclassifier.css');
importScript('User:Timotheus Canens/spihelper.js');
importScript('User:Mr. Stradivarius/gadgets/SpamUserPage.js'); // Linkback: [[User:Mr. Stradivarius/gadgets/SpamUserPage.js]]
SpamUserPage = {
	presets: [
		{
			id: 'softerblock',
			label: 'Promotional username, soft block',
			deletesummary: '[[WP:CSD#G11|G11]]: Unambiguous [[WP:NOTADVERTISING|advertising]] or promotion',
			blocksummary: '{{uw-softerblock}}',
			editsummary: 'You have been indefinitely blocked from editing because your [[WP:U|username]] ' +
				'gives the impression that the account represents a group, organization or website.',
			template: '{{subst:softerblock|sig=yes}}',
			nocreate: false,
			autoblock: false
		},
		{
			id: 'causeblock',
			label: 'Username of a non-profit, soft block',
			deletesummary: '[[WP:CSD#G11|G11]]: Unambiguous [[WP:NOTADVERTISING|advertising]] or promotion',
			blocksummary: '{{uw-causeblock}}',
			editsummary: 'You have been indefinitely blocked from editing because your [[WP:U|username]] ' +
				'gives the impression that the account represents a group, organization or website.',
			template: '{{subst:causeblock|sig=yes}}',
			nocreate: false,
			autoblock: false
		}
	],
	watchlist: 'nochange'
};

// </nowiki>