summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2006-12-17 23:30:55 +0100
committerLars Hjemli <hjemli@gmail.com>2006-12-17 23:30:55 +0100
commitfb6e5869dcc81b775d5ac79dd3afac7220c366dd (patch)
tree6e68d9dfe43d3ca5c6fc5b9be6546ea70779f0f1
parent6cb326c83b3c0b35d472305294afee3105b3088d (diff)
downloadcgit-fb6e5869dcc81b775d5ac79dd3afac7220c366dd.tar.gz
cgit-fb6e5869dcc81b775d5ac79dd3afac7220c366dd.tar.bz2
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>
-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)
html("<tr>");
htmlf("<td class='mode'>");
- html_filemode(pair->two->mode);
- if (pair->one->mode != pair->two->mode) {
+ if (is_null_sha1(pair->two->sha1)) {
+ html_filemode(pair->one->mode);
+ } else {
+ html_filemode(pair->two->mode);
+ }
+
+ if (pair->one->mode != pair->two->mode &&
+ !is_null_sha1(pair->one->sha1) &&
+ !is_null_sha1(pair->two->sha1)) {
html("<span class='modechange'>[");
html_filemode(pair->one->mode);
html("]</span>");
tr> 2020-11-28Bump github.com/emersion/go-message from 0.13.0 to 0.14.0 (#38)dependabot[bot]2-3/+9 2020-11-28Bump github.com/google/go-cmp from 0.5.2 to 0.5.4 (#37)dependabot[bot]2-3/+3 2020-11-23Fix release.ymlv0.5.2René 'Necoro' Neumann1-3/+10 2020-11-23Prepare v0.5.2René 'Necoro' Neumann3-3/+8 2020-11-20Bump github.com/gabriel-vasile/mimetype from 1.1.1 to 1.1.2dependabot[bot]2-3/+3 2020-11-04Clean dependabot.ymlRené 'Necoro' Neumann1-4/+0