X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/4bed62b35f023d4707b3e971889daded8a9d1442..27e12c9a39aa33f8815964adedd036cd6703099f:/luatz/tzinfo.lua diff --git a/luatz/tzinfo.lua b/luatz/tzinfo.lua index fd3f5e8..77d0656 100644 --- a/luatz/tzinfo.lua +++ b/luatz/tzinfo.lua @@ -4,6 +4,8 @@ local tz_info_methods = { } local tz_info_mt = { __index = tz_info_methods ; } +local tt_info_mt = { +} -- Binary search local function _find_current ( tzinfo , target , i , j ) @@ -55,10 +57,11 @@ function tz_info_methods:find_current ( current ) return self [ _find_current ( self , current , 0 , #self ) ].info end -function tz_info_methods:localize ( utc_ts ) +function tz_info_methods:localise ( utc_ts ) utc_ts = utc_ts or gettime ( ) return utc_ts + self:find_current ( utc_ts ).gmtoff end +tz_info_methods.localize = tz_info_methods.localise function tz_info_methods:utctime ( ts_local ) local tz1 , tz2 = find_current_local ( self , ts_local ) @@ -74,4 +77,5 @@ end return { tz_info_mt = tz_info_mt ; + tt_info_mt = tt_info_mt ; }