User:Legoktm/i8.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:Legoktm/i8. |
//Quick way to add <nowiki>{{db-i8}}</nowiki> onto an image page
//Please do not use without reading [[WP:CSD#I8]] and [[WP:MITTC]]
if(wgNamespaceNumber == 6) {
if(wgAction == 'edit' || wgAction == 'submit') {
addOnloadHook(function () { mw.util.addPortletLink('p-cactions','javascript:doi8()','i8','ca-i8'); });
} else {
var url = mw.config.get('wgServer') + mw.config.get('wgScript') + '?title=' + encodeURIComponent(mw.config.get('wgPageName')) + '&action=edit&autoi8=true';
addOnloadHook(function () { mw.util.addPortletLink('p-cactions',url,'i8','ca-i8'); });
}
}
if(queryString('autoi8')) addOnloadHook(function() { doi8(); })
function doi8() {
var txt = document.getElementById('wpTextbox1');
if(!txt) return;
txt.value = '{' + '{' + 'db-i8}}\n\n' + txt.value;
document.getElementById('wpSummary').value += 'tagging for [[WP:SD|speedy deletion]] per [[WP:CSD#I8|CSD I8]]';
document.getElementById('wpSave').click();
}
function queryString(p) {
var re = RegExp('[&?]' + p + '=([^&]*)');
var matches;
if (matches = re.exec(document.location)) {
try {
return decodeURI(matches[1]);
} catch (e) {
}
}
return null;
}