Jump to content

User:Animum/reset.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Animum (talk | contribs) at 23:19, 10 November 2007 (New format). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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.
// [[User:Animum/reset.js]] by Animum
importScript('User:Animum/urlparameters.js');
importScript('User:Voice of All/Addtabs/monobook.js');

function resetSandbox() {
  if(UrlParameters["sandboxreset"] == 'true') {
    document.editform.wpTextbox1.value = "\{\{Please leave this line alone (sandbox heading)\}\}\n" + 
"<!-- Hello! Feel free to try your formatting and editing skills below this line\. As this page is for editing experiments, this page will automatically be cleaned every 12 hours. -->"; //Add the base text for the sandbox
    document.editform.wpSummary.value = "[[User:Animum/reset.js|JS EDIT]]: Reset the Sandbox"; //Make a descriptive edit summary
    document.editform.wpMinoredit.checked = true; //Make it a minor edit
    document.editform.wpSave.click(); //Submit it! }
}
 
function addResetTab() {
    if(wgPageName == "Wikipedia:Sandbox") // If the page you are viewing is the sandbox
      { addPortletLink('p-cactions', 'http://en.wikipedia.org/wiki/Wikipedia:Sandbox?action=edit&sandboxreset=true', 'reset', 'ca-reset', "Reset the Sandbox"); }
    if(wgPageName != "Wikipedia:Sandbox") // If the page you are viewing is NOT the sandbox 
      { addToolboxLink('http://en.wikipedia.org/wiki/Wikipedia:Sandbox?action=edit&sandboxreset=true', 'Reset the Sandbox', '', '', ''); }
}

addOnloadHook(addResetTab);