summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2007-06-29 18:27:41 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-06-29 18:31:00 (UTC)
commit103940fe6b0914dc42b8b033d1d328f38135ca5f (patch) (unidiff)
tree2bc9c831dc5158032e68e065519e7ee243b6731d
parent382805ee83b6e6f165159312a9fe20e3971897b6 (diff)
downloadcgit-103940fe6b0914dc42b8b033d1d328f38135ca5f.zip
cgit-103940fe6b0914dc42b8b033d1d328f38135ca5f.tar.gz
cgit-103940fe6b0914dc42b8b033d1d328f38135ca5f.tar.bz2
Add ofs argument to cgit_log_link and use it in ui-log.c
This fixes a bug in the prev/next links on the log page: when on the default branch the links to prev/next page would contain h=(null). Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h2
-rw-r--r--ui-log.c16
-rw-r--r--ui-repolist.c2
-rw-r--r--ui-shared.c22
-rw-r--r--ui-summary.c2
-rw-r--r--ui-tree.c2
6 files changed, 30 insertions, 16 deletions
diff --git a/cgit.h b/cgit.h
index ddb2fff..a59a370 100644
--- a/cgit.h
+++ b/cgit.h
@@ -177,60 +177,60 @@ extern char *fmt(const char *format,...);
177 177
178extern void html(const char *txt); 178extern void html(const char *txt);
179extern void htmlf(const char *format,...); 179extern void htmlf(const char *format,...);
180extern void html_txt(char *txt); 180extern void html_txt(char *txt);
181extern void html_ntxt(int len, char *txt); 181extern void html_ntxt(int len, char *txt);
182extern void html_attr(char *txt); 182extern void html_attr(char *txt);
183extern void html_hidden(char *name, char *value); 183extern void html_hidden(char *name, char *value);
184extern void html_link_open(char *url, char *title, char *class); 184extern void html_link_open(char *url, char *title, char *class);
185extern void html_link_close(void); 185extern void html_link_close(void);
186extern void html_filemode(unsigned short mode); 186extern void html_filemode(unsigned short mode);
187extern int html_include(const char *filename); 187extern int html_include(const char *filename);
188 188
189extern int cgit_read_config(const char *filename, configfn fn); 189extern int cgit_read_config(const char *filename, configfn fn);
190extern int cgit_parse_query(char *txt, configfn fn); 190extern int cgit_parse_query(char *txt, configfn fn);
191extern struct commitinfo *cgit_parse_commit(struct commit *commit); 191extern struct commitinfo *cgit_parse_commit(struct commit *commit);
192extern struct taginfo *cgit_parse_tag(struct tag *tag); 192extern struct taginfo *cgit_parse_tag(struct tag *tag);
193extern void cgit_parse_url(const char *url); 193extern void cgit_parse_url(const char *url);
194 194
195extern char *cache_safe_filename(const char *unsafe); 195extern char *cache_safe_filename(const char *unsafe);
196extern int cache_lock(struct cacheitem *item); 196extern int cache_lock(struct cacheitem *item);
197extern int cache_unlock(struct cacheitem *item); 197extern int cache_unlock(struct cacheitem *item);
198extern int cache_cancel_lock(struct cacheitem *item); 198extern int cache_cancel_lock(struct cacheitem *item);
199extern int cache_exist(struct cacheitem *item); 199extern int cache_exist(struct cacheitem *item);
200extern int cache_expired(struct cacheitem *item); 200extern int cache_expired(struct cacheitem *item);
201 201
202extern char *cgit_repourl(const char *reponame); 202extern char *cgit_repourl(const char *reponame);
203extern char *cgit_pageurl(const char *reponame, const char *pagename, 203extern char *cgit_pageurl(const char *reponame, const char *pagename,
204 const char *query); 204 const char *query);
205 205
206extern void cgit_tree_link(char *name, char *title, char *class, char *head, 206extern void cgit_tree_link(char *name, char *title, char *class, char *head,
207 char *rev, char *path); 207 char *rev, char *path);
208extern void cgit_log_link(char *name, char *title, char *class, char *head, 208extern void cgit_log_link(char *name, char *title, char *class, char *head,
209 char *rev, char *path); 209 char *rev, char *path, int ofs);
210extern void cgit_commit_link(char *name, char *title, char *class, char *head, 210extern void cgit_commit_link(char *name, char *title, char *class, char *head,
211 char *rev); 211 char *rev);
212extern void cgit_diff_link(char *name, char *title, char *class, char *head, 212extern void cgit_diff_link(char *name, char *title, char *class, char *head,
213 char *new_rev, char *old_rev, char *path); 213 char *new_rev, char *old_rev, char *path);
214 214
215extern void cgit_print_error(char *msg); 215extern void cgit_print_error(char *msg);
216extern void cgit_print_date(time_t secs, char *format); 216extern void cgit_print_date(time_t secs, char *format);
217extern void cgit_print_age(time_t t, time_t max_relative, char *format); 217extern void cgit_print_age(time_t t, time_t max_relative, char *format);
218extern void cgit_print_docstart(char *title, struct cacheitem *item); 218extern void cgit_print_docstart(char *title, struct cacheitem *item);
219extern void cgit_print_docend(); 219extern void cgit_print_docend();
220extern void cgit_print_pageheader(char *title, int show_search); 220extern void cgit_print_pageheader(char *title, int show_search);
221extern void cgit_print_snapshot_start(const char *mimetype, 221extern void cgit_print_snapshot_start(const char *mimetype,
222 const char *filename, 222 const char *filename,
223 struct cacheitem *item); 223 struct cacheitem *item);
224 224
225extern void cgit_print_repolist(struct cacheitem *item); 225extern void cgit_print_repolist(struct cacheitem *item);
226extern void cgit_print_summary(); 226extern void cgit_print_summary();
227extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager); 227extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager);
228extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); 228extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path);
229extern void cgit_print_tree(const char *rev, char *path); 229extern void cgit_print_tree(const char *rev, char *path);
230extern void cgit_print_commit(char *hex); 230extern void cgit_print_commit(char *hex);
231extern void cgit_print_diff(const char *new_hex, const char *old_hex); 231extern void cgit_print_diff(const char *new_hex, const char *old_hex);
232extern void cgit_print_snapshot(struct cacheitem *item, const char *hex, 232extern void cgit_print_snapshot(struct cacheitem *item, const char *hex,
233 const char *format, const char *prefix, 233 const char *format, const char *prefix,
234 const char *filename); 234 const char *filename);
235 235
236#endif /* CGIT_H */ 236#endif /* CGIT_H */
diff --git a/ui-log.c b/ui-log.c
index 95cb453..d38e40a 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -84,47 +84,45 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, i
84 html("<tr class='nohover'><th class='left'>Age</th>" 84 html("<tr class='nohover'><th class='left'>Age</th>"
85 "<th class='left'>Message</th>"); 85 "<th class='left'>Message</th>");
86 86
87 if (cgit_repo->enable_log_filecount) { 87 if (cgit_repo->enable_log_filecount) {
88 html("<th class='left'>Files</th>"); 88 html("<th class='left'>Files</th>");
89 if (cgit_repo->enable_log_linecount) 89 if (cgit_repo->enable_log_linecount)
90 html("<th class='left'>Lines</th>"); 90 html("<th class='left'>Lines</th>");
91 } 91 }
92 html("<th class='left'>Author</th></tr>\n"); 92 html("<th class='left'>Author</th></tr>\n");
93 93
94 if (ofs<0) 94 if (ofs<0)
95 ofs = 0; 95 ofs = 0;
96 96
97 for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) { 97 for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) {
98 free(commit->buffer); 98 free(commit->buffer);
99 commit->buffer = NULL; 99 commit->buffer = NULL;
100 free_commit_list(commit->parents); 100 free_commit_list(commit->parents);
101 commit->parents = NULL; 101 commit->parents = NULL;
102 } 102 }
103 103
104 for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) { 104 for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) {
105 print_commit(commit); 105 print_commit(commit);
106 free(commit->buffer); 106 free(commit->buffer);
107 commit->buffer = NULL; 107 commit->buffer = NULL;
108 free_commit_list(commit->parents); 108 free_commit_list(commit->parents);
109 commit->parents = NULL; 109 commit->parents = NULL;
110 } 110 }
111 html("</table>\n"); 111 html("</table>\n");
112 112
113 if (pager) { 113 if (pager) {
114 html("<div class='pager'>"); 114 html("<div class='pager'>");
115 if (ofs > 0) { 115 if (ofs > 0) {
116 html("&nbsp;<a href='"); 116 cgit_log_link("[prev]", NULL, NULL, cgit_query_head,
117 html(cgit_pageurl(cgit_query_repo, cgit_query_page, 117 cgit_query_sha1, cgit_query_path,
118 fmt("h=%s&amp;ofs=%d", tip, ofs-cnt))); 118 ofs - cnt);
119 html("'>[prev]</a>&nbsp;"); 119 html("&nbsp;");
120 } 120 }
121
122 if ((commit = get_revision(&rev)) != NULL) { 121 if ((commit = get_revision(&rev)) != NULL) {
123 html("&nbsp;<a href='"); 122 cgit_log_link("[next]", NULL, NULL, cgit_query_head,
124 html(cgit_pageurl(cgit_query_repo, "log", 123 cgit_query_sha1, cgit_query_path,
125 fmt("h=%s&amp;ofs=%d", tip, ofs+cnt))); 124 ofs + cnt);
126 html("'>[next]</a>&nbsp;");
127 } 125 }
128 html("</div>"); 126 html("</div>");
129 } 127 }
130} 128}
diff --git a/ui-repolist.c b/ui-repolist.c
index c735368..4c86543 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -69,41 +69,41 @@ void cgit_print_repolist(struct cacheitem *item)
69 html("<th>Links</th>"); 69 html("<th>Links</th>");
70 html("</tr>\n"); 70 html("</tr>\n");
71 71
72 for (i=0; i<cgit_repolist.count; i++) { 72 for (i=0; i<cgit_repolist.count; i++) {
73 cgit_repo = &cgit_repolist.repos[i]; 73 cgit_repo = &cgit_repolist.repos[i];
74 if ((last_group == NULL && cgit_repo->group != NULL) || 74 if ((last_group == NULL && cgit_repo->group != NULL) ||
75 (last_group != NULL && cgit_repo->group == NULL) || 75 (last_group != NULL && cgit_repo->group == NULL) ||
76 (last_group != NULL && cgit_repo->group != NULL && 76 (last_group != NULL && cgit_repo->group != NULL &&
77 strcmp(cgit_repo->group, last_group))) { 77 strcmp(cgit_repo->group, last_group))) {
78 htmlf("<tr class='nohover'><td colspan='%d' class='repogroup'>", 78 htmlf("<tr class='nohover'><td colspan='%d' class='repogroup'>",
79 columns); 79 columns);
80 html_txt(cgit_repo->group); 80 html_txt(cgit_repo->group);
81 html("</td></tr>"); 81 html("</td></tr>");
82 last_group = cgit_repo->group; 82 last_group = cgit_repo->group;
83 } 83 }
84 htmlf("<tr><td class='%s'>", 84 htmlf("<tr><td class='%s'>",
85 cgit_repo->group ? "sublevel-repo" : "toplevel-repo"); 85 cgit_repo->group ? "sublevel-repo" : "toplevel-repo");
86 html_link_open(cgit_repourl(cgit_repo->url), NULL, NULL); 86 html_link_open(cgit_repourl(cgit_repo->url), NULL, NULL);
87 html_txt(cgit_repo->name); 87 html_txt(cgit_repo->name);
88 html_link_close(); 88 html_link_close();
89 html("</td><td>"); 89 html("</td><td>");
90 html_ntxt(cgit_max_repodesc_len, cgit_repo->desc); 90 html_ntxt(cgit_max_repodesc_len, cgit_repo->desc);
91 html("</td><td>"); 91 html("</td><td>");
92 html_txt(cgit_repo->owner); 92 html_txt(cgit_repo->owner);
93 html("</td><td>"); 93 html("</td><td>");
94 print_modtime(cgit_repo); 94 print_modtime(cgit_repo);
95 html("</td>"); 95 html("</td>");
96 if (cgit_enable_index_links) { 96 if (cgit_enable_index_links) {
97 html("<td>"); 97 html("<td>");
98 html_link_open(cgit_repourl(cgit_repo->url), 98 html_link_open(cgit_repourl(cgit_repo->url),
99 NULL, "button"); 99 NULL, "button");
100 html("summary</a>"); 100 html("summary</a>");
101 cgit_log_link("log", NULL, "button", NULL, NULL, NULL); 101 cgit_log_link("log", NULL, "button", NULL, NULL, NULL, 0);
102 cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL); 102 cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL);
103 html("</td>"); 103 html("</td>");
104 } 104 }
105 html("</tr>\n"); 105 html("</tr>\n");
106 } 106 }
107 html("</table>"); 107 html("</table>");
108 cgit_print_docend(); 108 cgit_print_docend();
109} 109}
diff --git a/ui-shared.c b/ui-shared.c
index 64c237f..bfcc2ac 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -134,67 +134,83 @@ static char *repolink(char *title, char *class, char *page, char *head,
134 if (head && strcmp(head, cgit_repo->defbranch)) { 134 if (head && strcmp(head, cgit_repo->defbranch)) {
135 html(delim); 135 html(delim);
136 html("h="); 136 html("h=");
137 html_attr(head); 137 html_attr(head);
138 delim = "&amp;"; 138 delim = "&amp;";
139 } 139 }
140 return fmt("%s", delim); 140 return fmt("%s", delim);
141} 141}
142 142
143static void reporevlink(char *page, char *name, char *title, char *class, 143static void reporevlink(char *page, char *name, char *title, char *class,
144 char *head, char *rev, char *path) 144 char *head, char *rev, char *path)
145{ 145{
146 char *delim; 146 char *delim;
147 147
148 delim = repolink(title, class, page, head, path); 148 delim = repolink(title, class, page, head, path);
149 if (rev && strcmp(rev, cgit_query_head)) { 149 if (rev && strcmp(rev, cgit_query_head)) {
150 html(delim); 150 html(delim);
151 html("id="); 151 html("id=");
152 html_attr(rev); 152 html_attr(rev);
153 } 153 }
154 html("'>"); 154 html("'>");
155 html_txt(name); 155 html_txt(name);
156 html("</a>"); 156 html("</a>");
157} 157}
158 158
159void cgit_tree_link(char *name, char *title, char *class, char *head, 159void cgit_tree_link(char *name, char *title, char *class, char *head,
160 char *rev, char *path) 160 char *rev, char *path)
161{ 161{
162 reporevlink("tree", name, title, class, head, rev, path); 162 reporevlink("tree", name, title, class, head, rev, path);
163} 163}
164 164
165void cgit_log_link(char *name, char *title, char *class, char *head, 165void cgit_log_link(char *name, char *title, char *class, char *head,
166 char *rev, char *path) 166 char *rev, char *path, int ofs)
167{ 167{
168 reporevlink("log", name, title, class, head, rev, path); 168 char *delim;
169
170 delim = repolink(title, class, "log", head, path);
171 if (rev && strcmp(rev, cgit_query_head)) {
172 html(delim);
173 html("id=");
174 html_attr(rev);
175 delim = "&";
176 }
177 if (ofs > 0) {
178 html(delim);
179 html("ofs=");
180 htmlf("%d", ofs);
181 }
182 html("'>");
183 html_txt(name);
184 html("</a>");
169} 185}
170 186
171void cgit_commit_link(char *name, char *title, char *class, char *head, 187void cgit_commit_link(char *name, char *title, char *class, char *head,
172 char *rev) 188 char *rev)
173{ 189{
174 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) { 190 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) {
175 name[cgit_max_msg_len] = '\0'; 191 name[cgit_max_msg_len] = '\0';
176 name[cgit_max_msg_len - 1] = '.'; 192 name[cgit_max_msg_len - 1] = '.';
177 name[cgit_max_msg_len - 2] = '.'; 193 name[cgit_max_msg_len - 2] = '.';
178 name[cgit_max_msg_len - 3] = '.'; 194 name[cgit_max_msg_len - 3] = '.';
179 } 195 }
180 reporevlink("commit", name, title, class, head, rev, NULL); 196 reporevlink("commit", name, title, class, head, rev, NULL);
181} 197}
182 198
183void cgit_diff_link(char *name, char *title, char *class, char *head, 199void cgit_diff_link(char *name, char *title, char *class, char *head,
184 char *new_rev, char *old_rev, char *path) 200 char *new_rev, char *old_rev, char *path)
185{ 201{
186 char *delim; 202 char *delim;
187 203
188 delim = repolink(title, class, "diff", head, path); 204 delim = repolink(title, class, "diff", head, path);
189 if (new_rev && strcmp(new_rev, cgit_query_head)) { 205 if (new_rev && strcmp(new_rev, cgit_query_head)) {
190 html(delim); 206 html(delim);
191 html("id="); 207 html("id=");
192 html_attr(new_rev); 208 html_attr(new_rev);
193 delim = "&amp;"; 209 delim = "&amp;";
194 } 210 }
195 if (old_rev) { 211 if (old_rev) {
196 html(delim); 212 html(delim);
197 html("id2="); 213 html("id2=");
198 html_attr(old_rev); 214 html_attr(old_rev);
199 } 215 }
200 html("'>"); 216 html("'>");
@@ -273,65 +289,65 @@ void cgit_print_docstart(char *title, struct cacheitem *item)
273 html("</head>\n"); 289 html("</head>\n");
274 html("<body>\n"); 290 html("<body>\n");
275} 291}
276 292
277void cgit_print_docend() 293void cgit_print_docend()
278{ 294{
279 html("</td></tr></table>"); 295 html("</td></tr></table>");
280 html("</body>\n</html>\n"); 296 html("</body>\n</html>\n");
281} 297}
282 298
283void cgit_print_pageheader(char *title, int show_search) 299void cgit_print_pageheader(char *title, int show_search)
284{ 300{
285 html("<table id='layout'>"); 301 html("<table id='layout'>");
286 html("<tr><td id='header'><a href='"); 302 html("<tr><td id='header'><a href='");
287 html_attr(cgit_rooturl()); 303 html_attr(cgit_rooturl());
288 html("'>"); 304 html("'>");
289 html_txt(cgit_root_title); 305 html_txt(cgit_root_title);
290 html("</a></td><td id='logo'>"); 306 html("</a></td><td id='logo'>");
291 html("<a href='"); 307 html("<a href='");
292 html_attr(cgit_logo_link); 308 html_attr(cgit_logo_link);
293 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo); 309 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo);
294 html("</td></tr>"); 310 html("</td></tr>");
295 html("<tr><td id='crumb'>"); 311 html("<tr><td id='crumb'>");
296 if (cgit_query_repo) { 312 if (cgit_query_repo) {
297 html_txt(cgit_repo->name); 313 html_txt(cgit_repo->name);
298 html(" ("); 314 html(" (");
299 html_txt(cgit_query_head); 315 html_txt(cgit_query_head);
300 html(") : &nbsp;"); 316 html(") : &nbsp;");
301 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head, 317 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head,
302 NULL, NULL); 318 NULL, NULL);
303 html(" "); 319 html(" ");
304 cgit_log_link("log", NULL, NULL, cgit_query_head, 320 cgit_log_link("log", NULL, NULL, cgit_query_head,
305 cgit_query_sha1, cgit_query_path); 321 cgit_query_sha1, cgit_query_path, 0);
306 html(" "); 322 html(" ");
307 cgit_tree_link("tree", NULL, NULL, cgit_query_head, 323 cgit_tree_link("tree", NULL, NULL, cgit_query_head,
308 cgit_query_sha1, NULL); 324 cgit_query_sha1, NULL);
309 html(" "); 325 html(" ");
310 cgit_commit_link("commit", NULL, NULL, cgit_query_head, 326 cgit_commit_link("commit", NULL, NULL, cgit_query_head,
311 cgit_query_sha1); 327 cgit_query_sha1);
312 html(" "); 328 html(" ");
313 cgit_diff_link("diff", NULL, NULL, cgit_query_head, 329 cgit_diff_link("diff", NULL, NULL, cgit_query_head,
314 cgit_query_sha1, cgit_query_sha2, 330 cgit_query_sha1, cgit_query_sha2,
315 cgit_query_path); 331 cgit_query_path);
316 } else { 332 } else {
317 html_txt("Index of repositories"); 333 html_txt("Index of repositories");
318 } 334 }
319 html("</td>"); 335 html("</td>");
320 html("<td id='search'>"); 336 html("<td id='search'>");
321 if (show_search) { 337 if (show_search) {
322 html("<form method='get' action='"); 338 html("<form method='get' action='");
323 html_attr(cgit_currurl()); 339 html_attr(cgit_currurl());
324 html("'>"); 340 html("'>");
325 if (!cgit_virtual_root) { 341 if (!cgit_virtual_root) {
326 if (cgit_query_repo) 342 if (cgit_query_repo)
327 html_hidden("r", cgit_query_repo); 343 html_hidden("r", cgit_query_repo);
328 if (cgit_query_page) 344 if (cgit_query_page)
329 html_hidden("p", cgit_query_page); 345 html_hidden("p", cgit_query_page);
330 } 346 }
331 if (cgit_query_head) 347 if (cgit_query_head)
332 html_hidden("h", cgit_query_head); 348 html_hidden("h", cgit_query_head);
333 if (cgit_query_sha1) 349 if (cgit_query_sha1)
334 html_hidden("id", cgit_query_sha1); 350 html_hidden("id", cgit_query_sha1);
335 if (cgit_query_sha2) 351 if (cgit_query_sha2)
336 html_hidden("id2", cgit_query_sha2); 352 html_hidden("id2", cgit_query_sha2);
337 html("<input type='text' name='q' value='"); 353 html("<input type='text' name='q' value='");
diff --git a/ui-summary.c b/ui-summary.c
index 03dd078..b4bc6d8 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -1,62 +1,62 @@
1/* ui-summary.c: functions for generating repo summary page 1/* ui-summary.c: functions for generating repo summary page
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10
11static int header; 11static int header;
12 12
13static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, 13static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1,
14 int flags, void *cb_data) 14 int flags, void *cb_data)
15{ 15{
16 struct commit *commit; 16 struct commit *commit;
17 struct commitinfo *info; 17 struct commitinfo *info;
18 char buf[256]; 18 char buf[256];
19 char *ref; 19 char *ref;
20 20
21 ref = xstrdup(refname); 21 ref = xstrdup(refname);
22 strncpy(buf, refname, sizeof(buf)); 22 strncpy(buf, refname, sizeof(buf));
23 commit = lookup_commit(sha1); 23 commit = lookup_commit(sha1);
24 // object is not really parsed at this point, because of some fallout 24 // object is not really parsed at this point, because of some fallout
25 // from previous calls to git functions in cgit_print_log() 25 // from previous calls to git functions in cgit_print_log()
26 commit->object.parsed = 0; 26 commit->object.parsed = 0;
27 if (commit && !parse_commit(commit)){ 27 if (commit && !parse_commit(commit)){
28 info = cgit_parse_commit(commit); 28 info = cgit_parse_commit(commit);
29 html("<tr><td>"); 29 html("<tr><td>");
30 cgit_log_link(ref, NULL, NULL, ref, NULL, NULL); 30 cgit_log_link(ref, NULL, NULL, ref, NULL, NULL, 0);
31 html("</td><td>"); 31 html("</td><td>");
32 cgit_print_age(commit->date, -1, NULL); 32 cgit_print_age(commit->date, -1, NULL);
33 html("</td><td>"); 33 html("</td><td>");
34 html_txt(info->author); 34 html_txt(info->author);
35 html("</td><td>"); 35 html("</td><td>");
36 cgit_commit_link(info->subject, NULL, NULL, ref, NULL); 36 cgit_commit_link(info->subject, NULL, NULL, ref, NULL);
37 html("</td></tr>\n"); 37 html("</td></tr>\n");
38 cgit_free_commitinfo(info); 38 cgit_free_commitinfo(info);
39 } else { 39 } else {
40 html("<tr><td>"); 40 html("<tr><td>");
41 html_txt(buf); 41 html_txt(buf);
42 html("</td><td colspan='3'>"); 42 html("</td><td colspan='3'>");
43 htmlf("*** bad ref %s ***", sha1_to_hex(sha1)); 43 htmlf("*** bad ref %s ***", sha1_to_hex(sha1));
44 html("</td></tr>\n"); 44 html("</td></tr>\n");
45 } 45 }
46 free(ref); 46 free(ref);
47 return 0; 47 return 0;
48} 48}
49 49
50 50
51static void cgit_print_object_ref(struct object *obj) 51static void cgit_print_object_ref(struct object *obj)
52{ 52{
53 char *page, *arg, *url; 53 char *page, *arg, *url;
54 54
55 if (obj->type == OBJ_COMMIT) { 55 if (obj->type == OBJ_COMMIT) {
56 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, 56 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
57 cgit_query_head, sha1_to_hex(obj->sha1)); 57 cgit_query_head, sha1_to_hex(obj->sha1));
58 return; 58 return;
59 } else if (obj->type == OBJ_TREE) { 59 } else if (obj->type == OBJ_TREE) {
60 page = "tree"; 60 page = "tree";
61 arg = "id"; 61 arg = "id";
62 } else { 62 } else {
diff --git a/ui-tree.c b/ui-tree.c
index b6cb813..c5d64ff 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -64,65 +64,65 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen,
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("log", NULL, "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
102static void ls_head() 102static 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
114static void ls_tail() 114static 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
122static void ls_tree(const unsigned char *sha1, char *path) 122static 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",