Jump to content

Main public logs

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

Logs
  • 04:32, 22 August 2025 GlifterPad talk contribs created page Module:PadUtils (Created page with "local p = {} -- Split a string by a delimiter (keeps empty=false) local function split(text, delim) local out = {} if not text or text == "" then return out end for part in mw.text.gsplit(text, delim, true) do part = mw.text.trim(part) if part ~= "" then table.insert(out, part) end end return out end -- Build a UL/OL list of links to subpages: -- base = page prefix (default: FULLPAGENAME) -- floors = "A;B;C" -- ol = "1" o...")