Victor Kartashov <v.kartashov@xxxxxxxxxxxxxx> writes: > show gpg signature (if any) for commit message in gitweb > in case of valid signature highlight it with green > in case of invalid signature highlight it with red If that is a single sentence, please write it as such: Show gpg signature (if any) for commit message in gitweb in case of valid signature highlight it with green in case of invalid signature highlight it with red. But that is almost unparsable ;-) Teach gitweb to show GPG signature verification status when showing a commit that is signed. Highlight in green or red to differentiate valid and invalid signatures. or something? Is it a good idea to do this unconditionally in all repositories? > Signed-off-by: Victor Kartashov <victor.kartashov@xxxxxxxxx> > --- > gitweb/gitweb.perl | 36 +++++++++++++++++++++++++++++------- > gitweb/static/gitweb.css | 11 +++++++++++ > 2 files changed, 40 insertions(+), 7 deletions(-) > > diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl > index 79057b7..ccde90f 100755 > --- a/gitweb/gitweb.perl > +++ b/gitweb/gitweb.perl > @@ -3430,8 +3430,9 @@ sub parse_commit_text { > my ($commit_text, $withparents) = @_; > my @commit_lines = split '\n', $commit_text; > my %co; > + my @signature = (); > > - pop @commit_lines; # Remove '\0' > + pop @commit_lines if ($commit_lines[-1] =~ "\0"); # Remove '\0' This comment, which only says what it intends to do without saying why it wants to do so, does not explain why this is a good change. Does the code even know if $commit_lines[-1] is a non-empty string? Is it safe to assume if $commit_lines[-1] has a NUL anywhere, it is always the last line that ends the record, which is not part of the commit log message? I am assuming that this $commit_text is read from "log -z" (or "rev-list -z") output and split at NUL boundary, but if that is the case, it might be cleaner to remove the trailing NUL from $commit_text before even attempting to split it into an array at LFs, but that is an unrelated tangent. A bigger question is why does the incoming data sometimes ends with NUL that must be stripped out, and sometimes does not? I see that you are updating the data producer in the later part of the patch; wouldn't it be saner if you have the data producer produce the input to this function in a way that is consistent with the current code, i.e. always terminate the output with a NUL? > @@ -3469,6 +3470,9 @@ sub parse_commit_text { > $co{'committer_name'} = $co{'committer'}; > } > } > + elsif ($line =~ /^gpg: /) { I think Eric already pointed out the style issue on this line. > @@ -3508,6 +3512,10 @@ sub parse_commit_text { > foreach my $line (@commit_lines) { > $line =~ s/^ //; > } > + push(@commit_lines, "") if scalar @signature; > + foreach my $sig (@signature) { > + push(@commit_lines, $sig); > + } Hmm, is it different from doing: push @commit_lines, @signature; in some way? > @@ -4571,7 +4579,21 @@ sub git_print_log { > # print log > my $skip_blank_line = 0; > foreach my $line (@$log) { > - if ($line =~ m/^\s*([A-Z][-A-Za-z]*-[Bb]y|C[Cc]): /) { > + if ($line =~ m/^gpg:(.)+Good(.)+/) { > + if (! $opts{'-remove_signoff'}) { Sorry, but I fail to see what the "remove-signoff" option has to do with this new feature. The interaction needs to be explained in the log message. > + print "<span class=\"good_sign\">" . esc_html($line) . "</span><br/>\n"; > + $skip_blank_line = 1; > + } > + next; > + } > + elsif ($line =~ m/^gpg:(.)+BAD(.)+/) { > + if (! $opts{'-remove_signoff'}) { > + print "<span class=\"bad_sign\">" . esc_html($line) . "</span><br/>\n"; > + $skip_blank_line = 1; > + } > + next; > + } > + elsif ($line =~ m/^\s*([A-Z][-A-Za-z]*-[Bb]y|C[Cc]): /) { > if (! $opts{'-remove_signoff'}) { > print "<span class=\"signoff\">" . esc_html($line) . "</span><br/>\n"; > $skip_blank_line = 1; > diff --git a/gitweb/static/gitweb.css b/gitweb/static/gitweb.css > index 3212601..e99e223 100644 > --- a/gitweb/static/gitweb.css > +++ b/gitweb/static/gitweb.css > @@ -136,6 +136,17 @@ span.signoff { > color: #888888; > } > > +span.good_sign { > + font-weight: bold; > + background-color: #aaffaa; > +} > + > +span.bad_sign { > + font-weight: bold; > + background-color: #880000; > + color: #ffffff > +} > + > div.log_link { > padding: 0px 8px; > font-size: 70%; -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html