mirror of
https://git.zx2c4.com/cgit
synced 2025-08-02 00:54:36 +02:00
ui-view: show pathname if specified in querystring
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
61c3ca978c
commit
7250a15467
3 changed files with 10 additions and 5 deletions
11
ui-view.c
11
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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue