Lua error in Module:Lua_banner at line 112: attempt to index field 'edit' (a nil value).
This Lua module is used on approximately 1,100 pages and changes may be widely noticed. Test changes in the module's /sandbox or /testcases subpages, or in your own module sandbox. Consider discussing changes on the talk page before implementing them. |
Module:Arrowverse redirect category handler is used tag an Arrowverse character, element or location redirect with the relevant redirect categories.
Usage
{{#invoke:Arrowverse redirect category handler|character}}
{{#invoke:Arrowverse redirect category handler|element}}
{{#invoke:Arrowverse redirect category handler|location}}
Function list
Function | Explanation |
---|---|
character
|
Creates a {{Redirect category shell}} with relevant redirects for Arrowverse-related character redirects. |
element
|
Creates a {{Redirect category shell}} with relevant redirects for Arrowverse-related element redirects. |
location
|
Creates a {{Redirect category shell}} with relevant redirects for Arrowverse-related location redirects. |
Arrowverse-specific parameter list
<section begin=Parameters/>
Parameter | Explanation |
---|---|
arrow
|
Any value will tag the redirect as belonging to Arrow. |
flash
|
Any value will tag the redirect as belonging to The Flash. |
constantine
|
Any value will tag the redirect as belonging to Constantine. |
legends
|
Any value will tag the redirect as belonging to Legends of Tomorrow. |
supergirl
|
Any value will tag the redirect as belonging to Supergirl. |
vixen
|
Any value will tag the redirect as belonging to Vixen. |
ray
|
Any value will tag the redirect as belonging to Freedom Fighters: The Ray. |
batwoman
|
Any value will tag the redirect as belonging to Batwoman. |
black_lightning
|
Any value will tag the redirect as belonging to Black Lightning. |
superman
|
Any value will tag the redirect as belonging to Superman & Lois. |
General parameter list
{{#section:Module:Redirect template handler/doc|Arrowverse}}<section end=Parameters/>
Notes
- The redirect will automatically be tagged with {{R from fictional character}}, {{R from fictional element}} or {{R from fictional location}}, depending on the function used, and be placed in the relevant category.
- Arrow: Character, Element or Location.
- The Flash: Character, Element or Location.
- Constantine: Character, Element or Location.
- Legends of Tomorrow: Character, Element or Location.
- Supergirl: Character, Element or Location.
- Vixen: Character, Element or Location.
- Freedom Fighters: The Ray: Character, Element or Location.
- Batwoman: Character, Element or Location.
- Black Lightning: Character, Element or Location.
- All redirects are also placed in the Arrowverse category: Character, Element or Location.
- If the redirect does not use one of the following correct disambiguation —
Arrowverse
,Arrowverse character
,Arrowverse element
orArrowverse character
— the redirect will be tagged with {{R from incorrect disambiguation}} and {{R unprintworthy}}. - If the redirect is using one of the unprintworthy templates, it will be categorized as {{R unprintworthy}}. If not, it will be categorized as {{R printworthy}}.
- If the redirect is using of the templates marked above as not {{R with possibilities}}, it won't be categorized with it.
local getArgs = require('Module:Arguments').getArgs
local p = {}
local tvSeriesNameList = {
{argName = "arrow", seriesName = "Arrow (TV series)"},
{argName = "flash", seriesName = "The Flash (2014 TV series)"},
{argName = "constantine", seriesName = "Constantine (TV series)"},
{argName = "legends", seriesName = "Legends of Tomorrow"},
{argName = "supergirl", seriesName = "Supergirl (TV series)"},
{argName = "vixen", seriesName = "Vixen (web series)"},
{argName = "ray", seriesName = "Freedom Fighters: The Ray"},
{argName = "batwoman", seriesName = "Batwoman (TV series)"},
{argName = "black_lightning", seriesName = "Black Lightning (TV series)"},
{argName = "superman", seriesName = "Superman & Lois"},
}
local FRANCHISE = "Arrowverse"
--[[
Local function which handles the main operation.
--]]
local function main(args, objectType)
local franchiseHandlerModule = require('Module:Fiction redirect category handler/Franchise')
return franchiseHandlerModule.main(args, objectType, FRANCHISE, tvSeriesNameList)
end
--[[
Public function which is used to create a Redirect category shell
with relevant redirects for Arrowverse-related character redirects.
Parameters:
-- |arrow= — optional; Any value will tag the redirect as belonging to Arrow.
-- |flash= — optional; Any value will tag the redirect as belonging to The Flash.
-- |constantine= — optional; Any value will tag the redirect as belonging to Constantine.
-- |legends= — optional; Any value will tag the redirect as belonging to Legends of Tomorrow.
-- |supergirl= — optional; Any value will tag the redirect as belonging to Supergirl.
-- |vixen= — optional; Any value will tag the redirect as belonging to Vixen.
-- |ray= — optional; Any value will tag the redirect as belonging to Freedom Fighters: The Ray.
-- |batwoman= — optional; Any value will tag the redirect as belonging to Batwoman.
-- |black_lightning= — optional; Any value will tag the redirect as belonging to Black Lightning.
Notes:
-- A: The redirect will automatically be tagged with "R from fictional character", "R from fictional element" or "R from fictional location",
depending on the function used, and be placed in the category "Arrowverse (object) redirects to lists".
-- B: Using any of the series parameters will place the redirect in a series-specific category: "(series) (object) redirects to lists".
-- F: If the redirect does not use one of the following correct disambiguation —
"Arrowverse", "Arrowverse character", "Arrowverse element" or "Arrowverse character" —
the redirect will be tagged with "R from incorrect disambiguation" and "R unprintworthy".
--]]
function p.character(frame)
local args = getArgs(frame)
return main(args, "character")
end
--[[
Public function which is used to create a Redirect category shell
with relevant redirects for Arrowverse-related element redirects.
Parameters: See character() for documentation.
--]]
function p.element(frame)
local args = getArgs(frame)
return main(args, "element")
end
--[[
Public function which is used to create a Redirect category shell
with relevant redirects for Arrowverse-related location redirects.
Parameters: See character() for documentation.
--]]
function p.location(frame)
local args = getArgs(frame)
return main(args, "location")
end
--[[
Public function which is used to return a list of Arrowverse shows.
--]]
function p.getSeriesList()
return tvSeriesNameList
end
--[[
Public function which is used to return a franchise name.
--]]
function p.getFranchiseName()
return FRANCHISE
end
--[[
Public function which is used for the testcases.
--]]
function p.testSeriesName(frame)
local args = getArgs(frame)
local franchiseHandlerModule = require('Module:Fiction redirect category handler/Franchise')
return franchiseHandlerModule.testSeriesName(args, FRANCHISE, tvSeriesNameList)
end
return p