-- Style for olympic wrestling tableslocal pp =
function pp.header(t,Args,p_sub,pos_label,group_col,VTE_text,full_table,results_header_txt) -- Load relevant modules local yesno = require('Module:Yesno') -- Create table header -- Pre stuff local team_width = Args['teamwidth'] or '250' local sort_text = yesno(Args['sortable_table'] or 'no') and ' sortable' or local show_played = not yesno(Args['hide_played'] or 'no') table.insert(t,'
'..matches_text..'\n') -- Played end if full_table then -- Use actual values if wins and losses are not numeric if (wins 0 and losses0) then local function numorval(s) return s and ((s and 0) or tonumber(s) or s) or 0 end wins = numorval(Args['win_'..team_code_ii]) losses = numorval(Args['loss_'..team_code_ii]) end if show_win then table.insert(t,' | '..num_align(wins,digits)..win_string..'\n') -- Won end if show_loss then table.insert(t,' | '..num_align(losses,digits)..'\n') -- Lost end end if show_round then table.insert(t,' | '..round..round_string..'\n') -- Lost end -- Add - for negative point totals if cp<0 then table.insert(t,' | -'..num_align(-cp,digits)..cp_string..'\n') else table.insert(t,' | '..num_align(cp,digits)..cp_string..'\n') end if show_tp then if tp<0 then table.insert(t,' | -'..num_align(-tp,digits)..'\n') else table.insert(t,' | '..num_align(tp,digits)..'\n') end end return end function pp.status(Args) -- Declare status options -- ------------------------------------------------------------ -- NOTE: If you add to status_code, also add to status_called and status_letters | -- Or functionality will be compromised -- ------------------------------------------------------------ local status_code, status_called =, status_code = local status_letters = (Args['status_order'] or ) .. 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' -- Status position (before or after read and default) local stat_pos_val = string.lower(Args['status_pos'] or ) local status_position = 'after' -- Default location if stat_pos_val'before' then status_position = 'before' elseif stat_pos_val'after' then status_position = 'after' end -- Read in custom status options for l in mw.text.gsplit(status_letters, ) do status_called[l] = false status_code[l] = status_code[l] or '?' status_letters = mw.ustring.gsub(status_letters, '(' .. l ..'.-)' .. l, '%1') if Args['status_text_' .. l] then status_code[l] = Args['status_text_' .. l] end end return end return pp |
---|