Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.zx2c4.com/cgit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Krelin <hacker@klever.net>2007-07-21 21:51:47 +0400
committerMichael Krelin <hacker@klever.net>2007-07-21 21:51:47 +0400
commitd6b01dac856efda565d4085e77826fd9ac83348a (patch)
treea197bfddc04f9d0b214e71db66447a7efdf54cf5
parentbbd4a14456789a2114d8bb0f7ba245af3605bb49 (diff)
link raw blob from tree file view
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r--ui-tree.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui-tree.c b/ui-tree.c
index c5d64ff..75ce449 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -32,6 +32,10 @@ static void print_object(const unsigned char *sha1, char *path)
return;
}
+ html(" blob: <a href='");
+ html_attr(cgit_pageurl(cgit_query_repo, "blob", fmt("id=%s", sha1_to_hex(sha1))));
+ htmlf("'>%s</a>",sha1_to_hex(sha1));
+
html("<table class='blob'>\n");
idx = 0;
start = 0;