All public logs

Jump to navigation Jump to search

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

Logs
  • 00:25, 10 June 2024 Xtex talk contribs created page Module:Link list (Created page with "local p = {} -- generates a list like: "a, b and c" function p.listPages( f ) local args = require('Module:ProcessArgs').merge(true) local out = '' for index, value in ipairs(args) do if index == 1 then elseif index == #args then out = out .. ' and ' else out = out .. ', ' end out = out .. '' .. value .. '' end return out end return p")