charset: silence perl warning on ascii range check
[sheet.git] / charset.plp
index 33f02c7428db0d7cb08381e913e0068f8ca5a4d8..7909fa8d4ed0f5b06f5bcb4351bdd3cfe9e3b004 100644 (file)
@@ -6,6 +6,7 @@ my @tablist = split m{/+}, $Request || 'default';
 Html({
        title => 'charset cheat sheet',
        version => '1.3',
 Html({
        title => 'charset cheat sheet',
        version => '1.3',
+       canonical => "/charset/$Request" . ($mode && '?compare'),
        description => [
                "Reference sheet with all glyphs in common character encoding tables,",
                "and an overview of Unicode ranges and UTF-8 bytes.",
        description => [
                "Reference sheet with all glyphs in common character encoding tables,",
                "and an overview of Unicode ranges and UTF-8 bytes.",
@@ -14,7 +15,6 @@ Html({
                charset codepage unicode ascii utf8 latin glyph character encoding
                reference common overview table
        '],
                charset codepage unicode ascii utf8 latin glyph character encoding
                reference common overview table
        '],
-       (stylesheet => [qw'light']) x !$mode,
        data => [qw(
                charset.inc.pl charset-encoding.inc.pl
                charset-unicode.inc.pl charset-ucplanes.inc.pl charset-utf8.inc.pl
        data => [qw(
                charset.inc.pl charset-encoding.inc.pl
                charset-unicode.inc.pl charset-ucplanes.inc.pl charset-utf8.inc.pl
@@ -115,7 +115,7 @@ sub tabinput {
                }
                elsif (@parents) {
                        $row{parent} = $parents[0];
                }
                elsif (@parents) {
                        $row{parent} = $parents[0];
-                       $params = $parents[1] if hex $parents[1] == 0;  # apply ascii end
+                       $params = $parents[1] if $parents[1] =~ /^0+-/;  # apply ascii end
                }
                $visible->{$_} //= 0 for $row{parent} || ();
        }
                }
                $visible->{$_} //= 0 for $row{parent} || ();
        }