Wikipedia talk:User scripts/Archive 2
Quote from IRC"Where: I don't know how I would survive without WP:US" --Adam1213 Talk + 22:50, 3 February 2006 (UTC) Image Autotagger (Firefox only)I've created a brief demonstration of my Image Autotagger tool if anyone would like to preview it. The code is available from my monobook.js, but I've got to polish it a bit, make it a little more flexible, and of course write documentation. You can test the Fast Tagger tab on Image:TestImage.jpg. Features:
I'd really appreciate any comments or ideas! ~MDD4696 23:56, 5 February 2006 (UTC)
Help with scriptI'm trying to add Show last diff to my monobook.js. But when I do, the tab appears twice. I would also like to place it next to the edit tab. Thanks. —Wayward Talk 07:13, 8 February 2006 (UTC) requestA script to add talk page links in article history next to editor username or IP?--Urthogie 16:34, 12 February 2006 (UTC)
Quick Proposed Deletion ScriptI don't know if this is really needed that often, or already done, but I thought I'd mention it. I created a small script similar to QWikify to be able to automatically load the edit page, ask for the reason, tag the page, add the summary, and submit to tag the page as proposed deletion (a new alternative to AfD here). It's somewhat buried in my code, but I could clean it off, and comment it up for use as tutorial and such if people were interested. --Mathwizard1232 01:11, 16 February 2006 (UTC) I feel like an idiot...Whenver I edit my monobook.js, I use document.getElementById() but it always, ALWAYS returns null or undefined or something even though I use the IDs from the HTML source code. I'm positive something is going wrong but it's probably something really simple and I know after I figure it out I'll wonder why I didn't sooner. DPFUNEditor 20:11, 16 February 2006 (UTC)
document.getElementById("ca-edit").firstChild.firstChild.data = "edit";
function shortEditLink() { document.getElementById("ca-edit").firstChild.firstChild.data = "edit"; } addOnloadHook(shortEditLink); // addOnloadHook is a Wikipedia-specific function
help needed: "addOnloadHook is not defined"I got the following error when I tried the user script on my local mediawiki (installed on my windows XP desktop): "addOnloadHook is not defined". However, the same script works well in the official en.wikipedia.com. Your help is greatly appreciated!
Newbie having a bad dayI do lots of proof-reading, so I want the "edit zeroth section" capability. So I checked my preferences (still defaulted to MonoBook), read the Meta help, copied all the script for Edit Top (no helper requirements listed in the box) from between the PRE delimiters, pasted into my User:TJFrazier/monobook.js page, and got . . . nothing.
Need to edit pages asynchronously?Hey all. I just wrote a function for my Image Autotagger project that I thought might be useful to others. I just copied it (mostly) verbatim here, but anyone that knows javascript should be able to understand it and modify it to suit his needs. ~MDD4696 03:59, 8 March 2006 (UTC)
!? --Olliminatore 08:24, 2 May 2006 (UTC) function tagImage() { var xmlhttp = new XMLHttpRequest(); xmlhttp.open( "GET", "http://en.wikipedia.org/w/index.php?title=NAMESPACE:ARTICLENAME&action=edit", true ); xmlhttp.onreadystatechange = function() { if ( xmlhttp.readyState == 4 ) { if ( xmlhttp.status == 200 ) { var rawPageText = xmlhttp.responseText; var editTokenExp = /value="(.{32})" name="wpEditToken"/g; var starttimeExp = /value="(.{14})" name="wpStarttime"/g; var edittimeExp = /value="(.{14})" name="wpEdittime"/g; formData = ""; formData += "wpScrolltop="; formData += "&wpEditToken=" + editTokenExp.exec( rawPageText )[ 1 ]; formData += "&wpSection="; formData += "&wpStarttime=" + starttimeExp.exec( rawPageText )[ 1 ]; formData += "&wpEdittime=" + edittimeExp.exec( rawPageText )[ 1 ]; formData += "&wpTextbox1=" + "Article text here"; formData += "&wpSummary=" + "Edit summary here"; formData += "&wpMinoredit=checked"; formData += "&wpWatchthis="; var formSubmitter = new XMLHttpRequest(); formSubmitter.open( "POST", "/w/index.php?title=NAMESPACE:ARTICLENAME&action=submit", true ); formSubmitter.setRequestHeader( "Content-Type", "application/x-www-form-urlencoded" ); formSubmitter.onreadystatechange = function() { if ( formSubmitter.readyState == 4 ) { if ( formSubmitter.status == 200 ) { alert( "All done!" ); } else { alert( "There was a " + formSubmitter.status + " error :(" ); } } } formSubmitter.send( formData ); } else { alert( xmlhttp.status + " error" ); } } } xmlhttp.send( null ); } Attaching eventhandler to onkeypress and onkeydown for wpTextbox1Hi: I wanted to be able to type in a foreign language: (persian) within an English environment without installing keyboard. I have these js libraries that take care of that. But I need to attach eventhandler to wpTextbox1 and I just can't. I almost know no JS. Any help is deeply appreciated. My monobook can be seen here: [1] Cheers, Behaafarid 03:59, 11 March 2006 (UTC) I just discovered this amazingly convenient way of linking directly to a user's personal monobook.js page. I've updated the tutorial to use it, but I'm sure there are plenty of other places with convoluted instructions for locating your own monobook.js. Just thought I'd let people know and ask for help in spreading this useful trick. —Ilmari Karonen (talk) 17:07, 17 March 2006 (UTC) javascript rollback broken?Hi folks. I've been using godmodelight for some time to revert vandalism, but its suddenly stopped working. I now get the following error:- Please wait, reverting edits by Contributions... Getting article history (/w/index.php?title=Sir_Henry_Floyd_Grammar_School&action=history&limit=50)... Error: Last editor is 195.93.21.6, not Contributions! I've emailed Sam, but just wondered if anyone had suffered (and fixed) a similar problem. (I'm running firefox BTW). Thanks. Kcordina 10:59, 21 March 2006 (UTC)
Many thanks for checking - it now works again for me too. I wonder if a bad version got caught up in a cache somewhere and has taken a while to be flushed out. Right, back to rolling back vandals. Kcordina 08:55, 22 March 2006 (UTC)
Help!Not sure if this is the place to ask, but it seems as likely as any. This morning, after not being able to connect to WP for most of yesterday, I was able to connect, but none of the tools in User:SteinbDJ/monobook.js seemed to be working. I tried reloading several times. I verified that I was still using the Monobook skin. Any thoughts on what might have happened? Thanks. SteinbDJ 18:21, 10 April 2006 (UTC)
getPname...is broken. http://en.wikipedia.org/wiki/Wikipedia_talk:WikiProject_User_scripts/Scripts/Get_Page_Name -rayluT 02:29, 16 April 2006 (UTC) Help pleaseI see that you have amazing tools for wikipedia, but I can understand a word about how to use them, can you add something in the page, or at least tell us what exactly is a user script and how to use it? --Argentino 19:16, 16 April 2006 (UTC)
I've written a new javascript tool for edit pages. It adds full search/replace capability to the edit box. It's still under developments so testers and comments are welcome. Zocky | picture popups 22:30, 1 May 2006 (UTC) RfA helpersI'd appreciate it if someone with more scripting genius than I posess could look at adjusting the AFD helper scripts to work for RfA. Specifically, one that would hide all open RfA's until the "show" link was clicked, and one that would do the {{subst:rfap/f}} {{subst:rfab}} tags as well as "Vote here" → "Final" and "ending" → "ended". Obviously, that would either have to leave the p/f in the first rfa tag empty, to be filled in, or have a Passed/Failed? dialogue that would allow you to select. As for the show/hide option, something that would default hide all nominations until the "show" link was clicked, to make page loading and navigation faster. Essjay (Talk • Connect) 04:11, 25 May 2006 (UTC)
Godmode-light errorHi guys, I'm having trouble with Godmode-light. Neither Sam Hocevar's original code or Misza13's version which I, er, borrowed seem to be working correctly. Whenever I click the Rollback link, I just get a page saying something like: Please wait, reverting edits by 69.175.147.51... Getting article history (/w/index.php?title=User_talk:129.186.205.71&action=history&limit=50)... Nothing happens from here, and my browser produces an 'Error on Page' notification. This happens in both Internet Explorer 6.0.2900.2180 and my ISP's (BT Yahoo!) own browser, version 5.03.04.809. The latter lets me view the nature of the error: Error: Object doesn't support this property or method Line: 230 URL:http://en.wikipedia.org/w/index.php?title=User_talk:129.186.205.71&fakeaction=rollback&vandal=69.175.147.51&token=5f6aecf122398d8ebe59015929414c25 Whats going on? (My monobook.js) CaptainVindaloo t c e 21:03, 29 May 2006 (UTC)
I've fixed the DOM parsing for IE(6) it works now too (the "&" Bug fix is also included). --Olliminatore 11:41, 4 June 2006 (UTC)
Godmode light is brokenGood ol' "Last editor is Contributions, not X.X.X.X" error. Anyone got a fix?--digital_me(t/c) 02:36, 31 May 2006 (UTC)
Sense of the listIs the meaning of the monobooks.js list gone lost? I think it's seems unpracticable, can someone clear/ control it? Everyone put his link without description and someone have only copys (redundant) from others (or have only external files included). Where is the (quality control) patrol?!? --Olliminatore 12:21, 5 June 2006 (UTC)
WikimaniaAre any of our leading tools authors going to WikiMania? I'm wondering if there are any plans for presentations or roundtables or suchlike. There are so many great tools now that sharing info with others might be goodness. ++Lar: t/c 17:20, 7 June 2006 (UTC)
DYK automationI just created 3 functions for DYK automation, which can be seen in User:Lar/DYK/monobook.js (and invoked from User:Lar/moretabs/monobook.js. They are suitable for use in tabs or dropdown menu tabs, to be activated while editing a page. Two are for user talk pages and one is for the article talk page. I'm not saying they are great but they do help speed up the DYK process a bit. My question (and you knew there would be a question) is this: the one for article talk pages puts the notice box at the end of whatever section you are editing at the time. (thanks to the typical tacking on to the end of the existing text which I cribbed from other helper functions: var f = document.editform, t = f.wpTextbox1; if (t.value.length > 0) t.value += '\n'; t.value += "{{subst:dyktalk|"+dayMoStr+"|"+yearStr+"}} ~~~~"; But in fact the best place to put the notice box, if you're editing an articletalk that already has notice boxes, is after all the existing notice boxes but before any other text. You can achieve this manually by editing section 0, if there is a section break after the notice boxes but it was pointed out that actually FINDING the notice boxes and putting the new text in right after them, irregardless of other text. So... (finally!) is there an example of a function that uses regexp parsing to find a mid text insertion point I can crib from. If it was regexp parsing that could find ANY notice box (whether templatised or substed in) that would be swell, but I think that's a bit much to ask for... or is it? You guys are pretty clever... Maybe find the start of regular text instead? Or just live with having to move the box after it's pasted in? Or ask more questions about where it should go before pasting it in? thoughts? (It was suggested I ask Lupin directly but I'd rather ask here, maybe the answer will benefit others) ++Lar: t/c 17:43, 11 June 2006 (UTC)
box=/\}\}/ t=document.editform.wpTextbox1 if(box.test(t.value)){ t.value = t.value.replace(box,"}}\n{{subst:dyktalk|"+dayMoStr+"|"+yearStr+"}} ~~~~") } which will add it below the first project box (assuming its not WP:SUBST'd). Andy t 22:15, 11 June 2006 (UTC)
"Changes since I last edited" script doesn't workJust gives a "Parsing history... please wait..." in red and then does nothing, while on the history page. —Centrx→talk 21:54, 15 June 2006 (UTC)
It works, gloriously. Thank you. Is there any way to have it work for long-past edits as well, or this might tax the servers too much? —Centrx→talk • 21:00, 11 July 2006 (UTC) Yeah, I fixed this script here[2] a while back, so that the "since" tab actually works.Voice-of-All 21:49, 12 July 2006 (UTC)
Seems to work now. —Centrx→talk • 02:13, 23 July 2006 (UTC) name of the description text box on an upload pageThis is specifically for commons but presumably the forms have the same names everywhere. Most editable pages, the name of the form where you insert text is "editform" and the field is "wpTextbox1", so you do this to get the txt hook to append or prepend to:
What is the equivalent form and field name pair for an image upload page (for example http://commons.wikimedia.org/wiki/Special:Upload )? I tried that and it did not work, so I viewed source on that page and read the tags. Based on that I thought the form was "upload" and the field "wpUploadDescription", but if i do this
I am getting "Error: document.upload has no properties" at that assignment in my javascript console... What am I doing wrong? (pointing me at code that inserts things in fields on upload pages would be as good as an answer... ) Thanks!!! ++Lar: t/c 03:50, 22 June 2006 (UTC)
// upload is the ID but not the name... so this fails // var txt = document.upload.wpUploadDescription; // this works but it is brittle // var txt=document.forms[0].wpUploadDescription; var txt=document.getElementById('upload').wpUploadDescription;
Tool for researchers neededPlease see Wikipedia:Bot_requests#Bot_for_researchers_needed - perhaps a script will be better then a bot?--Piotr Konieczny aka Prokonsul Piotrus Talk 00:41, 28 June 2006 (UTC) Monobook code causing wonky history diff radio buttons -- can't figure out why!I would very much appreciate your help, folks — I cannot seem to figure out what the bloody heck is causing this, despite attempts to figure it out by removing and replacing code. My monobook.js is at User:WCityMike/monobook.js. For some reason, when I am on an article's history page, I can click whatever lefthand radio button I desire, but the other versions' right radiohand buttons don't open up and follow down, thus preventing me from diff-ing two particular versions. When I remove the AfD Helper code from my monobook.js (which I had subst-ed in and added a few more reasonings and thoughts to), it seems to solve the problem -- but it always operated fine before, never before having causing this error to the best of my knowledge. My thought is that it might be an interaction with some new code I just installed, but my attempts to figure out what's going on have really been the equivalent of stumbling around blindly in the dark. If any of you would have a clue as to what's causing it, please let me know (and/or feel free to edit it yourself, of course). I'm, in advance, much obliged. — Mike (talk • contribs) 15:20, 7 July 2006 (UTC)
Still hoping someone might be kind enough to help, as I'm going a bit bonkers. I've seen the problem on both Portable Firefox v1.5.0.3 and on MacFirefox v1.5.0.4, making me think it is a code-specific and not machine-specific problem; as my two Firefox installs have some mutual extensions, I've also tested that theory by running Portable Firefox in safe mode, and the problem still readily recurred, so I don't think it's a problem caused by a Greasemonkey script or a Firefox extension. My educated, and layman's, guess is that the AFD Helper code is conflicting with some other piece of code in the template; if I remove the AFD Helper code from the monobook.js code, the problem does not occur. However, I have been participating in AfD a great deal, and the nomination and voting script has been particularly useful in that participation; furthermore, I don't think it's a problem specifically with the AFD Helper code, as it was one of the earlier pieces of code I put into my monobook.js and this behavior has only recently come to light. (If I could track down precisely when, I imagine I'd have my answer.) The problem, specifically, is that the diffs radio buttons don't populate down when a diff is selected, making it impossible to select two diffs on the history screen to compare to. The problem does not occur with Bedbug or with a few other randomly sampled articlespace pages, but does appear to occur with non-articlespace articles, such as my talk page or this very page. The problem does not seem to occur with the history page of User:WCityMike/monobook.js. I'm not sure what these differentials mean, but I hope they are of diagnostic help. A question: if you are subst-ing in the error-ing code to test it and not seeing this behavior, are you doing a Force Refresh (Ctrl-F5 on Firefox) afterwards to make sure the code is loaded? I'm sorry to disturb you all, but I'm really at a loss to figure out what's misbehaving here, and would very much appreciate your insight and/or diagnosis. — Mike (talk • contribs) 20:48, 11 July 2006 (UTC)
Dumb ... but minor and easier ;-) ... questionWhat combination of <nowiki> and/or <pre> and/or whatever do you guys use to get your monobook.js to display "nice" visually without screwing up the code? — Mike (talk • contribs) 18:06, 12 July 2006 (UTC) //<pre><nowiki> code here //</nowiki></pre> GeorgeMoney (talk) 21:25, 12 July 2006 (UTC)
Duplication of Toolbox Links/TabsEh, I was lucky with the other problem, so let's see if I can conquer this longstanding one. Once in a while, if I add a script portion to my monobook.js file, all of a sudden, all of my list items and my tabs will duplicate. So, for example, if I have a "changes since last edited" tab, and a piece of code is added, I'll then see two of them, or if I've added links to "personal tools" or to "toolbox," they'll be duplicated. (Ditto with additions to my watchlist such as (unwatch) or (adah), which then become (adah) (adah) and (unwatch) (unwatch).) I usually then have to revert the addition. I've seen this so far with the "rename 'edit this page' to 'edit'" script fragment and the "list red links" script fragment. Very often, this will also mean the script in question won't work — although not all the time (the "list red links" script, for example, doesn't work in this case, but the "rename edit this page" fragment did). Not asking you guys to reinvent the wheel, but is this a known quirk? Any idea what might cause this? — Mike (talk • contribs) 20:31, 13 July 2006 (UTC)
Central repository of scriptsFor those developers who would rather put their scripts in a central repository, I have created User:Userscripts. (It seems that scripts can't be hosted anywhere outside of the User namespace.) Instructions for setting up a script there can be found on the userpage. Just FYI. Ingoolemo talk 23:12, 1 August 2006 (UTC)
Access from a new windowHi, I'm from the German Wikipedia but we don't have such experts there ;) So my question here: I open a new window which contains a list of categories and this javascript: function add_cat(cat){ link = "\n" + cat + ""; opener.document.editform.wpTextbox1.value += link; } (And then I've got links like that: So far so good, and on my own PC, with a dummy file containing a form called "editform" and the textarea "wpTextbox1", it works perfectly fine. Is there any script in MediaWiki that "protects" the editform from being controlled from another window or something? And if so, how can I get around that? Thanks a lot, Bernardissimo
qwikify
Editing another page (not the one the browser is on)How do you do that? Eyu100 01:08, 25 August 2006 (UTC) XmlHttpRequest--83.43.152.107 17:03, 25 August 2006 (UTC) Script problemScript: function gotoURL(myURL){ window.location=myURL; } function write_to_ratings_page() { gotoURL("http://en.wikipedia.org/w/index.php?title=User:Eyu100/Bot_area&action=edit"); document.editform.wpTextbox1.value = document.editform.wpTextbox1.value + "(" + quality + " and " + importance + " and " + pagename + ")"; document.editform.wpSummary.value = "Added rating"; document.editform.wpMinoredit.checked = true; document.editform.submit(); } function get_rating() { var quality=prompt("Please enter a quality rating from 1 to 6, 1 is stub, 6 is FA","") var importance=prompt("Please enter an importance rating from 1 to 4, 1 is low, 4 is top","") } function rate() { get_rating(); gotoURL("http://en.wikipedia.org/wiki/User:Eyu100/Bot_area"); write_to_ratings_page(); } addOnloadHook( function() { var pagename=getPname(); addTab("javascript:rate()", "rate", "ca-rate", "Rate this page", ""); ); Retrieved from "http://en.wikipedia.org/wiki/User:Eyu100/monobook.js" Can someone figure out the problem? This script makes my entire monobook.js defective. Eyu100 17:41, 25 August 2006 (UTC) Plugin system?One of the stated goals is "Create a plugin system for user scripts". A while ago I added an idea here Wikipedia talk:WikiProject User scripts/Scripts#Helper_functions that might make script installation (and perhaps programming) considerably simpler. I have several ideas for useful functionality. Shinobu 10:40, 28 August 2006 (UTC)
I have since seen it. The difference is one of focus: your system aims to simplify installation of scripts. But I was thinking more along the lines of simplifying code reuse through a plugin system like thingy. Both can be very useful: one aids the user, the other aids the programmer. Shinobu 17:26, 18 September 2006 (UTC) Un-RfDThis is probably obvious, but.... I have a collection of redirects I've nominated for deletion, and, after some consideration, I'm withdrawing (most of) the nominations. There are approximately 136 of them. Maybe more, maybe less. In any case, I want to change:
to
in each of them. (Obviously, if the {{rfd}} isn't there, I don't want to edit...) Can this be done by a script? — Arthur Rubin | (talk) 01:23, 31 August 2006 (UTC) What's A User Script?What is a user script?100110100 22:32, 6 September 2006 (UTC)
Inline script loading scriptHave hade a code, that will load a script file and evaluate it without writing html code. The script is located at (it doesn't work at the moment, could someone pleaae look it up?)User:AzaToth/loadscript.js →AzaToth 15:30, 14 September 2006 (UTC)
AutoAFDThe script don't capture correctly the pagename when there are accentuation on the title. Is there any way to fix it? --Giro720 00:07, 11 October 2006 (UTC)
Project directoryHello. The WikiProject Council has recently updated the Wikipedia:WikiProject Council/Directory. This new directory includes a variety of categories and subcategories which will, with luck, potentially draw new members to the projects who are interested in those specific subjects. Please review the directory and make any changes to the entries for your project that you see fit. There is also a directory of portals, at User:B2T2/Portal, listing all the existing portals. Feel free to add any of them to the portals or comments section of your entries in the directory. The three columns regarding assessment, peer review, and collaboration are included in the directory for both the use of the projects themselves and for that of others. Having such departments will allow a project to more quickly and easily identify its most important articles and its articles in greatest need of improvement. If you have not already done so, please consider whether your project would benefit from having departments which deal in these matters. It is my hope that all the changes to the directory can be finished by the first of next month. Please feel free to make any changes you see fit to the entries for your project before then. If you should have any questions regarding this matter, please do not hesitate to contact me. Thank you. B2T2 14:27, 26 October 2006 (UTC) Need a tag for WikiProject Fan Fiction...I have no idea where else to find someone to help me out with this without going to the main Help Desk, and that's usually a pain to edit. :\ Hopefully one of you can help? Anyway, all I need is a tag - like most WikiProjects have already - to put on the Talk pages of articles that fall within the scope of WikiProject Fan Fiction. Can anybody here help out with this? Runa27 22:51, 26 October 2006 (UTC)
{| class="messagebox standard-talk" |- style="vertical-align:top;" | rowspan="3" width="50px" | [[Image:Open book 01.svg|60px]] | colspan="2" style="font-style:italic;text-align: center;" | This article is within the scope of '''[[Wikipedia:WikiProject Fan Fiction|WikiProject Fan Fiction]]'''. You can discuss the Project at its [[Wikipedia talk:WikiProject Fan Fiction|talk page]]. |}<includeonly></includeonly><noinclude> [[Category:Fan fiction|*]] </noinclude> Take a look at Help:Template for more information AZ t 23:11, 26 October 2006 (UTC)
Help!I need help with my scripts. Currently, only navigation popups and InstaView are enabled. Howver, there are a lot more scripts, which aren't working. Please look at my monobook.js and then fix it if you can, or leave a suggestion on my talk page. Thanks in advance, ςפקιДИτς ☺ ☻ 01:17, 31 October 2006 (UTC).
Changes to accesskeys and tooltipsMailing list thread. Apparently some planned changes in Mediawiki might break some user js, but I don't really understand. the wub "?!" 09:51, 6 November 2006 (UTC) Replacing text through scriptingI have created a few scripts so that I am able to quickly assess articles of stub or start status for various Wikiprojects I am part of. My problem is that, as of right now, the only way for me to use the scripts is if there is nothing at all in the talk page besides the template in question (which my script then wipes out and replaces). Is there away to search for, say, {{WPBiography}} and replace only that with {{WPBiography|class=start|importance=low}} while keeping everything else intact? here is an example of one of my scripts: // Code originally by [[User:Raylu|raylu]] // Modified by [[User:Moeron]] // // // This script adds a "stub,low" tab to the top of Article pages // when in edit mode. function docvg() { document.editform.wpTextbox1.value = '{{' + 'cvgproj' + '|' + 'class=stub' + '|' + 'importance=low' + '}' + '}'; document.editform.wpSummary.value = 'Assessed as stub, low importance -- [[Category:Unassessed computer and video game articles|You can help!]]'; document.editform.wpMinoredit.checked = false; document.editform.submit(); } function addcvg() { addTab("javascript:docvg()", "cvg", "ca-cvg", "cvg", ""); akeytt(); } addOnloadHook(function() { if (document.title.indexOf("Talk:") != -1) { addOnloadHook(addcvg); } }); Thanks for any help in advance. -- moe.RON Let's talk | done 22:04, 6 November 2006 (UTC)
document.editform.wpTextbox1.value = document.editform.wpTextbox1.value.split("{"+"{WPBiography}}"). join('{\ {' + 'WPBiography' + '|' + 'class=start' + '|' + 'importance=low' + '}' + '}'; var tb = document.editform.wpTextbox1; tb.value = tb.value.replace("{\ {WPBiography}}", "Some replacement text");
Try wiked. This in-page editor extension allows regular expression find and replace. You can also predefine find and replace texts which will be added to the drop-down history of the find and replace fields. Cacycle 16:29, 21 December 2006 (UTC) MergeWhy merge? Wikipedia:Scripts seems to be about a wholly different sort of scripts. -- Jitse Niesen (talk) 00:47, 10 November 2006 (UTC)
On a separate note, someone started Wikipedia:Monobook, changing it from a previous redirect to MediaWiki:Monobook.css. The page is in bad need of cleanup; perhaps it should be merged w/ WP:US, WP:JS, or Wikipedia:WikiProject User scripts/Tutorial? Since there is also Special:Mypage/monobook.css, I don't know if that would be the correct merge to do though. AZ t 17:25, 3 December 2006 (UTC)
Arrows in edit summariesAt the moment, the software places a rightwards-pointing arrow on edit summaries generated by section edits and the contents of MediaWiki space place a leftwards-pointing arrow on autosummaries for redirecting, blanking, and replacing content (see WP:AES). Maybe it would be a good idea to have a standardised symbol on edit summaries generated by scripts and/or bots? --ais523 13:14, 4 December 2006 (UTC)
Formatter is a nice small script useed by many users, but it doesn't seem to have a 'caretaker'. There are some suggestions on how to improve it on talk, but we don't have anybody to implement them - perhaps a person experienced with scripts could 'adopt' this script?-- Piotr Konieczny aka Prokonsul Piotrus | talk 21:28, 5 December 2006 (UTC)
Assistance with bureaucrat JSSome time ago, Voice of All wrote a nifty little bureaucrat script that helps to close RfAs. Unfortunately, over time, it's become rather overfeatured, including several features that makes the job harder, rather than easier. Additionally, several bugs have developed, causing even more problems. At this time, I'm looking for a talented coder who can either adapt the existing code (located in the history of User:Essjay/bureaucrat.js), or write new code to do this, and only this:
That's all I need it to do; I don't need it to open up Special:Makesysop, the user's talk page, add comments to the RfA's talk page, check voting records, waive flags, or launch ICBMs at Willy on Wheels. From there, I can take the rest. Thanks to whomever can take care of this for me. Essjay (Talk) 03:19, 11 December 2006 (UTC)
How do I get Javascript to automatically send me to another page?Yeah... Pretty much the heading. I have no idea, but I'd like to. -Amarkov blahedits 02:29, 23 December 2006 (UTC)
location.href="http://en.wikipedia.org/wiki/whatever";
Okay, now how do I set up things to execute one after another?The functions are executing on the page I'm currently on. How do I make it go to the other page before trying to execute the stuff? -Amarkov blahedits 01:24, 29 December 2006 (UTC)
Wikipedia Day AwardsHello, all. It was initially my hope to try to have this done as part of Esperanza's proposal for an appreciation week to end on Wikipedia Day, January 15. However, several people have once again proposed the entirety of Esperanza for deletion, so that might not work. It was the intention of the Appreciation Week proposal to set aside a given time when the various individuals who have made significant, valuable contributions to the encyclopedia would be recognized and honored. I believe that, with some effort, this could still be done. My proposal is to, with luck, try to organize the various WikiProjects and other entities of wikipedia to take part in a larger celebrartion of its contributors to take place in January, probably beginning January 15, 2007. I have created yet another new subpage for myself (a weakness of mine, I'm afraid) at User talk:Badbilltucker/Appreciation Week where I would greatly appreciate any indications from the members of this project as to whether and how they might be willing and/or able to assist in recognizing the contributions of our editors. Thank you for your attention. Badbilltucker 19:36, 30 December 2006 (UTC) |