ui-view: show pathname if specified in querystring

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
Lars Hjemli 2007-05-08 23:52:56 +02:00
parent 61c3ca978c
commit 7250a15467
3 changed files with 10 additions and 5 deletions

View file

@ -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");