]> git.cameronkatri.com Git - cgit.git/blobdiff - ui-repolist.c
doc: use consistent id's when generating html files
[cgit.git] / ui-repolist.c
index 20a4f5642f51ee6857ff0d33d65d670c429f7e99..af52f9ba0c6459de7c899d5f15a86b3e9948f3d7 100644 (file)
@@ -225,7 +225,6 @@ static int sort_section(const void *a, const void *b)
        const struct cgit_repo *r1 = a;
        const struct cgit_repo *r2 = b;
        int result;
-       time_t t;
 
        result = cmp(r1->section, r2->section);
        if (!result) {
@@ -330,7 +329,8 @@ void cgit_print_repolist(void)
                repourl = cgit_repourl(ctx.repo->url);
                html_link_open(repourl, NULL, NULL);
                free(repourl);
-               html_ntxt(ctx.cfg.max_repodesc_len, ctx.repo->desc);
+               if (html_ntxt(ctx.repo->desc, ctx.cfg.max_repodesc_len) < 0)
+                       html("...");
                html_link_close();
                html("</td><td>");
                if (ctx.cfg.enable_index_owner) {