User:Mabdul/saveandedit.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:Mabdul/saveandedit. |
////////////////////////////////////////////////
// To use that script add following line to your [[Special:MyPage/skin.js]] (without the //):
// importScript('User:Mabdul/saveandedit.js'); //adding a new button next to the edit field for saving and editing
////////////////////////////////////////////////
//adding a new buttom
document.getElementById('editButtons').innerHTML += '<input type="button" id="saveandedit_button" name="saveandedit_button" value="Save and edit" onclick="saveandedit_prompt()" />';
//function for returning
function saveandedit_prompt(){
//for displaying message on fail:
form = '<div id="saveandedit_status"></div>';
jsMsg(form);
var newtext = document.editform.wpTextbox1.value;
var summary = document.editform.wpSummary.value;
var notminor = document.editform.wpMinoredit.checked;
summary += ' (using [[User:mabdul/saveandedit.js|Save&Edit]])'; //some advertising
//get the token
req.open("GET", wgScriptPath + "/api.php?action=query&prop=info&indexpageids=1&intoken=edit&format=json&titles="+encodeURIComponent(wgPageName), false);
req.send(null);
var response = eval('(' + req.responseText + ')');
pageid = response['query']['pageids'][0];
token = response['query']['pages'][pageid]['edittoken'];
delete req;
//do the edit
var req = sajax_init_object();
var params = "action=edit&format=json&token="+encodeURIComponent(token)+"&title="+encodeURIComponent(wgPageName)+"&text="+encodeURIComponent(newtext)+"¬minor="+notminor+"&summary="+encodeURIComponent(summary);
url = wgScriptPath + "/api.php";
req.open("POST", url, true);
req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
req.setRequestHeader("Content-length", params.length);
req.setRequestHeader("Connection", "close");
req.onreadystatechange = function() {
if(req.readyState == 4 && req.status == 200) {
response = eval('(' + req.responseText + ')');
try {
if (response['edit']['result'] == "Success") {
//reload on the success
window.location.reload();
} else {
//or handle out the error message
document.getElementById('saveandedit_status'+escape(wgPageName)).innerHTML = '<div style="color:red"><b>Edit failed on <a href="'+wgArticlePath.replace("$1", encodeURI(wgPageName))+'" title="'+wgPageName+'">'+wgPageName+'</a></b></div>. Best try it again (don't forget to copy the text). Error info:' +response['error']['code'] + ' : ' + response['error']['info'];
}
}
catch(err) {
document.getElementById('saveandedit_status'+escape(wgPageName)).innerHTML = '<div style="color:red"><b>Edit failed on <a href="'+wgArticlePath.replace("$1", encodeURI(wgPageName))+'" title="'+wgPageName+'">'+wgPageName+'</a></b></div>';
}
delete req;
}
};
req.send(params);
}