]> Sergey Matveev's repositories - public-inbox.git/blobdiff - public-inbox.cgi
huge refactor of encoding handling
[public-inbox.git] / public-inbox.cgi
index fc48f2f4416a42c7345ee5c2e4db0cd9f51b57bb..3c51c314ebe6c4452e84d8fbd3849357c559456f 100755 (executable)
 use 5.008;
 use strict;
 use warnings;
-use CGI qw(:cgi :escapeHTML -nosticky); # PSGI/FastCGI/mod_perl compat
-use Encode qw(decode_utf8);
+use CGI qw(:cgi -nosticky); # PSGI/FastCGI/mod_perl compat
+use Encode qw(find_encoding);
 use PublicInbox::Config;
 use URI::Escape qw(uri_escape uri_unescape);
+my $enc_utf8 = find_encoding('UTF-8');
 our $LISTNAME_RE = qr!\A/([\w\.\-]+)!;
 our $pi_config;
 BEGIN {
@@ -56,7 +57,7 @@ sub main {
        if ($cgi->request_method !~ /\AGET|HEAD\z/) {
                return r("405 Method Not Allowed");
        }
-       my $path_info = decode_utf8($cgi->path_info);
+       my $path_info = $enc_utf8->decode($cgi->path_info);
 
        # top-level indices and feeds
        if ($path_info eq "/") {
@@ -168,7 +169,7 @@ sub get_mid_html {
        return r404() unless $x;
 
        require PublicInbox::View;
-       my $mid_href = PublicInbox::View::ascii_html(uri_escape($ctx->{mid}));
+       my $mid_href = PublicInbox::Hval::ascii_html(uri_escape($ctx->{mid}));
        my $pfx = "../f/$mid_href.html";
        require Email::MIME;
        [ "200 OK", {'Content-Type' => 'text/html'},
@@ -213,6 +214,6 @@ sub set_binmode {
                # no way to validate raw messages, mixed encoding is possible.
                binmode STDOUT;
        } else { # strict encoding for HTML and XML
-               binmode STDOUT, ':encoding(UTF-8)';
+               binmode STDOUT, ':encoding(us-ascii)';
        }
 }