Module:Numbered subpages/sandbox: Difference between revisions
Appearance
Content deleted Content added
Dreamy Jazz (talk | contribs) some more testing |
Dreamy Jazz (talk | contribs) test |
||
Line 18: | Line 18: | ||
local missing = args.missing or (args.max and 'transclude' or 'skip') |
local missing = args.missing or (args.max and 'transclude' or 'skip') |
||
local res = '' |
local res = '' |
||
local |
local headertemplate = args.headertemplate or '' |
||
if missing ~= 'transclude' then |
if missing ~= 'transclude' then |
||
Line 29: | Line 29: | ||
res = res .. frame:expandTemplate{title = 'subpage', args = { i } } |
res = res .. frame:expandTemplate{title = 'subpage', args = { i } } |
||
else |
else |
||
res = res .. frame:expandTemplate{title = 'subpage', args = { i, |
res = res .. frame:expandTemplate{title = 'subpage', args = { i, headertemplate=headertemplate } } |
||
end |
end |
||
else |
else |
||
Line 36: | Line 36: | ||
res = res .. frame:expandTemplate{title = 'subpage', args = { i } } |
res = res .. frame:expandTemplate{title = 'subpage', args = { i } } |
||
else |
else |
||
res = res .. frame:expandTemplate{title = 'subpage', args = { i, |
res = res .. frame:expandTemplate{title = 'subpage', args = { i, headertemplate=headertemplate } } |
||
end |
end |
||
else |
else |
Latest revision as of 21:34, 18 July 2018
![]() | This is the module sandbox page for Module:Numbered subpages (diff). |
Implements {{Numbered subpages}}
-- This module implements {{numbered subpages}}.
local getArgs = require('Module:Arguments').getArgs
p = {}
local function ifexist(page)
if not page then return false end
if mw.title.new(page).exists then return true end
return false
end
function p.main(frame)
local args = getArgs(frame)
local maxk = tonumber(args.max or '50') or 50
local mink = tonumber(args.min or '1') or 1
local root = ''
local missing = args.missing or (args.max and 'transclude' or 'skip')
local res = ''
local headertemplate = args.headertemplate or ''
if missing ~= 'transclude' then
root = frame:preprocess('{{FULLPAGENAME}}')
end
maxk = (maxk > (mink + 250)) and (mink + 250) or maxk
for i=mink,maxk do
if missing == 'transclude' then
if headertemplateno == '' then
res = res .. frame:expandTemplate{title = 'subpage', args = { i } }
else
res = res .. frame:expandTemplate{title = 'subpage', args = { i, headertemplate=headertemplate } }
end
else
if ifexist(root .. '/' .. i) then
if headertemplateno == '' then
res = res .. frame:expandTemplate{title = 'subpage', args = { i } }
else
res = res .. frame:expandTemplate{title = 'subpage', args = { i, headertemplate=headertemplate } }
end
else
if missing == 'link' then
res = res .. '[[' .. root .. '/' .. i .. ']] '
elseif missing == 'stop' then
i = maxk + 1
end
end
end
end
return res
end
return p