]>
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:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
6db06b5 )
end
local function month_length ( m , y )
end
local function month_length ( m , y )
if m == 2 then
return is_leap ( y ) and 29 or 28
else
if m == 2 then
return is_leap ( y ) and 29 or 28
else
day = day + year_length ( year )
end
day = day + year_length ( year )
end
+ -- Lua months start from 1, need -1 and +1 around this increment
+ month = month - 1
+ year , month = increment ( year , month , 12 )
+ month = month + 1
+
-- This could potentially be slow if `day` is very large
while true do
local i = month_length ( month , year )
if day <= i then break end
day = day - i
month = month + 1
-- This could potentially be slow if `day` is very large
while true do
local i = month_length ( month , year )
if day <= i then break end
day = day - i
month = month + 1
+ if month > 12 then
+ month = 1
+ year = year + 1
+ end
- -- Lua months start from 1, need -1 and +1 around this increment
- year , month = increment ( year , month - 1 , 12 )
- month = month + 1
-
return year , month , day , hour , min , sec
end
return year , month , day , hour , min , sec
end