X-Git-Url: https://git.cameronkatri.com/cgit.git/blobdiff_plain/73b54f7d7e21fbb15c50e21eafe1737df96b2073..652a5a18db3b0409fedfaf8c5720446d87628ba0:/ui-repolist.c diff --git a/ui-repolist.c b/ui-repolist.c index 25f076f..e138f59 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -6,30 +6,26 @@ * (see COPYING for full license text) */ -/* This is needed for strcasestr to be defined by */ -#define _GNU_SOURCE 1 -#include - -#include - #include "cgit.h" #include "html.h" #include "ui-shared.h" time_t read_agefile(char *path) { - FILE *f; - static char buf[64], buf2[64]; + time_t result; + size_t size; + char *buf; + static char buf2[64]; - if (!(f = fopen(path, "r"))) - return -1; - if (fgets(buf, sizeof(buf), f) == NULL) + if (readfile(path, &buf, &size)) return -1; - fclose(f); - if (parse_date(buf, buf2, sizeof(buf2))) - return strtoul(buf2, NULL, 10); + + if (parse_date(buf, buf2, sizeof(buf2)) > 0) + result = strtoul(buf2, NULL, 10); else - return 0; + result = 0; + free(buf); + return result; } static int get_repo_modtime(const struct cgit_repo *repo, time_t *mtime) @@ -92,7 +88,7 @@ int is_in_url(struct cgit_repo *repo) void print_sort_header(const char *title, const char *sort) { - htmlf(""); for (i=0; isection; + if (section && !strcmp(section, "")) + section = NULL; if (!sorted && - ((last_group == NULL && ctx.repo->group != NULL) || - (last_group != NULL && ctx.repo->group == NULL) || - (last_group != NULL && ctx.repo->group != NULL && - strcmp(ctx.repo->group, last_group)))) { - htmlf("", + ((last_section == NULL && section != NULL) || + (last_section != NULL && section == NULL) || + (last_section != NULL && section != NULL && + strcmp(section, last_section)))) { + htmlf("", columns); - html_txt(ctx.repo->group); + html_txt(section); html(""); - last_group = ctx.repo->group; + last_section = section; } htmlf("", - !sorted && ctx.repo->group ? "sublevel-repo" : "toplevel-repo"); + !sorted && section ? "sublevel-repo" : "toplevel-repo"); cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL); html(""); html_link_open(cgit_repourl(ctx.repo->url), NULL, NULL);