|
diff --git a/ui-diff.c b/ui-diff.c index 5c864d9..a76a234 100644 --- a/ ui-diff.c+++ b/ ui-diff.c |
|
@@ -80,63 +80,61 @@ static void filepair_cb(struct diff_filepair *pair) |
80 | pair->two->sha1, pair->two->path, pair->two->mode); |
80 | pair->two->sha1, pair->two->path, pair->two->mode); |
81 | if (S_ISDIRLNK(pair->one->mode) || S_ISDIRLNK(pair->two->mode)) { |
81 | if (S_ISDIRLNK(pair->one->mode) || S_ISDIRLNK(pair->two->mode)) { |
82 | if (S_ISDIRLNK(pair->one->mode)) |
82 | if (S_ISDIRLNK(pair->one->mode)) |
83 | print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52); |
83 | print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52); |
84 | if (S_ISDIRLNK(pair->two->mode)) |
84 | if (S_ISDIRLNK(pair->two->mode)) |
85 | print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52); |
85 | print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52); |
86 | return; |
86 | return; |
87 | } |
87 | } |
88 | if (cgit_diff_files(pair->one->sha1, pair->two->sha1, print_line)) |
88 | if (cgit_diff_files(pair->one->sha1, pair->two->sha1, print_line)) |
89 | cgit_print_error("Error running diff"); |
89 | cgit_print_error("Error running diff"); |
90 | } |
90 | } |
91 | |
91 | |
92 | void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex, char *path) |
92 | void cgit_print_diff(const char *new_rev, const char *old_rev) |
93 | { |
93 | { |
94 | unsigned char sha1[20], sha2[20]; |
94 | unsigned char sha1[20], sha2[20]; |
95 | enum object_type type; |
95 | enum object_type type; |
96 | unsigned long size; |
96 | unsigned long size; |
97 | struct commit *commit; |
97 | struct commit *commit, *commit2; |
98 | |
98 | |
99 | html("<table class='diff'>"); |
99 | if (!new_rev) |
100 | html("<tr><td>"); |
100 | new_rev = cgit_query_head; |
101 | |
101 | get_sha1(new_rev, sha1); |
102 | if (head && !old_hex && !new_hex) { |
102 | type = sha1_object_info(sha1, &size); |
103 | get_sha1(head, sha1); |
103 | if (type == OBJ_BAD) { |
104 | commit = lookup_commit_reference(sha1); |
104 | cgit_print_error(fmt("Bad object name: %s", new_rev)); |
105 | if (commit && !parse_commit(commit)) |
105 | return; |
106 | cgit_diff_commit(commit, filepair_cb); |
106 | } |
107 | else |
107 | if (type != OBJ_COMMIT) { |
108 | cgit_print_error(fmt("Bad commit: %s", head)); |
108 | cgit_print_error(fmt("Unhandled object type: %s", |
109 | html("</td></tr>"); |
109 | typename(type))); |
110 | html("</table>"); |
| |
111 | return; |
110 | return; |
112 | } |
111 | } |
113 | |
112 | |
114 | get_sha1(old_hex, sha1); |
113 | commit = lookup_commit_reference(sha1); |
115 | get_sha1(new_hex, sha2); |
114 | if (!commit || parse_commit(commit)) |
| |
115 | cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(sha1))); |
116 | |
116 | |
117 | type = sha1_object_info(sha1, &size); |
117 | if (old_rev) |
118 | if (type == OBJ_BAD) { |
118 | get_sha1(old_rev, sha2); |
| |
119 | else if (commit->parents && commit->parents->item) |
| |
120 | hashcpy(sha2, commit->parents->item->object.sha1); |
| |
121 | else |
| |
122 | hashclr(sha2); |
| |
123 | |
| |
124 | if (!is_null_sha1(sha2)) { |
119 | type = sha1_object_info(sha2, &size); |
125 | type = sha1_object_info(sha2, &size); |
120 | if (type == OBJ_BAD) { |
126 | if (type == OBJ_BAD) { |
121 | cgit_print_error(fmt("Bad object names: %s, %s", old_hex, new_hex)); |
127 | cgit_print_error(fmt("Bad object name: %s", sha1_to_hex(sha2))); |
122 | return; |
128 | return; |
123 | } |
129 | } |
| |
130 | commit2 = lookup_commit_reference(sha2); |
| |
131 | if (!commit2 || parse_commit(commit2)) |
| |
132 | cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(sha2))); |
124 | } |
133 | } |
125 | |
134 | |
126 | switch(type) { |
135 | html("<table class='diff'>"); |
127 | case OBJ_BLOB: |
136 | html("<tr><td>"); |
128 | header(sha1, path, 0644, sha2, path, 0644); |
137 | cgit_diff_tree(sha2, sha1, filepair_cb); |
129 | if (cgit_diff_files(sha1, sha2, print_line)) |
| |
130 | cgit_print_error("Error running diff"); |
| |
131 | break; |
| |
132 | case OBJ_TREE: |
| |
133 | cgit_diff_tree(sha1, sha2, filepair_cb); |
| |
134 | break; |
| |
135 | default: |
| |
136 | cgit_print_error(fmt("Unhandled object type: %s", |
| |
137 | typename(type))); |
| |
138 | break; |
| |
139 | } |
| |
140 | html("</td></tr>"); |
138 | html("</td></tr>"); |
141 | html("</table>"); |
139 | html("</table>"); |
142 | } |
140 | } |
|