the repository which powers this website
Diffstat (limited to 'ui-repolist.c')
| -rw-r--r-- | ui-repolist.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index d12e3dd3..01f1fb51 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -82,6 +82,11 @@ static void print_modtime(struct cgit_repo *repo) cgit_print_age(t, 0, -1); } +void cgit_repolist_print_modtime(struct cgit_repo *repo) +{ + print_modtime(repo); +} + static int is_match(struct cgit_repo *repo) { if (!ctx.qry.search) @@ -115,6 +120,11 @@ static int is_visible(struct cgit_repo *repo) return 1; } +int cgit_repolist_is_visible(struct cgit_repo *repo) +{ + return is_visible(repo); +} + static int any_repos_visible(void) { int i; @@ -265,7 +275,7 @@ static int sort_repolist(char *field) } -void cgit_print_repolist(void) +void _orig_cgit_print_repolist(void) { int i, columns = 3, hits = 0, header = 0; char *last_section = NULL; |