From: Mischa POSLAWSKY Date: Mon, 21 Sep 2015 17:15:25 +0000 (+0200) Subject: font: distinct page titles if given font parameter X-Git-Tag: v1.8~4 X-Git-Url: http://git.shiar.nl/sheet.git/commitdiff_plain/6907147e74f53469d6a987927ca133fd1a9d587b font: distinct page titles if given font parameter --- diff --git a/font.plp b/font.plp index e64e204..5315764 100644 --- a/font.plp +++ b/font.plp @@ -1,8 +1,10 @@ <(common.inc.plp)><: use 5.014; +my $font = $ENV{PATH_INFO} =~ s{^/}{}r; + Html({ - title => 'character support sheet', + title => 'font coverage '.($font ? "for $font" : 'sheet'), version => 'v1.2', keywords => [qw( unicode font glyph char character support overview cover coverage @@ -12,7 +14,7 @@ Html({ data => [qw( unicode-cover.inc.pl )], }); -if (my $font = $ENV{PATH_INFO} =~ s{^/}{}r) { +if ($font) { my ($fontmeta, @cover) = do "ttfsupport/$font.inc.pl"; $fontmeta or die "Unknown font $font\n";