latin: custom space glyphs in sample
[sheet.git] / latin.plp
index ce8c111a2fbab26a7f6d58633ba1e93cdb42f0eb..c9c59ad9d2dc7f0dcb088fc6e2825de0d7847e04 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -2,13 +2,14 @@
 
 Html({
        title => 'latin alphabet cheat sheet',
-       version => '1.2',
+       version => '1.3',
        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'],
        data => ['writing-latn.inc.pl'],
@@ -20,26 +21,127 @@ Html({
                font-family: Suetterlin; /* R. G. Arens */
                src: url("/suetterlin.ttf");
        }
-       .glyphs tr:first-child+tr+tr td { font-family: Suetterlin }
+       #sütterlin td { font-family: Suetterlin }
+       #ita2 td,
+       #tap-code td,
+       #tap-simplified td {
+               white-space: normal;
+               word-spacing: 5em; /* force line break between words */
+       }
+       #tap-code td,
+       #tap-simplified td {
+               line-height: 1ex;
+       }
+       #ita2 td {
+               font-size: 50%;
+       }
+       #pigpen {
+               stroke-linecap: square;
+       }
+       #nyctographs,
+       #old-roman-cursive {
+               stroke-linecap: round;
+               stroke-linejoin: round;
+       }
+       td {
+               white-space: nowrap;
+       }
+
+       .sample {
+               vertical-align: middle;
+       }
+       #old-roman-cursive .sample span {
+               margin-right: -10px;
+       }
+       #tap-code .sample,
+       #tap-simplified .sample {
+               font-size: 80%;
+       }
+       #ita2 .sample,
+       #tap-code .sample,
+       #tap-simplified .sample {
+               word-spacing: 0;
+       }
+       #ita2 .sample span,
+       #tap-code .sample span,
+       #tap-simplified .sample span {
+               margin-right: 1ex;
+               white-space: nowrap;
+       }
+       #morse .sample span {
+               margin-right: 0.5ex;
+       }
+       #pigpen .sample svg {
+               margin-right: 0.1em;
+       }
+       #nyctographs .sample svg {
+               background: rgba(0,0,0, .1);
+               padding: 0.1em;
+               margin-right: 0.2em;
+       }
+
+       svg path:not([fill]) {
+               stroke: currentColor;
+               fill: none;
+       }
+       svg circle:not([fill]) {
+               fill: currentColor;
+       }
+
+       td {
+               vertical-align: top;
+       }
+       td > svg {
+               vertical-align: middle;
+       }
 </style>
 
 <h1>Latin alphabet</h1>
 
-<p>Also see <a href="/writing">other alphabets</a>
-and <a href="/unicode">common chars</a>.</p>
+<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>
 
-<div class="-diinfo">
+<div>
 
 <:
+use List::Util qw( pairs );
+
 my @table = do 'writing-latn.inc.pl';
 if ($! or $@) {
-       printf "<p class=error>Table data not found: <em>%s</em>.</p>\n", $@ || $!;
+       Alert("Table data not found", $@ || $!);
 }
 else {
-       print '<table class="glyphs">';
-       print ref $_ ne 'ARRAY' ? "<tr><th>$_" : map {"<td>$_"} @$_ for @table;
-       print "</table>\n\n";
+       say '<table class="glyphs">';
+       for my $row (pairs @table) {
+               my ($title, $cells) = @{$row};
+               printf '<tr id="%s">', (lc $title) =~ s/<[^>]+>//gr =~ s/\s+/-/gr;
+               say '<th>', $title;
+               my $colspan = 1;
+               my $col = 0;
+               for (@{$cells}) {
+                       $col++;
+                       if ($_ eq '>') {
+                               $colspan++;
+                               next;
+                       }
+                       print "\t<td";
+                       if ($colspan > 1) {
+                               print " colspan=$colspan";
+                               $colspan = 1;
+                       }
+                       print ' hidden' if $col > 26;  # sample only
+                       print ' class=', $_ ? 'ex' : 'u-invalid' if s/^-//;
+                       print '>';
+                       say;
+               }
+       }
+       say "</table>\n";
 }
 
-print "</div>\n";
+:></div>
+
+<script type="text/javascript" src="/latinsample.js"></script>
+<script type="text/javascript"> prependinput(document.getElementById('intro')) </script>