User:Technical 13/SandBox/EmailHelper.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. |
This user script seems to have a documentation page at User:Technical 13/SandBox/EmailHelper. |
//<nowiki>
if(mw.config.get("wgCanonicalSpecialPageName") === "Emailuser"){
/* parse email */
function parseEmail(){
var wikiTimestamp = new Date();
wikiTimestamp = wikiTimestamp.toLocaleTimeString('en') + ", " + wikiTimestamp.toLocaleDateString('en';
$('#mw-input-wpText').val($('#mw-input-wpText').val()
.replace(/\[\[(.*?)(\|.*?)?\]\]/gi, "\(- http://en.wikipedia.org/wiki/$1 -\)")
);
/* signatures */// Parse signatures and timestamps
$('#mw-input-wpText').val($('#mw-input-wpText').val()
.replace(/~{5}/gi, wikiTimestamp)
.replace(/~{4}/gi, mw.user.options.get('nickname') + " " + wikiTimestamp))
.replace(/~{3}/gi, mw.user.options.get('nickname'))
);
}
/* send email */
function sendEmail(){
/* YGM */// Post the {{YGM}} template on the recipient's talk page if selected
if($('#YGM').prop('checked')) {
//Post the message
}
/* submit */
// $('form.visualClear').submit();
}
/* highjack the send */// This will prevent default behavior and allow for preparsing and send of {{YGM}}
$('input.mw-htmlform-submit').attr({id:'wpSave',title:'Send email [Alt]+[Shift]+[S]',accessley:'s',onClick:'sendEmail()',type:'button'});
/* add preview */// This will convert the wikitext to text in the textarea
$('span.mw-htmlform-submit-buttons').append('<input class="mw-htmlform-parse" value="Preview" onClick="parseEmail()" type="button"></input>');
/* add reset */// Adds a reset button to clear the text area
$('span.mw-htmlform-submit-buttons').append('<input class="mw-htmlform-reset" type="reset" value="Reset"></input>');
/* ygm label and checkbox */// Add a check box to post the {{YGM}} template on the recipient's talk page
$("label[for='mw-input-wpCCMe']").after('<input type="checkbox" checked="checked" value="1" id="YGM" /> <label for="YGM">Leave {{<a href="//en.wikipedia.org/wiki/Template:You%27ve_got_mail">You\'ve got mail</a>}} on talkpage.</label>');
}
//</nowiki>