Content deleted Content added
SocietyBox (talk | contribs) m correct terminology for variable |
No edit summary Tags: Mobile edit Mobile web edit |
||
(One intermediate revision by the same user not shown) | |||
Line 10:
pts.tie = tonumber(Args['tiepoints']) or 1
pts.nr = tonumber(Args['nrpoints']) or 1
pts.bonus = tonumber(Args['bonuspoints']) or 1
pts.loss = tonumber(Args['losspoints']) or 0
▲ pts.bonus = tonumber(Args['bonuspoints']) or 1
return pts
end
Line 47:
local group_head_text = Args['group_header'] or '<abbr title="Group">Grp</abbr>'
local team_head_text = Args['team_header'] or 'Team'
local draw_head_text = Args['draw_header'] or abbr_header('Drawn', 'D', show_pts, pts.draw)
local tie_head_text = Args['tie_header'] or abbr_header('Tied', 'T', show_pts, pts.tie)
local nr_head_text = Args['nr_header'] or abbr_header('No result', 'NR', show_pts, pts.nr)
Line 54 ⟶ 55:
--
local loss_first = yesno(Args['loss_before_tie'] or 'yes')
local show_draw = yesno(Args['draw_tie'] or 'yes')
local show_tie = yesno(Args['show_tie'] or 'yes')
local show_nr = yesno(Args['show_nr'] or 'yes')
Line 286 ⟶ 288:
local status_code, status_called = {},{}
status_code = { A='Advances to a further round', C='
E='Eliminated', G='Guest', H='Host', O='Play-off winner', P='Promoted', Q='Qualified for the phase indicated',
R='
local status_letters = (Args['status_order'] or '') .. 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|