From: Martin Koegler Date: Mon, 23 Apr 2007 05:49:25 +0000 (-0700) Subject: gitweb: Show "no difference" message for empty diff X-Git-Url: https://git.ladys.computer/Gitweb/commitdiff_plain/82f3d8703e0792b57342ea8c08a499c6e5ea03f1902c766dbd39243646c54bcb gitweb: Show "no difference" message for empty diff Currently, gitweb shows only header and footer, if no differences are found. This patch adds a "No differences found" message for the html output. Signed-off-by: Martin Koegler Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/gitweb.css b/gitweb.css index 5ff0317..ff026db 100644 --- a/gitweb.css +++ b/gitweb.css @@ -387,6 +387,10 @@ div.diff.incomplete { color: #cccccc; } +div.diff.nodifferences { + font-weight: bold; + color: #600000; +} div.index_include { border: solid #d9d8d1; diff --git a/gitweb.perl b/gitweb.perl index 47dc9e1..b40fd35 100755 --- a/gitweb.perl +++ b/gitweb.perl @@ -2399,6 +2399,7 @@ sub git_patchset_body { my ($fd, $difftree, $hash, $hash_parent) = @_; my $patch_idx = 0; + my $patch_number = 0; my $patch_line; my $diffinfo; my (%from, %to); @@ -2420,6 +2421,7 @@ sub git_patchset_body { # git diff header #assert($patch_line =~ m/^diff /) if DEBUG; #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed + $patch_number++; push @diff_header, $patch_line; # extended diff header @@ -2582,6 +2584,7 @@ sub git_patchset_body { } continue { print "\n"; # class="patch" } + print "
No differences found
\n" if (!$patch_number); print "\n"; # class="patchset" }