Moduł:Portal

Z Nonsensopedii, polskiej encyklopedii humoru

local tools = require('Moduł:Narzędzia')
local p = {}

local function makePanel(args, stack, num)
	title = args['ptytuł' .. num]
	text = args['panel' .. num]
	table.append(stack, '==' .. title .. '==\n' .. text)
end

function p.desktop(frame)
	local args = tools.getArgs(frame)
	local lstack, rstack = {}, {}
	
	local function subpanel(num)
		if num % 2 == 1 then
			doSubpanel(args, lstack, num)
		else
			doSubpanel(args, rstack, num)
		end
	end
	
	for i = 1, 50 do
		if args['panel' .. i] ~= nil then subpanel(i)
		else break end
	end
	
	lstack = table.concat(lstack, '\n')
	rstack = table.concat(rstack, '\n')
	return '<tr><td width="50%">' .. lstack .. '</td><td width="50%">' .. rstack .. '</td></tr>'
end

return p