about summary refs log tree commit diff
path: root/ui-view.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-05-08 23:52:56 +0200
committerLars Hjemli <hjemli@gmail.com>2007-05-08 23:52:56 +0200
commit7250a154678477a1e8260efbc9810ec389754ef9 (patch)
tree519559a2f9238fc386b7715c55bc3e2326be8d54 /ui-view.c
parentUpdate to libgit 1.5.2-rc2 (diff)
downloadcgit-pink-7250a154678477a1e8260efbc9810ec389754ef9.tar.gz
cgit-pink-7250a154678477a1e8260efbc9810ec389754ef9.zip
ui-view: show pathname if specified in querystring
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r--ui-view.c11
1 files changed, 8 insertions, 3 deletions
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("<table class='list'>\n");
-	htmlf("<tr class='nohover'><th class='left'>%s %s, %li bytes</th></tr>\n",
-	      typename(type), hex, size);
+	html("<tr class='nohover'><th class='left'>");
+	if (path)
+		htmlf("%s (", path);
+	htmlf("%s %s, %li bytes", typename(type), hex, size);
+	if (path)
+		html(")");
+	html("</th></tr>\n");
 	html("<tr><td class='blob'>\n");
 	html_txt(buf);
 	html("\n</td></tr>\n");