summaryrefslogtreecommitdiffstats
path: root/date.c
AgeCommit message (Expand)AuthorLines
2009-05-05Work around BSD whose typeof(tv.tv_sec) != time_tBernd Ahlers-1/+3
2009-02-25never fallback relative times to absoluteJeff King-1/+19
2009-02-20Support 'raw' date formatLinus Torvalds-0/+7
2008-08-17date/time: do not get confused by fractional secondsLinus Torvalds-6/+20
2008-06-23Make my_mktime() public and rename it to tm_to_time_t()Johannes Sixt-5/+8
2008-06-17Fix approxidate("never") to always return 0Olivier Marin-4/+2
2008-02-25timezone_names[]: fixed the tz offset for New Zealand.Steven Drake-3/+3
2007-09-29parse_date_format(): convert a format name to an enum date_modeAndy Parkins-0/+20
2007-07-24Teach approxidate() to understand "never"Johannes Schindelin-0/+9
2007-07-13Make show_rfc2822_date() just another date output format.Junio C Hamano-15/+5
2007-07-13Support output ISO 8601 format datesRobin Rosenberg-0/+7
2007-06-07War on whitespaceJunio C Hamano-5/+5
2007-06-06Accept dates before 2000/01/01 when specified as seconds since the epochJohannes Sixt-2/+4
2007-04-25Add --date={local,relative,default}Junio C Hamano-2/+33
2007-02-27show_date(): rename the "relative" parameter to "mode"Johannes Schindelin-8/+12
2007-01-20show_date(): fix relative datesJohannes Schindelin-3/+2
2006-12-20simplify inclusion of system header files.Junio C Hamano-3/+0
2006-09-29Fix approxidate() to understand 12:34 AM/PM are 00:34 and 12:34Linus Torvalds-10/+16
2006-09-28Fix approxidate() to understand more extended numbersLinus Torvalds-0/+40
2006-09-28Clean up approxidate() in preparation for fixesLinus Torvalds-3/+10
2006-08-26Relative timestamps in git logLinus Torvalds-8/+55
2006-08-23n is in fact unused, and is later shadowed.Pierre Habouzit-3/+3
2006-06-08date.c: improve guess between timezone offset and year.Paul Eggert-1/+1
2006-05-01Use RFC2822 dates from "git fmt-patch".Junio C Hamano-4/+25
2006-04-05date parsing: be friendlier to our European friends.Junio C Hamano-21/+56
2006-04-05Merge branch 'fix'Junio C Hamano-2/+2
2006-04-04parse_date(): fix parsing 03/10/2006Junio C Hamano-2/+2
2006-03-09Use #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))Junio C Hamano-3/+1
2006-01-05Fix nasty approxidate bugLinus Torvalds-1/+1
2005-12-29code comments: spellJunio C Hamano-1/+1
2005-11-18Teach "approxidate" about weekday syntaxLinus Torvalds-5/+49
2005-11-17Teach "approxidate" about weekday syntaxLinus Torvalds-1/+17
2005-11-16git's rev-parse.c function show_datestring presumes gnu dateLinus Torvalds-0/+124
2005-10-14Unlocalized isspace and friendsLinus Torvalds-1/+0
2005-09-22[PATCH] Fix strange timezone handlingLinus Torvalds-10/+14
2005-09-20[PATCH] Return proper error valud from "parse_date()"Linus Torvalds-3/+3
2005-07-12parse_date(): allow const date stringLinus Torvalds-4/+4
2005-06-25[PATCH] fix date parsing for GIT raw commit timestamp format.Junio C Hamano-5/+9
2005-05-22Include file cleanups..Linus Torvalds-3/+0
2005-05-20sparse cleanupLinus Torvalds-0/+2
2005-05-18[PATCH] fix show_date() for positive timezonesNicolas Pitre-2/+2
2005-05-06date.c: add "show_date()" function.Linus Torvalds-0/+28
2005-05-01date handling: handle "AM"/"PM" on timeLinus Torvalds-8/+22
2005-05-01date.c: allow even more varied time formatsLinus Torvalds-54/+152
2005-04-30date.c: fix printout of timezone offsets that aren't exact hoursLinus Torvalds-2/+8
2005-04-30date.c: only use the TZ names if we don't have anything better.Linus Torvalds-1/+5
2005-04-30date.c: split up dst information in the timezone tableLinus Torvalds-45/+51
2005-04-30date.c: fix parsing of dates in mm/dd/yy formatLinus Torvalds-1/+3
2005-04-30date.c: use the local timezone if none specifiedLinus Torvalds-2/+7
2005-04-30Make the date parsing accept pretty much any random crap.Linus Torvalds-106/+215