Misplaced Pages

Template talk:Series overview: Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editNext edit →Content deleted Content addedVisualWikitext
Revision as of 10:53, 3 January 2025 editAdamstom.97 (talk | contribs)Extended confirmed users, Page movers, File movers, New page reviewers, Pending changes reviewers43,721 edits Undid revision 1267037105 by Adamstom.97 (talk) sortedTag: Undo← Previous edit Revision as of 23:34, 3 January 2025 edit undoSolidest (talk | contribs)Extended confirmed users18,979 edits Unknown parameters check: replyTag: CDNext edit →
Line 64: Line 64:
:::::@] seems the 5 pages left in the category all have valid usages. Care to take a look at how to refine the regex for them? ] (]) 07:17, 27 August 2024 (UTC) :::::@] seems the 5 pages left in the category all have valid usages. Care to take a look at how to refine the regex for them? ] (]) 07:17, 27 August 2024 (UTC)
::::::@], I've cleaned up some of these pages and only "The Marvelous Misadventures of Flapjack" and "Talking Tom & Friends" remain. To fix the first one, we need to add a possible "Specials" letter where it's still missing. To do this, replace <code>+</code> part with <code>+S?</code> in regexp 2 3 16 19 20. And as for the second case - I'm still sure it's a bug in the module code, which should be fixed there instead of being added to exceptions. Because there is a parameter order logic that is described in the documentation, but the code in this single complex case only works with non-standard order when you change the standard order of part of the season letter and season number. I described this problem . ] (]) 12:09, 27 August 2024 (UTC) ::::::@], I've cleaned up some of these pages and only "The Marvelous Misadventures of Flapjack" and "Talking Tom & Friends" remain. To fix the first one, we need to add a possible "Specials" letter where it's still missing. To do this, replace <code>+</code> part with <code>+S?</code> in regexp 2 3 16 19 20. And as for the second case - I'm still sure it's a bug in the module code, which should be fixed there instead of being added to exceptions. Because there is a parameter order logic that is described in the documentation, but the code in this single complex case only works with non-standard order when you change the standard order of part of the season letter and season number. I described this problem . ] (]) 12:09, 27 August 2024 (UTC)
:Hey @], could you please make these 5 fixes with regexes regarding "S?", I wrote above? ] (]) 23:34, 3 January 2025 (UTC)


== Template-protected edit request on 24 June 2024 == == Template-protected edit request on 24 June 2024 ==

Revision as of 23:34, 3 January 2025

Template:Series overview is permanently protected from editing because it is a heavily used or highly visible template. Substantial changes should first be proposed and discussed here on this page. If the proposal is uncontroversial or has been discussed and is supported by consensus, editors may use {{edit template-protected}} to notify an administrator or template editor to make the requested edit. Usually, any contributor may edit the template's documentation to add usage notes or categories.

Any contributor may edit the template's sandbox. Functionality of the template can be checked using test cases.


This is the talk page for discussing improvements to the Series overview template.
Archives: 1, 2, 3Auto-archiving period: 30 days 
This template does not require a rating on Misplaced Pages's content assessment scale.
It is of interest to the following WikiProjects:
WikiProject iconTelevision
WikiProject iconThis template is within the scope of WikiProject Television, a collaborative effort to develop and improve Misplaced Pages articles about television programs. If you would like to participate, please visit the project page where you can join the discussion. For how to use this banner template, see its documentation.TelevisionWikipedia:WikiProject TelevisionTemplate:WikiProject Televisiontelevision

Unknown parameters check

This edit request has been answered. Set the |answered= or |ans= parameter to no to reactivate your request.

Please add a module to check unknown parameters to this template. I made a list of parameters + regular expressions for all cases, which should cover ~98% of cases. I have already checked this list in Russian wikipedia and fixed about a dozen errors. There may be some unusual cases that will also need to be added to the exceptions or otherwise corrected in the articles. (Perhaps the list of expressions itself could be simplified somewhere).

{{#invoke:check for unknown parameters|check
| unknown = {{main other|]}}
| ignoreblank = 
| preview = Page using ] with unknown parameter "_VALUE_"
| showblankpositional = 1
| allreleased | caption | country | dontclose | id | multiseries | network | network_transclude | released | seasonT | series | seriesT | width
| regexp1 = aux
| regexp2 = aux+?
| regexp3 = color+S??
| regexp4 = end+S??
| regexp5 = episodes+S??
| regexp6 = info
| regexp7 = info+S?
| regexp8 = info_transclude
| regexp9 = linkR+S?
| regexp10 = linkT+S??
| regexp11 = link+S??
| regexp12 = network+?
| regexp13 = postaux+?
| regexp14 = postaux
| regexp15 = start+S??
| regexp16 = aux+?span
| regexp17 = info+span
| regexp18 = infospan+S
| regexp19 = network+?span
| regexp20 = postaux+?span
}}

Solidest (talk) 23:13, 4 March 2024 (UTC)

Added. Gonnym (talk) 06:07, 5 March 2024 (UTC)
Thanks! I'll clean up some of them and add to the list later on. Solidest (talk) 11:24, 5 March 2024 (UTC)
|part= (with number and special ability) needs to be added to this. - Favre1fan93 (talk) 21:17, 5 March 2024 (UTC)
Also some stuff with |network= with numbers, "S" and letters. See List of The Office (British TV series) episodes as an example. - Favre1fan93 (talk) 21:47, 5 March 2024 (UTC)
Thanks, I've been collecting all the cases too. So here's the final update, 7 & 12 to replace, and 21 to add:
| regexp7 = info+S??
| regexp12 = network+S??
| regex21 = part+S?
The only problem left is with the Talking Tom & Friends article, which I think needs to be fixed in the module code rather than added to the tracking. I will write about it a bit later. Solidest (talk) 00:15, 6 March 2024 (UTC)
Added fixes to template. Gonnym (talk) 08:58, 6 March 2024 (UTC)
@Solidest seems the 5 pages left in the category all have valid usages. Care to take a look at how to refine the regex for them? Gonnym (talk) 07:17, 27 August 2024 (UTC)
@Gonnym, I've cleaned up some of these pages and only "The Marvelous Misadventures of Flapjack" and "Talking Tom & Friends" remain. To fix the first one, we need to add a possible "Specials" letter where it's still missing. To do this, replace + part with +S? in regexp 2 3 16 19 20. And as for the second case - I'm still sure it's a bug in the module code, which should be fixed there instead of being added to exceptions. Because there is a parameter order logic that is described in the documentation, but the code in this single complex case only works with non-standard order when you change the standard order of part of the season letter and season number. I described this problem here. Solidest (talk) 12:09, 27 August 2024 (UTC)
Hey @Alex 21, could you please make these 5 fixes with regexes regarding "S?", I wrote above? Solidest (talk) 23:34, 3 January 2025 (UTC)

Template-protected edit request on 24 June 2024

This edit request to Module:Series overview has been answered. Set the |answered= or |ans= parameter to no to reactivate your request.

Please do the changes changes made to this module's sandbox to the main module. This is more right from an accessibility perspective. -MPGuy2824 (talk) 07:45, 24 June 2024 (UTC)

 Done. @TheDoctorWho: this should be address now if you need to go back to your FLC about it. - Favre1fan93 (talk) 17:43, 24 June 2024 (UTC)

Tripped across a (trivial) typo

The description of the transclusion display parameters contains the typo "translcuding". Nothing major, exactly, but I thought it deserved pointing out all the same. DybrarH (talk) 01:49, 3 September 2024 (UTC)

Fixed. The documentation page at Template:Series overview/doc is editable to all. -- Alex_21 TALK 07:55, 3 September 2024 (UTC)

Misplaced Pages talk:WikiProject Television § Released: Airing vs streaming

 You are invited to join the discussion at Misplaced Pages talk:WikiProject Television § Released: Airing vs streaming. Editors are still needed to weigh in on this. This is affects the {{Series overview}} and {{Episode table}}. — YoungForever 13:35, 10 October 2024 (UTC)

Categories: