Merge 0.8->trunk
[prosody.git] / util / datetime.lua
index e853ff785d49c81c14a31caeb00176b5198b4c63..c73d8e761a3c86db120119f7670082ec487f82be 100644 (file)
@@ -41,14 +41,15 @@ function parse(s)
                        local time_offset = os_difftime(os_time(os_date("*t")), os_time(os_date("!*t"))); -- to deal with local timezone
                        local tzd_offset = 0;
                        if tzd ~= "" and tzd ~= "Z" then
-                               local sign, h, m = tzd:match("([+%-])(%d%d):(%d%d)");
+                               local sign, h, m = tzd:match("([+%-])(%d%d):?(%d*)");
                                if not sign then return; end
+                               if #m ~= 2 then m = "0"; end
                                h, m = tonumber(h), tonumber(m);
                                tzd_offset = h * 60 * 60 + m * 60;
                                if sign == "-" then tzd_offset = -tzd_offset; end
                        end
-                       sec = sec + time_offset + tzd_offset;
-                       return os_time({year=year, month=month, day=day, hour=hour, min=min, sec=sec});
+                       sec = (sec + time_offset) - tzd_offset;
+                       return os_time({year=year, month=month, day=day, hour=hour, min=min, sec=sec, isdst=false});
                end
        end
 end