summaryrefslogtreecommitdiffabout
path: root/ui-tree.c
Side-by-side diff
Diffstat (limited to 'ui-tree.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-tree.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/ui-tree.c b/ui-tree.c
index b00670e..60f7560 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -16,11 +16,13 @@ static int print_entry(const unsigned char *sha1, const char *base,
char *name;
- char type[20];
+ enum object_type type;
unsigned long size;
- if (sha1_object_info(sha1, type, &size)) {
- cgit_print_error(fmt("Bad object name: %s",
- sha1_to_hex(sha1)));
+ name = xstrdup(pathname);
+ type = sha1_object_info(sha1, &size);
+ if (type == OBJ_BAD) {
+ htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
+ name,
+ sha1_to_hex(sha1));
return 0;
}
- name = xstrdup(pathname);
html("<tr><td class='filemode'>");
@@ -28,3 +30,5 @@ static int print_entry(const unsigned char *sha1, const char *base,
html("</td><td>");
- if (S_ISDIR(mode)) {
+ if (S_ISDIRLNK(mode)) {
+ htmlf("<div class='ls-dirlnk'>%s => submodule</div>", name);
+ } else if (S_ISDIR(mode)) {
html("<div class='ls-dir'><a href='");
@@ -35,2 +39,3 @@ static int print_entry(const unsigned char *sha1, const char *base,
pathname)));
+ htmlf("'>%s</a></div>", name);
} else {
@@ -41,8 +46,5 @@ static int print_entry(const unsigned char *sha1, const char *base,
pathname)));
+ htmlf("'>%s</a></div>", name);
}
- html("'>");
- html_txt(name);
- if (S_ISDIR(mode))
- html("/");
- html("</a></div></td>");
+ html("</div></td>");
htmlf("<td class='filesize'>%li</td>", size);