Jump to content

User:Anne drew/SetupAutoArchive.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Anne drew (talk | contribs) at 15:08, 29 September 2017 (create based on https://en.wikipedia.org/wiki/User:Drilnoth/biotag.js). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
function doBioTag() {
  document.editform.wpTextbox1.value = '{' + '{' + 'WPBiography' + '\n' + '|living =' + '\n' + '|class =' + '\n' + '|priority =' + '\n' + '|attention =' + '\n' + '|past-collaboration =' + '\n' + '|peer-review =' + '\n' + '|old-peer-review =' + '\n' + '|needs-infobox =' + '\n' + '|needs-persondata =' + '\n' + '|activepol =' + '\n' + '|a&e-work-group =' + '\n' + '|politician-work-group =' + '\n' + '|british-royalty =' + '\n' + '|royalty-work-group =' + '\n' + '|military-work-group =' + '\n' + '|sports-work-group =' + '\n' + '|s&a-work-group =' + '\n' + '|musician-work-group =' + '\n' + '|peerage-work-group =' + '\n' + '|filmbio-work-group =' + '\n' + '|non-bio =' + '\n' + '|listas =' + '\n' + '|needs-photo =' + '\n' + '}' + '}' + '\n' + '\n' + document.editform.wpTextbox1.value;
}

//Implement the "doBioTag" function on appropriate pages
addOnloadHook(function() {
  if (wgCanonicalNamespace == "Talk")
  if (document.editform) {
     addPortletLink("p-cactions", "javascript:doBioTag()", "bio", "ca-biotag", "Tag page as a part of WikiProject Biography", "");
  }
});