User:Rcsprinter123/mockups.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:Rcsprinter123/mockups. |
// ---------------------------------------------------- //
// For installation/usage information see
//
// [[User:Symplectic Map/AutoSpell]]
// ---------------------------------------------------- //
importScript('User:Symplectic_Map/misspellings.js');
importScript('User:Symplectic_Map/capitalizations.js');
importScript('User:Symplectic_Map/script.js');
function SM_edit() {
var txt = document.forms.editform.wpTextbox1;
// txt.value = SM_cita(txt.value);
txt.value = common_misspellings(txt.value);
txt.value = common_capitalizations(txt.value);
SM_summary();
// Check 'This is a minor edit'
document.forms.editform.wpMinoredit.checked = true;
// Click 'Show changes'
document.forms.editform.wpDiff.click();
}
//Tags summary textbox
function SM_summary() {
var txt = document.forms.editform.wpSummary;
var tag = "[[User:Symplectic_Map/AutoSpell|Script-assisted]] correction of [[WP:LCM|misspellings]]";
// Is the tag blank?
if( tag.match(/[^\s]/) ) {
// Has it already been tagged?
if( txt.value.indexOf(tag) == -1 ) {
// Append a pipe if necessary
if( txt.value.match(/[^\*\/\s][^\/\s]?\s*$/) ) {
txt.value += " | ";
}
// Append our tag
txt.value += tag;
}
}
}
//Allows URI to be properly decoded for AutoEd in View Mode
function SM_QueryString(p) {
var re = RegExp('[&?]' + p + '=([^&]*)');
var matches;
if (matches = re.exec(document.location)) {
try {
return decodeURI(matches[1]);
} catch (e) {
}
}
return null;
}
$(function () {
if( SM_QueryString('SMedit') ) {
SM_edit();
}
if (document.forms.editform) {
mw.util.addPortletLink('p-cactions', 'javascript:SM_edit()',
'Spell', 'ca-spell', 'Run spellcheck on the edit window',
'S', document.getElementById('ca-move'));
} else if ( (wgAction == "view") && wgIsArticle) {
var url = mw.config.get('wgServer') + mw.config.get('wgScript') + '?title=' + encodeURIComponent(mw.config.get('wgPageName')) + '&action=edit';
mw.util.addPortletLink('p-cactions', url + '&SMedit=true',
'Quiz', 'ca-spell', 'Run spellcheck in edit mode',
'S', document.getElementById('ca-move'));
}
});