From 6907147e74f53469d6a987927ca133fd1a9d587b Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Mon, 21 Sep 2015 19:15:25 +0200 Subject: [PATCH] font: distinct page titles if given font parameter --- font.plp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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"; -- 2.30.0