|
diff --git a/ui-tree.c b/ui-tree.c index 1037c82..c5d64ff 100644 --- a/ ui-tree.c+++ b/ ui-tree.c |
|
@@ -47,98 +47,98 @@ static void print_object(const unsigned char *sha1, char *path) |
47 | } |
47 | } |
48 | idx++; |
48 | idx++; |
49 | } |
49 | } |
50 | html("</table>\n"); |
50 | html("</table>\n"); |
51 | } |
51 | } |
52 | |
52 | |
53 | |
53 | |
54 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
54 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
55 | const char *pathname, unsigned int mode, int stage) |
55 | const char *pathname, unsigned int mode, int stage) |
56 | { |
56 | { |
57 | char *name; |
57 | char *name; |
58 | char *fullpath; |
58 | char *fullpath; |
59 | enum object_type type; |
59 | enum object_type type; |
60 | unsigned long size = 0; |
60 | unsigned long size = 0; |
61 | |
61 | |
62 | name = xstrdup(pathname); |
62 | name = xstrdup(pathname); |
63 | fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "", |
63 | fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "", |
64 | cgit_query_path ? "/" : "", name); |
64 | cgit_query_path ? "/" : "", name); |
65 | |
65 | |
66 | type = sha1_object_info(sha1, &size); |
66 | type = sha1_object_info(sha1, &size); |
67 | if (type == OBJ_BAD && !S_ISDIRLNK(mode)) { |
67 | if (type == OBJ_BAD && !S_ISDIRLNK(mode)) { |
68 | htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", |
68 | htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", |
69 | name, |
69 | name, |
70 | sha1_to_hex(sha1)); |
70 | sha1_to_hex(sha1)); |
71 | return 0; |
71 | return 0; |
72 | } |
72 | } |
73 | |
73 | |
74 | html("<tr><td class='ls-mode'>"); |
74 | html("<tr><td class='ls-mode'>"); |
75 | html_filemode(mode); |
75 | html_filemode(mode); |
76 | html("</td><td>"); |
76 | html("</td><td>"); |
77 | if (S_ISDIRLNK(mode)) { |
77 | if (S_ISDIRLNK(mode)) { |
78 | htmlf("<a class='ls-mod' href='"); |
78 | htmlf("<a class='ls-mod' href='"); |
79 | html_attr(fmt(cgit_repo->module_link, |
79 | html_attr(fmt(cgit_repo->module_link, |
80 | name, |
80 | name, |
81 | sha1_to_hex(sha1))); |
81 | sha1_to_hex(sha1))); |
82 | html("'>"); |
82 | html("'>"); |
83 | html_txt(name); |
83 | html_txt(name); |
84 | html("</a>"); |
84 | html("</a>"); |
85 | } else if (S_ISDIR(mode)) { |
85 | } else if (S_ISDIR(mode)) { |
86 | cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, |
86 | cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, |
87 | curr_rev, fullpath); |
87 | curr_rev, fullpath); |
88 | } else { |
88 | } else { |
89 | cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, |
89 | cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, |
90 | curr_rev, fullpath); |
90 | curr_rev, fullpath); |
91 | } |
91 | } |
92 | htmlf("</td><td class='ls-size'>%li</td>", size); |
92 | htmlf("</td><td class='ls-size'>%li</td>", size); |
93 | |
93 | |
94 | html("<td>"); |
94 | html("<td>"); |
95 | cgit_log_link("L", "Log", "button", cgit_query_head, curr_rev, |
95 | cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev, |
96 | fullpath); |
96 | fullpath, 0); |
97 | html("</td></tr>\n"); |
97 | html("</td></tr>\n"); |
98 | free(name); |
98 | free(name); |
99 | return 0; |
99 | return 0; |
100 | } |
100 | } |
101 | |
101 | |
102 | static void ls_head() |
102 | static void ls_head() |
103 | { |
103 | { |
104 | html("<table class='list'>\n"); |
104 | html("<table class='list'>\n"); |
105 | html("<tr class='nohover'>"); |
105 | html("<tr class='nohover'>"); |
106 | html("<th class='left'>Mode</th>"); |
106 | html("<th class='left'>Mode</th>"); |
107 | html("<th class='left'>Name</th>"); |
107 | html("<th class='left'>Name</th>"); |
108 | html("<th class='right'>Size</th>"); |
108 | html("<th class='right'>Size</th>"); |
109 | html("<th/>"); |
109 | html("<th/>"); |
110 | html("</tr>\n"); |
110 | html("</tr>\n"); |
111 | header = 1; |
111 | header = 1; |
112 | } |
112 | } |
113 | |
113 | |
114 | static void ls_tail() |
114 | static void ls_tail() |
115 | { |
115 | { |
116 | if (!header) |
116 | if (!header) |
117 | return; |
117 | return; |
118 | html("</table>\n"); |
118 | html("</table>\n"); |
119 | header = 0; |
119 | header = 0; |
120 | } |
120 | } |
121 | |
121 | |
122 | static void ls_tree(const unsigned char *sha1, char *path) |
122 | static void ls_tree(const unsigned char *sha1, char *path) |
123 | { |
123 | { |
124 | struct tree *tree; |
124 | struct tree *tree; |
125 | |
125 | |
126 | tree = parse_tree_indirect(sha1); |
126 | tree = parse_tree_indirect(sha1); |
127 | if (!tree) { |
127 | if (!tree) { |
128 | cgit_print_error(fmt("Not a tree object: %s", |
128 | cgit_print_error(fmt("Not a tree object: %s", |
129 | sha1_to_hex(sha1))); |
129 | sha1_to_hex(sha1))); |
130 | return; |
130 | return; |
131 | } |
131 | } |
132 | |
132 | |
133 | ls_head(); |
133 | ls_head(); |
134 | read_tree_recursive(tree, "", 0, 1, NULL, ls_item); |
134 | read_tree_recursive(tree, "", 0, 1, NULL, ls_item); |
135 | ls_tail(); |
135 | ls_tail(); |
136 | } |
136 | } |
137 | |
137 | |
138 | |
138 | |
139 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, |
139 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, |
140 | const char *pathname, unsigned mode, int stage) |
140 | const char *pathname, unsigned mode, int stage) |
141 | { |
141 | { |
142 | static int state; |
142 | static int state; |
143 | static char buffer[PATH_MAX]; |
143 | static char buffer[PATH_MAX]; |
144 | char *url; |
144 | char *url; |
|