All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Roat Pkz. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 08:21, 18 May 2024 Hefner talk contribs created page Module:Time (Created page with "-- <pre> local p = {} -- minutes to hh:mm:ss function p.m_to_c(frame) local args = frame:getParent().args local arg = args[1] return p._m_to_c(arg) end function p._m_to_c(arg) arg = arg or '' if arg == '' then return '' end -- look for and parse fractions if arg:find('/') then local n,d = arg:match('(%d+)%s*/%s*(%d+)') n = tonumber(n,10) d = tonumber(d,10) -- only continue if 60 (seconds in a minute) is denom if d == 60 then arg = n/d else...")