User:Darkest Hour/orphan.js

From Wikipedia, the free encyclopedia

Note: After saving, you have to bypass your browser's cache to see the changes. Firefox/Mozilla/Safari: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Internet Explorer: press Ctrl-F5, Opera/Konqueror: press F5.

// <pre>
// Orphan.js
//
// This script adds a "Orphan" tab to the top of article pages
// when in edit mode. It is disabled for the User namespace.

function doOrphan() {
  document.editform.wpTextbox1.value = '{' + '{' + 'Orphan|' + '{' + '{' + 'subst:CURRENTMONTHNAME}} ' + '{' + '{' + 'subst:CURRENTYEAR}}}}\n\n' + document.editform.wpTextbox1.value;
  document.editform.wpSummary.value = 'Orphaned Article.';
  document.editform.wpMinoredit.checked = true;
  document.editform.submit();
}

addOnloadHook(function() {
  if (wgCanonicalNamespace == "User" || wgCanonicalNamespace == "User_talk") {
     return;
  }
  if (document.editform) {
     addPortletLink("p-cactions", "javascript:doOrphan()", "orphan", "ca-orphan", "Orphaned article", "");
  }
});

// </pre>