font: flat list of characters, ungrouped
authorMischa POSLAWSKY <perl@shiar.org>
Mon, 2 Apr 2012 20:39:47 +0000 (22:39 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Tue, 10 Apr 2012 01:03:24 +0000 (03:03 +0200)
font.plp

index 68f613ff2588d6e1539e87124da80f3df6c8477e..f9b7ac6501326b32ecaec92ada1e810790852a42 100644 (file)
--- a/font.plp
+++ b/font.plp
@@ -50,69 +50,76 @@ for my $os (@ossel) {
        }
 }
 
        }
 }
 
-my @config = qw(
-       punctuation/common punctuation/marks
-       latin/sample
-       symbols/signs1
-       math/logic
-);
-$_ and m{/*+(.+)} and @config = split /[ ]/, $1 for $ENV{PATH_INFO}, $get{q};
-@config = qw(ipa/cons ipa/vowels) if 0;
+# parse input
 
 
-for (@config) {
-       my ($tablegroup, $tablename) = split m{/}, $_, 2;
+my @chars;
 
 
-       print '<table class=mapped>';
-       printf '<caption>%s</caption>', "$tablegroup: $tablename";
-       say '';
-       print '<col>' x 3;
-       print "<colgroup span=$_>" for 2, map { scalar @{$oslist{$_}} } @ossel;
-       print '<thead><tr>';
-       print '<td colspan=2>char';
-       print '<td>name';
-       print '<td>di<td>html';
-       printf('<td colspan=%d title="%s">%s',
-               (map {
-                       scalar @{$_},
-                       join(', ', map { $_->{-name} } @font{ @{$_} }),
-               } $oslist{$_}),
-               $_,
-       ) for @ossel;
-       say '</thead>';
+for ($ENV{PATH_INFO} || $get{q} || ()) {
+       s{^/}{};
+       when ('') {
+               next;
+       }
+       when (qr{/}) {
+               push @{ $get{'@g'} }, $_;
+       }
+       default {
+               die "unknown parameter: $_\n";
+       }
+}
+
+$get{'@g'} //= ['latin/sample'];
+
+for (map { split / / } @{ $get{'@g'} }) {
+       my ($tablegroup, $tablename) = split m{/}, $_, 2;
        my $table = $tables->{$tablegroup}->{$tablename};
 
        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 sprintf('%X', $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{$_}->{-id} ? [l0 => "$_?"] :
-                               $font{$_}->{$chr} ? [l4 => $font{$_}->{-id}] : [l1 => '']
-                       } @fontlist),
-               );
+       for (@{$table}) {
+               m/^[.]/ .. 1 or next;
+               next if /^[.-]/;
+               next if $_ eq '>' or $_ eq '=';
+               push @chars, $_;
        }
        }
-       say "</table>\n";
 }
 }
-:></div>
 
 
-<script type="text/javascript" src="/clipboard.js"></script>
+# output character list
+
+print '<table class=mapped>';
+print '<col>' x 3;
+print "<colgroup span=$_>" for 2, map { scalar @{$oslist{$_}} } @ossel;
+
+print '<thead><tr>';
+print '<td colspan=3>character';
+print '<td colspan=2>input';
+printf '<td colspan=%d>%s fonts', scalar @{ $oslist{$_} }, $_
+       for @ossel;
+
+print '<tr>';
+print '<td colspan=2>unicode';
+print '<td>name';
+print '<td>di<td>html';
+printf '<td title="%s">%s', $font{$_}->{-name}, $font{$_}->{-id} // $_
+       for @fontlist;
+say '</thead>';
+
+for my $chr (@chars) {
+       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 sprintf('%X', $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{$_}->{-id} ? [l0 => '?'] :
+                       $font{$_}->{$chr} ? [l4 => '✔'] : [l1 => '✘']
+               } @fontlist),
+       );
+}
+
+say "</table>\n";
+
+:></div>