Difference between revisions of "Module:LatestAfD"
Jump to navigation
Jump to search
blackwiki>Swpb |
blackwiki>Swpb |
||
| Line 16: | Line 16: | ||
latest = false | latest = false | ||
while not latest do | while not latest do | ||
| − | next_ordinal = frame:expandTemplate{ title = 'ordinal', args = { | + | next_ordinal = frame:expandTemplate{ title = 'ordinal', args = { afd_num + 1 } } |
next_title = mw.title.new(base_string .. " (" .. next_ordinal .. " nomination)") | next_title = mw.title.new(base_string .. " (" .. next_ordinal .. " nomination)") | ||
if not next_title.exists then | if not next_title.exists then | ||
latest = true | latest = true | ||
| − | ordinal = frame:expandTemplate{ title = 'ordinal', args = { | + | ordinal = frame:expandTemplate{ title = 'ordinal', args = { afd_num } } |
output = "[[" .. base_string .. " (" .. ordinal .. " nomination)]]" | output = "[[" .. base_string .. " (" .. ordinal .. " nomination)]]" | ||
end | end | ||
Revision as of 18:11, 30 May 2017
local p = {}
function p.latestafd(frame)
local page = frame.args[1]
base_string = "Wikipedia:Articles for deletion/" .. page
base_title = mw.title.new(base_string)
afd2_title = mw.title.new(base_string .. " (2nd nomination)")
if not base_title.exists then
output = "Error, no AfD exists"
elseif not afd2_title.exists then
output = "[[" .. base_string .. "]]"
else
afd_num = 1
latest = false
while not latest do
next_ordinal = frame:expandTemplate{ title = 'ordinal', args = { afd_num + 1 } }
next_title = mw.title.new(base_string .. " (" .. next_ordinal .. " nomination)")
if not next_title.exists then
latest = true
ordinal = frame:expandTemplate{ title = 'ordinal', args = { afd_num } }
output = "[[" .. base_string .. " (" .. ordinal .. " nomination)]]"
end
afd_num = afd_num + 1
end
end
return output
end
return p