Jump to content

Module:Political party/doc

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Primefac (talk | contribs) at 13:13, 9 December 2021 (update documentation so that new folks know how to actually change things). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.


Usage

{{#invoke:Political party|fetch|<party>|<value>}}

Parameters

Parameter Description
1 The political party's name. If a party is not found, place a request at the talk page.
error Optional, this parameter will return the provided |error= value if the module does not contain the requested party or color.

Updating the module

The political parties contained in this module are split into alphabetised lists based on the first character of the name (for example, "Labour Party (UK)" would be under /L). The /1 subpage is for any party that does not start with the western letters A-Z (including numbers and accented characters).

Within each data sub-module are two local groups: local alternate and local full. The alternate group is for alternate names of a party. The following is an example of alternate names for the Labour Party (UK):

local alternate = {
    ....
	["Labour and Co-operative"] = "Labour Party (UK)",
	["Labour Co-operative"] = "Labour Party (UK)",
    ...
}

The first entry in square brackets is the alternate name, and the second entry only in quotes is the name found in the full group, seen below. Note that the alternate name of a party should be stored in its corresponding letter-based subpage; "Alabama Democratic Party" is listed in /A even though it is an alternate name for "Democratic Party (US)" (which is stored in /D).

local full = {
    ....
	["Labour Party (UK)"] = {abbrev = "Lab", color = "#E4003B", shortname = "Labour",},
    ...
}

There are three values stored for each party

  • the abbreviation (abbrev)
  • the color of the party (color), which can either be a hex triplet or a basic color name
  • a shorter name for the party (shortname)

If a name value is not stored for a party, the module will attempt to return the other "short" name variant before returning the input. Thus, if abbrev is stored but shortname is not, regardless of which value is asked for it will return the abbrev value.

Data pages