×
Create a new article
Write your page title here:
We currently have 87 articles on Nova Online Wiki. Type your article name above or click on one of the titles below and start writing!



Nova Online Wiki

All public logs

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

Logs
  • 19:34, 15 July 2024 Maevings talk contribs created page Module:IPAddress (Created page with "local p = {} function p._isIpV6(s) local dcolon, groups if type(s) ~= "string" or s:len() == 0 or s:find("[^:%x]") -- only colon and hex digits are legal chars or s:find("^:[^:]") -- can begin or end with :: but not with single : or s:find("[^:]:$") or s:find(":::") then return false end s, dcolon = s:gsub("::", ":") if dcolon > 1 then return false end -- at most one :: s = s:gsub("^:?", ":") -- prepend : if needed, upper s, groups = s:gsub(":%x%x?%x...")