Module:Lighthouse tracking: Difference between revisions
Appearance
Content deleted Content added
Plastikspork (talk | contribs) False positives, moving to sortkey for you! |
|||
Line 18: | Line 18: | ||
res = res .. '[[Category:Pages using infobox lighthouse with NRHP embedded]]' |
res = res .. '[[Category:Pages using infobox lighthouse with NRHP embedded]]' |
||
if isNRHP == false then |
if isNRHP == false then |
||
res = res .. '[[Category: |
res = res .. '[[Category:Pages using infobox lighthouse with NRHP heritage|‽]]' |
||
end |
end |
||
if v:match('<div style="position') then |
if v:match('<div style="position') then |
Revision as of 00:54, 20 November 2018
This modules produces the tracking categories for Template:Infobox lighthouse
local p = {}
function p.tracking(frame)
local res = ''
local isNRHP = false
local heritage = frame.args.heritage or ''
if heritage == '' then
elseif (heritage:match('place listed on the National Register of Historic Places') or
heritage:match('NRHP contributing property') ) then
res = res .. '[[Category:Pages using infobox lighthouse with NRHP heritage]]'
isNRHP = true
else
res = res .. '[[Category:Pages using infobox lighthouse with non-NRHP heritage]]'
end
for k, v in pairs( frame:getParent().args ) do
if k and k == 'module' then
if v and v:match('<tr') then
res = res .. '[[Category:Pages using infobox lighthouse with NRHP embedded]]'
if isNRHP == false then
res = res .. '[[Category:Pages using infobox lighthouse with NRHP heritage|‽]]'
end
if v:match('<div style="position') then
local pushpin_map = frame:getParent().args.pushpin_map
if pushpin_map and pushpin_map ~= '' then
res = res .. '[[Category:Pages using infobox lighthouse with two location maps]]'
end
end
end
elseif type(k) == 'string' then
if v and v:match('<tr') then
res = res .. '[[Category:Pages using infobox lighthouse with NRHP embedded outside the module parameter]]'
end
end
end
return res
end
return p