From 7250a154678477a1e8260efbc9810ec389754ef9 Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Tue, 8 May 2007 23:52:56 +0200 Subject: ui-view: show pathname if specified in querystring Signed-off-by: Lars Hjemli --- ui-view.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'ui-view.c') diff --git a/ui-view.c b/ui-view.c index 9d23c45..7d022fd 100644 --- a/ui-view.c +++ b/ui-view.c @@ -8,7 +8,7 @@ #include "cgit.h" -void cgit_print_view(const char *hex) +void cgit_print_view(const char *hex, char *path) { unsigned char sha1[20]; enum object_type type; @@ -34,8 +34,13 @@ void cgit_print_view(const char *hex) buf[size] = '\0'; html("\n"); - htmlf("\n", - typename(type), hex, size); + html("\n"); html("\n"); -- cgit v1.2.1
%s %s, %li bytes
"); + if (path) + htmlf("%s (", path); + htmlf("%s %s, %li bytes", typename(type), hex, size); + if (path) + html(")"); + html("
\n"); html_txt(buf); html("\n