]>
git.madduck.net Git - etc/awesome.git/blobdiff - luatz/tzfile.lua
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
local tz_info_mt = require "luatz.tzinfo".tz_info_mt
local tz_info_mt = require "luatz.tzinfo".tz_info_mt
+local tt_info_mt = require "luatz.tzinfo".tt_info_mt
+
local function read_int32be ( fd )
local data , err = fd:read ( 4 )
local function read_int32be ( fd )
local data , err = fd:read ( 4 )
local isgmt = assert ( read_flags ( fd , tzh_ttisgmtcnt ) )
local isgmt = assert ( read_flags ( fd , tzh_ttisgmtcnt ) )
if version == "2" then
--[[
For version-2-format timezone files, the above header and data is followed by a second header and data,
if version == "2" then
--[[
For version-2-format timezone files, the above header and data is followed by a second header and data,
for use in handling instants after the last transition time stored in the file
(with nothing between the newlines if there is no POSIX representation for such instants).
]]
for use in handling instants after the last transition time stored in the file
(with nothing between the newlines if there is no POSIX representation for such instants).
]]
+ assert ( assert ( fd:read ( 1 ) ) == "\n" , "Expected newline at end of version 2 header" )
+
+ TZ = assert ( fd:read ( "*l" ) )
+ if #TZ == 0 then
+ TZ = nil
+ end
end
for i=1, tzh_typecnt do
end
for i=1, tzh_typecnt do
v.abbr = abbreviations:sub ( v.abbrind+1 , v.abbrind+3 )
v.isstd = isstd [ i ] or false
v.isgmt = isgmt [ i ] or false
v.abbr = abbreviations:sub ( v.abbrind+1 , v.abbrind+3 )
v.isstd = isstd [ i ] or false
v.isgmt = isgmt [ i ] or false
+ setmetatable ( v , tt_info_mt )