ui-shared: add cgit_date_mode()

This returns the correct mode value for use with Git's show_date() based
on the current CGit configuration and will be used in the following
patches.

Signed-off-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
John Keeping
2016-01-19 19:33:03 +00:00
committed by Jason A. Donenfeld
vanhempi 45c87ca1c3
commit 360af46fac
2 muutettua tiedostoa jossa 10 lisäystä ja 0 poistoa

Näytä tiedosto

@ -627,6 +627,15 @@ void cgit_print_date(time_t secs, const char *format, int local_time)
html_txt(fmt_date(secs, format, local_time));
}
const struct date_mode *cgit_date_mode(const char *format)
{
static struct date_mode mode;
mode.type = DATE_STRFTIME;
mode.strftime_fmt = format;
mode.local = ctx.cfg.local_time;
return &mode;
}
static void print_rel_date(time_t t, double value,
const char *class, const char *suffix)
{