List for cgit developers and users
 help / color / mirror / Atom feed
From: cgit at cryptocrack.de (Lukas Fleischer)
Subject: [PATCH 3/3] ui-shared.c: Remove unused function print_archive_ref()
Date: Mon,  4 Mar 2013 08:52:35 +0100	[thread overview]
Message-ID: <1362383555-6608-3-git-send-email-cgit@cryptocrack.de> (raw)
In-Reply-To: <1362383555-6608-1-git-send-email-cgit@cryptocrack.de>

This is no longer used as of commit f135569b.

Signed-off-by: Lukas Fleischer <cgit at cryptocrack.de>
---
 ui-shared.c | 39 ---------------------------------------
 1 file changed, 39 deletions(-)

diff --git a/ui-shared.c b/ui-shared.c
index 31224bc..77a302d 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -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)
 {
-- 
1.8.2.rc0.247.g811e0c0





  parent reply	other threads:[~2013-03-04  7:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-04  7:52 [PATCH 1/3] Mark several functions/variables static cgit
2013-03-04  7:52 ` [PATCH 2/3] ui-shared.c: Remove unused function cgit_currurl() cgit
2013-03-04  7:52 ` cgit [this message]
2013-03-05  0:50 ` [PATCH 1/3] Mark several functions/variables static Jason

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1362383555-6608-3-git-send-email-cgit@cryptocrack.de \
    --to=cgit@lists.zx2c4.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).