summaryrefslogtreecommitdiffabout
path: root/ui-tree.c
Unidiff
Diffstat (limited to 'ui-tree.c') (more/less context) (show whitespace changes)
-rw-r--r--ui-tree.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui-tree.c b/ui-tree.c
index 9876c99..4b8e7a0 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -64,96 +64,99 @@ static void print_object(const unsigned char *sha1, char *path)
64 64
65 65
66static int ls_item(const unsigned char *sha1, const char *base, int baselen, 66static int ls_item(const unsigned char *sha1, const char *base, int baselen,
67 const char *pathname, unsigned int mode, int stage, 67 const char *pathname, unsigned int mode, int stage,
68 void *cbdata) 68 void *cbdata)
69{ 69{
70 char *name; 70 char *name;
71 char *fullpath; 71 char *fullpath;
72 enum object_type type; 72 enum object_type type;
73 unsigned long size = 0; 73 unsigned long size = 0;
74 74
75 name = xstrdup(pathname); 75 name = xstrdup(pathname);
76 fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "", 76 fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "",
77 ctx.qry.path ? "/" : "", name); 77 ctx.qry.path ? "/" : "", name);
78 78
79 if (!S_ISGITLINK(mode)) { 79 if (!S_ISGITLINK(mode)) {
80 type = sha1_object_info(sha1, &size); 80 type = sha1_object_info(sha1, &size);
81 if (type == OBJ_BAD) { 81 if (type == OBJ_BAD) {
82 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", 82 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
83 name, 83 name,
84 sha1_to_hex(sha1)); 84 sha1_to_hex(sha1));
85 return 0; 85 return 0;
86 } 86 }
87 } 87 }
88 88
89 html("<tr><td class='ls-mode'>"); 89 html("<tr><td class='ls-mode'>");
90 cgit_print_filemode(mode); 90 cgit_print_filemode(mode);
91 html("</td><td>"); 91 html("</td><td>");
92 if (S_ISGITLINK(mode)) { 92 if (S_ISGITLINK(mode)) {
93 htmlf("<a class='ls-mod' href='"); 93 htmlf("<a class='ls-mod' href='");
94 html_attr(fmt(ctx.repo->module_link, 94 html_attr(fmt(ctx.repo->module_link,
95 name, 95 name,
96 sha1_to_hex(sha1))); 96 sha1_to_hex(sha1)));
97 html("'>"); 97 html("'>");
98 html_txt(name); 98 html_txt(name);
99 html("</a>"); 99 html("</a>");
100 } else if (S_ISDIR(mode)) { 100 } else if (S_ISDIR(mode)) {
101 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head, 101 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
102 curr_rev, fullpath); 102 curr_rev, fullpath);
103 } else { 103 } else {
104 cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head, 104 cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head,
105 curr_rev, fullpath); 105 curr_rev, fullpath);
106 } 106 }
107 htmlf("</td><td class='ls-size'>%li</td>", size); 107 htmlf("</td><td class='ls-size'>%li</td>", size);
108 108
109 html("<td>"); 109 html("<td>");
110 cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev, 110 cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev,
111 fullpath, 0, NULL, NULL, ctx.qry.showmsg); 111 fullpath, 0, NULL, NULL, ctx.qry.showmsg);
112 if (ctx.repo->max_stats)
113 cgit_stats_link("stats", NULL, "button", ctx.qry.head,
114 fullpath);
112 html("</td></tr>\n"); 115 html("</td></tr>\n");
113 free(name); 116 free(name);
114 return 0; 117 return 0;
115} 118}
116 119
117static void ls_head() 120static void ls_head()
118{ 121{
119 html("<table summary='tree listing' class='list'>\n"); 122 html("<table summary='tree listing' class='list'>\n");
120 html("<tr class='nohover'>"); 123 html("<tr class='nohover'>");
121 html("<th class='left'>Mode</th>"); 124 html("<th class='left'>Mode</th>");
122 html("<th class='left'>Name</th>"); 125 html("<th class='left'>Name</th>");
123 html("<th class='right'>Size</th>"); 126 html("<th class='right'>Size</th>");
124 html("<th/>"); 127 html("<th/>");
125 html("</tr>\n"); 128 html("</tr>\n");
126 header = 1; 129 header = 1;
127} 130}
128 131
129static void ls_tail() 132static void ls_tail()
130{ 133{
131 if (!header) 134 if (!header)
132 return; 135 return;
133 html("</table>\n"); 136 html("</table>\n");
134 header = 0; 137 header = 0;
135} 138}
136 139
137static void ls_tree(const unsigned char *sha1, char *path) 140static void ls_tree(const unsigned char *sha1, char *path)
138{ 141{
139 struct tree *tree; 142 struct tree *tree;
140 143
141 tree = parse_tree_indirect(sha1); 144 tree = parse_tree_indirect(sha1);
142 if (!tree) { 145 if (!tree) {
143 cgit_print_error(fmt("Not a tree object: %s", 146 cgit_print_error(fmt("Not a tree object: %s",
144 sha1_to_hex(sha1))); 147 sha1_to_hex(sha1)));
145 return; 148 return;
146 } 149 }
147 150
148 ls_head(); 151 ls_head();
149 read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL); 152 read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL);
150 ls_tail(); 153 ls_tail();
151} 154}
152 155
153 156
154static int walk_tree(const unsigned char *sha1, const char *base, int baselen, 157static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
155 const char *pathname, unsigned mode, int stage, 158 const char *pathname, unsigned mode, int stage,
156 void *cbdata) 159 void *cbdata)
157{ 160{
158 static int state; 161 static int state;
159 static char buffer[PATH_MAX]; 162 static char buffer[PATH_MAX];