Jump to content

Main public logs

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

Logs
  • 01:30, 13 March 2025 Thehighwayman talk contribs protected Module:Item [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 01:30, 13 March 2025 Thehighwayman talk contribs created page Module:Item (Created page with "local p = {} local function escape(str) return str:gsub("[|\\]", function (c) return string.format("\\%03d", c:byte()) end) end local function unescape(str) return str:gsub("\\(%d%d%d)", function (d) return string.char(d) end) end -- Implements Template:Item function p.pack(frame) local parent = frame:getParent() local result = '' for key, value in pairs(parent.args) do result = result .. "|" .. escape(tostring(key)) .. "|" .. escape(value) end return res...")