Jump to content

Wikipedia:WikiProject User scripts/Scripts/Add purge to tabs

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Minesweeper.007 (talk | contribs) at 23:09, 6 March 2007 (change alt button). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

//

// addPurge
addOnloadHook(function () {
    var hist; var url;
    if (!(hist = document.getElementById('ca-history') )) return;
    if (!(url = hist.getElementsByTagName('a')[0] )) return;
    if (!(url = url.href )) return;
    addPortletLink('p-cactions', url.replace(/([?&]action=)history([&#]|$)/, '$1purge$2'),
                   'purge', 'ca-purge', 'Purge server cache for this page', '0');
});

// 

//