All public logs

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

Logs
  • 01:33, 9 September 2024 Maria talk contribs created page Module:Aside (Created page with "local p = {} function p.show(frame) local args = frame:getParent().args local pieces = {} for _, a_full in ipairs(args) do a_delim = mw.ustring.find(":") if a_delim then a_pre = mw.ustring.sub(a_full, 1, a_delim - 1) a_post = mw.ustring.sub(a_full, a_delim + 1) table.insert(pieces, "<small>" .. a_pre .. ":</small> " .. a_post) else table.insert(pieces, a_full) end end return "(" .. table.concat(pieces, ", ") .. ")" end return p")