]> git.madduck.net Git - etc/awesome.git/commitdiff

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:

luatz/: Fix luacheck warnings
authordaurnimator <quae@daurnimator.com>
Wed, 4 Nov 2015 17:09:33 +0000 (11:09 -0600)
committerdaurnimator <quae@daurnimator.com>
Wed, 4 Nov 2015 17:09:47 +0000 (11:09 -0600)
Adds 'future' field to tz_info objects when available

luatz/gettime.lua
luatz/parse.lua
luatz/strftime.lua
luatz/timetable.lua
luatz/tzfile.lua

index 65366bd3ee2bd79a02cc97940116ab08a285da87..e0da6b4c0f4a95ca647304fc9bb2598653b5859e 100644 (file)
@@ -32,8 +32,8 @@ _M.source , _M.resolution , _M.gettime = (function()
                return "socket.gettime()" , 1e-6 , socket.gettime
        end
 
-       if ngx and ngx.now then
-               return "ngx.now()" , 1e-3 , ngx.now
+       if ngx and ngx.now then -- luacheck: ignore 113
+               return "ngx.now()" , 1e-3 , ngx.now -- luacheck: ignore 113
        end
 
        return "os.time()" , 1 , os.time
index 8de9a365bd2bfe305e3840f9b0797575db1c4c2b..0bfd820fb477b56def6838be54ab072d1ffcc1a7 100644 (file)
@@ -26,7 +26,7 @@ local function rfc_3339 ( str , init )
                local hour_offset , min_offset = str:match ( "^([+-]%d%d):(%d%d)" , patt_end )
                if hour_offset then
                        tz_offset = tonumber ( hour_offset ) * 3600 + tonumber ( min_offset ) * 60
-               else
+               else -- luacheck: ignore 542
                        -- Invalid RFC 3339 timestamp offset (should be Z or (+/-)hour:min)
                        -- tz_offset will be nil
                end
index 51410cfaa51ed6901fe0afb939b8a13d6f508c9b..b82c22bf45dd636c68825a54e93b518c860c6d4b 100644 (file)
@@ -24,7 +24,7 @@ end
 local iso_8601_week do
        -- Years that have 53 weeks according to ISO-8601
        local long_years = { }
-       for i, v in ipairs {
+       for _, v in ipairs {
                  4,   9,  15,  20,  26,  32,  37,  43,  48,  54,  60,  65,  71,  76,  82,
                 88,  93,  99, 105, 111, 116, 122, 128, 133, 139, 144, 150, 156, 161, 167,
                172, 178, 184, 189, 195, 201, 207, 212, 218, 224, 229, 235, 240, 246, 252,
@@ -117,7 +117,7 @@ function t:M ( )
        return "%02d" , self.min
 end
 -- New-line character ('\n')
-function t:n ( )
+function t:n ( ) -- luacheck: ignore 212
        return "\n"
 end
 function t:p ( locale )
@@ -140,7 +140,7 @@ function t:S ( )
        return "%02d" , self.sec
 end
 -- Horizontal-tab character ('\t')
-function t:t ( )
+function t:t ( ) -- luacheck: ignore 212
        return "\t"
 end
 -- ISO 8601 time format (HH:MM:SS), equivalent to %H:%M:%S
@@ -176,14 +176,14 @@ function t:Y ( )
        return "%d" , self.year
 end
 -- TODO timezones
-function t:z ( )
+function t:z ( ) -- luacheck: ignore 212
        return "+0000"
 end
-function t:Z ( )
+function t:Z ( ) -- luacheck: ignore 212
        return "GMT"
 end
 -- A literal '%' character.
-t["%"] = function ( self )
+t["%"] = function ( self ) -- luacheck: ignore 212
        return "%%"
 end
 
index 5c234b6d0f0109b56042743316401233ce8c3197..e2930d8dcc287cdaef8aeb92aab6272cffc5c52e 100644 (file)
@@ -3,7 +3,7 @@ local strformat = string.format
 local floor = math.floor
 local idiv do
        -- Try and use actual integer division when available (Lua 5.3+)
-       local idiv_loader, err = (loadstring or load)([[return function(n,d) return n//d end]], "idiv")
+       local idiv_loader = (loadstring or load)([[return function(n,d) return n//d end]], "idiv") -- luacheck: ignore 113
        if idiv_loader then
                idiv = idiv_loader()
        else
@@ -179,8 +179,8 @@ function timetable_methods:timestamp ( )
 end
 
 function timetable_methods:rfc_3339 ( )
-       local year , month , day , hour , min , sec = self:unpack ( )
-       local sec , msec = borrow ( sec , 0 , 1000 )
+       local year, month, day, hour, min, fsec = self:unpack()
+       local sec, msec = borrow(fsec, 0, 1000)
        msec = math.floor(msec)
        return strformat ( "%04u-%02u-%02uT%02u:%02u:%02d.%03d" , year , month , day , hour , min , sec , msec )
 end
index 4fddddf603082e47ecc21d99563fe3152bc51e45..ec10bc05b8e06e113441bc31dd7cd991fd6107e1 100644 (file)
@@ -218,6 +218,7 @@ local function read_tz ( fd )
                end
 
                local res = {
+                       future = TZ;
                        [0] = {
                                transition_time = MIN_TIME ;
                                info = ttinfos [ first ] ;