User contributions for Couchor

Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

7 September 2022

6 September 2022

5 September 2022

4 September 2022

2 September 2022

31 August 2022

30 August 2022

29 August 2022

25 August 2022

24 August 2022

23 August 2022

22 August 2022

  • 21:4921:49, 22 August 2022 diff hist +187 Module:ArgumentsNo edit summary current
  • 18:0218:02, 22 August 2022 diff hist +9,040 N Module:Team/overrideCreated page with "local overrides = { ['game'] = {}, ['games'] = {}, ['templates'] = { ['definitions'] = { ['team'] = '<span data-highlightingclass="TBD" class="team-template-team-standard"><span class="team-template-image-legacy">link=</span> <span class="team-template-text"><abbr title="To Be Determined">TBD</abbr></span></span>', ['team2'] = '<span data-highlightingclass="TBD" class="team-template-team-standard"><span class="team-template-text"><..." current
  • 15:3015:30, 22 August 2022 diff hist +1,889 N Module:TeamCard/QualifierCreated page with "local Class = require('Module:Class') local Variables = require('Module:Variables') local Qualifier = {} -- Returns the tuple (linkText, linkInternal, linkExternal) -- Link internal and link external is mutually exclusive function Qualifier.parseQualifier(rawQualifier) if not rawQualifier then return nil end local cleanQualifier = rawQualifier:gsub('%[', ''):gsub('%]', '') if cleanQualifier:find('|') then -- Internal link local qualifier = mw.text.split(clea..." current
  • 15:2915:29, 22 August 2022 diff hist +3,749 N Module:TeamCard/StorageCreated page with "local Custom = require('Module:TeamCard/Custom') local String = require('Module:StringUtils') -- TODO: Once the Template calls are not needed (when RL has been moved to Module), deprecate Qualifier Module local Qualifier = require('Module:TeamCard/Qualifier') local Variables = require('Module:Variables') local TeamCardStorage = {} function TeamCardStorage.saveToLpdb(args, teamObject, players, playerPrize) local team, teamTemplateName if type(teamObject) == 'table' t..." current
  • 15:2815:28, 22 August 2022 diff hist +1,675 N Module:TeamCard/CustomCreated page with "local p = {} local Flag = require('Module:Flags') local String = require('Module:StringUtils') local Variables = require('Module:Variables') function p._Players(args, PLAYERS, prefix, prefixVar, prefixLPDB, teamAlias) local name = string.gsub(mw.ext.TeamLiquidIntegration.resolve_redirect(args[prefix .. 'link']), ' ', '_') local displayname = args[prefix] local flag = Flag.CountryName(args[prefix .. 'flag']) PLAYERS[prefixLPDB] = name PLAYERS[prefixLPDB .. 'flag']..." current
  • 15:2815:28, 22 August 2022 diff hist +1,598 N Module:OrdinalCreated page with "--[[ This template will add the appropriate ordinal suffix to a given integer. Please do not modify this code without applying the changes first at Module:Ordinal/sandbox and testing at Module:Ordinal/sandbox/testcases and Module talk:Ordinal/sandbox/testcases. ]] local p = {} local yesno = require('Module:Yesno') -- boolean value interpretation --[[ This function converts an integer value into a numeral followed by ordinal indicator. The output string mig..." current
  • 15:2715:27, 22 August 2022 diff hist +5,845 N Module:PlacementCreated page with "--- -- @Liquipedia -- wiki=commons -- page=Module:Placement -- -- Please see https://github.com/Liquipedia/Lua-Modules to contribute -- local Arguments = require('Module:Arguments') local Class = require('Module:Class') local Ordinal = require('Module:Ordinal') local Placement = {} --[[ Returns a text label for a range of placements. Example: Placement.RangeLabel({1, 2}) -- Returns 1st–2nd ]] function Placement.RangeLabel(range) local zeroWidthSpace = '​' l..." current
  • 15:2715:27, 22 August 2022 diff hist +13,675 N Module:TeamCreated page with "local function getGlobalDate() local globalDate = mw.ext.VariablesLua.var('date') if not(globalDate and globalDate ~= '') then globalDate = mw.ext.VariablesLua.var('tournament_edate') if not(globalDate and globalDate ~= '') then globalDate = mw.ext.VariablesLua.var('tournament_enddate') if not(globalDate and globalDate ~= '') then globalDate = mw.ext.VariablesLua.var('tournament_startdate') if not(globalDate and globalDate ~= '') then globalDate..." current
  • 15:2615:26, 22 August 2022 diff hist +34,323 N Module:TeamCardCreated page with "local p = {} local getArgs = require('Module:Arguments').getArgs local Logic = require('Module:Logic') local Variables = require('Module:Variables') local Flag = require('Module:Flags') local Icon local Team = require('Module:Team') local placementCell = require('Module:Placement')._placement local Custom = require('Module:TeamCard/Custom') local Storage = require('Module:TeamCard/Storage') local Table = require('Module:Table') local args local GLOBALDATE local TABLE_HE..." current
  • 15:0915:09, 22 August 2022 diff hist −1 Module:JsonNo edit summary current
  • 15:0915:09, 22 August 2022 diff hist +1 Module:JsonNo edit summary
  • 15:0815:08, 22 August 2022 diff hist +17 Module:JsonNo edit summary
  • 14:5414:54, 22 August 2022 diff hist −13 Module:Squad/RowNo edit summary current Tag: Manual revert
  • 14:5314:53, 22 August 2022 diff hist −1 Module:Squad/RowNo edit summary Tag: Reverted
  • 14:5314:53, 22 August 2022 diff hist +14 Module:Squad/RowNo edit summary Tag: Reverted
  • 14:5214:52, 22 August 2022 diff hist −13 Module:JsonNo edit summary Tag: Manual revert
  • 14:4714:47, 22 August 2022 diff hist +13 Module:JsonNo edit summary Tag: Reverted

19 August 2022

  • 22:3622:36, 19 August 2022 diff hist +710 N Module:YesnoCreated page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =..." current
  • 22:3522:35, 19 August 2022 diff hist +307 N Module:No globalsCreated page with "local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('Tried to write global ' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)" current
  • 22:3422:34, 19 August 2022 diff hist +2,569 N Module:Namespace detect/dataCreated page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function..." current
  • 22:3422:34, 19 August 2022 diff hist +3,545 N Module:Namespace detect/configCreated page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --..." current
  • 22:3322:33, 19 August 2022 diff hist +6,091 N Module:Message box/configurationCreated page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee..." current
  • 22:3322:33, 19 August 2022 diff hist +16,807 N Module:Message boxCreated page with "-- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('Module:No globals') local getArgs local categoryHandler = require('Module:Category handler')._main local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MODULE = 'Mod..." current
  • 22:3222:32, 19 August 2022 diff hist +787 N Module:Category handler/sharedCreated page with "local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return require(dataPage).mappings end end function p.getNamespaceParameters(titleObj, mappings) -- We don..." current
  • 22:2722:27, 19 August 2022 diff hist +436 N Module:Category handler/dataCreated page with "local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist( title.prefixedText, blacklist ) data.currentTitleNamespaceParameters = mShared.getNamespaceParameters( title, mShared.getParamMappings() ) return data" current
  • 22:2722:27, 19 August 2022 diff hist +5,349 N Module:Category handler/configCreated page with "local cfg = {} -- Don't edit this line. -------------------------------------------------------------------------------- -- Start configuration data -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Parameter names -- -- These configuration items..." current
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)