Code

Merge branch 'zf/maint-gitweb-acname'
authorJunio C Hamano <gitster@pobox.com>
Tue, 11 Aug 2009 05:16:47 +0000 (22:16 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 11 Aug 2009 05:16:47 +0000 (22:16 -0700)
* zf/maint-gitweb-acname:
  gitweb: parse_commit_text encoding fix

gitweb/gitweb.perl

index 37120a3e606a2e3e192cf59e2e69d29efd774d33..9d66bc61a4f8367ac54e438d56fea6c18abdf8ac 100755 (executable)
@@ -2573,7 +2573,7 @@ sub parse_commit_text {
                } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
                        push @parents, $1;
                } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
-                       $co{'author'} = $1;
+                       $co{'author'} = to_utf8($1);
                        $co{'author_epoch'} = $2;
                        $co{'author_tz'} = $3;
                        if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
@@ -2583,10 +2583,9 @@ sub parse_commit_text {
                                $co{'author_name'} = $co{'author'};
                        }
                } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
-                       $co{'committer'} = $1;
+                       $co{'committer'} = to_utf8($1);
                        $co{'committer_epoch'} = $2;
                        $co{'committer_tz'} = $3;
-                       $co{'committer_name'} = $co{'committer'};
                        if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
                                $co{'committer_name'}  = $1;
                                $co{'committer_email'} = $2;