about summary refs log tree commit diff stats
path: root/ui-commit.c
diff options
context:
space:
mode:
authorLars Hjemli2006-12-17 23:30:55 +0100
committerLars Hjemli2006-12-17 23:30:55 +0100
commitfb6e5869dcc81b775d5ac79dd3afac7220c366dd (patch)
tree6e68d9dfe43d3ca5c6fc5b9be6546ea70779f0f1 /ui-commit.c
parentShow list of modified files in ui-commit.c (diff)
downloadcgit-fb6e5869dcc81b775d5ac79dd3afac7220c366dd.tar.gz
cgit-fb6e5869dcc81b775d5ac79dd3afac7220c366dd.zip
Don't show new and old filemode for added/removed files
It gives us no extra info whatsoever to show "----------" for either new
or old mode, it's just noise (especially since we now show the "old"
filemode for deleted files)

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-commit.c')
-rw-r--r--ui-commit.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/ui-commit.c b/ui-commit.c index c5ee8e7..b49b2e9 100644 --- a/ui-commit.c +++ b/ui-commit.c
@@ -46,8 +46,15 @@ void print_filepair(struct diff_filepair *pair)
46 46
47 html("<tr>"); 47 html("<tr>");
48 htmlf("<td class='mode'>"); 48 htmlf("<td class='mode'>");
49 html_filemode(pair->two->mode); 49 if (is_null_sha1(pair->two->sha1)) {
50 if (pair->one->mode != pair->two->mode) { 50 html_filemode(pair->one->mode);
51 } else {
52 html_filemode(pair->two->mode);
53 }
54
55 if (pair->one->mode != pair->two->mode &&
56 !is_null_sha1(pair->one->sha1) &&
57 !is_null_sha1(pair->two->sha1)) {
51 html("<span class='modechange'>["); 58 html("<span class='modechange'>[");
52 html_filemode(pair->one->mode); 59 html_filemode(pair->one->mode);
53 html("]</span>"); 60 html("]</span>");