< November 28 November 30 >

November 29

Template:Ctr

Template:Ctr (talk · history · transclusions · logs · subpages)

Used on only 28 10 articles. Content is <center>(({1))}</center>. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 21:57, 29 October 2014 (UTC)[reply]

Maybe redirect to ((Center))? Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 21:59, 29 October 2014 (UTC)[reply]
That seems fine as they both do the same basic thing. -Fnlayson (talk) 18:35, 30 October 2014 (UTC)[reply]
<noinclude>{| class="wikitable"
|-
|</noinclude>style="vertical-align: middle; text-align: center; (({style|))}" |(({1|))}<noinclude>
|}
((Documentation|Template:Table cell templates/doc))
</noinclude>
For a long time I wanted to make such a template because creating complex tables in Wikipedia and adhering to KISS principle isn't easy. But now, I can see this template has the perfect transclusions and perfect placement, because all transclusions are lists and tables. For more information, see Template:Table cell templates/doc.
Best regards,
Codename Lisa (talk) 18:00, 13 November 2014 (UTC)[reply]
Any template that is deleted can be repurposed. Watch the template and when it is deleted you can recreate it as you desire. --  Gadget850 talk 20:27, 13 November 2014 (UTC)[reply]
Hi. Actually, no. There is always WP:CSD#G4 to consider. Also, there would be a lot of reverts and unpleasantness if the outcome of the TfD was subst and delete. Best regards, Codename Lisa (talk) 02:28, 14 November 2014 (UTC)[reply]
The template Codename Lisa desires should not be named ((Ctr)), whose meaning is opaque. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:39, 13 November 2014 (UTC)[reply]
Hi. Have you ever visited ((section link)), ((sectionlink)) and ((link section))? Or do you happen to know the difference between ((Cite web)) and ((Cite news)) which are 99% similar? These examples show that the meaning of template names in Wikipedia is always opaque. In addition, I think it is imperative that the name in this case must be short; length deters its purpose. Plus, this template is already transcluded. What's there to complain? Best regards, Codename Lisa (talk) 02:28, 14 November 2014 (UTC)[reply]
Yes; and yes. The former templates are poorly named, but there is no deadline for fixing that, and they are not a good reason to make further mistakes in the future. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 11:30, 14 November 2014 (UTC)[reply]
This is totally off topic here; please find another venue to discuss this. There is ample precedent for templates that have been deleted and recreated with the same name but a different use; CSD G4 does not apply in this case. — Preceding unsigned comment added by Gadget850 (talkcontribs) 14:39, 14 November 2014 (UTC)[reply]
Discussion can meander a little. I for one don't really object to exchanging thoughts about the future of this template here, even it touches on stuff that's not directly related but only tangentially. YMMV but I for one find this Point Of Order posturing more harmful than a meandering discussion. Everything gets easier if we don't plaster red tape all over the place. Martijn Hoekstra (talk) 15:06, 14 November 2014 (UTC)[reply]
Unwatching discussion. --  Gadget850 talk 15:18, 14 November 2014 (UTC)[reply]
@Andy Mabbett: Hi again. Look, I am not engaging in an other stuff exists discussion; rather, I contend that no matter what you do, the template name remains largely insufficient for explaining what it does. (A good example is ((Yesno)).) But let's go straight to a resolution: Please suggest a name.
Now, as for the discussion seen earlier, here is a comparison of the resulting HTML markup:
Template Resulting markup Comment
((Center|Some text)) in a table
<table>
<tr>
<td>
<div
  class="center"
  style="width:auto; margin-left:auto; margin-right:auto;">
Some text
</div>
</td>
</tr>
</table>
Most of the times OK. It creates a block element that might not adhere to table style.
((Ctr|Some text)) – existing version
<table>
<tr>
<td>
<center>
Some text
</center>
</td>
</tr>
</table>
Some people here have argued correctly that <center>...</center> is deprecated and is no longer standard HTML. Is it important, especially when MediaWiki is not an epitome of using standard syntax?
((Ctr|Some text)) – Codename Lisa's proposal
<table>
<tr>
<td style="vertical-align: middle; text-align: center;">
Some text
</td>
</tr>
</table>
Standard, clean and within appropriate CSS scope
Best regards,
Codename Lisa (talk) 21:58, 14 November 2014 (UTC)[reply]
I would not object to the replacement of the template with Codename Lisa's code, as long as it doesn't significantly change the result. I do not yet have an opinion on making a template for the purpose, but substituting this code may be better than <center>...</center> tags. —PC-XT+ 05:45, 15 November 2014 (UTC)[reply]
  • @Mr. Stradivarius: About you VisualEditor point:
    1. They are compatible with VisualEditor, even though the first render is not WYSIWYG. (Subsequent renders look okay.) This not a template problem, but rather a VE problem, which is still in beta.
    2. This problem concerns a whole family of templates, not just this proposed code. In that light, I don't think this is a valid counter-point here. We can alert users in advance instead until the problem is solved.
    3. I also argue that the usefulness of this family of templates outweighs the quirks of VE.
Best regards,
Codename Lisa (talk) 21:49, 15 November 2014 (UTC)[reply]
Not in the OP = what was proposed; the very second post says "maybe" which I addressed already. -DePiep (talk) 15:18, 14 November 2014 (UTC)[reply]
example of use in different forms
example wikitext notes
{|
|- style="text-align: center;"
| item1 || item2
|}
inline styles sometimes mess with mobile. I think it's ok here though. It's transparent in its functioning: you can see directly what it does. You can change the behaviour by changing the inline style directly in the table. It may be simpler to use by those who know css/html don't know all the shorthand templates specific to the English wikipedia. Can be used on a row or on individual items.
{|
|- ((ctr))(under lisas proposal)
| item1 || item2
|}
inline styles; see above. You can probably guess this centers the content by its name. It's not very transparent in how this behaves (requires looking up the content of the template, and being able to understand fairly basic template syntax, as well as fairly basic HTML/CSS). It produces a string that is not self-contained HTML, which poses some problems in new feature development, It can't be ammended by additional styling on the same element. It may be simpler to use by those who know of this template, and don't know about css/html. Can be used on a row or individual items.
{|
|- class="center"
| item1 || item2
|}
uses a non-semantic CSS class - which is a bad thing (how bad? YMMV). You can probably guess this centers the content by its name. It's not very transparent in how this behaves, nor is it very opaque (requires looking up the css class in Mediawiki:Common.css, and being able to understand fairly basic CSS). Can be used on a row, but not on individual items.
{|
|-
| <center>item1</center> || <center>item2</center>
|}
uses a non-semantic HTML tag - which is a bad thing (how bad? YMMV) The tag is officially obsolete in the HTML5 standard. It's fairly obvious what this does, and very simple to change it. It can only be (easily?) used on single items.
{|
|- 
| ((center|item1)) || ((center|item2))
|}
IMO the worst of all worlds solution. Has all the drawbacks of all the other options, plus one of its own; adding in an additional block element into a table cell. It's shorter than style="text-align: center;", so it has that going for it, which is nice.
They all have their pro's and cons. I only really object to using non-semantic CSS classes to fix something that's not more broken than non-semantic CSS classes themselves are. For relatively simple styling (and this is relatively simple) I prefer using inline styles directly over using inline styles behind a template because of the improved transparency and ease of editing it. I see the use of having shorthand templates that package it, but I don't believe the the compactness of the template outweighs the drawback of indirection. For the argument that it's easier to type, I don't object to substituting such a template in. Martijn Hoekstra (talk) 15:37, 16 November 2014 (UTC)[reply]
How is .center not semantic? It depends on context; it may have no semantic relation the the content, but it surely has a functional relation. Take .nowrap... this is a functional class, and so is .center. -- [[User:Edokter]] ((talk)) 18:57, 16 November 2014 (UTC)[reply]
The entire reason <center> was depreciated an is now obsolete is that it is non-semantic. All arguments for deprecating and obsoleting the center tag apply equally well for .center (but obviously, W3C can't deprecate or obsolete user-created classes like .center, so it can never be "officially" obsolete or deprecated.) Martijn Hoekstra (talk) 20:37, 16 November 2014 (UTC)[reply]
As an aside, I'm not pretending that a semantic class (which would be the 'correct' solution IMO) is viable under current mediawiki, but inline styles or center tags are. Martijn Hoekstra (talk) 20:41, 16 November 2014 (UTC)[reply]
<center> being obsolete is not about semantics; it is about the danger that it is no longer part of HTML5, which we serve. There is a real danger of browsers no longer supporting/ignoring it when rendering HTML5; I don't care what the 'chances' are. Also note that <center> is whitelisted HTML, not wikimarkup. -- [[User:Edokter]] ((talk)) 22:57, 16 November 2014 (UTC)[reply]

we're definitely talking past one other. HTML5 doesn't have a center element because it's a non semantic element. Regardless, having this discussion over so few article transclusions is probably not worth it. I would love to continue the discussion, but this TFD is no longer the right venue. Martijn Hoekstra (talk) 08:18, 17 November 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:32, 29 November 2014 (UTC)[reply]

Template:DC Comics' shared universe films

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 19:03, 7 December 2014 (UTC)[reply]

Template:DC Comics' shared universe films (talk · history · transclusions · logs · subpages)

The fictional universe is still developing, and once it is officially titled with more films released, this template shall be revived. Moreover, no future DC comics film (except Dawn of Justice) has yet entered production. Kailash29792 (talk) 15:47, 22 November 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:53, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Audi Sport Team Joest driver timeline

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was relisted on 2014 December 7Plastikspork ―Œ(talk) 20:41, 7 December 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox beef

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was delete after replacing with ((infobox food)). If someone wants to redirect it, go ahead. Plastikspork ―Œ(talk) 19:56, 7 December 2014 (UTC)[reply]

Additional closing statement: The main argument for deleting (or redirecting) the template was the opinion that it is redundant to ((infobox food)), which was demonstrated with a sample edit. The argument against was based on the name with the opinion that "beef" is not a prepared food. However, this argument was countered by the fact that ((Infobox food)) is a redirect to ((Infobox food)). Hence, I found this argument against deletion to be weaker than the argument for deletion as no strong evidence was presented that beef is not considered food (or a prepared food). Plastikspork ―Œ(talk) 20:35, 7 December 2014 (UTC)[reply]
Template:Infobox beef (talk · history · transclusions · logs · subpages)

Redundant to ((Infobox prepared food)), as shown in this edit - indeed, the latter template offers better data fields. Only 29 transclusions. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 19:40, 15 November 2014 (UTC)[reply]

You're a smart reader — at times. Now read it as "beef is not the same as prepared food" (and don't forget to word 'prepared'). -DePiep (talk) 22:38, 17 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:32, 29 November 2014 (UTC)[reply]

At least this starts making sense. But why not ((Infobox meat))? Oh forget. This is not a merge proposal at all. DePiep (talk) 19:13, 7 December 2014 (UTC)[reply]
The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox California State Legislature

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensusPlastikspork ―Œ(talk) 20:36, 7 December 2014 (UTC)[reply]

Template:Infobox California State Legislature (talk · history · transclusions · logs · subpages)

Redundant to ((Infobox legislature)). Only 11 transclusions. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:31, 15 November 2014 (UTC)[reply]

Alternatively, ((Infobox legislative session)). Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 10:23, 19 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:32, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox United States District Court case

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensusPlastikspork ―Œ(talk) 20:40, 7 December 2014 (UTC)[reply]

Template:Infobox United States District Court case (talk · history · transclusions · logs · subpages)

Infobox template with 120 transclusions, originally created as a fork of ((Infobox court case)), to which it is redundant, as demonstrated here. A previous discussion in April this year reached no consensus, but since then the two alternative templates have been merged at ((Infobox court case)). A redirect would allow the US-DC-specific name to be retained. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 19:28, 15 November 2014 (UTC)[reply]

Note that ((Infobox U.S. Courts of Appeals case)) is already a wrapper for ((Infobox court case)). Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:26, 15 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:30, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox criminal organization

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was keepPlastikspork ―Œ(talk) 20:44, 7 December 2014 (UTC)[reply]

Template:Infobox criminal organization (talk · history · transclusions · logs · subpages)

Redundant to ((Infobox criminal organization)) ((Infobox organization)) (into which any unique and required parameters should be merged). Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 19:14, 15 November 2014 (UTC)[reply]

@Pigsonthewing: The template can't be redundant to itself. Which other template is ((Infobox criminal organization)) redundant to? Jarble (talk) 03:01, 16 November 2014 (UTC)[reply]
Sorry about that; fixed. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 10:02, 16 November 2014 (UTC)[reply]
Tiresome? You have not even started making a substantial response. Maybe it is your dismissive attitude that makes you tired. -DePiep (talk) 22:41, 17 November 2014 (UTC)[reply]

The parameters in ((Infobox criminal organization)) with no equivalent in ((Infobox organization)) are:

None of these are unique to criminal organisations; all may apply to non-criminal organisations, and their totality does not justify a separate template. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 15:45, 21 November 2014 (UTC)[reply]

I've added those which are struck through and here is a sample conversion; and another; and a third. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 16:32, 21 November 2014 (UTC)[reply]
Sigh. This is TfD. Here is where proposes a well-based merge (ins and outs in the nomination), and one awaits the discussion. What you just did is 1. start a discussion, 3. enforce your own opinion before closure. That belies your own nom statement of to be discussed. -DePiep (talk) 14:20, 22 November 2014 (UTC)[reply]
And here we are, discussing. Do you have anything constructive to add? Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 15:06, 22 November 2014 (UTC)[reply]
I've added those is not discussing. It is disrupting the discussion. I have reverted them (let me spell this out: one does not implement ones preferred outcome of a discussion beforehand. You are supposed to convince people here, not enforce. Since there are keep arguments here, you can not perform a "speedy merge"). -DePiep (talk) 11:07, 28 November 2014 (UTC)[reply]
You appear, again, to be inventing "rules" on the fly. Your assertions have no substance. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 21:01, 28 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:29, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox U.S. legislation

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensusPlastikspork ―Œ(talk) 02:26, 8 December 2014 (UTC)[reply]

Template:Infobox U.S. legislation (talk · history · transclusions · logs · subpages)
Template:Infobox legislation (talk · history · transclusions · logs · subpages)

Propose merging Template:Infobox U.S. legislation with Template:Infobox legislation.
Redundancy. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 19:10, 15 November 2014 (UTC)[reply]

Sure Andy, "a more generic template can do". Always. That one is called ((Infobox)). What is your point?
Now back to content. Can you be more specific about "The redundancy is indeed at the technical level"? What does that include, and what does it exclude? -DePiep (talk) 14:47, 17 November 2014 (UTC)[reply]
Please avoid using reductio ad absurdum/ straw men fallacies. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 15:19, 17 November 2014 (UTC)[reply]
Simple for you: don't answer the absurdums and do answer the questions. BTW, I note that this is the second time in a row here that you ignore the question. -DePiep (talk) 22:13, 17 November 2014 (UTC)[reply]
With the TfD the burden of proof (proof that this is a sound improvement) is with the proposer. However, the proposer has given a one-word reason, and that one now has shown wrong. Clearly the nomination was without any check beforehand (no technical mapping, no considerations of the judicial terms present). This way the actual, constructive merge job is left for others to work out. To compare, a preparing discussion at a talkpage leaves much more time & space for the subtleties of a merge, especially since it invites domain knowledge (those who know about judicial terms).
Third point is that I find the attitude of the nom not constructive. When I asked for clarification of the 'technical redundant' remark made, no answer was given (22:13). By then, another serious contributor already had left this discussion for being shouted at in boldface (the non-engaging response was a snark, 17:09). As a result, the boldfacing was not reconsidered, and its content was not addressed by the editor. I ask the closing admin to clearly describe how & by what that subthread (say, those with the George Orwell III contributions) is used. And I myself still have no idea what the grand idea behind this merge proposal is, nor were my queries into this answered. -DePiep (talk) 00:13, 18 November 2014 (UTC)[reply]
That would be a complete set of U.S.-specific parameters for you to copy in a US article. Putting all those legal system specifics in one template would really make that 120,000,000 figure a reality. (I thought you were making a joke). I think you are asking for a cleanup of the US template (reduce complexity, improve documentation). -DePiep (talk) 21:57, 19 November 2014 (UTC)[reply]
Or, by numbers: the two templates have 121 unique parameters (68+55 minus two double names) as I noted above. That's not a merge, that's stacking two infoboxes under one title. And all the complexities you met in the US version would be in the merged version. All of them, plus the other unneeded parameters you'll have to skip. -DePiep (talk) 22:27, 19 November 2014 (UTC)[reply]
Discussion with you is useless before you correct your dismissive snarky answers you made earlier. -DePiep (talk) 23:09, 19 November 2014 (UTC)[reply]
But how, PC-XT? This is going circular: this TfD has no proposal for the actual merge (say, by parameter mapping). A "merge" conclusion would be based on !voted opinions ("let's do it") only. Then after closure, the merge would be enforced because of that outcome, no matter what wrongs, problems & issues are introduced. Because the merging editor will always point to this closure. That is why I call this immature: there is no thorough proof of overlap, based on content analysis (domain knowledge). -DePiep (talk) 14:34, 22 November 2014 (UTC)[reply]
It would not necessarily be enforced. If a problem is found that requires more discussion, the merge wouldn't happen without that discussion. It would be nice if all the technicalities could be worked out ahead of time, but there are many templates awaiting merge with no clear mappings. Merge later, as Int21h says below, would be ok with me, as well, as there is no deadline. —PC-XT+ 23:26, 22 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:29, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox university chancellor

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensus. During the course of the discussion it was re-written as a wrapper for ((Infobox officeholder)). There may be consensus for merging it with ((Infobox officeholder)), but that template was not tagged for merging. However, feel free to renominate for merging along with another template if you still want it merged. Plastikspork ―Œ(talk) 20:51, 7 December 2014 (UTC)[reply]

Template:Infobox university chancellor (talk · history · transclusions · logs · subpages)

Redundant to ((Infobox officeholder)) (into which any unique parameters should be merged). Could be made a wrapper. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 18:24, 15 November 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:26, 29 November 2014 (UTC)[reply]

Note: This discussion has been rendered moot, as the template is now a wrapper for the officeholder infobox (I didn't realise Frietjes' rewrite, mentioned above, was live and not in their userspace - thanks, for that, Frietjes). The two missing parameter, |salary=, which may not be used, and |institutions= are catered for by the |blank= parameters. If they're not needed, all we need to decide is whether to keep the wrapper, or have a bot Subst: it.

See:

for tracking, Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 12:35, 1 December 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox university faculty

Template:Infobox university faculty (talk · history · transclusions · logs · subpages)

Redundant to ((Infobox university)) (into which the one or two unique parameters should be merged; and to which ((Infobox university school)) already redirects). Only 10 transclusions. OrphanedAndy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 18:20, 15 November 2014 (UTC)[reply]

Very convincing. -DePiep (talk) 22:54, 17 November 2014 (UTC)[reply]
Yeah, why discuss at all. You might as well close this TfD too, Andy. All other editors should apologizse for even thinking about this. -DePiep (talk) 02:31, 23 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:25, 29 November 2014 (UTC)[reply]

Template:Infobox academic division

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensusPlastikspork ―Œ(talk) 02:29, 8 December 2014 (UTC)[reply]

Template:Infobox academic division (talk · history · transclusions · logs · subpages)

Redundant to ((Infobox university)) (into which the one or two unique parameters should be merged; and to which ((Infobox university school)) already redirects). Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 18:17, 15 November 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:24, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox medical college

Template:Infobox medical college (talk · history · transclusions · logs · subpages)

Redundant to ((Infobox university)), to which ((Infobox college)) redirects. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 18:16, 15 November 2014 (UTC)[reply]

The parameter mapping should be done at first instance (note that you added it here after my post here). The original nom post left the burden to others. -DePiep (talk) 22:53, 17 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:23, 29 November 2014 (UTC)[reply]

In case anyone is still in any doubt about the redundancy of the nominated template: even before this TfD, ((Infobox university)) was already in use on:

and many more besides; in fact, on far more medical college articles then the nominated template. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 23:17, 30 November 2014 (UTC)[reply]

Template:Bgr

Template:Bgr (talk · history · transclusions · logs · subpages)

Used in only two articles. Content is ||style="text-align:right;((#if:(({1|))}|color:#000000;background:#(({1))};))"|. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:38, 1 November 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:08, 29 November 2014 (UTC)[reply]

Template:?/meta/shortname

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was delete, now that changes were made to make this obsolete, and there appear to be no objections to the changes. Plastikspork ―Œ(talk) 17:48, 7 December 2014 (UTC)[reply]

Template:?/meta/shortname (talk · history · transclusions · logs · subpages)

No meaningful content. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:35, 1 November 2014 (UTC)[reply]

I think the meta subpages are mostly used in political infoboxes. They hold information like wikidata, but allow it to be used in multiple pages. This one is probably meant to be used when the political affiliation is unknown, for some reason. —PC-XT+ 07:19, 11 November 2014 (UTC)[reply]
I'm not less confused. It's currently untranscluded, so redirecting seems odd to me. It has no content, so subst:'ing is a no-op, and it can't be used for that. Assuming this does have a use, where can I find out more about this 'class' of templates? Martijn Hoekstra (talk) 09:46, 11 November 2014 (UTC)[reply]
perhaps Special:WhatLinksHere/Template:Unknown/meta/shortname? Frietjes (talk) 17:44, 11 November 2014 (UTC)[reply]
Here is an example:
Example Election Box
Party Candidate Votes % ±%
Whig gain from ? Swing N/A
Whig gain from Swing N/A
Whig gain from (unknown) Swing N/A
The first row is, of course, the template under consideration. It was originally designed to say "Whig gain from ?" and edited to say "Whig gain from [[?|]]" (The editor may have thought [[?|]] would automagically turn into [[?|?]], but there was no real point to that, and it doesn't.) The second row has no template. (I assume this would be the replacement if this template is deleted, but if not, we can imagine the red link instead of the TfD notice in the first row.) The third row shows the use of ((Unknown/meta/shortname)), which is the closest template to this one. Though semantically inaccurate for this purpose, it gives an example of how these templates are supposed to look.
The top two now look similar, if the TfD notice is ignored, because they both generate broken code. This shows that deleting the template would be more or less the same as keeping it as is. I probably wouldn't notice the difference or care, because it is only a placeholder. I may think the code just needs to stay broken unless I take the time to investigate all of this. However, now that I have been shown that it doesn't have to be that way, I prefer the original. I wouldn't oppose a move to a name that tells the purpose of the template in English, like ((Placeholder/meta/shortname)). —PC-XT+ 04:25, 13 November 2014 (UTC)[reply]
While I attempt to understand this, I ask the closing admin to take my !vote above with a grain of salt - maybe I'm still missing something crucial. Meanwhile, is it correct to say that the intention of the Unknown and the ? is to link to Unknown and to ? respectively? How is that a good idea? Martijn Hoekstra (talk) 11:22, 13 November 2014 (UTC)[reply]
These meta templates are very confusing. The templates only set the displayable text. The link is always to the article that shares the base name of the template, which is usually a political party article title. So, ((Unknown/meta/shortname)) will link to Unknown, regardless of the template content, and ((?/meta/shortname)) will always link to ?.
I suppose Unknown is ok as a general concept, but it isn't specific enough to explain why it is linked from a political infobox. ? is even less related. Linking to Placeholder name, rather than Question mark, may be less confusing, but still not ideal. (Placeholder is a DAB page that lists political placeholders as something totally different, so this name I mentioned in my last reply would be confusing.) If we made specific articles to hold the political usage, the templates should be renamed to match them, however, I'm not sure there are enough reliable sources about either unknown political parties or the lack of reliable sources in political articles, so this seems to be a bit of a paradox. Linking to other namespaces that describe the problem would be discouraged by policy. We are basically stuck with providing all details through the link text, and choosing a generic article title as the base name of the template.
There has been talk of simplifying this system. I would think one meta template that could call one of any number of formatting templates with the political data for that party as hardcoded parameters would be better than multiple meta templates that each hold one piece of data, but some may disagree with that. —PC-XT+ 04:18, 14 November 2014 (UTC)[reply]
Its hard to understand how our readers might ever derive benfit from links to Unknown (a disambiguation page) or Question mark, from within election results tables. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 11:21, 14 November 2014 (UTC)[reply]
It seems to me a problem is that these templates are currently needed to not break ((Election box gain with party link)). The solution to that is to fix that template so that loser isn't required, not to keep these. Martijn Hoekstra (talk) 11:37, 14 November 2014 (UTC)[reply]
I don't think these hacks should be deleted until the election box templates (and any other templates that use these meta templates) properly handle these edge cases. Otherwise, it would definitely be better than linking to unrelated articles and DAB pages. I still think a redesign of them all would be better than just fixing this problem in all of them. —PC-XT+ 05:00, 15 November 2014 (UTC)[reply]
If this argument were in heavy use, I could see the point (though I'm still not sure whether or not I'd agree with it), but to keep a currently unused template so that we can start to put links to ? in loser parameters doesn't seem right to me. Martijn Hoekstra (talk) 11:17, 15 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:04, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Silver line

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 22:53, 8 December 2014 (UTC)[reply]

Template:Silver line (talk · history · transclusions · logs · subpages)

Used in only one article. Content is style="background: #e5e5e5". Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:45, 29 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:51, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Bronze line

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 22:53, 8 December 2014 (UTC)[reply]

Template:Bronze line (talk · history · transclusions · logs · subpages)

Used in only one article. Content is style="background: #eecc99". Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:35, 29 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:51, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Grey line

Template:Grey line (talk · history · transclusions · logs · subpages)

Content is style="background: #EFEFEF". Used on 192 articles, of which 185 use a redirect from ((Ligne grise)), whose name will be opaque to most editors. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:33, 29 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:50, 29 November 2014 (UTC)[reply]

Template:Gold line

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 22:53, 8 December 2014 (UTC)[reply]

Template:Gold line (talk · history · transclusions · logs · subpages)

Used in only one article. Content is style="background: #fffcaf". Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:30, 29 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:50, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Bg-c

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was Subst and delete. Jackmcbarn (talk) 04:22, 15 January 2015 (UTC)[reply]

Template:Bg-c (talk · history · transclusions · logs · subpages)

Used in only six articles. Content is style="background-color: (({1))}". Subst: and delete. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:13, 29 October 2014 (UTC)[reply]

What about keeping as a subst-only template? —PC-XT+ 10:51, 24 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:49, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox closed London station

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was merge with ((Infobox London station)) Magioladitis (talk) 22:54, 29 November 2014 (UTC)[reply]

Template:Infobox closed London station (talk · history · transclusions · logs · subpages)

Redundant to either ((Infobox UK disused station)) or ((Infobox London station)), into one or other of which the small number of differing parameters should be merged. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:11, 24 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:46, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox Paris Metro line

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was keepPlastikspork ―Œ(talk) 21:46, 7 December 2014 (UTC)[reply]

Template:Infobox Paris Metro line (talk · history · transclusions · logs · subpages)

Limited use (12 lines). Redundant to ((Infobox rail line)) (see Circle line (London Underground), for example). Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 20:01, 24 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:46, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox Taiwan station

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was delete as redundant to ((Infobox station)) Martijn Hoekstra (talk) 21:56, 14 January 2015 (UTC)[reply]

Template:Infobox Taiwan station (talk · history · transclusions · logs · subpages)

Redundant to ((Infobox station)). Could be made a wrapper of that, in the first instance. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 19:55, 24 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:45, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox London Tram

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was keepPlastikspork ―Œ(talk) 21:49, 7 December 2014 (UTC)[reply]

Template:Infobox London Tram (talk · history · transclusions · logs · subpages)

Limited use (five tram lines); replace with ((Infobox rail line)). Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 19:31, 24 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:44, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox Election Campaign

Template:Infobox Election Campaign (talk · history · transclusions · logs · subpages)

Single use, despite being created over seven years ago. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 18:56, 24 October 2014 (UTC)[reply]

Alternatively, merge with ((Infobox Iranian election campaign)) (four transclusions) and rename the latter? Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 19:00, 24 October 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:43, 29 November 2014 (UTC)[reply]

Template:Infobox Electoral reform

Template:Infobox Electoral reform (talk · history · transclusions · logs · subpages)

Single use (and that's poor quality). Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 18:54, 24 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:43, 29 November 2014 (UTC)[reply]

Template:Infobox gunpowder plotter

Template:Infobox gunpowder plotter (talk · history · transclusions · logs · subpages)

Used on only 14 biographies (where it is redundant to ((Infobox person))) and one event (where it is redundant to ((Infobox event)); or possibly ((Infobox civil conflict))). We have, AFAICT, no other infobox which is used in this fashion. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 21:03, 15 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 04:33, 12 November 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:16, 29 November 2014 (UTC)[reply]

Template:Quotation

Template:Quotation (talk · history · transclusions · logs · subpages)
Template:Quote (talk · history · transclusions · logs · subpages)

Propose merging Template:Quotation with Template:Quote.
Compare:

This uses Template:Quotation

This uses Template:Quote

Either make the styling switchable, or do away with it. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 19:33, 21 October 2014 (UTC)[reply]

  • As you know, the MOS recommends the use of both templates. If you are contemplating making Template:Quote switchable and making Template:Quotation an envelope for it, that would not require discussion at MOS. but I don't think this is what you are suggesting, nor do I think it would be a good idea. Thincat (talk) 09:51, 22 October 2014 (UTC)[reply]
  • Please see the proposal, above. It quite clearly states "Either make the styling switchable, or do away with it". Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 11:33, 22 October 2014 (UTC)[reply]
  • Your proposal is, I'm sure, clear to you but not to me. For a start I don't know whether "do away with it" refers to the style or the template and I do not know how "do away with it" corresponds to "merging". Anyway, I will not be continuing further with this conversation. Thincat (talk) 12:37, 22 October 2014 (UTC)[reply]
  • Although Andy's proposal is syntactically ambiguous, the interpretation "do away with the style" of Template:Quotation seems to mean "make Template:Quotation the same as Template:Quote" and thus reduces the proposal to "do away with the template". Also, I think that the word "or" in the proposal doesn't have to mean that the alternatives are equivalent. As I read the proposal, Andy would be happy to dump Template:Quotation but suggests merging as a way to eliminate the confusion between the template names by making the style choice a clearly understandable switch. --Rich Janis (talk) 09:15, 25 October 2014 (UTC)[reply]
  • And TfD is perfectly capable of proposing solutions not specified by the nom, as is happening below.  — SMcCandlish ¢ ≽ʌⱷ҅ʌ≼  01:57, 27 October 2014 (UTC)[reply]

This uses Template:quote box

((Imagequote2)) apparently resolves this issue. My recent proposal that such functionality be incorporated into ((Quote)), and the former then be deleted, was rejected. It has only 74 transclusions, and does not use <blockquote>. Some days I wonder why I bother... Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 13:43, 27 October 2014 (UTC)[reply]

Baby steps Andy, we're getting there, maybe not today, but we're getting there. Thank you for all the work you're putting in here. Martijn Hoekstra (talk) 13:49, 27 October 2014 (UTC)[reply]
(Re: User:Martijn Hoekstra) I have no objection to you (or anyone else trying to get this quotation mess sorted out) adding cases to my testcase page. --ais523 14:20, 27 October 2014 (UTC)
<nowiki>
blockquote.templatequote.toccolours { padding:1.3em 1.5em 1.5em 1.5em;}
.templatequote.toccolours div.templatequotecite { text-align:right; }
</nowki>

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 18:39, 29 November 2014 (UTC)[reply]

Template:Bq

Template:Bq (talk · history · transclusions · logs · subpages)

Fork of ((Quote)), to which it is redundant (and much less used). Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 10:15, 20 October 2014 (UTC)[reply]

  • I've replaced your reverts of my reverts with manual workarounds to avoid this sort of template fanaticism. Ed [talk] [majestic titan] 22:43, 20 October 2014 (UTC)[reply]
  • So you've unilaterally replaced a template with one with a completely different style, after complaining that my replacements, which used the same style, were undiscussed style changes. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 07:40, 21 October 2014 (UTC)[reply]
  • Invalid values should be corrected; it's not an argument for deletion or merger.  — SMcCandlish ¢ ≽ʌⱷ҅ʌ≼  18:49, 22 October 2014 (UTC)[reply]
  • Doesn't demonstrate that at all; the obvious intent was style=color:Blue;. Whether there's a case for using blue in that bit of content is matter for discussion on that page's talk page. The other example is also an argument for using a better font-size value, not a TfD matter. Anyway, my !vote on this is "merge to ((quote)) and redirect", below. I'm simply trying to point out that you sometimes include complaints about content, about template uses in particular cases, that aren't relevant here. They're a form of argument to emotionlook how terrible this is! the sky is falling! – and are not helpful.  — SMcCandlish ¢ ≽ʌⱷ҅ʌ≼  20:16, 22 October 2014 (UTC)[reply]

There is no formal method for indicating the markup in a blockquote is from a quoted source. It is suggested that if the footer or cite elements are included and these elements are also being used within a blockquote to identify citations, the elements from the quoted source could be annotated with metadata to identify their origin, for example by using the class attribute (a defined extensibility mechanism). (w3.org)

Here are two examples of how to use it from that proposed recommendation are:

<blockquote>
  <p>My favorite book is <cite class="from-source">At Swim-Two-Birds</cite></p>
  <footer>- <cite>Mike[tm]Smith</cite></footer>
</blockquote>

and

<figure>
 <blockquote>
  <p>The truth may be puzzling. It may take some work to grapple with.
  It may be counterintuitive. It may contradict deeply held
  prejudices. It may not be consonant with what we desperately want to
  be true. But our preferences do not determine what's true. We have a
  method, and that method helps us to reach not absolute truth, only
  asymptotic approaches to the truth — never there, just closer
  and closer, always finding vast new oceans of undiscovered
  possibilities. Cleverly designed experiments are the key.</p>
 </blockquote>
 <figcaption><cite>Carl Sagan</cite>, in "<cite>Wonder and Skepticism</cite>", from
 the <cite>Skeptical Enquirer</cite> Volume 19, Issue 1 (January-February
 1995)</figcaption>
</figure>

My point is that neither ((Bq)) nor ((Quote)) are rendered in a way that completely support the more current standards. ((quote|phrase|person|source)) has the basics but does not have a language parameter which would help screen reader accessibility with pronunciation or a class parameter which would help with semantics (however they would be used – for example identifying the text as a question or as an answer). —BoBoMisiu (talk) 21:48, 20 October 2014 (UTC)[reply]

You're not wrong, but the issues are separate. Also, ((Lang)) can be used inside ((Quote)). Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 21:52, 20 October 2014 (UTC)[reply]
Yes, inside the element but not in a simple way as a Wikipedia template parameter that would be used as lang="xxyyzz" attribute of the HTML <blockquote> element. —BoBoMisiu (talk) 22:34, 20 October 2014 (UTC)[reply]
If we routinely made quotations completely in a foreign language, then it would not be difficult to add a lang parameter to ((quote)). But language markup is principally applied to an an inline element, rather than a block, so having the flexibility to use ((lang)) for short extracts within a large quote is no disadvantage. I'd be inclined to update quote to provide the useful commonly-used features and redirect bq to it. --RexxS (talk) 11:37, 21 October 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 19:11, 29 November 2014 (UTC)[reply]

Template:Left Behind Characters

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensusPlastikspork ―Œ(talk) 02:31, 8 December 2014 (UTC)[reply]

Template:Left Behind Characters (talk · history · transclusions · logs · subpages)

Most of these characters have been merged with List of Left Behind characters; by my count, only five on the list still have their own articles. Cerebellum (talk) 16:15, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox India university ranking/General

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was delete, general housekeeping. Plastikspork ―Œ(talk) 19:59, 29 November 2014 (UTC)[reply]

Template:Infobox India university ranking/General (talk · history · transclusions · logs · subpages)
Template:Infobox India university ranking/Medical (talk · history · transclusions · logs · subpages)
Template:Infobox India university ranking/Business (talk · history · transclusions · logs · subpages)
Template:Infobox India university ranking/Global (talk · history · transclusions · logs · subpages)
Template:Infobox India university ranking/Engineering (talk · history · transclusions · logs · subpages)
Template:Infobox India university ranking/Law (talk · history · transclusions · logs · subpages)

old subpages which are no longer needed. Frietjes (talk) 14:15, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox Cambridge college

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was don't merge. Non-admin closure. Oiyarbepsy (talk) 00:52, 23 January 2015 (UTC) BTW, the nominator disputed my close at my talk page, but I declined to change my mind. Oiyarbepsy (talk) 05:16, 24 January 2015 (UTC)[reply]

Template:Infobox Cambridge college (talk · history · transclusions · logs · subpages)
Template:Infobox Oxford college (talk · history · transclusions · logs · subpages)

Propose merging Template:Infobox Cambridge college with Template:Infobox Oxford college.

Per recent TfD discussions:

-- Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 11:36, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:ElPozo Murcia FS squad

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was delete Xota FS. Plastikspork ―Œ(talk) 22:50, 8 December 2014 (UTC)[reply]

Template:ElPozo Murcia FS squad (talk · history · transclusions · logs · subpages)
Template:Xota FS squad (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:56, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Brazil Squad 1996 FIFA Futsal World Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was relisted on 2014 December 8Plastikspork ―Œ(talk) 02:24, 8 December 2014 (UTC)[reply]

Template:Brazil Squad 1996 FIFA Futsal World Championship (talk · history · transclusions · logs · subpages)
Template:Brazil Squad 1992 FIFA Futsal World Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:53, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Spain Squad 1992 FIFA Futsal World Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 21:50, 7 December 2014 (UTC)[reply]

Template:Spain Squad 1992 FIFA Futsal World Championship (talk · history · transclusions · logs · subpages)
Template:Spain Squad 1989 FIFA Futsal World Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:52, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Italy Squad 2005 UEFA Futsal Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was relisted 2003 on 2014 December 8, and delete rest. Plastikspork ―Œ(talk) 02:21, 8 December 2014 (UTC)[reply]

Template:Italy Squad 2005 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Italy Squad 2003 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Italy Squad 2001 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Italy Squad 1999 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Italy Squad 1996 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:50, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Portugal Squad 2000 FIFA Futsal World Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 23:22, 7 December 2014 (UTC)[reply]

Template:Portugal Squad 2000 FIFA Futsal World Championship (talk · history · transclusions · logs · subpages)
Template:Portugal Squad 1999 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:46, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Netherlands Squad 2014 UEFA Futsal Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 21:52, 7 December 2014 (UTC)[reply]

Template:Netherlands Squad 2014 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Netherlands Squad 2005 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Netherlands Squad 2001 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Netherlands Squad 1999 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Netherlands Squad 1996 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:44, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Belgium Squad 2003 UEFA Futsal Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 00:39, 8 December 2014 (UTC)[reply]

Template:Belgium Squad 2003 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Belgium Squad 1999 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Belgium Squad 1996 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:41, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Croatia Squad 2001 UEFA Futsal Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 02:18, 8 December 2014 (UTC)[reply]

Template:Croatia Squad 2001 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Croatia Squad 2001 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Croatia Squad 1999 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:37, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Czech Republic Squad 2003 UEFA Futsal Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 02:13, 8 December 2014 (UTC)[reply]

Template:Czech Republic Squad 2003 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Czech Republic Squad 2001 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:35, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Russia Squad 2001 UEFA Futsal Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was delete 2001 and both 1996 squad boxes, relisting the 1999 box. Plastikspork ―Œ(talk) 02:07, 8 December 2014 (UTC)[reply]

Template:Russia Squad 2001 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Russia Squad 1999 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Russia Squad 1996 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Russia Squad 1996 FIFA Futsal World Cup (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:33, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Ukraine Squad 2003 UEFA Futsal Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 00:49, 8 December 2014 (UTC)[reply]

Template:Ukraine Squad 2003 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Ukraine Squad 2001 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Ukraine Squad 1996 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:30, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Slovenia Squad 2010 UEFA Futsal Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 02:01, 8 December 2014 (UTC)[reply]

Template:Slovenia Squad 2010 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)
Template:Slovenia Squad 2003 UEFA Futsal Championship (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:27, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Iran Squad 1996 FIFA Futsal World Championship

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was relisted on 2014 December 8Plastikspork ―Œ(talk) 02:12, 8 December 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Ukrainian Women's Futsal Premiere League teamlist

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was delete Martijn Hoekstra (talk) 11:04, 8 December 2014 (UTC)[reply]

Template:Ukrainian Women's Futsal Premiere League teamlist (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:21, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Extra-Liga teamlist

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 22:36, 8 December 2014 (UTC)[reply]

Template:Extra-Liga teamlist (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:20, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Futsal in Turkey

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensusPlastikspork ―Œ(talk) 22:40, 8 December 2014 (UTC)[reply]

Template:Futsal in Turkey (talk · history · transclusions · logs · subpages)
Template:Futsal in Switzerland (talk · history · transclusions · logs · subpages)
Template:Futsal in Slovakia (talk · history · transclusions · logs · subpages)
Template:Futsal in Serbia (talk · history · transclusions · logs · subpages)
Template:Futsal in Romania (talk · history · transclusions · logs · subpages)
Template:Futsal in Papua New Guinea (talk · history · transclusions · logs · subpages)
Template:Futsal in Norway (talk · history · transclusions · logs · subpages)
Template:Futsal in Kazakhstan (talk · history · transclusions · logs · subpages)
Template:Futsal in Japan (talk · history · transclusions · logs · subpages)
Template:Futsal in Hungary (talk · history · transclusions · logs · subpages)
Template:Futsal in Georgia (talk · history · transclusions · logs · subpages)
Template:Futsal in Finland (talk · history · transclusions · logs · subpages)
Template:Futsal in Austria (talk · history · transclusions · logs · subpages)
Template:Futsal in Denmark (talk · history · transclusions · logs · subpages)
Template:Futsal in the Czech Republic (talk · history · transclusions · logs · subpages)
Template:Futsal in Croatia (talk · history · transclusions · logs · subpages)
Template:Futsal in Bulgaria (talk · history · transclusions · logs · subpages)
Template:Futsal in Bosnia and Herzegovina (talk · history · transclusions · logs · subpages)
Template:Futsal in Belarus (talk · history · transclusions · logs · subpages)
Template:Futsal in Armenia (talk · history · transclusions · logs · subpages)
Template:Futsal in Fiji (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:19, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Pan American Games Futsal

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensusPlastikspork ―Œ(talk) 22:28, 8 December 2014 (UTC)[reply]

Template:Pan American Games Futsal (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 11:13, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:2010–11 Nemzeti Bajnokság I (men's futsal) teamlist

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 22:27, 8 December 2014 (UTC)[reply]

Template:2010–11 Nemzeti Bajnokság I (men's futsal) teamlist (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 10:59, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Georgian Futsal Super League

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was deletePlastikspork ―Œ(talk) 22:12, 8 December 2014 (UTC)[reply]

Template:Georgian Futsal Super League (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 10:57, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Futsal at the Southeast Asian Games

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensusPlastikspork ―Œ(talk) 22:11, 8 December 2014 (UTC)[reply]

Template:Futsal at the Southeast Asian Games (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 10:56, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Salisbury City F.C. managers

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensus to deletePlastikspork ―Œ(talk) 20:13, 7 December 2014 (UTC)[reply]

Template:Salisbury City F.C. managers (talk · history · transclusions · logs · subpages)
Template:Hayes F.C. managers (talk · history · transclusions · logs · subpages)
Template:Farsley Celtic A.F.C. managers (talk · history · transclusions · logs · subpages)
Template:Eastbourne Borough F.C. managers (talk · history · transclusions · logs · subpages)
Template:Antigua Barracuda FC managers (talk · history · transclusions · logs · subpages)
Template:Bishop Auckland F.C. managers (talk · history · transclusions · logs · subpages)

Per WP:NENAN - fewer than five blue links excluding the parent article . Not a useful aid to navigation at the moment. Fenix down (talk) 10:36, 29 November 2014 (UTC)[reply]

  • Please recheck. All templates have links to only two or three managers. No need for navigation whatsoever between such a small list of people in such circumstances. Fenix down (talk) 15:20, 29 November 2014 (UTC)[reply]
    rechecked and they all have two or more blue links, and are part of a series. Frietjes (talk) 17:39, 29 November 2014 (UTC)[reply]
The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Infobox T&W Metro station

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was keep for now. Plastikspork ―Œ(talk) 20:10, 7 December 2014 (UTC)[reply]

Template:Infobox T&W Metro station (talk · history · transclusions · logs · subpages)

Redundant. Only 60 transclusions. Could be replaced by, merged into, or made a module of, ((Infobox GB station)), or even ((Infobox station)). Many of these stations are former mainline stations. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 19:52, 24 October 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Martijn Hoekstra (talk) 21:01, 17 November 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 01:38, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

University ranking templates

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was no consensusPlastikspork ―Œ(talk) 20:03, 7 December 2014 (UTC)[reply]

Template:Infobox Australian university ranking (talk · history · transclusions · logs · subpages) (2 transclusions)
Template:Infobox Canadian university rankings (talk · history · transclusions · logs · subpages) (43 transclusions)
Template:Infobox India university ranking (talk · history · transclusions · logs · subpages) (82 transclusions)
Template:Infobox Japanese university ranking (talk · history · transclusions · logs · subpages) (19 transclusions)
Template:Infobox UK university rankings (talk · history · transclusions · logs · subpages) (101 transclusions)
Template:Infobox US university ranking (talk · history · transclusions · logs · subpages) (277 transclusions)
Template:Infobox business school rankings (talk · history · transclusions · logs · subpages) (67 transclusions)
Template:Infobox technical university ranking (talk · history · transclusions · logs · subpages) (5 transclusions)
Template:Infobox world university ranking (talk · history · transclusions · logs · subpages) (60 transclusions)

Propose merging all into Template:Infobox world university ranking; perhaps rename to ((Infobox university ranking)); perhapas make a module of ((Infobox University)).
No need for separate templates. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 15:08, 21 November 2014 (UTC)[reply]

Thanks for the link; I suspected something like that might already exist. I'm afraid that I don't completely agree with it.
On a more specific note, if these templates are merged then the proposed merger to "Infobox world university ranking" is inappropriate because many of these rankings are not world rankings but national or regional. A more generic "university rankings" would seem more appropriate and accurate. I also request that if these templates are merged then specific examples for the most used defunct templates be explicitly provided in the documentation to help editors since many of the parameters of the new template would only apply to institutions in specific countries, especially those specific to U.S. institutions. It would help editors cut through the chaff. ElKevbo (talk) 19:55, 21 November 2014 (UTC)[reply]

Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 01:33, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

Template:Welcome-anon-border

The following discussion is an archived debate of the proposed deletion of the template below. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.

The result of the discussion was merge to a single template with no "swappable" style or content. The exact procedure is open to anyone performing the merge, but care must be taken that Twinkle doesn't break. Martijn Hoekstra (talk) 12:38, 9 December 2014 (UTC)[reply]

Template:Welcome-anon-border (talk · history · transclusions · logs · subpages)
Template:Welcome-anon (talk · history · transclusions · logs · subpages)

Propose merging Template:Welcome-anon-border with Template:Welcome-anon.
Very similar. The bordered version has clearer language. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 18:20, 21 November 2014 (UTC)[reply]


Relisted to generate a more thorough discussion so a clearer consensus may be reached.
Please add new comments below this notice. Thanks, Plastikspork ―Œ(talk) 01:30, 29 November 2014 (UTC)[reply]

The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made on the appropriate discussion page (such as the template's talk page or in a deletion review). No further edits should be made to this section.