All public logs

Jump to navigation Jump to search

Combined display of all available logs of Wikibase. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 12:14, 22 July 2024 Admin talk contribs created page Module:ConcatArgs (Created page with " local p = {} function table.slice(tbl, first, last, step) local sliced = {} for i = first or 1, last or #tbl, step or 1 do sliced[#sliced+1] = tbl[i] end return sliced end p.slice = table.slice local function count_args(table) local nargs = 0 for num, _ in ipairs(table) do nargs = math.max(num, nargs) end return nargs end function p.ConcatArgs(frame) local pargs = frame:getParent().args local init = tonumber(frame.args["init"]) or frame.arg...")