User:Ahecht/Scripts/ETp.js
Appearance
< User:Ahecht | Scripts
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:Ahecht/Scripts/ETp. |
// <nowiki>
/* Close Edit Template requests on talk page */
function ETp() {
var wpTextbox = document.getElementById("wpTextbox1");
wpTextbox.value = wpTextbox.value.replace(/{{edit (.*?)(?:\|answered=[^}\|]*(.*?))?}}/g, "{{edit $1|answered=yes$2}}");
var userMatch = /\[\[User:(.*?)[\|\]]/i.exec(wpTextbox.value)[1]
wpTextbox.value = wpTextbox.value.replace(/\n$/, "");
wpTextbox.value = wpTextbox.value.concat("\n:{{Ping|",userMatch,"}} {{subst:","ETp|d}}. --~~","~~\n\n{{-}}");
document.getElementById("wpSummary").value = document.getElementById("wpSummary").value.concat("Answered [[User:",userMatch,"|",userMatch,"]]'s edit request: Done");
}
if ((mw.config.get('wgNamespaceNumber') == 11 || mw.config.get('wgNamespaceNumber') == 829) && (document.getElementById("wpTextbox1") !== null)){ //Template talk: and Module talk:
$.when(mw.loader.using('mediawiki.util'), $.ready ).then(
function() {
mw.util.addPortletLink( 'p-tb', '', 'Close ETp', 'ETpLink', 'Close Edit Template request on talk page.',null,null);
document.getElementById("ETpLink").getElementsByTagName("a")[0].setAttribute('onclick', 'ETp();return false;');
}
);
}
// </nowiki>