I need to find out the template type of a Wikipedia page entry. Up to this point, I've relied on parsing the results from a query to Wikipedia, which works to a point.

For instance, if I search for Joel Spolsky, I can regex match 'infobox' and find out that this page refers to Infobox Person.

But the trouble is, there is no consistent naming scheme for Wikipedia template types, and 'infobox' is often not used in the name of the template.

For instance, if I search for the Pittsburgh Steelers I can't reliably find out a way to extract the NFL team template from the results.

Is anyone aware of a way to query the template type of a Wikipedia page? Thanks :)

link|improve this question

1  
AFAIK, there is no such thing as "the template type of a Wikipedia page". A page can contain many independent, unrelated templates. – Oli Charlesworth Feb 6 '11 at 22:53
feedback

1 Answer

The easiest way would be to look at the categories of the page instead of the templates. For example, Joel Spolsky has the category "Living people", and Pittsburgh Steelers has the category "National Football League teams".

link|improve this answer
I had hoped to avoid that solution if possible, for the simple reason that Wikipedia categories are often pretty poorly maintained. As an example, consider the page for an NHL team like the N.J. Devils - this page has a category of "Atlantic Division (NHL)", but not a "National Hockey League teams" type category. My logic was that the templates for all NHL teams will at least be consistent. I'll just work around it. Thanks for your suggestion. – Chris Lacy Feb 8 '11 at 6:21
Actually, assuming templates are consistent isn't a good idea. For example, if you look at the political infoboxes, there many different ones, even though they should all use Infobox Officeholder. In fact, Infobox Officeholder is a placeholder template for many other templates which do the same thing. – Adrian Archer Feb 8 '11 at 20:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.