Jump to content

Main public logs

This shows all the logs of Wikipedia. You can also view logs by log type, the user making the log, or the affected page or user.

"User" - This is the person who made the action. It does not use the "User:" prefix ( JohnDoe, not User:JohnDoe ).
"Title" - The page or user affected by an action. The username uses the "User:" prefix ( User:JohnDoe, not JohnDoe ). Page names use the full title of the page. (for example, "Wikipedia talk:Userboxes" )
Logs
  • 09:17, 17 March 2024 PotsdamLamb talk changes created page Module:LoadData (Created page with "local p = {} -- Finds the next key key <= or >= the given i. -- operator is ±1 local function findItemRange(data, i, operator) local bestIndex = nil i = i * operator for k, v in pairs(data) do local kop = type(k) == 'number' and k * operator if kop and kop <= i and (bestIndex == nil or kop > bestIndex * operator) then bestIndex = k end end if bestIndex then return data[bestIndex] else return nil end end local function...")