|
diff --git a/ui-log.c b/ui-log.c index 282eca3..bfbe436 100644 --- a/ ui-log.c+++ b/ ui-log.c |
|
@@ -43,33 +43,36 @@ void show_commit_decorations(struct commit *commit) |
43 | |
43 | |
44 | buf[sizeof(buf) - 1] = 0; |
44 | buf[sizeof(buf) - 1] = 0; |
45 | deco = lookup_decoration(&name_decoration, &commit->object); |
45 | deco = lookup_decoration(&name_decoration, &commit->object); |
46 | while (deco) { |
46 | while (deco) { |
47 | if (!prefixcmp(deco->name, "refs/heads/")) { |
47 | if (!prefixcmp(deco->name, "refs/heads/")) { |
48 | strncpy(buf, deco->name + 11, sizeof(buf) - 1); |
48 | strncpy(buf, deco->name + 11, sizeof(buf) - 1); |
49 | cgit_log_link(buf, NULL, "branch-deco", buf, NULL, NULL, |
49 | cgit_log_link(buf, NULL, "branch-deco", buf, NULL, |
50 | 0, NULL, NULL, ctx.qry.showmsg); |
50 | ctx.qry.vpath, 0, NULL, NULL, |
| |
51 | ctx.qry.showmsg); |
51 | } |
52 | } |
52 | else if (!prefixcmp(deco->name, "tag: refs/tags/")) { |
53 | else if (!prefixcmp(deco->name, "tag: refs/tags/")) { |
53 | strncpy(buf, deco->name + 15, sizeof(buf) - 1); |
54 | strncpy(buf, deco->name + 15, sizeof(buf) - 1); |
54 | cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf); |
55 | cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf); |
55 | } |
56 | } |
56 | else if (!prefixcmp(deco->name, "refs/tags/")) { |
57 | else if (!prefixcmp(deco->name, "refs/tags/")) { |
57 | strncpy(buf, deco->name + 10, sizeof(buf) - 1); |
58 | strncpy(buf, deco->name + 10, sizeof(buf) - 1); |
58 | cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf); |
59 | cgit_tag_link(buf, NULL, "tag-deco", ctx.qry.head, buf); |
59 | } |
60 | } |
60 | else if (!prefixcmp(deco->name, "refs/remotes/")) { |
61 | else if (!prefixcmp(deco->name, "refs/remotes/")) { |
61 | strncpy(buf, deco->name + 13, sizeof(buf) - 1); |
62 | strncpy(buf, deco->name + 13, sizeof(buf) - 1); |
62 | cgit_log_link(buf, NULL, "remote-deco", NULL, |
63 | cgit_log_link(buf, NULL, "remote-deco", NULL, |
63 | sha1_to_hex(commit->object.sha1), NULL, |
64 | sha1_to_hex(commit->object.sha1), |
64 | 0, NULL, NULL, ctx.qry.showmsg); |
65 | ctx.qry.vpath, 0, NULL, NULL, |
| |
66 | ctx.qry.showmsg); |
65 | } |
67 | } |
66 | else { |
68 | else { |
67 | strncpy(buf, deco->name, sizeof(buf) - 1); |
69 | strncpy(buf, deco->name, sizeof(buf) - 1); |
68 | cgit_commit_link(buf, NULL, "deco", ctx.qry.head, |
70 | cgit_commit_link(buf, NULL, "deco", ctx.qry.head, |
69 | sha1_to_hex(commit->object.sha1), NULL, 0); |
71 | sha1_to_hex(commit->object.sha1), |
| |
72 | ctx.qry.vpath, 0); |
70 | } |
73 | } |
71 | deco = deco->next; |
74 | deco = deco->next; |
72 | } |
75 | } |
73 | } |
76 | } |
74 | |
77 | |
75 | void print_commit(struct commit *commit) |
78 | void print_commit(struct commit *commit) |
@@ -79,20 +82,20 @@ void print_commit(struct commit *commit) |
79 | int cols = 2; |
82 | int cols = 2; |
80 | |
83 | |
81 | info = cgit_parse_commit(commit); |
84 | info = cgit_parse_commit(commit); |
82 | htmlf("<tr%s><td>", |
85 | htmlf("<tr%s><td>", |
83 | ctx.qry.showmsg ? " class='logheader'" : ""); |
86 | ctx.qry.showmsg ? " class='logheader'" : ""); |
84 | tmp = fmt("id=%s", sha1_to_hex(commit->object.sha1)); |
87 | tmp = fmt("id=%s", sha1_to_hex(commit->object.sha1)); |
85 | tmp = cgit_pageurl(ctx.repo->url, "commit", tmp); |
88 | tmp = cgit_fileurl(ctx.repo->url, "commit", ctx.qry.vpath, tmp); |
86 | html_link_open(tmp, NULL, NULL); |
89 | html_link_open(tmp, NULL, NULL); |
87 | cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE); |
90 | cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE); |
88 | html_link_close(); |
91 | html_link_close(); |
89 | htmlf("</td><td%s>", |
92 | htmlf("</td><td%s>", |
90 | ctx.qry.showmsg ? " class='logsubject'" : ""); |
93 | ctx.qry.showmsg ? " class='logsubject'" : ""); |
91 | cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head, |
94 | cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head, |
92 | sha1_to_hex(commit->object.sha1), NULL, 0); |
95 | sha1_to_hex(commit->object.sha1), ctx.qry.vpath, 0); |
93 | show_commit_decorations(commit); |
96 | show_commit_decorations(commit); |
94 | html("</td><td>"); |
97 | html("</td><td>"); |
95 | html_txt(info->author); |
98 | html_txt(info->author); |
96 | if (ctx.repo->enable_log_filecount) { |
99 | if (ctx.repo->enable_log_filecount) { |
97 | files = 0; |
100 | files = 0; |
98 | add_lines = 0; |
101 | add_lines = 0; |
@@ -173,13 +176,13 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern |
173 | html("<tr class='nohover'><th class='left'>Age</th>" |
176 | html("<tr class='nohover'><th class='left'>Age</th>" |
174 | "<th class='left'>Commit message"); |
177 | "<th class='left'>Commit message"); |
175 | if (pager) { |
178 | if (pager) { |
176 | html(" ("); |
179 | html(" ("); |
177 | cgit_log_link(ctx.qry.showmsg ? "Collapse" : "Expand", NULL, |
180 | cgit_log_link(ctx.qry.showmsg ? "Collapse" : "Expand", NULL, |
178 | NULL, ctx.qry.head, ctx.qry.sha1, |
181 | NULL, ctx.qry.head, ctx.qry.sha1, |
179 | ctx.qry.path, ctx.qry.ofs, ctx.qry.grep, |
182 | ctx.qry.vpath, ctx.qry.ofs, ctx.qry.grep, |
180 | ctx.qry.search, ctx.qry.showmsg ? 0 : 1); |
183 | ctx.qry.search, ctx.qry.showmsg ? 0 : 1); |
181 | html(")"); |
184 | html(")"); |
182 | } |
185 | } |
183 | html("</th><th class='left'>Author</th>"); |
186 | html("</th><th class='left'>Author</th>"); |
184 | if (ctx.repo->enable_log_filecount) { |
187 | if (ctx.repo->enable_log_filecount) { |
185 | html("<th class='left'>Files</th>"); |
188 | html("<th class='left'>Files</th>"); |
@@ -210,25 +213,25 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern |
210 | } |
213 | } |
211 | if (pager) { |
214 | if (pager) { |
212 | htmlf("</table><div class='pager'>", |
215 | htmlf("</table><div class='pager'>", |
213 | columns); |
216 | columns); |
214 | if (ofs > 0) { |
217 | if (ofs > 0) { |
215 | cgit_log_link("[prev]", NULL, NULL, ctx.qry.head, |
218 | cgit_log_link("[prev]", NULL, NULL, ctx.qry.head, |
216 | ctx.qry.sha1, ctx.qry.path, |
219 | ctx.qry.sha1, ctx.qry.vpath, |
217 | ofs - cnt, ctx.qry.grep, |
220 | ofs - cnt, ctx.qry.grep, |
218 | ctx.qry.search, ctx.qry.showmsg); |
221 | ctx.qry.search, ctx.qry.showmsg); |
219 | html(" "); |
222 | html(" "); |
220 | } |
223 | } |
221 | if ((commit = get_revision(&rev)) != NULL) { |
224 | if ((commit = get_revision(&rev)) != NULL) { |
222 | cgit_log_link("[next]", NULL, NULL, ctx.qry.head, |
225 | cgit_log_link("[next]", NULL, NULL, ctx.qry.head, |
223 | ctx.qry.sha1, ctx.qry.path, |
226 | ctx.qry.sha1, ctx.qry.vpath, |
224 | ofs + cnt, ctx.qry.grep, |
227 | ofs + cnt, ctx.qry.grep, |
225 | ctx.qry.search, ctx.qry.showmsg); |
228 | ctx.qry.search, ctx.qry.showmsg); |
226 | } |
229 | } |
227 | html("</div>"); |
230 | html("</div>"); |
228 | } else if ((commit = get_revision(&rev)) != NULL) { |
231 | } else if ((commit = get_revision(&rev)) != NULL) { |
229 | html("<tr class='nohover'><td colspan='3'>"); |
232 | html("<tr class='nohover'><td colspan='3'>"); |
230 | cgit_log_link("[...]", NULL, NULL, ctx.qry.head, NULL, NULL, 0, |
233 | cgit_log_link("[...]", NULL, NULL, ctx.qry.head, NULL, |
231 | NULL, NULL, ctx.qry.showmsg); |
234 | ctx.qry.vpath, 0, NULL, NULL, ctx.qry.showmsg); |
232 | html("</td></tr>\n"); |
235 | html("</td></tr>\n"); |
233 | } |
236 | } |
234 | } |
237 | } |
|