diff options
author | Lars Hjemli | 2007-06-05 11:44:47 +0200 |
---|---|---|
committer | Lars Hjemli | 2007-06-05 11:44:53 +0200 |
commit | 4a6201e318d1db69d126f08a3d80ce2d5cf7ac01 (patch) | |
tree | e551dce744ec35e21f0ecae8fcda37fdb58ab8d1 | |
parent | Implemented configurable HEAD shortlog on summary page. (diff) | |
download | cgit-4a6201e318d1db69d126f08a3d80ce2d5cf7ac01.tar.gz cgit-4a6201e318d1db69d126f08a3d80ce2d5cf7ac01.zip |
ui-diff: emit table/tr/td at better locations
This fixes a bug which made the diff-link for each parent of a commit output a diff without correct styles. It also adds an error-message if the head commit specified on the querystring isn't a valid commit object. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-diff.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/ui-diff.c b/ui-diff.c index e6b957c..3c4d52a 100644 --- a/ui-diff.c +++ b/ui-diff.c | |||
@@ -96,16 +96,16 @@ void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex, | |||
96 | unsigned long size; | 96 | unsigned long size; |
97 | struct commit *commit; | 97 | struct commit *commit; |
98 | 98 | ||
99 | html("<table class='diff'>"); | ||
100 | html("<tr><td>"); | ||
101 | |||
99 | if (head && !old_hex && !new_hex) { | 102 | if (head && !old_hex && !new_hex) { |
100 | get_sha1(head, sha1); | 103 | get_sha1(head, sha1); |
101 | commit = lookup_commit_reference(sha1); | 104 | commit = lookup_commit_reference(sha1); |
102 | if (commit && !parse_commit(commit)) { | 105 | if (commit && !parse_commit(commit)) |
103 | html("<table class='diff'>"); | ||
104 | html("<tr><td>"); | ||
105 | cgit_diff_commit(commit, filepair_cb); | 106 | cgit_diff_commit(commit, filepair_cb); |
106 | html("</td></tr>"); | 107 | else |
107 | html("</table>"); | 108 | cgit_print_error(fmt("Bad commit: %s", head)); |
108 | } | ||
109 | return; | 109 | return; |
110 | } | 110 | } |
111 | 111 | ||
@@ -121,14 +121,11 @@ void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex, | |||
121 | } | 121 | } |
122 | } | 122 | } |
123 | 123 | ||
124 | html("<table class='diff'>"); | ||
125 | switch(type) { | 124 | switch(type) { |
126 | case OBJ_BLOB: | 125 | case OBJ_BLOB: |
127 | html("<tr><td>"); | ||
128 | header(sha1, path, 0644, sha2, path, 0644); | 126 | header(sha1, path, 0644, sha2, path, 0644); |
129 | if (cgit_diff_files(sha1, sha2, print_line)) | 127 | if (cgit_diff_files(sha1, sha2, print_line)) |
130 | cgit_print_error("Error running diff"); | 128 | cgit_print_error("Error running diff"); |
131 | html("</td></tr>"); | ||
132 | break; | 129 | break; |
133 | case OBJ_TREE: | 130 | case OBJ_TREE: |
134 | cgit_diff_tree(sha1, sha2, filepair_cb); | 131 | cgit_diff_tree(sha1, sha2, filepair_cb); |
@@ -138,5 +135,6 @@ void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex, | |||
138 | typename(type))); | 135 | typename(type))); |
139 | break; | 136 | break; |
140 | } | 137 | } |
138 | html("</td></tr>"); | ||
141 | html("</table>"); | 139 | html("</table>"); |
142 | } | 140 | } |