index: release v1.18 with only altgr index linked
[sheet.git] / latin.plp
index e6ef7a2acd512d9624b5f7ba6728c41baee60863..578d858f73c2b14890ce2a720763a18e9654f8b5 100644 (file)
--- a/latin.plp
+++ b/latin.plp
 
 Html({
        title => 'latin alphabet cheat sheet',
-       version => 'v1.1',
+       version => '1.7',
        description => [
        ],
        keywords => [qw'
                latin roman alphabet script letter unicode font glyph abc
-               writing comparison character sample test language spelling
-               cursive fraktur blind deaf
+               code encoding spelling symbol writing comparison character
+               secret cursive fraktur blind braille morse deaf asl hand
+               barcode bar color semaphore flag
        '],
-       stylesheet => [qw'light dark red'],
+       stylesheet => [qw( light dark red mono )],
        data => ['writing-latn.inc.pl'],
 });
 
 :>
 <style>
-       @font-face {
-               font-family: Suetterlin; /* R. G. Arens */
-               src: url("/suetterlin.ttf");
+       td svg {
+               vertical-align: middle;
+       }
+       svg path:not([fill]) {
+               stroke: currentColor;
+               fill: none;
+       }
+       svg circle:not([fill]) {
+               fill: currentColor;
+       }
+
+       .sample {
+               text-align: left;
+               padding: 1px 0.3em;
+       }
+       td.sample {
+               width: auto;
+       }
+       th {
+               white-space: nowrap; /* prevent resize by sample */
        }
-       .glyphs tr:first-child+tr td { font-family: Suetterlin }
 </style>
 
 <h1>Latin alphabet</h1>
 
-<p>Also see <a href="/writing">other alphabets</a>
-and <a href="/unicode">common chars</a>.</p>
-
-<div class="-diinfo">
+<p id=intro>Variant encodings of the common ASCII (latin, roman,
+or <span title="fuck yeah!">'mercan</span>) letters A–Z.
+Also see <a href="/writing">related alphabets</a>
+and <a href="/chars/abc">font comparison</a>.</p>
 
 <:
-use Shiar_Sheet::FormatChar;
-my $glyphs = Shiar_Sheet::FormatChar->new;
-unless (exists $get{v}) {
-       $glyphs->{unicode}--;
-       $glyphs->{anno}  = [];
-       $glyphs->{style} = 0;
+my $table = Data('writing-latn');
+{
+       say '<div>';
+       say '<style>';
+       while (my ($id, $info) = each %$table) {
+               ref $info eq 'HASH' or next;
+               my $style = $info->{style} or next;
+               ref $style or $style = [$style];
+               say "\t", !/^@/ && "#$id ", $_ for @{$style};
+       }
+       say "</style>\n";
 }
 
-my %scriptname = (
-       latn     => 'Latin',
-       latnuc   => 'Uppercase',
-       latnlc   => 'Lowercase',
-       latfsuet => 'Sütterlin',
-       asl      => '<abbr title="American Sign Lanugage">ASL</abbr>', # American manual alphabet
-       brai     => 'Braille',
-       morse    => 'Morse',
-       tap      => 'Tap code',
-       taps     => 'Tap simplified',
-       ics      => 'Maritime flags', # International Code of Signals
-       sem      => 'Flag semaphore',
-       rm4scc   => '<abbr title="Royal Mail 4-State Customer Code">RM4SCC</abbr>',
-);
+my %VOWELCOLS = (map { ($_ => 1) } 0, 4, 8, 14, 20, 24);
+say '<table class="glyphs">';
+say '<thead>';
+printtr('order');
+say '</thead>';
+printtr('default');
+say "</table></div>";
 
-my @table = do 'writing-latn.inc.pl';
-if ($! or $@) {
-       printf "<p class=error>Table data not found: <em>%s</em>.</p>\n", $@ || $!;
-}
-else {
-       print $glyphs->table([map {
-               ref $_ ne 'ARRAY' ? ".>$scriptname{$_}"
-                       : exists $get{uc} ? map {uc} @$_ : @$_
-       } @table]);
+sub printtr {
+       for my $id (@_) {
+               my $info = $table->{$id};
+
+               if (ref $info eq 'ARRAY') {
+                       printtr(@{$info});
+                       next;
+               }
+
+               printf '<tr id="%s">', $id;
+               my $th = 'th';
+               $th .= sprintf ' title="%s"', $_ for $info->{title} || ();
+               say "<$th>", $info->{name} // ucfirst $id;
+
+               my $colspan = 1;
+               my $col = 0;
+               for (@{ $info->{list} }) {
+                       $col++;
+                       if ($_ eq '>') {
+                               $colspan++;
+                               next;
+                       }
+                       my @class;
+                       push @class ,'l0' if $VOWELCOLS{$col - $colspan};
+                       push @class, $_ ? 'ex' : 'u-invalid' if s/^-//;
+
+                       print "\t<td";
+                       if ($col > 26) {
+                               # special character for sample generation
+                               print ' hidden';  # sample only
+                       }
+                       else {
+                               print ' title=', chr($col + ord('A') - $colspan);
+                       }
+                       if ($colspan > 1) {
+                               print " colspan=$colspan";
+                               $colspan = 1;
+                       }
+                       printf ' class="%s"', "@class" if @class;
+                       print '>';
+                       say;
+               }
+       }
 }
 
-print "</div>\n";
+:>
+<script type="text/javascript" src="/latinsample.js"></script>
+<script type="text/javascript"><!--
+       prependinput(document.getElementById('intro'));
+//--></script>