< Misplaced Pages:AutoEd
Browse history interactively ← Previous edit Content deleted Content addedInline
Revision as of 21:37, 25 March 2021 view source Jon (WMF) (talk | contribs )Extended confirmed users 1,203 edits TypeError: Cannot set property 'checked' of undefinedTags : Mobile edit Mobile web edit Advanced mobile edit← Previous edit
Latest revision as of 16:55, 28 December 2024 view source Pppery (talk | contribs )Interface administrators , Administrators 101,280 edits Per request
(4 intermediate revisions by the same user not shown)
Line 1:
Line 1:
//<syntaxhighlight lang=javascript>
//This script does not function without additional "helper" modules!
//This script does not function without additional "helper" modules!
//Please see ] for details on use.
//Please see ] for details on use.
Line 97:
Line 96:
// Add the "auto ed" tab
// Add the "auto ed" tab
if( document.getElementById('ca-edit') ) {
if( document.getElementById( 'ca-edit' ) && !document.getElementById( 'ca-AutoEd' ) ) {
var url = mw.util.getUrl(mw.config.get('wgPageName'), { action: 'edit', AutoEd: 'true' });
var url = mw.util.getUrl(mw.config.get('wgPageName'), { action: 'edit', AutoEd: 'true' });
$link = $(mw.util.addPortletLink(
$link = $(mw.util.addPortletLink(
Line 117:
Line 116:
});
});
//</syntaxhighlight>
Latest revision as of 16:55, 28 December 2024
//This script does not function without additional "helper" modules!
//Please see ] for details on use.
//Initiates AutoEd
function autoEdExecute() {
if(!document.getElementById('wpTextbox1')) return;
// copy wikEd (]) frame to wpTextbox1 textarea
// for compatibility with WikiEd
if (typeof wikEdUseWikEd !== 'undefined') {
if (wikEdUseWikEd === true) {
WikEdUpdateTextarea();
}
}
//alert/return if autoEdFunctions is not defined
if( typeof autoEdFunctions === 'undefined' ) {
alert('AutoEd/core.js: autoEdFunctions is undefined');
return;
}
autoEdFunctions();
autoEdEditSummary();
// copy wpTextbox1 textarea back to wikEd frame
// for compatibility with WikiEd
if (typeof wikEdUseWikEd !== 'undefined') {
if (wikEdUseWikEd === true) {
WikEdUpdateFrame();
}
}
}
//Adds Tag to edit summary textbox
function autoEdEditSummary() {
var txt = document.forms.editform.wpSummary;
var tag;
if( typeof autoEdTag === 'undefined' ) {
tag = 'Cleaned up using ]';
} else {
tag = autoEdTag;
}
// Is the tag blank?
if( tag.match(//) ) {
// Has it already been tagged?
if( txt.value.indexOf(tag) == -1 ) {
// Append a pipe if necessary
if( txt.value.match(/?\s*$/) ) {
txt.value += ' | ';
}
// Append our tag
txt.value += tag;
}
}
// Check 'This is a minor edit'
if(!document.forms.editform || !document.forms.editform.wpMinoredit || !document.forms.editform.wpDiff) {
return;
}
if( typeof autoEdMinor === 'undefined' || autoEdMinor ) {
document.forms.editform.wpMinoredit.checked = true;
}
// Click 'Show changes'
if( typeof autoEdClick === 'undefined' || autoEdClick ) {
document.forms.editform.wpDiff.click();
}
}
// Add "auto ed" tab and associate with actions
// Make sure the document is ready and our dependencies are loaded
$.when(
$.ready,
mw.loader.using()
).done(function () {
var $link;
//Execute AutoEd after call from "view mode"
if( mw.util.getParamValue('AutoEd') ) {
autoEdExecute();
}
// Set default values for any unset variables
if( typeof autoEdLinkHover === 'undefined' ) {
autoEdLinkHover = "Run AutoEd";
}
if( typeof autoEdLinkName === 'undefined' ) {
autoEdLinkName = "auto ed";
}
if( typeof autoEdLinkLocation === 'undefined' ) {
autoEdLinkLocation = "p-cactions";
}
// Add the "auto ed" tab
if( document.getElementById( 'ca-edit' ) && !document.getElementById( 'ca-AutoEd' ) ) {
var url = mw.util.getUrl(mw.config.get('wgPageName'), { action: 'edit', AutoEd: 'true' });
$link = $(mw.util.addPortletLink(
autoEdLinkLocation,
url,
autoEdLinkName,
'ca-AutoEd',
autoEdLinkHover,
'',
document.getElementById('ca-move')
));
if( typeof document.forms.editform !== 'undefined' ) {
$link.on('click', function (e) {
e.preventDefault();
autoEdExecute();
});
}
}
});
Misplaced Pages:AutoEd/core.js: Difference between revisions
Add topic
Text is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply.
**DISCLAIMER** We are not affiliated with Wikipedia, and Cloudflare.
The information presented on this site is for general informational purposes only and does not constitute medical advice.
You should always have a personal consultation with a healthcare professional before making changes to your diet, medication, or exercise routine.
AI helps with the correspondence in our chat.
We participate in an affiliate program. If you buy something through a link, we may earn a commission 💕
↑