Add and use cgit_find_stats_periodname() in print_repo() Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Lars Hjemli hjemli@gmail.com
Mon, 24 Aug 2009 11:02:48 +0200
3 files changed,
12 insertions(+),
0 deletions(-)
M
ui-stats.c
→
ui-stats.c
@@ -154,6 +154,14 @@ }
return 0; } +const char *cgit_find_stats_periodname(int idx) +{ + if (idx > 0 && idx < 4) + return periods[idx - 1].name; + else + return ""; +} + static void add_commit(struct string_list *authors, struct commit *commit, struct cgit_period *period) {
M
ui-stats.h
→
ui-stats.h
@@ -21,6 +21,7 @@ char *(*pretty)(struct tm *tm);
}; extern int cgit_find_stats_period(const char *expr, struct cgit_period **period); +extern const char *cgit_find_stats_periodname(int idx); extern void cgit_show_stats(struct cgit_context *ctx);