W
Active Editors
Back to Profile

User Talk: Zackmann08

Server-side rendered snapshot of this editor's Wikipedia talk page discussions.

{{User:Zackmann08/Header}}
{{Talk header}}
{{bots|optout=orfud}}
{{User:MiszaBot/config
| algo = old(10d)
| archive = User talk:Zackmann08/Archive %(counter)d
| counter = 19
| maxarchivesize = 150K
| archiveheader = {{Automatic archive navigator}}
| minthreadstoarchive = 1
| minthreadsleft = 2
}}
{|align=right
|{{User contrib|{{User:Zackmann08/count/edit}}}}
|-
|{{User MAWcustom|{{User:Zackmann08/count/rank}}}}
|}

Help



I tried to add parameters to Template:Infobox Grand Lodge/doc ↗. It didn't work. Guylaen (talk) 08:11, 1 July 2026 (UTC)

:All you did was add them to the documentation, not to the actual template... '''<span style="color:#00d5ff !important">Zack</span><span style="color:#007F94 !important">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange !important">What I been doing</span> ↗</sub>) 15:29, 1 July 2026 (UTC)

Simplify infobox code?



Hi, Zackmann. I noticed {{diff|Template:Infobox valley|diff=1362139295|oldid=1349233920|label=your edits to Infobox valley}} may be overly complex. The new code is
<pre>
| image2 = {{#invoke:Location map|infobox_pushpin_map
| pushpin_map = {{if empty|{{{map|}}}|{{{pushpin_map|}}}}}
| pushpin_relief = {{if empty|{{{relief|}}}|{{{pushpin_relief|}}}|1}}
| pushpin_label = {{if empty|{{{label|}}}|{{{pushpin_label|}}}|{{{name|}}} }}
| pushpin_label_position = {{if empty|{{{label_position|}}}|{{{pushpin_label_position|}}}}}
| coordinates = {{if empty|{{{coords|}}}|{{{coordinates|}}}}}
}}
</pre>
However, infobox_pushpin_map() calls getArgs() from Module:Arguments ↗. By default, the frame argument is taken before the parent argument. This means you shouldn't need to pass in, e.g., {{para|pushpin_map}}. I think it is sufficient to have:
<pre>
| image2 = {{#invoke:Location map|infobox_pushpin_map
| pushpin_map = {{{map|}}}
| pushpin_relief = {{if empty|{{{relief|}}}|{{{pushpin_relief|}}}|1}}
| pushpin_label = {{if empty|{{{label|}}}|{{{pushpin_label|}}}|{{{name|}}} }}
| pushpin_label_position = {{{label_position|}}}
| coordinates = {{{coords|}}}
}}
</pre>
because if the passed argument is empty, getArgs() will look to see if there is a non-empty parameter passed to Template:Infobox valley ↗ with the same name. You may wish to test this out in the sandbox. — hike395 (talk) 04:37, 2 July 2026 (UTC)

:That is super good to know! I will test that out now. To be clear, the code is only temporary while the clean is underway... Pretty soon it will look MUCH cleaner, see this diff ↗ comparing the sandbox. But I really appreciate you pointing this out. Going to play around with it right now.
:Also, if you have any suggestions for improvements to the new infobox_pushpin_map method, PLEASE share them. Either here directly or on the talk page for the module. Really looking for any feedback on it. '''<span style="color:#00d5ff !important">Zack</span><span style="color:#007F94 !important">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange !important">What I been doing</span> ↗</sub>) 04:40, 2 July 2026 (UTC)
::This will save me some time... Though now I have to make sure not to overlook things in my AddCheckForDeprecatedParameters which automatically pulls parameters from {{tl|if empty}} statements... May stick to the same method I'm using for my own sanity, but in any event, I greatly appreciate you showing me this! Super good to know. '''<span style="color:#00d5ff !important">Zack</span><span style="color:#007F94 !important">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange !important">What I been doing</span> ↗</sub>) 04:45, 2 July 2026 (UTC)
{{od|2}} I've been getting pings from your edits at User:Zackmann08/sandbox. It's not surprising those don't work. User:Zackmann08/sandbox2 calls {{para|pushpin_relief}} which is always set to 1 (hence is always non-empty). Thus getArgs() never falls back to looking at how User:Zackmann08/sandbox sets {{para|pushpin_relief}}. — hike395 (talk) 04:57, 2 July 2026 (UTC)

:AHHH!!! That makes total sense. I seem to remember that with Module:Infobox mapframe ↗ you can do that sort of logic where you set a default value (say for {{para|mapframe-marker|car}}) in the Infobox but it can still be overridden in the transclusions. Guessing that uses different logic? '''<span style="color:#00d5ff !important">Zack</span><span style="color:#007F94 !important">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange !important">What I been doing</span> ↗</sub>) 05:00, 2 July 2026 (UTC)
:For example, don't get why Special:Diff/1362142173/1362143820 ↗ works then... As I said, I'm guessing that the logic for Infobox mapframe is just different? '''<span style="color:#00d5ff !important">Zack</span><span style="color:#007F94 !important">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange !important">What I been doing</span> ↗</sub>) 05:03, 2 July 2026 (UTC)
{{od|2}} It's the same logic (in Module:Arguments ↗) --- to trigger it, User:Zackmann08/sandbox2 would have to be something like
<pre>
{{Infobox
| image2 = {{#invoke:Location map|infobox_pushpin_map
| pushpin_map = {{{map|}}}
| pushpin_relief = {{{flooby_nooby|}}}
}}}}
</pre>
and then User:Zackmann08/sandbox could either have
<pre>
{{User:Zackmann08/sandbox2
| coordinates = {{coords|1|N|1|W}}
| pushpin_map = Africa
| pushpin_relief = 0
| mapframe = yes
| mapframe-marker = airport
}}
</pre>
or
<pre>
{{User:Zackmann08/sandbox2
| coordinates = {{coords|1|N|1|W}}
| pushpin_map = Africa
| flooby_nooby = 0
| mapframe = yes
| mapframe-marker = airport
}}
</pre>
Note that the getArgs code doesn't let you specify a non-empty default argument (like "1"). It just lets you wire up an alternative argument without having to use {{tl|if empty}}. If you want a default argument in the outer template, you still need {{tl|if empty}} in User:Zackmann08/sandbox2:
<pre>
{{Infobox
| image2 = {{#invoke:Location map|infobox_pushpin_map
| pushpin_map = {{{map|}}}
| pushpin_relief = {{if empty|{{{flooby_nooby|}}}|{{{pushpin_relief|}}}|1}}
}}}}
</pre>
which is why I only changed two of the {{tl|if empty}} in my original suggestion. — hike395 (talk) 12:56, 2 July 2026 (UTC)

Mahfiruz Hatun



Hi there, there is some issue In the article in Mahfiruz hatun, it shows that she died in 1610/1612. But prince Bayezid ( her son ) birth year was 1612, her another son prince hussein birth year was 1614-15, prince suleiman 1615. Her daughters princes geverhan, princess zeynep their birth year also indicates that Mahfiruz didn't died in 1610 or 1612. And eyup centre was the place where she was buried. The article shows that it was built by Osman the young in 1618. But before this version of "Mahfiruz hatun" article there was a link of eyup centre. Where they declared that it was built by Mahfiruz. Also about the name. Mahfiruz hatun was also known as Mahfiruz sultan. Source is Turkish Wikipedia, Ibrahim pecevi books. But it's also removed. As it's semi protected page. Edit war would be a bad thing. One user already got warning for that issue but still the war was going in last two days. So, I want to show it in ur concern. Have a good day. Habib hu 123 (talk) 12:29, 2 July 2026 (UTC)

Edit summaries



Hello, your recent JWB edits have a broken link in the edit summary, which you should probably fix. (https://en.wikipedia.org/w/index.php?title=Christmas_Valley_Sand_Dunes&diff=prev&oldid=1362233268 ↗) <span style="font-family:serif">– a wondrous raven (talk)</span> 17:43, 2 July 2026 (UTC)

:{{facepalm}} THANK YOU!!!! '''<span style="color:#00d5ff !important">Zack</span><span style="color:#007F94 !important">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange !important">What I been doing</span> ↗</sub>) 17:45, 2 July 2026 (UTC)

converts with hyphens



Hi, User:Zackmann08. Your recent infobox cleanups have introduced 3 area errors (I fixed one, have left the other two for now).

When it said something like "300-acre" you retained the hyphen, confusing the template.

Example: https://en.wikipedia.org/w/index.php?title=Fort_Dupont_Park&diff=1362560670&oldid=1355151685&variant=en

I think you edit by script a lot, so I figure bringing this to your attention beats silently cleaning up behind you.. though it does give me something to do! Polunbus (talk) 21:26, 4 July 2026 (UTC)

:Well shit. That sucks. Really appreciate you catching these! Sorry about that. '''<span style="color:#00d5ff !important">Zack</span><span style="color:#007F94 !important">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange !important">What I been doing</span> ↗</sub>) 23:22, 4 July 2026 (UTC)

Template:Infobox sailboat specifications



The deprecation code you did at https://en.wikipedia.org/w/index.php?title=Template%3AInfobox_sailboat_specifications&diff=1320852663&oldid=1318497834 ↗ is completed ↗, but that 2025 seems to not represent your current (better) style of underscores, so you might want to revisit it :) Gonnym (talk) 06:32, 5 July 2026 (UTC)

:Oh for sure! It is on the loooonnngggg list! '''<span style="color:#00d5ff !important">Zack</span><span style="color:#007F94 !important">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange !important">What I been doing</span> ↗</sub>) 15:03, 5 July 2026 (UTC)

Subst url template



Hi, I wanted to let you know that your User:Zackmann08/subst url template/script appeared to cause a few CS1 errors in reference 6 of Andasibe-Mantadia National Park ↗. I'm not experienced in this sort of thing, but it may be because the url in question ↗ is dead. I went ahead and fixed the errors and added an archived copy. BlaqWiedow (talk) 02:21, 6 July 2026 (UTC)

:That is so odd. I have no idea how that error slipped through. Really appreciate you both fixing it AND taking the time to notify me of the issue. Thank you! '''<span style="color:#00d5ff !important">Zack</span><span style="color:#007F94 !important">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange !important">What I been doing</span> ↗</sub>) 02:41, 6 July 2026 (UTC)

Hobson's Choice (1920 film)



Why was Hobson's Choice (1920 film) reverted:? I just added an film infobox. Savolya (talk) 13:16, 6 July 2026 (UTC)

:My edit summary clearly explained the issue as did the numerous warnings that have been placed on your talk page and that you have ignored. '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 15:53, 6 July 2026 (UTC)

Please slow down



I've noticed that you are doing a massive cleanup of many infobox templates. While that is very admirable, I think you need to slow down and be more careful. More specifically:
#You're putting a notice of cleanup on the Talk pages of the templates, then immediately removing parameters from articles. This is not giving enough time for any editors to object. As we've discussed before, I think you should wait the typical 7 days after giving notice before applying a broad fix to many articles. Editors could get angry that their voices are not being heard.
#I notice that you're applying some stylistic differences when you apply the cleanup, but those stylistic differences are not being described on the Talk page. I only noticed them when I went in the cleanup the code. For example, you have been setting {{para|pushpin_relief|1}} as default on {{tl|Infobox park}} and {{tl|Infobox forest}}, and have removed {{para|default_width}} and {{para|max_width}} from both of those infoboxes. There was no indication at either the Talk page or the edit summary of those style tweaks. When you do these massive deprecated parameter cleanups, I would strongly encourage you to stick to only the removal, and leave stylistic tweaks to a separate edit.
Thanks for all of your work! — hike395 (talk) 03:36, 7 July 2026 (UTC)

:As always, I greatly appreciate your feedback. Always learn something from you.
:# I think we need to remember that I am not "removing" anything... I am renaming parameters. I will again note that in cases where information is actually being '''removed''' from pages, those discussions take much longer ({{tl|Infobox settlement}}, {{tl|Infobox sportsperson}} and {{tl|Infobox person}} all come to mind). Uncontroversial renaming of parameters to conform to MOS:INFOBOXNAME ↗ and other aspects of MOS I do not feel require 7 days of waiting for people to object to something that is stated in the MOS. That being said... I do think there are some cases where I have gotten overzealous. A return to focusing on JUST one thing at a time might be better. I do want you to understand, the double edged sword I have been faced with. I have had other editors actually take me to ANI for doing multiple passes on the same Infobox and {{tq|crowding their watchlist with useless edits}} (direct quote). So I absolutely want to listen to your concerns, but at the same time, worry about pissing off people on the other side. No matter what, someone is always going to be unhappy. That being said, as always, I greatly appreciate your approach of coming here to seek discussion.
:# The relief map was an oversight and a mistake. Appreciate you changing those back. While I have no objection to restoring the default width and max width code, you should be aware that what you restored, does not actually work or do anything... See Special:Permalink/1362950794 ↗ and Special:Diff/1362950650/1362950748 ↗. You will have to add those to the Module code around Module:Location_map#L-529 ↗... Which I have no objection to, but don't see a need for... Happy to help you there if you need it but frankly you are better with Lua code than I...
:Again, thanks for the message! Not being passive aggressive or anything. I genuinely value your feedback. Looked over some of the fixes you did to some of the updates I made... I didn't know that {{tl|If first display both}} was a thing. Will be adding that in the future. Also, if you want to look over the Infoboxes I have updated, the full list is at User:Zackmann08/pp.
:Thanks! -- '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 04:20, 7 July 2026 (UTC)
::You're making a good point that you're not removing functionality. When I look at WP:TPECON ↗, the closest analogy I can see is {{tq|The addition of new parameters, if they'll significantly change the template's usage or display. This includes adding numbered parameters as aliases for named parameters, adding additional numbered parameters to ones already in use}} under "Changes that require at least some discussion, or at least several days passing with no one commenting on your proposal". It's not exactly the same. I don't think this is {{tq|Replacement of deprecated code or templates used within a given template, provided said deprecation is based on a prior consensus}}, because it changes the interface to the template.
::I can't find the ANI notice about you crowding someone's watchlist. Yes, your edits are lighting up my watchlist, but it's easy to fix. I simply add "hide non-minor edits" to as a temporary extra filter and *boom*, problem solved. Not sure why this would require an admin.
::There is code in Module:Location map ↗ to hanndle {{para|default_width}} and {{para|max_width}}: I checked before adding my comment. If it doesn't work, there may be a bug somewhere. I will take a closer look. Thanks for testing! — hike395 (talk) 11:53, 7 July 2026 (UTC)
{{od|2}} There is a design flaw in the infobox_pushpin_map() as written: when the new code was added, it only handles parameters that are meant to be editor-specified (like {{para|pushpin_mark_size}}). It currently cannot handle "hidden" parameters (like {{para|float}} or {{para|default_width}}) that were never meant to be parameters of the outer infobox --- those are currently ignored. As written, those hidden parameters have to be fixed as constants (e.g., {{para|float|center}}). There may be a way to hack around this problem, let me investigate. — hike395 (talk) 12:33, 7 July 2026 (UTC)
:{{Fixed}} I made a kludge in infobox_pushpin_map() where I call getArgs() twice, once with frameOnly=true, once without. This allows us to grab {{para|float}}, {{para|default_width}}, etc. ''only'' from the actual module invocation, not exposing them as outer infobox parameters.
:Unfortunately, there doesn't seem to be any test code for infobox_pushpin_map(), so I tested it in {{tl|Infobox forest/sandbox}}.
:I am a bit worried about parameters like {{para|image_overlay}}. Those may be currently used in infoboxes, but are now silently thrown away. — hike395 (talk) 13:10, 7 July 2026 (UTC)
::Sorry just getting back online. Thanks for all your work on this. Question for ya though, since this new functionality is designed to '''just be used in the Infobox''', is there a scenario where you would ever want {{para|float}} or {{para|border}} to be set as anything other than 'center' and 'infobox'? Those I intentionally hardcoded... The default and max widths I overlooked and love your solution there. '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 15:08, 7 July 2026 (UTC)
::Hike just to follow up on a few other points.
::* Re the ANI and watchlist... I 100000% agree with your take, I'm just telling you the issues I've run into in the past and why I was doing things the way I was. Your point about hiding minor edits is completely valid and I agree. People are just.... difficult sometimes. That being said, you and I are in agreement. This DOES NOT require admin intervention, just saying I got taken to ANI because of it. {{Facepalm}}
::* Re the {{para|image_overlay}}, I have so far done something like 75,000 pages as part of this cleanup and I have so far found a grand total of FOUR pages using an alternative image for the pushpin map. All four were using Israel's relief map, the exact one that could simply be obtained by using {{para|pushpin_relief|1}}. For these, my workflow is such that any uses of alternative image will pop as unknown parameters in a way that gets my attention so I have to manually go in and fix them. If I find even one case where a legit alt map is being used, I will re-evaluate adding that functionality. Thus far, just haven't found the need to do so but no reason it cannot be added later '''if needed'''. When I finally get to {{tl|Infobox settlement}}, that will be the real test. So we shall see!
::'''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 16:00, 7 July 2026 (UTC)

Infobox artwork



following your update to statue of Alan Turing, Bletchley Park ↗, I thought "what on earth use is a pushpin map of Buckinghamshire? We need a mapframe zoomed at about 15 or 16 to show where it is in the park!" But mapframe is not supported in this infobox {{frown}}. Somebody forgot outdoor sculpture.

Would you add it to your long "to do" list, please? 𝕁𝕄𝔽 (talk) 19:59, 7 July 2026 (UTC)

:It is supported... '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 20:00, 7 July 2026 (UTC)
::i did {{code|1= mapframe-zoom=}} instead of {{code|1=mapframe_zoom=}} {{frown}}. My apoligies. 𝕁𝕄𝔽 (talk) 20:13, 7 July 2026 (UTC)
:::{{para|mapframe-zoom}} is correct (for now). But I bet you forgot to first set {{para|mapframe|yes}}... '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 20:15, 7 July 2026 (UTC)
::::Also, don't be sorry, JUST DO IT RIGHT NEXT TIME! {{sarcasm}} {{wink}} '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 20:16, 7 July 2026 (UTC)
:::::No, didn't forget maprframe= , just kneejerked to this error message

:::::* {{red|Preview warning: Page using Template:Infobox artwork with unknown parameter "mapfrarme-zoom"}}'
:::::either way...
:::::* '{{red|Preview warning: Page using Template:Infobox artwork with unknown parameter "mapfrarme_zoom"}}'
:::::Am I being especially dim? 𝕁𝕄𝔽 (talk) 20:30, 7 July 2026 (UTC)
::::::read that again... SLOWLY... mapfra'''{{red|r}}'''me_zoom... '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 20:32, 7 July 2026 (UTC)
:::::::{{u|JMF}} you are not spelling the word "mapframe" correctly... You have spelled it "maprframe" and "mapfrarme"... '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 20:35, 7 July 2026 (UTC)
:::::::"Should have gone to Specsavers ↗"
:::::::I don't even have the rn=m (RN=M) excuse. 𝕁𝕄𝔽 (talk) 20:38, 7 July 2026 (UTC)

Uh-oh...



Something's broken, friend; see here ↗. What parameters are you removing/renaming? I'm glad to clean up (I'm seeing maybe 9 of these errors), but I can't tell what should go/stay. Jessicapierce (talk) 03:02, 8 July 2026 (UTC)

:{{facepalm}} GRRRRRRRR. Aborting... Can you revert the errors? I borked something. As usual, thank you. '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 03:05, 8 July 2026 (UTC)
::The GOAL was to merge the location parameters onto one line. Got on a roll and got complacent. Obviously logic wasn't as sound as I thought it was. Thanks for saving my behind as usual. '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 03:11, 8 July 2026 (UTC)
:::Ha, no worries, I got your back. It really was only ten or so, among your bazillion fixes. I bookmarked everything and will set them right. It's kind of fun - these are articles I never would have visited otherwise, so now I get to read about sedimentary rock! :) Jessicapierce (talk) 14:56, 8 July 2026 (UTC)
::::HA!! Well glad you appreciate it. '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 14:58, 8 July 2026 (UTC)
:::::Got em! Jessicapierce (talk) 16:03, 8 July 2026 (UTC)

Personal attack



Hi
I have been personaly attacked for giving my opinion per source ↗. What should I do? Panam2014 (talk) 22:25, 8 July 2026 (UTC)

:I would recommend WP:ANI ↗. '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 01:51, 9 July 2026 (UTC)

Speedy deletion declined: :Rodney Chapman ↗


Hello Zackmann08. I am just letting you know that I declined the speedy deletion of :Rodney Chapman ↗, a page you tagged for speedy deletion, because of the following concern: Winning the first European Truck Racing Championship ↗ is a cresdible claim of importance. Use WP:AFD ↗. Thank you. Whpq (talk) 22:00, 10 July 2026 (UTC)

Less gravedancing, please



Thanks. <span class="gfSarekSig">SarekOfVulcan (talk)</span> 02:03, 11 July 2026 (UTC)

:I know you're right. Just felt it was warranted given what a jerk they were being, and given that I was responding to their calling me a {{tq|fucking clown}}. In any case, won't be going back to their talk page. '''<span style="color:#00d5ff">Zack</span><span style="color:#007F94">mann</span>''' (<sup>Talk to me ↗</sup>/<sub><span style="color:orange">What I been doing</span> ↗</sub>) 02:05, 11 July 2026 (UTC)