]> granicus.if.org Git - cgit/commitdiff
ui-shared.c: Remove unused function print_archive_ref()
authorLukas Fleischer <cgit@cryptocrack.de>
Mon, 4 Mar 2013 07:52:35 +0000 (08:52 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 5 Mar 2013 00:50:58 +0000 (19:50 -0500)
This is no longer used as of commit f135569b.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
ui-shared.c

index 31224bc1aa23cb80118275a5077c5f28a4f8bfe9..77a302d0c5bba8a54c29a6551b15cea6f02c9205 100644 (file)
@@ -712,45 +712,6 @@ static int print_branch_option(const char *refname, const unsigned char *sha1,
        return 0;
 }
 
-static int print_archive_ref(const char *refname, const unsigned char *sha1,
-                            int flags, void *cb_data)
-{
-       struct tag *tag;
-       struct taginfo *info;
-       struct object *obj;
-       char buf[256], *url;
-       unsigned char fileid[20];
-       int *header = (int *)cb_data;
-
-       if (prefixcmp(refname, "refs/archives"))
-               return 0;
-       strncpy(buf, refname + 14, sizeof(buf));
-       obj = parse_object(sha1);
-       if (!obj)
-               return 1;
-       if (obj->type == OBJ_TAG) {
-               tag = lookup_tag(sha1);
-               if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
-                       return 0;
-               hashcpy(fileid, tag->tagged->sha1);
-       } else if (obj->type != OBJ_BLOB) {
-               return 0;
-       } else {
-               hashcpy(fileid, sha1);
-       }
-       if (!*header) {
-               html("<h1>download</h1>\n");
-               *header = 1;
-       }
-       url = cgit_pageurl(ctx.qry.repo, "blob",
-                          fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
-                              buf));
-       html_link_open(url, NULL, "menu");
-       html_txt(strlpart(buf, 20));
-       html_link_close();
-       return 0;
-}
-
 void cgit_add_hidden_formfields(int incl_head, int incl_search,
                                const char *page)
 {