X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/e5c87b4489b0881b7b9903733478f0d11ac96ab7..b7645320a1905587b16a8b2035481bbd45788175:/luatz/tzinfo.lua diff --git a/luatz/tzinfo.lua b/luatz/tzinfo.lua index 34b7048..5b7c0c0 100644 --- a/luatz/tzinfo.lua +++ b/luatz/tzinfo.lua @@ -4,6 +4,11 @@ local tz_info_methods = { } local tz_info_mt = { __index = tz_info_methods ; } +local tt_info_mt = { + __tostring = function ( self ) + return string.format ( "tt_info:%s=%d" , self.abbr , self.gmtoff ) + end ; +} -- Binary search local function _find_current ( tzinfo , target , i , j ) @@ -55,12 +60,13 @@ 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 , is_dst ) +function tz_info_methods:utctime ( ts_local ) local tz1 , tz2 = find_current_local ( self , ts_local ) tz1 = self [ tz1 ].info if tz2 == nil then @@ -74,4 +80,5 @@ end return { tz_info_mt = tz_info_mt ; + tt_info_mt = tt_info_mt ; }