X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/bac74b5934f22cc3d0e971d26fe0275f7f5db7b3..ccc4981ff62e695908a9855041b9669800a733ed:/font.plp diff --git a/font.plp b/font.plp index fd55017..cc07c05 100644 --- a/font.plp +++ b/font.plp @@ -1,6 +1,6 @@ <(common.inc.plp)><: -my $font = $ENV{PATH_INFO} =~ s{^/}{}r; +my $font = $Request; Html({ title => 'font coverage '.($font ? "for $font" : 'sheet'), @@ -107,7 +107,7 @@ EOT say sprintf '%X', $cp if $colpos++ % $pagecols == 0; my $info = $glyphs->glyph_info($cp); - my ($class, $name, $mnem, $html, $string) = @{$info}; + my ($class, $name, $mnem, $entity, $string) = @{$info}; my $np = $class =~ /\bC\S\b/; # noprint if control or invalid # display literal character, with placeholder circle if non-spacing/enclosing my $html = ($class =~ /\bM[ne]\b/ && chr 9676) . EscapeHTML(chr $cp);