Module:Phabricator
Appearance
This module has been created to replace the current template code in Template:Phabricator. It supports the template's documented behavior of any combination of including a "T" or not in the task ID, titling the link, or having a link to Wikipedia:Phabricator.
The |art=
and |article=
params support both y and yes as a value.
{{#invoke:Phabricator|task}}
{{#invoke:Phabricator|task|T1234}}
{{#invoke:Phabricator|task|1234}}
{{#invoke:Phabricator|task|T1234|Lorem ipsum dolor sit amet}}
{{#invoke:Phabricator|task|T1234|art=y}}
{{#invoke:Phabricator|task|T1234|article=yes}}
{{#invoke:Phabricator|task|T1234|Lorem ipsum dolor sit amet|article=yes}}
local p = {}
p.task = function(frame)
local paramId = frame.args[1]
local paramTitle = frame.args[2]
local paramArt = frame.args['art']
local paramArticle = frame.args['article']
if not paramId then
return '[https://phabricator.wikimedia.org/ Phabricator]'
end
local output = ''
local taskId
if (string.find(paramId, '^T%d+$')) then
taskId = paramId
elseif (string.find(paramId, '^%d+$')) then
taskId = 'T' .. paramId
end
output = p.makePhabWikiLink(taskId, taskId)
if (paramTitle) then
output = output .. ' • ' .. p.makePhabWikiLink(taskId, paramTitle)
end
local articleLink = false
local honk = 'honk'
honk = 'bonk' .. honk
if ((paramArt == 'y') or (paramArticle == 'y')) then
-- return honk
output = '[[Wikipedia:Phabricator|Phabricator]]: ' .. output
end
return output
end
function p.makePhabWikiLink(taskId, linkTitle)
return '[[Phabricator:' .. taskId .. '|' .. linkTitle .. ']]'
end
return p