Wikipedia:WikiProject User scripts/Scripts/Unreferenced tool

//

// If you are editing a page, click the unref button on your tab bar to add "{{Unreferenced|{{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}}}" to the top, set "Marked as unreferenced" as the edit summary, mark it as a minor edit, and submit.

function doQunref() {

document.editform.wpTextbox1.value = '{' + '{' + 'Unreferenced|date=' + '{' + '{' + 'subst:CURRENTMONTHNAME}} ' + '{' + '{' + 'subst:CURRENTYEAR}}}}\n\n' + document.editform.wpTextbox1.value;

document.editform.wpSummary.value = 'Marked as unreferenced.';

document.editform.wpMinoredit.checked = true;

document.editform.submit();

}

addOnloadHook(function() {

if (mw.config.get('wgCanonicalNamespace') == "User" || mw.config.get('wgCanonicalNamespace') == "User_talk") {

return;

}

if (document.editform) {

addPortletLink("p-cactions", "javascript:doQunref()", "unref", "ca-unref", "Mark as unreferenced", "");

}

});

// by jj137

//