This user prefers to receive notifications. Please use {{ping}} or {{reply to}} when you reply to him on other pages. No talkback messages are needed.

Template for adding further information from the Co-Cathedral of Santa Maria Assunta (Giovinazzo) page

Hi GoingBatty, thank you first of all for your contributions to the Co-Cathedral of Santa Maria Assunta (Giovinazzo) page, I need to ask you if we can remove the ''further information'' template from the page, since it now has a lot of data added to its internal, with the appropriate citations. GiovAngri (talk) 11:32, 24 January 2025 (UTC)[reply]

@GiovAngri: Hi there! I replaced the {{more citations needed}} template with {{more footnotes needed}}. There are plenty of sources listed in the Bibliography, Notes, and External links sections. However, there are still several paragraphs that have no footnotes. Keep up the good work, and happy editing! GoingBatty (talk) 17:45, 24 January 2025 (UTC)[reply]
Thank you, I will improve the article, then we will contact you for the update. Best regards. GiovAngri (talk) 17:59, 24 January 2025 (UTC)[reply]
Dear GoingBatty, I wanted to ask your opinion on the progress of the article that I am continuing to quote, do you think it's okay now with the notes that I have inserted in recent days? GiovAngri (talk) 12:16, 3 February 2025 (UTC)[reply]
@GiovAngri: Hi there! I see there are still some paragraphs without footnotes (i.e. inline citations). Keep up the good work! GoingBatty (talk) 20:02, 3 February 2025 (UTC)[reply]
All right, proceed. GiovAngri (talk) 08:53, 4 February 2025 (UTC)[reply]
@GiovAngri: I'm hoping YOU will proceed by adding inline citations to the paragraphs without footnotes. Happy editing! GoingBatty (talk) 17:40, 4 February 2025 (UTC)[reply]

Question from StoryWriterWhit (18:36, 2 February 2025)

I was wondering if you could help me. I uploaded some images as a contribution and diligently adding file names, titles, and descriptions I somehow ended up copying the same information from y first image to all images. How do I find them so I can edit the titles and descriptions and can I change the file name? --StoryWriterWhit (talk) 18:36, 2 February 2025 (UTC)[reply]

@StoryWriterWhit: Hi there! It looks like you uploaded the images to Wikimedia Commons. You can see all the images you uploaded and all the edits you made there at commons:Special:Contributions/StoryWriterWhit. Happy editing! GoingBatty (talk) 19:32, 2 February 2025 (UTC)[reply]
Thank you. Additionally question, is Wikimedia Commons the optimal location for them? I want to add them to associated pages; Comic Con, actor pages, etc. Is there a better place for that than commons? StoryWriterWhit (talk) 19:36, 2 February 2025 (UTC)[reply]
@StoryWriterWhit: Presuming these are photos that you took with your own camera, then the advantage of posting them on Commons is that they can be used for the English Wikipedia AND other language Wikipedias. Just make sure you read the Licensing section of each page and you agree with those terms. GoingBatty (talk) 20:01, 2 February 2025 (UTC)[reply]

Michele Hetrick moved to draftspace

Thanks for your contributions to Michele Hetrick. Unfortunately, I do not think it is ready for publishing at this time because it needs more sources to establish notability. I have converted your article to a draft which you can improve, undisturbed for a while.

Please see more information at Help:Unreviewed new page. When the article is ready for publication, please click on the "Submit for review" button at the top of the page OR move the page back. Patre23 (talk) 06:18, 5 February 2025 (UTC)[reply]

Phab T99974 / commons category

Hi, I think that if you use the below as an AWB C#4.0 custom module it should cover scenarios 1 to 3 on the commons cat ticket you raised i.e. a duplicate to be be removed. I am removing the first template call, on the basis that commons cat is documented as going in external links section, so the 2nd instance is more likely to be there. Let me know how you get on. If this is all good then it can be incorporated as an AWB genfix later. I can later look at the (more complicated) scenarios of template merging to commons cat inline. Rjwilmsi 20:37, 6 February 2025 (UTC)[reply]

// v2 - remove template, 1st instance only, optionally with newline
// v3 - additionally suppport merging 2 to 5 different parameters to {{commons category multi}}
// v4 - limit is 12 not 6 params, strip Category: namespace, move to External links section, handle templates with second param same as first
private static readonly Regex CommonsCatR = new Regex(Tools.NestedTemplateRegex(new[] { "Commons category", "Commons cat" }) + "(\r\n)?");
        public string ProcessArticle(string ArticleText, string ArticleTitle, int wikiNamespace, out string Summary, out bool Skip)
        {
            Skip = false;
            Summary ="";
            string OriginalArticleText = ArticleText;
            List<string> commonsCat = CommonsCatR.Matches(ArticleText).Cast<Match>().Select(m =>
            {
                string t = m.Value.Trim();
                // harmonize template name (for casing differences/redirects)
                t = Tools.RenameTemplate(t, "commons category", false);
                
                // if no args then first arg is equivalent to article title
                if (Tools.GetTemplateArgumentCount(t, false) == 0)
                    return t.Substring(0, t.Length - 2) + "|" + ArticleTitle + "}}";
                return t;
            }).ToList();
            
            // one template can be removed if both are the same (treating no first arg as first arg article title)
            if (commonsCat.Count == 2 && commonsCat.Distinct().Count() == 1)
            {
                    // remove first instance, plus newline if present
                    Match m = CommonsCatR.Match(ArticleText);
                    Tools.ReplaceOnce(ref ArticleText, m.Value, "");
                    Summary = "Removed duplicate {{commons category}}";
            }
            else if (commonsCat.Count > 1 && commonsCat.Count < 13)
            {
                // evaluate for merging to a {{commons category multi}}
                string res = @"{{commons category multi";
                bool allSingleArg = true;
                bool allSameParameters = true;
                
                Dictionary<string, string> namedParams = new Dictionary<string, string>();
                
                Summary = "";
                bool firstT = true;
                foreach (string x in commonsCat)
                {
                    int argCount = Tools.GetTemplateArgumentCount(x, false);
                    if(argCount == 0)
                    {
                        res += "|" + ArticleTitle;
                    }
                    else if(argCount == 1)
                    {
                        string link = Tools.GetTemplateArgument(x, 1);
                        if(Namespace.Determine(link) == Namespace.Category)
                            link = Tools.RemoveNamespaceString(link);
                        res += "|" + link;
                    }
                    
                    if (argCount > 1 && !Tools.GetTemplateArgument(x, 2).Contains("="))
                    {
                        string link = Tools.GetTemplateArgument(x, 1);
                        if(link == Tools.GetTemplateArgument(x, 2))
                        {
                            if(Namespace.Determine(link) == Namespace.Category)
                                link = Tools.RemoveNamespaceString(link);
                            res += "|" + link;
                        }
                        else
                            allSingleArg = false;
                    }
                    
                    if(firstT == true)
                    {
                        namedParams = Tools.GetTemplateParameterValues(x);
                    }
                    else
                    {
                        // named params compare
                        Dictionary<string, string> thisParams = Tools.GetTemplateParameterValues(x);
                        
                        if(namedParams.Count != thisParams.Count)
                            allSameParameters = false;
                        foreach(KeyValuePair<string, string> kvp in namedParams)
                        {
                            if(!thisParams.ContainsKey(kvp.Key))
                                allSameParameters = false;
                            else
                            {
                                string myval;
                                thisParams.TryGetValue(kvp.Key, out myval);
                                
                                if(myval != kvp.Value)
                                    allSameParameters = false;
                            }
                        }
                    }
                    firstT = false;
                }
                
                // can only handle {{commons cat}} with zero or one positional argument
                // any named arguments must not be in conflict
                if(allSingleArg == true && allSameParameters == true)
                {
                    // all were (zero or) single arg, can combine
                    int mycount = 1;
                    ArticleText = CommonsCatR.Replace(ArticleText, c => {
                        
                        if(mycount == commonsCat.Count) // final one
                        {
                            foreach(KeyValuePair<string, string> kvp in namedParams)
                            {
                                res += "|" + kvp.Key + "=" + kvp.Value;
                            }
                            
                            return res + "}}" + (c.Value.EndsWith("\r\n") ? "\r\n" : "");
                        }
                        else
                        {
                            mycount++;
                            return "";
                        }
                    });
                    
                    Summary = "Merged multiple {{commons category}}";
                    ArticleText = MoveToExternalLinks(ArticleText);
                    return ArticleText;
                }
                
            }
            return OriginalArticleText;
        }
        
         private static readonly Regex ExternalLinksSection = new Regex(@"^== *External [Ll]ink(s)? *==\s+", RegexOptions.Multiline);
         private static readonly Regex CommonsCatMulti = new Regex(Tools.NestedTemplateRegex(new[] { "Commons category multi" }) + @"\s+");
        
        
        public static string MoveToExternalLinks(string ArticleText)
        {
            string CCM = CommonsCatMulti.Match(ArticleText).Value;
            
            string ExtLinks = ExternalLinksSection.Match(ArticleText).Value;
            
            // nothing to do if no Commons category multi template or no External links section
            if(CCM.Length == 0 || !ExternalLinksSection.IsMatch(ArticleText))
                return ArticleText;
            
            Tools.ReplaceOnce(ref ArticleText, CCM, "");
            
            ArticleText = ExternalLinksSection.Replace(ArticleText, m => m.Value + CCM);
            
         return ArticleText;   
        }

Rjwilmsi 20:37, 6 February 2025 (UTC)[reply]

@Rjwilmsi - Thank you! I tried your code against the first 100 articles in the 2025-02-01 database dump that match {{commons category *(\|.*)?}}[\w\W]*{{commons category *(\|.*)?}}
Thanks! GoingBatty (talk) 00:12, 7 February 2025 (UTC)[reply]
OK, try the edited v2 for the both/skipped issues. Rjwilmsi 07:51, 7 February 2025 (UTC)[reply]
@Rjwilmsi - I had to change the two instances of lowercase "articleText" to uppercase "ArticleText". I ran the v2 module against the first 200 articles in the dump.
  • Every article listed in my previous post worked fine now.
  • I also saved the edits that left {{commons category|articlename}} instead of {{commons category}}, because they display the same way to the reader.
  • Since I reviewed more articles, there were more edits the module successfully made.
  • There were no false positives or articles that should have been fixed but were not.
Thank you! GoingBatty (talk) 23:34, 7 February 2025 (UTC)[reply]
OK, try revised v3 which should additionally support scenarios 4 to 7. Rjwilmsi 12:29, 8 February 2025 (UTC)[reply]
@Rjwilmsi: I ran the v3 module against the last 100 articles in the dump, just to make sure the new code didn't negatively impact how v1 and v2 worked.
Will the new code be inserted after the call to WP:AWB/TR, so {{commons cat}} and other redirects will first be changed to {{commons category}}? Thanks for your continued work on this! GoingBatty (talk) 23:58, 8 February 2025 (UTC)[reply]
@Rjwilmsi - Hmmm, different code will be needed to run this on category pages that contain {{commons category}} with no parameters - try Category:Old World rats and mice. GoingBatty (talk) 00:09, 9 February 2025 (UTC)[reply]
Mainspace only for now. The above mainspace scenarios are handled - but Topography of Spain is because of 2nd param not position/left (for named params I only check all matching, not what they are specifically). What isn't handled is where a call to commons cat uses the optional second param as an override different display name. Seems to me commons cat multi doesn't support that, so those are skipped. Rjwilmsi 08:46, 9 February 2025 (UTC)[reply]
@Rjwilmsi: I used your module to handle all the instances in category space, and updated Category:Old World rats and mice manually.
When I looked at Topography of Spain, I saw |position=left but missed the optional second parameter. It's weird that someone used the optional second parameter to be the same as the first parameter. I updated this article manually. Thanks! GoingBatty (talk) 15:59, 9 February 2025 (UTC)[reply]

Question from Joshua Uchegbu on 2023 Abia State gubernatorial election (22:48, 10 February 2025)

The page was disclosed in code format. Is there a way I can get it to be editable in normal essay format. --Joshua Uchegbu (talk) 22:48, 10 February 2025 (UTC)[reply]

@Joshua Uchegbu: Hi there! I see you're editing on a mobile device. If you click on the pencil icon to edit and the source code is shown, click the pencil icon again and choose "Visual editing". See also Help:Mobile access. Happy editing! GoingBatty (talk) 22:55, 10 February 2025 (UTC)[reply]

Orphan Tag: Afi Kpodo

Hi, thanks a lot for the manual clean up. I am however trying to establish an understanding with the orphan tag placed on the article in question. In my opinion it fulfils the de-orphan obligation somehow. However, I may be wrong and I may need further explanation on it. Appreciate. Duncanoff (talk) 20:58, 12 February 2025 (UTC)[reply]

@Duncanoff: Hi there! I added the {{orphan}} template to the Afi Kpodo article yesterday. Today you added links from Akwaaba and OLA Girls Senior High School (Ho) to the Afi Kpodo article, which means it is no longer an orphan. Therefore, you may now remove the {{orphan}} template from the Afi Kpodo article. Thanks, and happy editing! GoingBatty (talk) 22:42, 12 February 2025 (UTC)[reply]
Thank you too. Are you by any chance a reviewer? Duncanoff (talk) 22:49, 12 February 2025 (UTC)[reply]
@Duncanoff: Yes I am. GoingBatty (talk) 22:51, 12 February 2025 (UTC)[reply]
Do you think you could review it for me? Duncanoff (talk) 22:54, 12 February 2025 (UTC)[reply]
@Duncanoff: Oh, I misunderstood your question. I am a WP:AFC reviewer, but not a member of the WP:New pages patrol. I will make some tweaks to the Afi Kpodo article for you.
Did you actually take this photo File:Afima_kpodo.jpg, or did you copy it from somewhere like Instagram? GoingBatty (talk) 23:02, 12 February 2025 (UTC)[reply]
Alright. I will appreciate that. About the photo, the author of the image granted me permission to use it as mine - i am not the original author. Feel free to make the necessary adjustments. Thank you. Duncanoff (talk) 23:23, 12 February 2025 (UTC)[reply]
@Duncanoff: You can't claim it as your own work if it's not your own work. The author of the image may upload it to the English Wikipedia or Wikimedia Commons if they wish. The fact that you know the author makes me wonder if you have a conflict of interest. If so, you must disclose it on your user page. GoingBatty (talk) 23:27, 12 February 2025 (UTC)[reply]
Thanks Duncanoff (talk) 23:37, 12 February 2025 (UTC)[reply]
@Duncanoff: I see that Draft:Afi Adzo Kpodo was declined last year. I'm not sure the additional references you added to the article will be sufficient. GoingBatty (talk) 23:32, 12 February 2025 (UTC)[reply]

Hey

You busy?


Ferngully Treeswoodknow (talk) 05:37, 14 February 2025 (UTC)[reply]

@Treeswoodknow: Hi there. What's up? GoingBatty (talk) 05:39, 14 February 2025 (UTC)[reply]
Tall people and clouds Treeswoodknow (talk) 05:40, 14 February 2025 (UTC)[reply]
@Treeswoodknow: Well, I guess trees would know. GoingBatty (talk) 06:00, 14 February 2025 (UTC)[reply]
@Treeswoodknow: Or, maybe trees WOOD know. GoingBatty (talk) 06:00, 14 February 2025 (UTC)[reply]

New AWB snapshot

I've created a new AWB snapshot at rev 12900. Rjwilmsi 18:16, 15 February 2025 (UTC)[reply]

@Rjwilmsi: Thank you very much. I've been updating Wikipedia:AutoWikiBrowser/History as you've been releasing revisions for the requests I've made. I haven't included everything, as I haven't followed every change, and I didn't include little fixes to bigger changes you've made. Hope you're enjoying your weekend! GoingBatty (talk) 17:24, 16 February 2025 (UTC)[reply]
@Rjwilmsi: This new revision takes a looooooooong time to load a page. I tried restarting my maching but it didn't help. Are you having the same issue? GoingBatty (talk) 17:34, 16 February 2025 (UTC)[reply]
In general, no, otherwise I wouldn't have released it. How long does it take on page A - that snapshot is a debug build so you could paste in the end of Log.txt which has timings per genfix. Is your machine showing AWB using CPU while page is loading (i.e. a regex/perf issue) or not (i.e. could be a network issue)? If it's only specific pages then which ones? Rjwilmsi 17:42, 16 February 2025 (UTC)[reply]
@Rjwilmsi: It took about 50 seconds to load the article A, and I didn't have any module and didn't enable the find/replace rules. I don't see Log.txt. How do you enable it and in which Windows folder can it be found? I closed MS Edge and then it only took 30 seconds to load the same article, so maybe it's something on my side. Task Manager says AWB takes about 340 MB of memory when it's doing nothing. GoingBatty (talk) 18:24, 16 February 2025 (UTC)[reply]
Log file is in same folder as AutoWikiBrowser.exe. Do you have a setup whereby AWB has restricted access to local folder? How about CPU usage during the loading of the article? I can do a Release snapshot build if we can't get to the bottom of why this one is problematic for you. Rjwilmsi 18:53, 16 February 2025 (UTC)[reply]
@Rjwilmsi: Moving the AWB folder from my Program Files folder to the top level of my C drive helped a lot. The CPU usage is way down and the log file below was created when I loaded the article A and pressed start. Don't understand these messages. GoingBatty (talk) 19:27, 16 February 2025 (UTC)[reply]
object: ApiEdit::HttpPost
Time: 2025-02-16 14:23:37.331
Message: https://en.wikipedia.org/w/api.php?format=xml&action=query&meta=tokens&type=login
object: API::Edit meta/tokens
Time: 2025-02-16 14:23:37.451
Message: <?xml version="1.0"?><api batchcomplete=""><query><tokens logintoken="5d01d857af3005fd4506e80c88d5cdd667b23b36+\" /></query></api>
object: ApiEdit::HttpPost
Time: 2025-02-16 14:23:37.451
Message: https://en.wikipedia.org/w/api.php?format=xml&action=login
object: API::Edit action/login
Time: 2025-02-16 14:23:38.384
Message: <?xml version="1.0"?><api><warnings><main xml:space="preserve">Subscribe to the mediawiki-api-announce mailing list at <https://lists.wikimedia.org/postorius/lists/mediawiki-api-announce.lists.wikimedia.org/> for notice of API deprecations and breaking changes. Use Special:ApiFeatureUsage to see usage of deprecated features by your application.</main><login xml:space="preserve">Main-account login via "action=login" is deprecated and may stop working without warning. To continue login with "action=login", see Special:BotPasswords. To safely continue using main-account login, see "action=clientlogin".</login></warnings><login result="Success" lguserid="11555324" lgusername="GoingBatty" /></api>
object: ApiEdit::CheckForErrors warnings
Time: 2025-02-16 14:23:38.394
Message: Subscribe to the mediawiki-api-announce mailing list at <https://lists.wikimedia.org/postorius/lists/mediawiki-api-announce.lists.wikimedia.org/> for notice of API deprecations and breaking changes. Use Special:ApiFeatureUsage to see usage of deprecated features by your application.
Main-account login via "action=login" is deprecated and may stop working without warning. To continue login with "action=login", see Special:BotPasswords. To safely continue using main-account login, see "action=clientlogin".
object: ApiEdit::HttpPost
Time: 2025-02-16 14:23:38.396
Message: https://en.wikipedia.org/w/api.php?format=xml&action=query
object: Tools::GetHTML
Time: 2025-02-16 14:23:38.541
Message: https://en.wikipedia.org/w/index.php?title=Wikipedia:AutoWikiBrowser/CheckPage/VersionJSON&action=raw
object: ApiEdit::HttpGet
Time: 2025-02-16 14:23:38.703
Message: https://en.wikipedia.org/w/index.php?title=Project:AutoWikiBrowser/CheckPageJSON&action=raw
object: ApiEdit::HttpGet
Time: 2025-02-16 14:23:38.883
Message: https://en.wikipedia.org/w/index.php?title=Project:AutoWikiBrowser/Config&action=raw
object: ApiEdit::HttpGet
Time: 2025-02-16 14:23:39.014
Message: https://en.wikipedia.org/w/api.php?action=query&format=xml&&list=categorymembers&cmtitle=Category:Articles+with+underscores+in+the+title&cmlimit=max&rawcontinue=1
object: MainForm
Time: 2025-02-16 14:23:39.028
Message: Starting
object: ApiEdit::HttpGet
Time: 2025-02-16 14:23:39.065
Message: https://en.wikipedia.org/w/api.php?format=xml&action=query&converttitles=&prop=info%7crevisions&meta=tokens%7cuserinfo%7cnotifications&type=csrf%7cwatch%7crollback&intoken=edit%7cprotect%7cdelete%7cmove%7cwatch&titles=A&inprop=protection%7cwatched%7cdisplaytitle&rvprop=content%7ctimestamp&curtimestamp=&assert=user&uiprop=hasmsg&notprop=count
object: ApiEdit::CheckForErrors warnings
Time: 2025-02-16 14:23:39.320
Message: Subscribe to the mediawiki-api-announce mailing list at <https://lists.wikimedia.org/postorius/lists/mediawiki-api-announce.lists.wikimedia.org/> for notice of API deprecations and breaking changes. Use Special:ApiFeatureUsage to see usage of deprecated features by your application.
Unrecognized parameter: intoken.
Because "rvslots" was not specified, a legacy format has been used for the output. This format is deprecated, and in the future the new format will always be used.
object: ApiEdit::HttpGet
Time: 2025-02-16 14:23:39.348
Message: https://en.wikipedia.org/w/api.php?format=xml&action=query&converttitles=&prop=info%7crevisions&meta=tokens%7cuserinfo%7cnotifications&type=csrf%7cwatch%7crollback&intoken=edit%7cprotect%7cdelete%7cmove%7cwatch&titles=Project%3aAutoWikiBrowser%2fTemplate+redirects&inprop=protection%7cwatched%7cdisplaytitle&rvprop=content%7ctimestamp&curtimestamp=&redirects=&assert=user&uiprop=hasmsg&notprop=count
object: ApiEdit::CheckForErrors warnings
Time: 2025-02-16 14:23:39.656
Message: Subscribe to the mediawiki-api-announce mailing list at <https://lists.wikimedia.org/postorius/lists/mediawiki-api-announce.lists.wikimedia.org/> for notice of API deprecations and breaking changes. Use Special:ApiFeatureUsage to see usage of deprecated features by your application.
Unrecognized parameter: intoken.
Because "rvslots" was not specified, a legacy format has been used for the output. This format is deprecated, and in the future the new format will always be used.
object: ApiEdit::HttpGet
Time: 2025-02-16 14:23:39.704
Message: https://en.wikipedia.org/w/api.php?format=xml&action=query&converttitles=&prop=info%7crevisions&meta=tokens%7cuserinfo%7cnotifications&type=csrf%7cwatch%7crollback&intoken=edit%7cprotect%7cdelete%7cmove%7cwatch&titles=Project%3aAutoWikiBrowser%2fDated+templates&inprop=protection%7cwatched%7cdisplaytitle&rvprop=content%7ctimestamp&curtimestamp=&redirects=&assert=user&uiprop=hasmsg&notprop=count
object: ApiEdit::CheckForErrors warnings
Time: 2025-02-16 14:23:39.894
Message: Subscribe to the mediawiki-api-announce mailing list at <https://lists.wikimedia.org/postorius/lists/mediawiki-api-announce.lists.wikimedia.org/> for notice of API deprecations and breaking changes. Use Special:ApiFeatureUsage to see usage of deprecated features by your application.
Unrecognized parameter: intoken.
Because "rvslots" was not specified, a legacy format has been used for the output. This format is deprecated, and in the future the new format will always be used.
object: ApiEdit::HttpGet
Time: 2025-02-16 14:23:39.896
Message: https://en.wikipedia.org/w/api.php?format=xml&action=query&converttitles=&prop=info%7crevisions&meta=tokens%7cuserinfo%7cnotifications&type=csrf%7cwatch%7crollback&intoken=edit%7cprotect%7cdelete%7cmove%7cwatch&titles=Project%3aAutoWikiBrowser%2fRename+template+parameters&inprop=protection%7cwatched%7cdisplaytitle&rvprop=content%7ctimestamp&curtimestamp=&redirects=&assert=user&uiprop=hasmsg&notprop=count
object: ApiEdit::CheckForErrors warnings
Time: 2025-02-16 14:23:40.211
Message: Subscribe to the mediawiki-api-announce mailing list at <https://lists.wikimedia.org/postorius/lists/mediawiki-api-announce.lists.wikimedia.org/> for notice of API deprecations and breaking changes. Use Special:ApiFeatureUsage to see usage of deprecated features by your application.
Unrecognized parameter: intoken.
Because "rvslots" was not specified, a legacy format has been used for the output. This format is deprecated, and in the future the new format will always be used.
object: ApiEdit::HttpGet
Time: 2025-02-16 14:23:40.534
Message: https://en.wikipedia.org/w/api.php?action=query&format=xml&list=backlinks&bltitle=A&blnamespace=0&bllimit=10&blredirect&blfilterredir=nonredirects&rawcontinue=1
object: PageLoaded
Time: 2025-02-16 14:23:48.299
Message: TheArticle.ArticleText length is 33712
GoingBatty (talk) 19:27, 16 February 2025 (UTC)[reply]

Question from Boiysaki on Wikipedia:Bots/Requests for approval/NewNewpluck (10:53, 16 February 2025)

newpkluck --Boiysaki (talk) 10:53, 16 February 2025 (UTC)[reply]

@Boiysaki: I don't understand why you submitted this request with no information. GoingBatty (talk) 17:13, 16 February 2025 (UTC)[reply]

Please tell me where {{Use shortened footnotes}} should be sorted

See 1906 French Grand Prix as an example. Rjwilmsi 18:23, 17 February 2025 (UTC)[reply]

@Rjwilmsi: Since it doesn't display anything in the article, I suggest moving it to be with templates relating to English variety and date format (level 7). Thanks! GoingBatty (talk) 19:11, 17 February 2025 (UTC)[reply]
Thanks, rev 12910. Rjwilmsi 10:04, 18 February 2025 (UTC)[reply]

If the use of {{coord}} is OK on AirTrain JFK then please tell me more

You would presumably now say that {{coord}} shouldn't be moved when inside a wikitable. But what other exceptions are there, as on T386304 you didn't mention that use, nor does the template documentation? Rjwilmsi 18:51, 17 February 2025 (UTC)[reply]

Japanese aircraft carrier Akagi is another example. Rjwilmsi 18:52, 17 February 2025 (UTC)[reply]
@Rjwilmsi: I only opened this bug request because AWB was moving the template from above the infobox to below the infobox. So how about restricting the move so it only moves the template when it's in the zeroth section? That would prevent changes on the two articles you mentioned. Also, Template:Coord/doc states "The {{coord}} template may also be placed within an infobox, instead of at the bottom of the article", so don't move the template in those situations either. Thanks! GoingBatty (talk) 19:07, 17 February 2025 (UTC)[reply]
Thanks, rev 12911. Rjwilmsi 10:05, 18 February 2025 (UTC)[reply]
No tags for this post.