all repos — cgit @ fb6e5869dcc81b775d5ac79dd3afac7220c366dd

a hyperfast web frontend for git written in c

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>
Lars Hjemli hjemli@gmail.com
Sun, 17 Dec 2006 23:30:55 +0100
commit

fb6e5869dcc81b775d5ac79dd3afac7220c366dd

parent

6cb326c83b3c0b35d472305294afee3105b3088d

1 files changed, 9 insertions(+), 2 deletions(-)

jump to
M ui-commit.cui-commit.c

@@ -46,8 +46,15 @@ }

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>");