font: page to list character support
authorMischa POSLAWSKY <perl@shiar.org>
Tue, 8 Feb 2011 23:44:23 +0000 (00:44 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Tue, 10 Apr 2012 01:03:24 +0000 (03:03 +0200)
Coverage data to be placed in <ttfsupport/*.inc.pl>.

font.plp [new file with mode: 0644]
index.plp

diff --git a/font.plp b/font.plp
new file mode 100644 (file)
index 0000000..9faa9c1
--- /dev/null
+++ b/font.plp
@@ -0,0 +1,87 @@
+<(common.inc.plp)><:
+
+Html({
+       title => 'character support sheet',
+       version => 'v1.0',
+       keywords => [qw'
+               unicode glyph char character reference common ipa symbol sign mark table digraph
+       '],
+       stylesheet => [qw'light dark mono circus red'],
+       data => [qw'unicode-table.inc.pl unicode-char.inc.pl'],
+});
+
+:>
+<h1>Character support</h1>
+
+<p>
+Selected characters from Unicode <a href="/unicode">preset</a>
+or <a href="/charset">range</a>.
+</p>
+
+<div>
+
+<:
+use 5.010;
+use Shiar_Sheet::FormatChar;
+my $glyphs = Shiar_Sheet::FormatChar->new;
+
+my $tables = do 'unicode-table.inc.pl' or die $@ || $!;
+my (%font, @fontlist);
+for my $fontid (qw(d tnr a dv dvs c2k u)) {
+       my ($fontmeta, @fontrange) = do "ttfsupport/$fontid.inc.pl";
+       push @fontlist, $fontid;
+       $font{$fontid} = {
+               -name => $fontmeta->{name},
+               map { (chr $_ => 1) } @fontrange
+       };
+}
+
+my @config = qw(
+       punctuation/common punctuation/marks
+       latin/sample
+       symbols/signs1
+);
+$_ and m{/*+(.+)} and @config = split /[ ]/, $1 for $ENV{PATH_INFO}, $get{q};
+@config = qw(ipa/cons ipa/vowels) if 0;
+
+for (@config) {
+       my ($tablegroup, $tablename) = split m{/}, $_, 2;
+
+       print '<table>';
+       printf '<caption>%s</caption>', "$tablegroup: $tablename";
+       say '';
+       my $table = $tables->{$tablegroup}->{$tablename};
+
+       for my $chr (@$table) {
+               $chr =~ m/^\./ .. 1 or next;
+               given ($chr) {
+                       when (/^[.]/) {
+                               print "<tbody style=\"border-bottom:3px double #AAA\">\n";
+                               next;
+                       }
+                       when ([qw(> - =)]) {
+                               next;
+                       }
+               }
+
+               my $ex = s/^-//;
+               my $codepoint = ord $chr;
+               my $ascii = $codepoint <= 127;
+
+               print "<tr><th>$chr\n";
+               my $info = $glyphs->glyph_info($codepoint);
+               my ($class, $name, $mnem, $html, $string) = @$info;
+               print "<td>$_" for $codepoint, EscapeHTML($name);
+               printf '<td class="%s">%s', @$_ for (
+                       [$ascii ? 'l0' : defined $mnem ? 'l4' : 'l1', $mnem // ''],
+                       [$ascii ? 'l0' : defined $html ? 'l4' : 'l1', $html // ''],
+                       (map { $font{$_}->{$chr} ? [l4 => $font{$_}->{-name}] : [l1 => ''] }
+                               @fontlist),
+               );
+       }
+       say "</table>\n";
+}
+:></div>
+
+<script type="text/javascript" src="/clipboard.js"></script>
+
index 22f13df4a9273f1e0220493c3a869949939dec84..a81aadd4cc0f40393f0f60a85ec055549381223a 100644 (file)
--- a/index.plp
+++ b/index.plp
@@ -43,6 +43,7 @@ but you're free to use, print, alter, and redistribute under the AGPL license.
 <li><a href="/unicode">common glyphs</a>
 <li><a href="/digraphs">digraphs</a>
 <li><a href="/writing">script comparison</a>
+<li><a href="/font">font coverage</a>
 </ul>
 </div>