User talk:Happy-melon/Archive 13
File:WP1.0 Quality-Content grid.png missing description detailsDear uploader: The media file you uploaded as File:WP1.0 Quality-Content grid.png is missing a description and/or other details on its image description page. If possible, please add this information. This will help other editors to make better use of the image, and it will be more informative for readers.
If the information is not provided, the image may eventually be proposed for deletion, a situation which is not desirable, and which can easily be avoided. If you have any questions please see Help:Image page. Thank you. Sfan00 IMG (talk) 17:22, 19 May 2010 (UTC)Belated thanks and star!
This is terribly belated - and, the first barnstar I've given (so I'm not sure, do I put this on your talk page? user page? ah well, you can move it if you wish). A couple of months back you helped a great deal with getting me (a newbie then called 'lacbolg' through some weirdness. I've stuck around, changed my username, and having a ball. Thanks in large part to you. :) Wikipelli Talk 02:40, 21 May 2010 (UTC)
Did this fizzle out? I've tweaked it a bit as someone had slapped a "failed" on there. FYI there is some discussion that mentions you at Template talk:WPMED#Requested move. You aren't required to comment but I thought it would be courteous to let you know. –xenotalk 13:14, 27 May 2010 (UTC) TalkbackHello, Happy-melon. You have new messages at Tim Song's talk page.
Message added 00:54, 6 June 2010 (UTC). You can remove this notice at any time by removing the {{Talkback}} or {{Tb}} template. Tim Song (talk) 00:54, 6 June 2010 (UTC) Just a heads-up: the page went off semi-protected status in April, and was vandalized today by I believe the same anonymous person who was doing it last year, with the same information that the subject wished to be kept off the page for legal reasons. I will keep you updated if it persists, and I made note of it in the Talk page there. --Jonnybgoode44 (talk) 20:22, 7 June 2010 (UTC) Update: The vandalism is persistent, with apparent intent to "out" and do harm. I noticed you were away from WP until the 20th; I've contacted admin Taelus for help until your return. --Jonnybgoode44 (talk) 02:01, 8 June 2010 (UTC) SecurePoll oddityHi,
Top Gear (2002 TV series)Hi Just a quick note in case it confuses you - I was reverting at the same time as you - my revert was beaten by yours, but I already (final) warned on the User talk page - Begoon (talk) 13:38, 14 June 2010 (UTC) Nomination for deletion of Template:Strictly Come Dancing professional dancersTemplate:Strictly Come Dancing professional dancers has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you. Plastikspork ―Œ(talk) 23:24, 21 June 2010 (UTC) CheckuserHello Happy, I was looking into people with check user permissions and your name was in the list of users who have that right. The Korean cuisine article has been the subject of several edit wars over the past few years, but has been stable for a good amount of time. Recently an anonymous IP contrib placed a long-winded diatribe about the article being racist and demanded that several sections be deleted as such; almost immediately a long time contrib, User:Melonbarmonster2 f.k.a. User:Melonbarmonster, with a history of edit warring over articles with a Korean subject jumped in and began blowing through the article in the name of deleting all he thought was wrong. This has raised suspicions for me about the timing of the contrib's actions because the diatribe the IP contrib posted used much of the same phrasing and grammatical patterns that the contrib has used in past postings and arguments concerning these subjects. Is there any way you could do a check user on him and the IP contrib, User:86.171.23.89, aren't related or puppets of Melonbarmonster? If you can't, can you point me in the proper direction to where I could pass the request on? Thanks, --Jeremy (blah blah • I did it!) 18:06, 5 July 2010 (UTC)
Thanks. --Jeremy (blah blah • I did it!) 19:40, 5 July 2010 (UTC) RFCI noticed that you participated in a previous RFC at Wikipedia talk:Notability (criminal acts)/Opinions. I was wondering if you might share your opinion here: RFC: Should Wikipedia:Notability (criminal acts) be merged with Wikipedia:Notability (events) and Wikipedia:Notability (people)? Thanks! Location (talk) 19:19, 5 July 2010 (UTC) Template debugging [done]Melon, a long time ago you kindly set up Template:WikiProject HOP. Somebody has today moved it (to Template:WikiProject History of photography), whereupon I notice (on its own page) that it has formatting errors and even manages to complain about how it shouldn't be visible. (I note that the problems predated the move; I can't blame the mover.) I could invest an hour in template debugging for dummies, but my appetite for WP drudgery has its limits and I've a hunch that you're used to this kind of thing and can fix it in a very short time. Care to take a look? -- Hoary (talk) 10:18, 12 July 2010 (UTC)
Tim Starling's commentYou may have seen his comment. It seems to me that if we're going to split the UI from the backend, then a function like the two we refactored, insertNewArticle() and updateArticle(), will need to be created to handle the watching/unwatching and redirecting; but in that case, why did they want to deprecate those two functions? I didn't intentionally try to regress from the earlier work that was done to achieve that separation; I just didn't know that they even had such an agenda, or that $watchthis had been purposefully taken out of the hook. Tisane talk/stalk 14:18, 16 July 2010 (UTC) File:TracklistBoxFlow.jpg missing description detailsDear uploader: The media file you uploaded as File:TracklistBoxFlow.jpg is missing a description and/or other details on its image description page. If possible, please add this information. This will help other editors to make better use of the image, and it will be more informative for readers.
If the information is not provided, the image may eventually be proposed for deletion, a situation which is not desirable, and which can easily be avoided. If you have any questions please see Help:Image page. Thank you. Sfan00 IMG (talk) 14:33, 21 July 2010 (UTC)File-class articlesHi happy-melon, we don't see so much of you these days. Hopefully you enjoying the fine summer weather. Just wanted to draw your attention to Wikipedia:Rename of Image-class to File-class. I noticed some comment from you ages ago that you had developed a script that would delete/create these categories. Would you be able to run it? Or perhaps make the code available to me? Regards — Martin (MSGJ · talk) 11:29, 23 July 2010 (UTC) Script def catMaintenance(): #Used to populate [[:Category:C-Class articles]]
if 'y' in raw_input('Confirm questionable actions? '):
prompt = True
else:
prompt = False
import api
bcats = api.category('Category:B-Class articles')[1]
ccats = api.category('Category:C-Class articles')[1]
for bcat in bcats[:]:
cat = re.sub(r'B\-Class',r'C-Class',bcat)
if cat in ccats:
bcats.remove(bcat)
num = len(bcats)
for cat in bcats:
bclass = wikipedia.Page(site, cat)
cclass = wikipedia.Page(site, re.sub('B\-Class','C-Class',cat) )
#print cclass
if cclass.exists():
print cclass.title()+' already exists. Skipping'
continue
elif api.logEvents(cclass.title(),events='delete'):
print cclass.title()+' has previously been deleted. Skipping...'
continue
else:
btext = bclass.get()
ctext = btext
ctext = re.sub('B(?=[ \-][Cc]lass)','C',ctext)
ctext = re.sub(r'class=B','class=C',ctext)
ctext = re.sub(r'\[\[\s*[Cc]ategory:\s*C-Class[ _]articles\s*\]\]','[[Category:C-Class articles|'+re.sub(r'(?i)[Cc]ategory:C-Class (.*) [Aa]rticles',r'\1',cclass.title())+']]',ctext)
ctext = re.sub(r'(\|\s*)B([\|\}\]])',r'\1C\2',ctext)
ctext = re.sub(r"(['\"])B(['\"])",r'\1C\2',ctext)
print '***********************************************************************'
wikipedia.output(ctext)
print '********************************************'
check = ctext
check = re.sub(r'(?i)(\[\[\s*category:.*?\]\]|\{\{\s*(catmore(1)?|cat class|categorytoc|wpmilhist task force assessment level category|tlx?).*?\}\})','',check)
check = re.sub(r'\{\{[^\|]+?\}\}','',check)
check = re.sub(r'(?i)(\[\[.+?\]\]|\.|\;|\,|\'|\")','',check)
check = re.sub(r'[ \n]*','',check)
check = re.sub(r"(?i)thiscategorycontainsarticlesthathavebeen(ratedasC-Class|assessed)by(the)?Articlesareautomaticallyplacedinthiscategorywhenthecorrespondingratingisgivenpleaseseetheformoreinformation",'',check)
check = re.sub(r'[^bB]','',check)
#print check
if not check or (prompt and 'y' not in raw_input('Skip '+cclass.title()+'? ')):
cclass.put(ctext,'Populating [[:Category:C-Class articles]]')
elif prompt and 'y' in raw_input('Use a regex? '):
ctext = re.sub(raw_input('Pattern: '),raw_input('Replace with: '),ctext)
print ctext
if 'y' in raw_input('OK? '):
cclass.put(ctext,'Populating [[:Category:C-Class articles]]')
num -= 1
print str(num) + ' to go...'
print '***********************************************************************'
return
Please can you make a project bannerHi Happy Melon Please can you help out at Wikipedia:WikiProject_Peerage_and_Baronetage, where we need a project banner template (see discussion here ... but I'm not sure how to do it, and know that you are a genius with the template (whose name I forget) used to build such things. No need for anything fancy: it just needs to tag an article's talk page as being within the project scope, and categorise it by namespace, but no need for any assessment. Please can you make a simple one for us? --BrownHairedGirl (talk) • (contribs) 19:03, 24 July 2010 (UTC)
Featured templates?!Care to give this a once-over? Note there are some comments in the source, too, and feel free to point anyone else you care to towards it. =) 「ダイノガイ千?!」? · Talk⇒Dinoguy1000 04:12, 30 August 2010 (UTC) Response at ACE2010 General QuestionsI only just noticed your entry on my watchlist. Please see here. Tony (talk) 08:00, 31 August 2010 (UTC)
Five months ago I began working on Evanna Lynch and last week it was listed as a good article. I've recently requested a peer review recently to find out what needs fixing before it is ready for WP:FAC. And so, I was wondering if you have tips for checking things that I should look for, in order to prepare it for WP:FAC? Thanks! Alex Douglas (talk) 14:56, 9 August 2010 (UTC)500000 Adopt ME PLEASE!!Hi my name is natalia and i am in a school proyect. it would be awesome if you adopt me.Natquintana (talk) 02:53, 14 September 2010 (UTC) Adopt-a-user reminderHello, I have completed a general cleanup of the adopter information page for the adopt-a-user project, located here. During my cleanup, I have removed several inactive and retired users. In order to provide interested adoptees with an easy location to find adopters, it is essential that the page be up-to-date with the latest information possible. Thus:
Delivered by MessageDeliveryBot on behalf of Netalarm (talk) at 03:37, 23 September 2010 (UTC). PokeIn the hopes that maybe you can figure it out : ) Would the universe melt down (smile) if we changed it to a dozen or better, a score? - jc37 04:23, 1 October 2010 (UTC)
Socks?
Hello Melons! I have a question to ask of you, when it comes to a potentially problematic user creating more than 1 account, what is your view like? Now, as I understand it from looking into the contribution history of the two main active accounts (1.RomDolce & 2.Kumpayada), the User:RomDolce claimed to have forgotten his password and so he created a new account (Kumpayada) but somehow later in his statement, he claimed (on the page of an unregistered account name User:Kumpayada !) to be able to login again as RomDolce. Thoughts? Best. --Dave ♠♣♥♦™№1185©♪♫® 05:26, 1 October 2010 (UTC)
ACE2010 coordination pageHi, I've created it, incompetently, of course. It will need the attention of someone who knows what they're talking about in terms of page creation. I'm going to use last year's election page as it was just before the start of voting as the basis of a draft for the ACE2010 page. If we're to start the call for nominations in early November, and the voting in the second half of November, we still have more than three weeks to prepare. I think there should be call for volunteers at the Village Pump. Is that the right place? I'll ping you via email too, since you haven't been around for a few days. Cheers Tony (talk) 13:51, 5 October 2010 (UTC) Spooks returnI reverted you the other day for removing the statement regarding the return of Spooks, but am having second thoughts. Do you think this might be another fake, like the fake Christmas 2009 image that was allegedly from Doctor Who? There were a few references to Spooks returning just after the final episode, but they seem to have evaporated. It's got me wondering, anyway. Drmargi (talk) 16:02, 12 November 2010 (UTC)
Burger KingHello, as one of the few admins I know, could you please reset the Semi-perm protection on the Burger King article? It was turned off during the approved changes trial and never turned back on. There has been an increase in IP vandalism on the article in the past few months and is beginning to get annoying. --Jeremy (blah blah • I did it!) 03:48, 13 November 2010 (UTC) Nomination of Parodies of Harry Potter for deletionA discussion has begun about whether the article Parodies of Harry Potter, which you created or to which you contributed, should be deleted. While contributions are welcome, an article may be deleted if it is inconsistent with Wikipedia policies and guidelines for inclusion, explained in the deletion policy. The article will be discussed at Wikipedia:Articles for deletion/Parodies of Harry Potter until a consensus is reached, and you are welcome to contribute to the discussion. You may edit the article during the discussion, including to address concerns raised in the discussion. However, do not remove the article-for-deletion template from the top of the article. Ten Pound Hammer, his otters and a clue-bat • (Otters want attention) 01:37, 18 November 2010 (UTC) Hector Sants redactionHi, I notice that you have edited visibility of the Hector Sants article history Hector_Sants. The redacted section is factual, cites sources and collaborative, so I wonder why it has been redacted. Any comments would be appreciated. many thanks. —Preceding unsigned comment added by SilverFox93 (talk • contribs) 16:51, 27 November 2010 (UTC)
Categories for discussion nomination of Category:Substituted templatesCategory:Substituted templates, which you created, has been nominated for deletion, merging, or renaming. If you would like to participate in the discussion, you are invited to add your comments at the category's entry on the Categories for discussion page. Thank you. cymru lass (hit me up)⁄(background check) 21:28, 28 November 2010 (UTC) Burn the rulebook to heat…LOL Nicely put! -- Avi (talk) 00:56, 29 November 2010 (UTC)
dude...that's just plain evil :P Choyoołʼįįhí:Seb az86556 > haneʼ 01:43, 30 November 2010 (UTC)
Your page of adviceHM, it looks good to me. I've run through it; you might check "The primary role" para, which I rejigged a little (non-substantively). Thanks for this. Tony (talk) 01:53, 1 December 2010 (UTC) I need some help with a template, againThere is template the food related portals use, {{FD projects}}, to link to the related projects for the portal. Another user has pointed out that it makes it look like the main WikiProject for the associated portal is not the main wikiproject for the portal. Is there any way we can dynamically make it so that the associated project is somehow highlighted? --Jeremy (blah blah • I did it!) 22:03, 2 December 2010 (UTC) table formatHi. I tweaked that table to format cleanly. Hope this is compatible with whatever the plans are to update this with actual results... Cheers, Jack Merridew 03:14, 5 December 2010 (UTC) Template:Religious text primaryA TFD has been opened on Template:Religious text primary. The TfD was opened on 2 December; so is due to close in two days time. Notification being sent to all participants in the previous discussion Wikipedia:Templates_for_deletion/Log/2008_July_30#Template:BibleAsFact. Jheald (talk) 23:21, 5 December 2010 (UTC) File:Bullets.png missing description detailsDear uploader: The media file you uploaded as File:Bullets.png is missing a description and/or other details on its image description page. If possible, please add this information. This will help other editors to make better use of the image, and it will be more informative for readers.
If the information is not provided, the image may eventually be proposed for deletion, a situation which is not desirable, and which can easily be avoided. If you have any questions please see Help:Image page. Thank you. Sfan00 IMG (talk) 22:45, 6 December 2010 (UTC)File:Previewbar.png missing description detailsDear uploader: The media file you uploaded as File:Previewbar.png is missing a description and/or other details on its image description page. If possible, please add this information. This will help other editors to make better use of the image, and it will be more informative for readers.
If the information is not provided, the image may eventually be proposed for deletion, a situation which is not desirable, and which can easily be avoided. If you have any questions please see Help:Image page. Thank you. Sfan00 IMG (talk) 12:44, 7 December 2010 (UTC)File:Ya'akov Katz banner shell.png missing description detailsDear uploader: The media file you uploaded as File:Ya'akov Katz banner shell.png is missing a description and/or other details on its image description page. If possible, please add this information. This will help other editors to make better use of the image, and it will be more informative for readers.
If the information is not provided, the image may eventually be proposed for deletion, a situation which is not desirable, and which can easily be avoided. If you have any questions please see Help:Image page. Thank you. Sfan00 IMG (talk) 12:52, 7 December 2010 (UTC)File:Texhtml sizes.png missing description detailsDear uploader: The media file you uploaded as File:Texhtml sizes.png is missing a description and/or other details on its image description page. If possible, please add this information. This will help other editors to make better use of the image, and it will be more informative for readers.
If the information is not provided, the image may eventually be proposed for deletion, a situation which is not desirable, and which can easily be avoided. If you have any questions please see Help:Image page. Thank you. Sfan00 IMG (talk) 13:07, 7 December 2010 (UTC)I noticed you are still watching this page. Ruslik_Zero 20:00, 14 December 2010 (UTC)
VileSo one election organiser names one of his colleagues and calls him "vile" in a very publicly watchlisted edit-summary. And refers to his post as "totally unconscionable" and "indefensible", accuses him of dictating to someone else, and threatens him ("how dare you"). You're sure it's not an over-reaction? Worthy of a block, IMO. Tony (talk) 14:54, 15 December 2010 (UTC)
Hello! Taskforce Jupiter needs a bot to update relevant assessment categories with the relevant template addition {{WikiProject Solar System }}. If its okay, please have the bot do this for all the articles in the following categories:
And please only these subcategories of Category Jupiter:
Thank you for your assistance...We will be sure to publicise the useful services of your bot to our group.--Novus Orator 21:44, 17 December 2010 (UTC)
File:Texhtml sizes.png listed for deletionA file that you uploaded or altered, File:Texhtml sizes.png, has been listed at Wikipedia:Files for deletion. Please see the discussion to see why this is (you may have to search for the title of the image to find its entry), if you are interested in it not being deleted. Thank you. SchuminWeb (Talk) 15:35, 8 January 2011 (UTC) I'm hoping for a Random Act of KindnessFlight Information Service Officer is an article currently entirely written by myself, and I personally believe it could be a B class article, however I can't really condone classifying it as such myself. Could you take a quick look for me, and fill out the B class check-list? I'm hoping for it to get GA at some point, and I know what a skilled hand you can be at those HM! Philip.t.day (talk) 12:58, 11 January 2011 (UTC) OversightHi, I have a question about the oversight system. I vandal-patrol and send in a few diffs if they look particularly bad. Sometimes I get responses from multiple people about the same submission, usually someone rev/del and then another person suppressing. It's a bit confusing since I'm trying to get a read on which edits should be sent in. Can you explain what's going on? Thanks, Ocaasi (talk) 12:05, 2 January 2011 (UTC)
and demonstrably ignorant correspondent,Paul B. who has often proudly identified himself here.Please explain.Charles Darnay (talk) 23:20, 11 January 2011 (UTC) PAGEONWHICHTHISMAGICWORDACTUALLYAPPEARSASTEXTHi,
Expire -> Expired?Would it make sense to change the wording on Tranche Gamme from "terms expire" to "terms expired" ? –xenotalk 14:53, 13 January 2011 (UTC)
Template talk:R from ASCIIPlease see Template talk:R from ASCII#Template & /doc code needs fixing, because something got screwed up. --Funandtrvl (talk) 20:12, 13 January 2011 (UTC) Template:Db-g2/doc has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you. Mhiji 04:27, 15 January 2011 (UTC) Template:Db-g4/doc has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you. Mhiji 04:27, 15 January 2011 (UTC) Well saidI found your comment here very well written and insightful (if not a bit depressing). Nice work. --MZMcBride (talk) 14:34, 22 January 2011 (UTC)
Wikipedia Ambassador Program is looking for new Online AmbassadorsHi! Since you've been identified as an Awesome Wikipedian, I wanted to let you know about the Wikipedia Ambassador Program, and specifically the role of Online Ambassador. We're looking for friendly Wikipedians who are good at reviewing articles and giving feedback to serve as mentors for students who are assigned to write for Wikipedia in their classes. If that sounds like you and you're interested, I encourage you to take a look at the Online Ambassador guidelines; the "mentorship process" describes roughly what will be expected of mentors during the current term, which started in January and goes through early May. If that's something you want to do, please apply! You can find instructions for applying at WP:ONLINE. The main things we're looking for in Online Ambassadors are friendliness, regular activity (since mentorship is a commitment that spans several months), and the ability to give detailed, substantive feedback on articles (both short new articles, and longer, more mature ones). I hope to hear from you soon.--Sage Ross - Online Facilitator, Wikimedia Foundation (talk) 01:01, 28 January 2011 (UTC) Template fixHello, there. Long time no see... I hope Wikipedia and the world beyond have been treating you well. There's something bugging me in {{Cite Hansard}} and I've been thinking that you might be able to fix it. As you can see from the examples on the page, there is a stray space between the date and the following punctuation mark (comma or full-stop). The template is not protected but I can't make sense of the code; I have already had to revert myself once. It's a small detail, but these are the ones which tend to distract me the most, so perhaps you can silence one of the many voices in my head crying about loose ends. Waltham, The Duke of 12:27, 6 February 2011 (UTC)
template questionHi Happy-melon. I am trying to sort out a template/categorization problem, and can't quite get me head around the noinclude feature. In {{NJ Monmouth County Freeholders}} the {{As of}} template is used for potentially dated information. The way it is working now, the template doesn't show up in the maintenance category, but all of the pages where it is transcluded do get categorized. This is completely the opposite of what should happen. How would it get turned around so that the template is categorized for updating, but not the pages containing the transclusion? Thanks. Jim Miller See me | Touch me 16:31, 8 February 2011 (UTC)
Template:LDSprojectYou are invited to join the discussion at Wikipedia talk:WikiProject Latter Day Saint movement#Template:LDSproject. This invitation is being extended because you have previously edited this template, which indicates you may have some level of interest in it. 208.81.184.4 (talk) 17:06, 9 February 2011 (UTC) (Using {{pls}}) Template:Infobox Saxophone has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Chris Cunningham (user:thumperward: not at work) - talk 12:52, 14 February 2011 (UTC) Thanks for making the prefix parameter work with creation inputboxesBrilliant - it means we now have this! Thanks. --trevj (talk) 22:09, 18 February 2011 (UTC)
CSD G12 and assertion of permissionYou and Moonriddengirl added a provision concerning assertion of permission to G12 in this edit. Prior to that time there was, according to this discussion, consensus for the position that a "credible assertion" of should defeat a G12 nom and refer it to Wikipedia:Copyright problems, even if the claimant had done nothing to give WP permission (though I'll be darned if I can find any language to that effect in the version of G12 that existed on the date of that discussion; it appears to me that they may have been having an apples–and–oranges discussion). Your version, which has persisted until now, says: "For equivocal cases (such as where there is a dubious assertion of permission, or where free-content edits overlie the infringement), please consult Wikipedia:Copyright violations." I'm confused by what you meant by "dubious" assertion in reference to assertions of permission which haven't been approved through WP processes. Is "dubious" intended to mean all such assertions or only those which aren't credible, or something else entirely? Basically, I'm trying to figure out:
Best regards, TRANSPORTERMAN (TALK) 19:14, 1 March 2011 (UTC)
InceptionYou may want to make sure your preference is indicated under the "Requested move" sub-section at Talk:Inception (film). Don't know if closing admins tend to look above the heading or not. :) Erik (talk | contribs) 03:38, 2 March 2011 (UTC) {{Framework}}Hello Happy, I was doing some work on the Beer WikiProject page and was looking at the French and Italian Wiki versions of the projects when I came upon the original template that the {{Filefolder}} and {{Q-box}} templates were based on. While I was looking at those two templates, I found that they were more versatile and decided to bring them over to the English Wiki for use in redesigning the Beer WikiProject. I have completed much of the move but need some help with some variables and other stuff.
There are some other issues that I need help with on this, but cannot think what they are. Could you help me with this monster? Thanks again for any help you may provide, --Jeremy (blah blah • I did it!) 09:45, 28 March 2011 (UTC)
I worked around the bug and fixed the alignment issues. Thank you again for you help. --Jeremy (blah blah • I did it!) 22:01, 2 April 2011 (UTC) {{Finestra Home}}Hello again! While I was working on the other template, I came across this template. It appears to have been copied verbatim from it:Template:FinestraHome. I have been Anglicizing it but came across the hiddenStructure tag in the code, could you take a look at this and update it for me? --Jeremy (blah blah • I did it!) 22:05, 2 April 2011 (UTC)
Autoconfirmed RfCA formal Request for Comment has now been started on this topic. Feel free to contribute; best, Ironholds (talk) 20:27, 3 April 2011 (UTC) Template helpHi Happy-Melon. I am calling on you out of the blue since I know you have great template technical expertise and thought you might be willing to help. There has been discussion of getting rid of the use of {{hang on}}. For implementation I came up with {{db-meta/sandbox2}}. As you can see, instead of being instructed to place a hangon tag, a direct link to a preformatted talk page discussion is provided. Meanwhile, there's an ifexists parser which places a message informing the creator they haven't edited the talk page yet (and also serves to tell admins there is no talk page at a glance)—it calls {{Hang on/notice2}} for this message. If the talk page exists, however, it calls {{Hang on/notice3}} instead, which gives a a message telling administrators to check the talk page before deleting. The problem is with the calling of these two notice templates. It works perfectly in testing—you place the db-meta/sandbox2 template on an article that has no talk page, it calls the right one and the same for an article without a talk page. However, it doesn't work at all when it passes through to the db-templates. I know because I actually added the changes to db-meta, here, and then checked a whole bunch of pages at CAT:CSD and regardless of whether they had talk pages or not, neither of the messages displayed. Maybe you can fix it/tell me what the problem is?--Fuhghettaboutit (talk) 04:29, 6 April 2011 (UTC)
Musician "navbox" templates...Hi! I have some ideas for possible improvements/additions to the musical artist navbox. I'd like to run my ideas by a technically proficient admin before I go to the Village Pump. Have I come to the right place? Cheers, Wikkitywack (talk) 06:54, 4 May 2011 (UTC)
Eww, hiddenStructure noprintHello again, I have a couple of imported Italian templates that are using the hiddenStructure noprint class, could you correct them for me? They are:
OMRLPHi there. The "presumably" was meant to refer to the minority status of the party. This link [2] suggests that they have no view either way. But where are the refs for all the others? Thanks. Martinevans123 (talk) 16:54, 7 May 2011 (UTC)
Button on template Db-disambig somehow missingHello Happy-melon, I have a question: I created an article (ACUF) where then another user inserted a tag {{db-disambig}}. I was somewhat confused because the button to contest the speedy deletion was missing. (Wikipedia:Criteria for speedy deletion says it should exist...) The button somehow gots lost between these revisions. Do you have any explanation or know how to insert the button again? (Actually I simply removed the tag because I didn't found the button, so this was not quite correct.) --Cyfal (talk) 20:09, 7 May 2011 (UTC)
New release editnoticeHello, Happy-melon. You have new messages at Template talk:New release editnotice. You can remove this notice at any time by removing the {{Talkback}} or {{Tb}} template. Yaris678 (talk) 16:40, 18 May 2011 (UTC) Hello Happy, I am trying to create a blank template to create other WikiLove templates. The issue I am having is with the substitution functions. Can you help? --Jeremy (blah blah • I did it!) 20:39, 18 May 2011 (UTC) AutopatrolledI trust you're not serious about RfA :) but is there not something to be said for giving out the 'autopatrolled' flag more liberally: tools on-wiki are supposed to be no big deal and based on the balance of trust vs. potential harm rather than some ludicrously high threshold? ╟─TreasuryTag►consulate─╢ 09:13, 20 May 2011 (UTC)
Dev questionRe your helpful response here - do you have any idea when r82285 might go live? cheers, PS can you reply on my user talk - it'll serve the additional purpose of testing the email notification system. Rd232 talk 14:18, 23 May 2011 (UTC) Headings in category pagesHi, you may recall discussions at VPT like this. As I understand it, in early March, MediaWiki was changed so that that sortkeys beginning with non-capital non-Latin letters (such as μ σ τ) should appear on cat pages under the headings of their capital forms (Μ Σ Τ etc.) instead of under "themselves". Do you recall where the proposal/discussion was made and approved for implementation? This is in relation to recent postings at Wikipedia talk:WikiProject Stub sorting#Categorization of stub categories and Template talk:Stub category#Sorting. --Redrose64 (talk) 13:07, 30 May 2011 (UTC) Template:Deprecated license has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. — This, that, and the other (talk) 05:56, 17 June 2011 (UTC) Peace is contagiousAs another admin advised, I'm following up on a WP:OVERSIGHT issue. You were involved previously redacting posts by User:Peace is contagious on his talk page. He is at it again there, making personal claims about the Baker family ... including a medical claim about one of the Baker children. I think that really crosses a line. As well, if he's genuinely so close to the family, I believe there's a COI issue and he should not be editing that article. I appreciate your help very much. -- 00:00, 1 July 2011 (UTC) Thank You!
00:00, 1 July 2011 (UTC) There is a bugzilla report that concerns this page. Marcus Qwertyus 06:27, 17 June 2011 (UTC) Template:Hpfur has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Sfan00 IMG (talk) 19:17, 21 July 2011 (UTC) Hidden navbar on Template:AsboxHowdy. In my eternal trawling of the database for odd-looking fish, I've come across the hidden navbar on the Asbox template. I'm trying to assess the usefulness of this feature; as one of either it's users or implementers, I'd like to draw your attention to Template talk:Asbox#Why the navbar ?. - TB (talk) 21:09, 2 August 2011 (UTC) Somehow it looks like I jumped the kjew in the editprotect-list. I don't know how or why. But for the record is this, where I mentioned your name. -DePiep (talk) 23:48, 4 August 2011 (UTC) Question on templatesProblem: I keep forgetting to log in before editing. I don't want to stay logged in when I'm not at the computer. Possible solution: Put a template on my Office page (the landing page I hit every time I go to Wikipedia since it's my only bookmark) that tells me whether I'm logged in or not. Are you aware of any way to do that? causa sui (talk) 21:39, 17 August 2011 (UTC)
Thanks to you both for the help! causa sui (talk) 19:06, 18 August 2011 (UTC) Invitation to New Orleans developers' meeting
Sumanah (talk) 01:08, 25 August 2011 (UTC)
Template:Copyedit progress/Base has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. — This, that, and the other (talk) 07:58, 12 September 2011 (UTC) Random portal componentCould you make an option on this that if there is no header, it will ignore it like it does with footer? TYVM --Jeremy (blah blah • I did it!) 00:47, 13 September 2011 (UTC) Problem(s) with template 'hidden' on http://incubator.wikimedia.org/wiki/Wp/cmnHi Happy-melon, I'm Dudy1 from Germany. As you perhaps know there is a Chinese Mandarin Wiki in the Wiki-incubator. But the people who work on it obviously just make up this wiki with the Chinese transcription system Pinyin. That naturally makes this wiki unreadable for non-Chinese unless - and that's my/the idea one would add the Chinese signs/characters at the same time. So I came along the template:hidden and thought one could make it usable for the cmn-wiki. I copied the source-text to the cmn-wiki and it does work a bit. But there are problems with picture-files where the hide/show bar influences the position of pictures. The other problem is, that it would be better to have the possibility of filling in the pinyin (transcription) as well as Chinese characters for longer texts (let's say a paragraph) so that one has not to count in advance how many letters fit in one row. There ist an example on my user page here: User:Dudy001#Hidden and one example page on wcm-wiki (Three Gorges Dam): Here also an example of a 'normal' wcm-article: Wp/cmn/Jiāngsū Shěng Perhaps you have an idea how to solve this problem or you know someone who does?Dudy001 (talk) 12:56, 25 September 2011 (UTC) Help:Strip markersSince I have encountered this twice in two weeks and I keep forgetting what the hell they are; thus, I created Help:Strip markers. The explanation is based on comments you made at VPT. Please review and edit mercilessly. ---— Gadget850 (Ed) talk 17:52, 16 October 2011 (UTC) MediaWiki (release|version) historyHello Happy-melon, I saw you are a sysop here, and I wanted a enwiki sysop to take action on MediaWiki version history. :) MediaWiki history used to be at MediaWiki release history, then on November 2010 it was decided to merge it to MediaWiki. Now on October 2011, Yaron K. decided to split it again [3], to MediaWiki version history (he was probably unaware of the previous title). Could you merge both histories ? They are the same 'page'. I would prefer to keep the traditional name, since I expect there will be more links to the old one (including mw.org), but that's a minor issue, as hey can be changed, and the other page should be redirected to the winner them anyway. Thanks. Platonides (talk) 21:39, 28 October 2011 (UTC)
|