X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/19b5c65d6d32527bdd0edfe5a2c4f4fe0da7dc87..81aefba6ac586eccbe18b4e90efc175e34fff5ad:/font.plp diff --git a/font.plp b/font.plp index 8c9b098..d7f3b2e 100644 --- a/font.plp +++ b/font.plp @@ -1,9 +1,11 @@ <(common.inc.plp)><: use 5.014; +my $font = $ENV{PATH_INFO} =~ s{^/}{}r; + Html({ - title => 'character support sheet', - version => 'v1.1', + title => 'font coverage '.($font ? "for $font" : 'sheet'), + version => '1.2', keywords => [qw( unicode font glyph char character support overview cover coverage script block symbol sign mark reference table @@ -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"; @@ -31,7 +33,7 @@ if (my $font = $ENV{PATH_INFO} =~ s{^/}{}r) { say "

Font coverage

"; say "

$_

" for EscapeHTML($fontmeta->{name}); - printf("

Version %s released %s contains %d glyphs.

\n", + printf("

Version %s released %s contains %d glyphs.", !!$_->[2] && qq( title="revision $_->[2]"), $_->[1], $_->[0], scalar @cover, @@ -41,9 +43,22 @@ if (my $font = $ENV{PATH_INFO} =~ s{^/}{}r) { EscapeHTML($fontmeta->{version}), $fontmeta->{revision}, ]; - printf "

%s

\n", join('
', map { $_ ? EscapeHTML($_) : () } - $fontmeta->{copyright}, $fontmeta->{license}, - ); + for ($fontmeta->{os}) { + say '
'; + print ucfirst join(' ', + "distributed", + (map { "by $_" } $fontmeta->{oscorp} || "various sources"), + (map { "with $_" } $_ || ()), + ('and published as freeware "Core Web font"') x ($_ eq 'Windows 2000'), + (map { "under a $_ license" } + map { $fontmeta->{license} ? qq($_) : $_ } + $_ && $_ ne 'Android' ? 'proprietary' : 'free', + ), + ); + print '.'; + } + say '

'; + say "

$_

" for EscapeHTML($fontmeta->{copyright}) || (); require Shiar_Sheet::FormatChar; my $glyphs = Shiar_Sheet::FormatChar->new; @@ -55,6 +70,11 @@ if (my $font = $ENV{PATH_INFO} =~ s{^/}{}r) { EOT say ''; @@ -74,31 +94,29 @@ EOT ); for my $cp ($offset .. $offset+$pagerows-1) { - state $sameblock; + state $colpos; my $block = Unicode::UCD::charblock($cp); - - if ($sameblock and $sameblock ne $block and $block ne 'No_Block') { - say sprintf ''; + printf '
%s', $pagecols+1, $block; - undef $sameblock; - } - - if (not $sameblock) { + if ($block ne (state $sameblock = $block) and $block ne 'No_Block') { + print '
%s', $pagecols+1, $block + unless $block eq 'No_Block'; + say ''; $sameblock = $block; - if (my $gap = $cp % $pagecols) { - say sprintf '
%X', $cp, $gap; - } + $colpos = 0; } - say sprintf '
%X', $cp if $cp % $pagecols == 0; + say sprintf '
%X', $cp if $colpos++ % $pagecols == 0; my $info = $glyphs->glyph_info($cp); my ($class, $name, $mnem, $html, $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); say sprintf '%s', !$class ? ('l0', $cp, '', '') : $cover{$cp} ? $np ? 'l2' : 'l5' : $np ? 'Xi' : 'l1', $cp, !!$name && ": $name", - ($cover{$cp} || !$np) && EscapeHTML(chr $cp); + ($cover{$cp} || !$np) && $html; } say '
'; @@ -123,6 +141,8 @@ my @ossel = @{ $cover->{osdefault} }; my @fontlist = map { @{ $cover->{os}->{$_} } } @ossel; my @rows = ( + 'version/11', + 'version/63', 'block/Latin-1 Supplement', 'block/Latin Extended-A', 'block/Latin Extended Additional', @@ -166,8 +186,11 @@ print "" print ''; print ''; -printf '%s fonts', scalar @{ $cover->{os}->{$_} }, $_ - for @ossel; +for my $os (@ossel) { + my $osfonts = $cover->{os}->{$os}; + my $osfont = $cover->{fonts}->[ $osfonts->[0] ]; # first font + printf '%s', scalar @{$osfonts}, $osfont->{os} || '' +} print ''; print ''; @@ -183,6 +206,7 @@ for (@rows) { my $row = $cover->{$group}->{$name}; print ''; + $name = sprintf 'Unicode v%.1f', $name / 10 if $group eq 'version'; $name = sprintf '%s', EncodeURI("/chars/$group/$name"), EscapeHTML($name) if $row->{count} and $row->{count} < 1280; print '', $name;