User:Flex/welcome newuser.js
From Wikipedia, the free encyclopedia
If a message on your talk page led you here, please be wary of who left it. Code that you insert on this page could contain malicious content capable of compromising your account. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. If this is a .js page, the code will be executed when previewing the page.
Note: After saving, you have to bypass your browser's cache to see the changes. In Internet Explorer and Firefox, hold down the Ctrl key and click the Refresh or Reload button. Opera users have to clear their caches through Tools→Preferences, see the instructions for Opera. Konqueror and Safari users can just click the Reload button.
/* <pre> */ function welcome() { // Find the edit box var txt = document.editform.wpTextbox1; //The welcome *template* you want to use var welcome_template = 'welcome-personal'; var welcome_summary = 'welcome'; var welcome_watch = false; // The tag to be included is a welcome message var tag = '{{subst:'+ welcome_template +'}}--~~~~'; // If the edit box doesn't already have this tag... if (txt.value.indexOf(tag) == -1) { // Append the tag txt.value += tag; // Add an edit summary document.editform.wpSummary.value = welcome_summary; document.editform.wpWatchthis.checked = welcome_watch; // Press the Save page button document.editform.submit(); } // If the tag was already there, turn the tab background red to indicate // that the script is functioning properly, but that there is no action // to do. This doesn't interrupt the user's work like an alert() would. else { document.getElementById('ca-unverified').firstChild.style.backgroundColor = "#ff4444"; document.getElementById('ca-unverified').style.backgroundColor = "#ff4444"; } } // Create a tab that calls this function when pressed // Create a tab that calls this function when pressed addOnloadHook( function () { if(document.title.indexOf("Editing User talk:") == 0) { addPortletLink('p-cactions', 'javascript:welcome()', 'welcome', 'ca-welcome', 'Adds a welcome note to a new user', '', ''); } } ); /* This is to keep track of who is using this extension: [[User:Flex/welcome_newuser.js]] */ /* </pre> */

