MediaWiki:Gadget-purge.js: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| Line 2: | Line 2: | ||
function purgePage(e) { | function purgePage(e) { | ||
mw.notify("The page is now purging and will refresh when it is ready.", { title: 'Purging', tag: 'purge', autoHide: false }); | mw.notify("The page is now purging and will refresh when it is ready.", { title: 'Purging', tag: 'purge', autoHide: false }); | ||
(new mw.Api()). | (new mw.Api()).postWithToken('csrf', { | ||
action: | format: "json", | ||
action: "edit", | |||
title: mw.config.get('wgPageName'), | |||
summary: "null edit via script", | |||
nocreate: 1, | |||
appendtext: "" | |||
}).then(function(){ | }).then(function(){ | ||
window.location.reload(); | window.location.reload(); | ||
| Line 17: | Line 21: | ||
$('.jsPurgeLink').click(purgePage); | $('.jsPurgeLink').click(purgePage); | ||
$('.jsPurgeLink > a').attr({'href': '#', target: ''}); | $('.jsPurgeLink > a').attr({'href': '#', target: ''}); | ||
// remove the ext.smw.purge event and replace it with a null edit event | |||
if (mw.config.get('wgIsProbablyEditable')) { | |||
$('#ca-purge a, .purge').off().on('click', purgePage); | |||
} | |||
} | } | ||
$(init); | $(init); | ||
}(jQuery, mediaWiki, gswiki)); | }(jQuery, mediaWiki, gswiki)); | ||
Latest revision as of 18:07, 9 August 2021
(function($,mw,gs){
function purgePage(e) {
mw.notify("The page is now purging and will refresh when it is ready.", { title: 'Purging', tag: 'purge', autoHide: false });
(new mw.Api()).postWithToken('csrf', {
format: "json",
action: "edit",
title: mw.config.get('wgPageName'),
summary: "null edit via script",
nocreate: 1,
appendtext: ""
}).then(function(){
window.location.reload();
}, function(){
var uri = new mw.Uri();
uri.query.action = 'purge';
mw.notify($.parseHTML('Purging the page failed. Please try again or <a href="'+uri.toString()+'">do so manually</a>.'), { title: 'Purging failed', tag: 'purge', type: 'error', autoHide:false });
});
e.preventDefault();
}
function init() {
$('.jsPurgeLink').click(purgePage);
$('.jsPurgeLink > a').attr({'href': '#', target: ''});
// remove the ext.smw.purge event and replace it with a null edit event
if (mw.config.get('wgIsProbablyEditable')) {
$('#ca-purge a, .purge').off().on('click', purgePage);
}
}
$(init);
}(jQuery, mediaWiki, gswiki));