From: Peter Colberg Date: Tue, 8 Dec 2015 17:53:08 +0000 (-0500) Subject: ui-repolist: extract repo visibility criteria to separate function X-Git-Tag: v0.12~9 X-Git-Url: https://git.cameronkatri.com/cgit.git/commitdiff_plain/a4014d0dbfcab1de7293179966c9b7fcfcc7b925?hp=da1b89710f5eb25297a66613ff3130b2a31cb86a ui-repolist: extract repo visibility criteria to separate function Signed-off-by: Peter Colberg --- diff --git a/ui-repolist.c b/ui-repolist.c index 8d982c4..4912fa5 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -106,6 +106,15 @@ static int is_in_url(struct cgit_repo *repo) return 0; } +static int is_visible(struct cgit_repo *repo) +{ + if (repo->hide || repo->ignore) + return 0; + if (!(is_match(repo) && is_in_url(repo))) + return 0; + return 1; +} + static void print_sort_header(const char *title, const char *sort) { char *currenturl = cgit_currenturl(); @@ -278,9 +287,7 @@ void cgit_print_repolist(void) html(""); for (i = 0; i < cgit_repolist.count; i++) { ctx.repo = &cgit_repolist.repos[i]; - if (ctx.repo->hide || ctx.repo->ignore) - continue; - if (!(is_match(ctx.repo) && is_in_url(ctx.repo))) + if (!is_visible(ctx.repo)) continue; hits++; if (hits <= ctx.qry.ofs)