|
diff --git a/ui-log.c b/ui-log.c index b930bb2..7d1985e 100644 --- a/ ui-log.c+++ b/ ui-log.c |
|
@@ -9,11 +9,18 @@ |
9 | #include "cgit.h" |
9 | #include "cgit.h" |
10 | |
10 | |
11 | int files, lines; |
11 | int files, lines; |
12 | |
12 | |
| |
13 | void count_lines(char *line, int size) |
| |
14 | { |
| |
15 | if (size>0 && (line[0] == '+' || line[0] == '-')) |
| |
16 | lines++; |
| |
17 | } |
| |
18 | |
13 | void inspect_files(struct diff_filepair *pair) |
19 | void inspect_files(struct diff_filepair *pair) |
14 | { |
20 | { |
15 | files++; |
21 | files++; |
| |
22 | cgit_diff_files(pair->one->sha1, pair->two->sha1, count_lines); |
16 | } |
23 | } |
17 | |
24 | |
18 | void print_commit(struct commit *commit) |
25 | void print_commit(struct commit *commit) |
19 | { |
26 | { |
@@ -31,13 +38,15 @@ void print_commit(struct commit *commit) |
31 | char *url = cgit_pageurl(cgit_query_repo, "commit", qry); |
38 | char *url = cgit_pageurl(cgit_query_repo, "commit", qry); |
32 | html_link_open(url, NULL, NULL); |
39 | html_link_open(url, NULL, NULL); |
33 | html_ntxt(cgit_max_msg_len, info->subject); |
40 | html_ntxt(cgit_max_msg_len, info->subject); |
34 | html_link_close(); |
41 | html_link_close(); |
35 | html("</td><td class='right'>"); |
| |
36 | files = 0; |
42 | files = 0; |
37 | lines = 0; |
43 | lines = 0; |
38 | cgit_diff_commit(commit, inspect_files); |
44 | cgit_diff_commit(commit, inspect_files); |
| |
45 | html("</td><td class='right'>"); |
39 | htmlf("%d", files); |
46 | htmlf("%d", files); |
| |
47 | html("</td><td class='right'>"); |
| |
48 | htmlf("%d", lines); |
40 | html("</td><td>"); |
49 | html("</td><td>"); |
41 | html_txt(info->author); |
50 | html_txt(info->author); |
42 | html("</td></tr>\n"); |
51 | html("</td></tr>\n"); |
43 | cgit_free_commitinfo(info); |
52 | cgit_free_commitinfo(info); |
@@ -69,8 +78,9 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep) |
69 | html("<table class='list nowrap'>"); |
78 | html("<table class='list nowrap'>"); |
70 | html("<tr class='nohover'><th class='left'>Date</th>" |
79 | html("<tr class='nohover'><th class='left'>Date</th>" |
71 | "<th class='left'>Message</th>" |
80 | "<th class='left'>Message</th>" |
72 | "<th class='left'>Files</th>" |
81 | "<th class='left'>Files</th>" |
| |
82 | "<th class='left'>Lines</th>" |
73 | "<th class='left'>Author</th></tr>\n"); |
83 | "<th class='left'>Author</th></tr>\n"); |
74 | |
84 | |
75 | if (ofs<0) |
85 | if (ofs<0) |
76 | ofs = 0; |
86 | ofs = 0; |
|