All public logs

Jump to navigation Jump to search

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

Logs
  • 14:11, 31 May 2024 Uschuetzenmeister talk contribs created page Module:Function test (Created page with "local p = {} function p.query(frame) local query = frame.args[1] local params = {} for k, v in pairs(frame.args) do if k ~= 1 then table.insert(params, k .. "=" .. v) end end local success, result = pcall(function() return mw.ext.visualdata.query(query, params) end) if not success then return "Error: " .. tostring(result) end return result end return")