Signed-off-by: Đoàn Trần Công Danh <congdanhqx@xxxxxxxxx> --- date.c | 18 ++++++++++++++++++ t/t0006-date.sh | 3 +++ 2 files changed, 21 insertions(+) diff --git a/date.c b/date.c index 2f37397beb..e02d8e191a 100644 --- a/date.c +++ b/date.c @@ -666,6 +666,24 @@ static int match_digit(const char *date, struct tm *tm, int *offset, int *tm_gmt n++; } while (isdigit(date[n])); + /* 8 digits, compact style of ISO-8601's date: YYYYmmDD */ + if (n == 8) { + tm->tm_year = num / 10000 - 1900; + tm->tm_mon = (num % 10000) / 100 - 1; + tm->tm_mday = num % 100; + return n; + } + + /* 6 digits, compact style of ISO-8601's time: HHMMSS */ + if (n == 6) { + tm->tm_hour = num / 10000; + tm->tm_min = (num % 10000) / 100; + tm->tm_sec = num % 100; + if (*end == '.' && isdigit(end[1])) + strtoul(end + 1, &end, 10); + return end - date; + } + /* Four-digit year or a timezone? */ if (n == 4) { if (num <= 1400 && *offset == -1) { diff --git a/t/t0006-date.sh b/t/t0006-date.sh index 05c914a200..eeb11070a6 100755 --- a/t/t0006-date.sh +++ b/t/t0006-date.sh @@ -81,6 +81,9 @@ check_parse 2008-02 bad check_parse 2008-02-14 bad check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 +0000' check_parse '2008-02-14 20:30:45 -0500' '2008-02-14 20:30:45 -0500' +check_parse '20080214T203045-04:00' '2008-02-14 20:30:45 -0400' +check_parse '20080214T203045 -04:00' '2008-02-14 20:30:45 -0400' +check_parse '20080214T203045.019-04:00' '2008-02-14 20:30:45 -0400' check_parse '2008-02-14 20:30:45.019-04:00' '2008-02-14 20:30:45 -0400' check_parse '2008-02-14 20:30:45 -0015' '2008-02-14 20:30:45 -0015' check_parse '2008-02-14 20:30:45 -5' '2008-02-14 20:30:45 +0000' -- 2.26.0.485.g518673e55f