diff options
author | Lars Hjemli | 2007-05-16 01:16:56 +0200 |
---|---|---|
committer | Lars Hjemli | 2007-05-16 01:16:56 +0200 |
commit | dff894d12953a8a3cd7cdca2357771212a2f57d6 (patch) | |
tree | 042f1fbc0594d61d97721167197506760847ce2a | |
parent | f9ff7df613b4ee86fe5914c4ae3400650882c03d (diff) | |
download | cgit-dff894d12953a8a3cd7cdca2357771212a2f57d6.tar.gz cgit-dff894d12953a8a3cd7cdca2357771212a2f57d6.tar.bz2 cgit-dff894d12953a8a3cd7cdca2357771212a2f57d6.zip |
Add link to commitdiff below diffstat
This link is a lot easier to locate than the links to the right of the
parent entries.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.css | 6 | ||||
-rw-r--r-- | ui-commit.c | 6 |
2 files changed, 10 insertions, 2 deletions
@@ -236,9 +236,13 @@ div.commit-msg { | |||
236 | font-family: monospace; | 236 | font-family: monospace; |
237 | } | 237 | } |
238 | 238 | ||
239 | div.diffstat-header { | ||
240 | font-weight: bold; | ||
241 | padding-top: 1.5em; | ||
242 | } | ||
243 | |||
239 | table.diffstat { | 244 | table.diffstat { |
240 | border-collapse: collapse; | 245 | border-collapse: collapse; |
241 | margin-top: 1.5em; | ||
242 | width: 100%; | 246 | width: 100%; |
243 | border: solid 1px #aaa; | 247 | border: solid 1px #aaa; |
244 | background-color: #eee; | 248 | background-color: #eee; |
diff --git a/ui-commit.c b/ui-commit.c index 93eb8fd..ff1fad3 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -221,6 +221,7 @@ void cgit_print_commit(const char *hex) | |||
221 | html_txt(info->msg); | 221 | html_txt(info->msg); |
222 | html("</div>"); | 222 | html("</div>"); |
223 | if (!(commit->parents && commit->parents->next && commit->parents->next->next)) { | 223 | if (!(commit->parents && commit->parents->next && commit->parents->next->next)) { |
224 | html("<div class='diffstat-header'>Diffstat</div>"); | ||
224 | html("<table class='diffstat'>"); | 225 | html("<table class='diffstat'>"); |
225 | max_changes = 0; | 226 | max_changes = 0; |
226 | cgit_diff_commit(commit, inspect_filepair); | 227 | cgit_diff_commit(commit, inspect_filepair); |
@@ -228,8 +229,11 @@ void cgit_print_commit(const char *hex) | |||
228 | print_fileinfo(&items[i]); | 229 | print_fileinfo(&items[i]); |
229 | html("</table>"); | 230 | html("</table>"); |
230 | html("<div class='diffstat-summary'>"); | 231 | html("<div class='diffstat-summary'>"); |
231 | htmlf("%d files changed, %d insertions, %d deletions\n", | 232 | htmlf("%d files changed, %d insertions, %d deletions (", |
232 | files, total_adds, total_rems); | 233 | files, total_adds, total_rems); |
234 | query = fmt("h=%s", hex); | ||
235 | html_link_open(cgit_pageurl(cgit_query_repo, "diff", query), NULL, NULL); | ||
236 | html("show diff</a>)"); | ||
233 | html("</div>"); | 237 | html("</div>"); |
234 | } | 238 | } |
235 | cgit_free_commitinfo(info); | 239 | cgit_free_commitinfo(info); |