Módulo:Subpáginas numeradas

Fonte: Enciclopédia de conhecimento da Igreja de Deus
Saltar para a navegação Saltar para a pesquisa

A documentação para este módulo pode ser criada na página Módulo:Subpáginas numeradas/doc

-- Este módulo implementa {{Subpáginas numeradas}}.
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 = ''
	
	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
			res = res .. frame:expandTemplate{title = 'subpágina', args = { i } }
		else
			if ifexist(root .. '/' .. i) then
				res = res .. frame:expandTemplate{title = 'subpágina', args = { i } }
			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