From 13032727ffa81a4de8964d4002c359c0983cdeb2 Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Fri, 16 Oct 2009 02:03:32 +0200 Subject: ui-shared.c: prettify download links when generated from tag page Signed-off-by: Lars Hjemli --- ui-shared.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'ui-shared.c') diff --git a/ui-shared.c b/ui-shared.c index 07d5dd4..6cb7edb 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -760,13 +760,18 @@ void cgit_print_snapshot_links(const char *repo, const char *head, const char *hex, int snapshots) { const struct cgit_snapshot_format* f; + char *prefix; char *filename; + unsigned char sha1[20]; + if (get_sha1(fmt("refs/tags/%s", hex), sha1) == 0 && + (hex[0] == 'v' || hex[0] == 'V') && isdigit(hex[1])) + hex++; + prefix = xstrdup(fmt("%s-%s", cgit_repobasename(repo), hex)); for (f = cgit_snapshot_formats; f->suffix; f++) { if (!(snapshots & f->bit)) continue; - filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, - f->suffix); + filename = fmt("%s%s", prefix, f->suffix); cgit_snapshot_link(filename, NULL, NULL, NULL, NULL, filename); html("
"); } -- cgit v1.2.3-24-g4f1b