]> git.cameronkatri.com Git - cgit.git/blobdiff - ui-refs.c
git: update to v2.31.0
[cgit.git] / ui-refs.c
index 50d9d3002951760c4cf228d0cce6af7c016b9511..456f610df41cef1e8b3ebdfd02fd44204a3461d4 100644 (file)
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -90,34 +90,6 @@ static void print_tag_header(void)
             "<th class='left' colspan='2'>Age</th></tr>\n");
 }
 
-static void print_tag_downloads(const struct cgit_repo *repo, const char *ref)
-{
-       const struct cgit_snapshot_format* f;
-       const char *basename;
-       struct strbuf filename = STRBUF_INIT;
-       size_t prefixlen;
-
-       if (!ref || strlen(ref) < 1)
-               return;
-
-       basename = cgit_snapshot_prefix(repo);
-       if (starts_with(ref, basename))
-               strbuf_addstr(&filename, ref);
-       else
-               cgit_compose_snapshot_prefix(&filename, basename, ref);
-       prefixlen = filename.len;
-       for (f = cgit_snapshot_formats; f->suffix; f++) {
-               if (!(repo->snapshots & f->bit))
-                       continue;
-               strbuf_setlen(&filename, prefixlen);
-               strbuf_addstr(&filename, f->suffix);
-               cgit_snapshot_link(filename.buf, NULL, NULL, NULL, NULL, filename.buf);
-               html("&nbsp;&nbsp;");
-       }
-
-       strbuf_release(&filename);
-}
-
 static int print_tag(struct refinfo *ref)
 {
        struct tag *tag = NULL;
@@ -137,7 +109,7 @@ static int print_tag(struct refinfo *ref)
        cgit_tag_link(name, NULL, NULL, name);
        html("</td><td>");
        if (ctx.repo->snapshots && (obj->type == OBJ_COMMIT))
-               print_tag_downloads(ctx.repo, name);
+               cgit_print_snapshot_links(ctx.repo, name, "&nbsp;&nbsp;");
        else
                cgit_object_link(obj);
        html("</td><td>");
@@ -164,7 +136,7 @@ static int print_tag(struct refinfo *ref)
        return 0;
 }
 
-static void print_refs_link(char *path)
+static void print_refs_link(const char *path)
 {
        html("<tr class='nohover'><td colspan='5'>");
        cgit_refs_link("[...]", NULL, NULL, ctx.qry.head, NULL, path);