feat(third_party/git/date): add "dottime" format

Adds dottime (as defined on https://dotti.me) as a timestamp format.

This format is designed to simplify working with timestamps across
many different timezones by keeping the timestamp format itself in
UTC (and indicating this with a dot character), but appending the
local offset.

This is implemented as a new format because the timestamp needs to be
rendered both as UTC and including the offset, an implementation using
a strftime formatting string is not sufficient.
This commit is contained in:
Vincent Ambo 2020-01-06 16:00:52 +00:00 committed by Vincent Ambo
parent 7ef0d62730
commit 8082d87da3
5 changed files with 27 additions and 1 deletions

View file

@ -989,6 +989,9 @@ parse_done:
case DATE_STRFTIME:
blame_date_width = strlen(show_date(0, 0, &blame_date_mode)) + 1; /* add the null */
break;
case DATE_DOTTIME:
blame_date_width = sizeof("2006-10-19T15·00-0700");
break;
}
blame_date_width -= 1; /* strip the null */