gitweb: Handle other types of tag in git_print_log
authorNamhyung Kim <namhyung@kernel.org>
Wed, 4 Jul 2012 02:47:25 +0000 (11:47 +0900)
committerJunio C Hamano <gitster@pobox.com>
Thu, 5 Jul 2012 22:23:35 +0000 (15:23 -0700)
There are many types of tags used in S-o-b area [1].
Update the regex to handle them properly. It requires
the tag should be started by a capital letter and ended
by '-by: ' or '-By: '. The only exception is 'Cc: '.

[1] http://lwn.net/Articles/503829/

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
gitweb/gitweb.perl

index e4a26cbe058773b1879fc6b795e87d635f926d02..0f8b6e2f2f0a0eaacd3c56d007b24c99c87f6f1f 100755 (executable)
@@ -4462,7 +4462,7 @@ sub git_print_log {
        # print log
        my $skip_blank_line = 0;
        foreach my $line (@$log) {
-               if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
+               if ($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;