author | Lars Hjemli <hjemli@gmail.com> | 2007-05-13 21:13:12 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-13 21:27:53 (UTC) |
commit | 6a8749d3bd1570faa3dc07e80efc8fcef5953aa0 (patch) (unidiff) | |
tree | 1c76a6b2434cea448bc8d73f452904d8024a8ccb | |
parent | 8a3685bcf2612206fc24a2421acb53dd83aeab85 (diff) | |
download | cgit-6a8749d3bd1570faa3dc07e80efc8fcef5953aa0.zip cgit-6a8749d3bd1570faa3dc07e80efc8fcef5953aa0.tar.gz cgit-6a8749d3bd1570faa3dc07e80efc8fcef5953aa0.tar.bz2 |
Add commitdiff between commit and each of it's parent
A link is added next to each parent of a commit, leading to the new
diff-functionality in ui-diff.c.
Also added support for a path-parameter to filelevel diffs accessed via the
diffstat.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.c | 2 | ||||
-rw-r--r-- | cgit.css | 5 | ||||
-rw-r--r-- | cgit.h | 2 | ||||
-rw-r--r-- | ui-commit.c | 19 | ||||
-rw-r--r-- | ui-diff.c | 45 |
5 files changed, 63 insertions, 10 deletions
@@ -118,3 +118,3 @@ static void cgit_print_repo_page(struct cacheitem *item) | |||
118 | } else if (!strcmp(cgit_query_page, "diff")) { | 118 | } else if (!strcmp(cgit_query_page, "diff")) { |
119 | cgit_print_diff(cgit_query_sha1, cgit_query_sha2); | 119 | cgit_print_diff(cgit_query_sha1, cgit_query_sha2, cgit_query_path); |
120 | } else { | 120 | } else { |
@@ -292,2 +292,7 @@ div.diffstat-summary { | |||
292 | 292 | ||
293 | table.diff th { | ||
294 | padding: 1em 0em 0.1em 0.1em; | ||
295 | text-align: left; | ||
296 | } | ||
297 | |||
293 | table.diff td { | 298 | table.diff td { |
@@ -176,3 +176,3 @@ extern void cgit_print_tree(const char *hex, char *path); | |||
176 | extern void cgit_print_commit(const char *hex); | 176 | extern void cgit_print_commit(const char *hex); |
177 | extern void cgit_print_diff(const char *old_hex, const char *new_hex); | 177 | extern void cgit_print_diff(const char *old_hex, const char *new_hex, char *path); |
178 | extern void cgit_print_snapshot(struct cacheitem *item, const char *hex, | 178 | extern void cgit_print_snapshot(struct cacheitem *item, const char *hex, |
diff --git a/ui-commit.c b/ui-commit.c index ce33cf9..b3d1c28 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -78,4 +78,4 @@ void print_fileinfo(struct fileinfo *info) | |||
78 | htmlf("</td><td class='%s'>", class); | 78 | htmlf("</td><td class='%s'>", class); |
79 | query = fmt("id=%s&id2=%s", sha1_to_hex(info->old_sha1), | 79 | query = fmt("id=%s&id2=%s&path=%s", sha1_to_hex(info->old_sha1), |
80 | sha1_to_hex(info->new_sha1)); | 80 | sha1_to_hex(info->new_sha1), info->new_path); |
81 | html_link_open(cgit_pageurl(cgit_query_repo, "diff", query), | 81 | html_link_open(cgit_pageurl(cgit_query_repo, "diff", query), |
@@ -153,3 +153,3 @@ void cgit_print_commit(const char *hex) | |||
153 | { | 153 | { |
154 | struct commit *commit; | 154 | struct commit *commit, *parent; |
155 | struct commitinfo *info; | 155 | struct commitinfo *info; |
@@ -192,2 +192,9 @@ void cgit_print_commit(const char *hex) | |||
192 | for (p = commit->parents; p ; p = p->next) { | 192 | for (p = commit->parents; p ; p = p->next) { |
193 | parent = lookup_commit_reference(p->item->object.sha1); | ||
194 | if (!parent) { | ||
195 | html("<tr><td colspan='3'>"); | ||
196 | cgit_print_error("Error reading parent commit"); | ||
197 | html("</td></tr>"); | ||
198 | continue; | ||
199 | } | ||
193 | html("<tr><th>parent</th>" | 200 | html("<tr><th>parent</th>" |
@@ -197,4 +204,8 @@ void cgit_print_commit(const char *hex) | |||
197 | html_attr(cgit_pageurl(cgit_query_repo, "commit", query)); | 204 | html_attr(cgit_pageurl(cgit_query_repo, "commit", query)); |
198 | htmlf("'>%s</a></td></tr>\n", | 205 | htmlf("'>%s</a> (<a href='", |
199 | sha1_to_hex(p->item->object.sha1)); | 206 | sha1_to_hex(p->item->object.sha1)); |
207 | query = fmt("id=%s&id2=%s", sha1_to_hex(parent->tree->object.sha1), | ||
208 | sha1_to_hex(commit->tree->object.sha1)); | ||
209 | html_attr(cgit_pageurl(cgit_query_repo, "diff", query)); | ||
210 | html("'>diff</a>)</td></tr>"); | ||
200 | } | 211 | } |
@@ -33,5 +33,18 @@ static void print_line(char *line, int len) | |||
33 | 33 | ||
34 | void cgit_print_diff(const char *old_hex, const char *new_hex) | 34 | static void filepair_cb(struct diff_filepair *pair) |
35 | { | ||
36 | html("<tr><th>"); | ||
37 | html_txt(pair->two->path); | ||
38 | html("</th></tr>"); | ||
39 | html("<tr><td>"); | ||
40 | if (cgit_diff_files(pair->one->sha1, pair->two->sha1, print_line)) | ||
41 | cgit_print_error("Error running diff"); | ||
42 | html("</tr></td>"); | ||
43 | } | ||
44 | |||
45 | void cgit_print_diff(const char *old_hex, const char *new_hex, char *path) | ||
35 | { | 46 | { |
36 | unsigned char sha1[20], sha2[20]; | 47 | unsigned char sha1[20], sha2[20]; |
48 | enum object_type type; | ||
49 | unsigned long size; | ||
37 | 50 | ||
@@ -40,5 +53,29 @@ void cgit_print_diff(const char *old_hex, const char *new_hex) | |||
40 | 53 | ||
41 | html("<table class='diff'><tr><td>"); | 54 | type = sha1_object_info(sha1, &size); |
42 | if (cgit_diff_files(sha1, sha2, print_line)) | 55 | if (type == OBJ_BAD) { |
43 | cgit_print_error("Error running diff"); | 56 | type = sha1_object_info(sha2, &size); |
57 | if (type == OBJ_BAD) { | ||
58 | cgit_print_error(fmt("Bad object names: %s, %s", old_hex, new_hex)); | ||
59 | return; | ||
60 | } | ||
61 | } | ||
62 | |||
63 | html("<table class='diff'>"); | ||
64 | switch(type) { | ||
65 | case OBJ_BLOB: | ||
66 | if (path) | ||
67 | htmlf("<tr><th>%s</th></tr>", path); | ||
68 | html("<tr><td>"); | ||
69 | if (cgit_diff_files(sha1, sha2, print_line)) | ||
70 | cgit_print_error("Error running diff"); | ||
71 | html("</tr></td>"); | ||
72 | break; | ||
73 | case OBJ_TREE: | ||
74 | cgit_diff_tree(sha1, sha2, filepair_cb); | ||
75 | break; | ||
76 | default: | ||
77 | cgit_print_error(fmt("Unhandled object type: %s", | ||
78 | typename(type))); | ||
79 | break; | ||
80 | } | ||
44 | html("</td></tr></table>"); | 81 | html("</td></tr></table>"); |