X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/25da3f76255754c8b3f98232a5eb84f47088d0f7..48c487d72daef7e71683a85f775db8d36ab20341:/ui-repolist.c diff --git a/ui-repolist.c b/ui-repolist.c index e5c6c20..2018dab 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -44,7 +44,6 @@ static void print_modtime(struct repoinfo *repo) void cgit_print_repolist(struct cacheitem *item) { - struct repoinfo *repo; int i; char *last_group = NULL; @@ -65,37 +64,33 @@ void cgit_print_repolist(struct cacheitem *item) "Links\n"); for (i=0; igroup != NULL) || - (last_group != NULL && repo->group == NULL) || - (last_group != NULL && repo->group!= NULL && - strcmp(repo->group, last_group))) { + cgit_repo = &cgit_repolist.repos[i]; + if ((last_group == NULL && cgit_repo->group != NULL) || + (last_group != NULL && cgit_repo->group == NULL) || + (last_group != NULL && cgit_repo->group != NULL && + strcmp(cgit_repo->group, last_group))) { html(""); - html_txt(repo->group); + html_txt(cgit_repo->group); html(""); - last_group = repo->group; + last_group = cgit_repo->group; } htmlf("", - repo->group ? "sublevel-repo" : "toplevel-repo"); - html_link_open(cgit_repourl(repo->url), repo->desc, NULL); - html_txt(repo->name); + cgit_repo->group ? "sublevel-repo" : "toplevel-repo"); + html_link_open(cgit_repourl(cgit_repo->url), NULL, NULL); + html_txt(cgit_repo->name); html_link_close(); html(""); - html_ntxt(cgit_max_repodesc_len, repo->desc); + html_ntxt(cgit_max_repodesc_len, cgit_repo->desc); html(""); - html_txt(repo->owner); + html_txt(cgit_repo->owner); html(""); - print_modtime(repo); + print_modtime(cgit_repo); html(""); - html_link_open(cgit_repourl(repo->url), + html_link_open(cgit_repourl(cgit_repo->url), "Summary", "button"); html("S"); - html_link_open(cgit_pageurl(repo->name, "log", NULL), - "Log", "button"); - html("L"); - html_link_open(cgit_pageurl(repo->name, "tree", NULL), - "Files", "button"); - html("F"); + cgit_log_link("L", "Log", "button", NULL, NULL, NULL); + cgit_tree_link("F", "Files", "button", NULL, NULL, NULL); html("\n"); } html("");