Dear Maintainer,
I setup my gitweb[1] as fastcgi behind an nginx and found many encoding
issues.
The first one is the description of the projects, I wrapp the
configuration in a "to_utf8" call to fix the issue:
--- gitweb.cgi.orig 2013-05-30 22:31:03.960730832 +0200
+++ gitweb.cgi 2013-05-30 23:01:18.557405272 +0200
@@ -2775,7 +2775,7 @@
if (defined $conf) {
chomp $conf;
}
- return $conf;
+ return to_utf8($conf);
}
sub git_get_project_description {
But the shortlog has issue too[2], even the blob view[3].
Is there any plan to fix them all?
Regards.