Jump to content

Module:Sports results/blank

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Frietjes (talk | contribs) at 15:07, 6 December 2016 (missed two). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

-- This module generates a blank invocation of the sports results module
-- using the values of team1, team2, ...

local p = {}

local function isnotempty(s)
	return s and s:match( '^%s*(.-)%s*$' ) ~= ''
end

function p.main(frame)
	local args = (frame.args['team1'] ~= nil) and frame.args or frame:getParent().args
	
	-- Count the number of teams
	local numteams = 0
	while isnotempty(args['team' .. (numteams + 1)]) do 
		numteams = numteams + 1
	end
	
	local res = '{{#invoke:sports results|main\n'
	res = res .. '| template_name = <!-- to add v-t-e links -->\n'
	res = res .. '| source = <!-- source -->\n'
	res = res .. '| update = <!-- last updated -->\n'
	res = res .. args['start_date'] 
		and ('| start_date = ' .. args['startdate']) or ''
	res = res .. args['match_col_width'] 
		and (' match_col_width = ' .. args['match_col_width']) or ''
	res = res .. '| showteam = <!-- for bolding one team results -->\n'

	for i=1,numteams do
		local ab = args['team' .. i]
		res = res .. '| team' .. i .. '= ' .. ab .. ' '
	end
	res = res .. '\n\n'
	for i=1,numteams do
		local ab = args['team' .. i]
		res = res .. '| name_'..ab ..' = '.. (args['name_'..ab] or '') .. '\n'
		res = res .. '| short_'..ab ..' = '.. (args['short_'..ab] or '') .. '\n'
	end
	res = res .. '\n'
	for i=1,numteams do
		local abi = args['team' .. i]
		for j=1,numteams do
			local abj = args['team' .. j]
			if i ~= j then
				local mij = 'match_' .. abi .. '_' .. abj
				res = res .. '| ' .. mij .. ' = ' .. (args['mij'] or '') .. '\n'
			end
		end
		res = res .. '\n'
	end
	res = res .. '}}'
	
	return res
end

return p