termcol: move generated xcolors include to data/
[sheet.git] / latin.plp
index 671d6d7603bc206186d79a7f8846034eff472d59..687e082e08b5548f8d9a752c63d4f717e72918eb 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -11,46 +11,43 @@ Html({
                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");
-       }
-       #sütterlin td { font-family: Suetterlin }
-       #tap-code td,
-       #tap-simplified td {
-               line-height: 1ex;
+       td {
+               white-space: nowrap;
        }
-       #old-roman-cursive {
-               stroke-width: 3;
-               stroke-linecap: round;
-               stroke-linejoin: round;
+       th {
+               width: auto !important;
        }
 
+       td svg {
+               vertical-align: middle;
+       }
        svg path:not([fill]) {
                stroke: currentColor;
                fill: none;
        }
-
-       td {
-               vertical-align: top;
+       svg circle:not([fill]) {
+               fill: currentColor;
        }
-       td > svg {
-               vertical-align: middle;
+
+       .sample {
+               text-align: left;
+               padding: 1px 0.3em;
+               white-space: normal;
        }
 </style>
 
 <h1>Latin alphabet</h1>
 
-<p>Variant encodings of the common ASCII (latin, roman,
+<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="/unicode">common chars</a>.</p>
+and <a href="/chars/abc">font comparison</a>.</p>
 
 <div>
 
@@ -62,23 +59,53 @@ if ($! or $@) {
        Alert("Table data not found", $@ || $!);
 }
 else {
+       say '<style>';
+       for my $row (pairs @table) {
+               my ($id, $info) = @{$row};
+               my $style = $info->{style} or next;
+               ref $style or $style = [$style];
+               say "\t", !/^@/ && "#$id ", $_ for @{$style};
+       }
+       say "</style>\n";
+
+       my %VOWELCOLS = (map { ($_ => 1) } 0, 4, 8, 14, 20, 24);
        say '<table class="glyphs">';
+       say '<thead><tr><th># <small>ASCII − 64</small>';
+       print '<td>', $_ for 1 .. 26;
+       say '</thead>';
+
        for my $row (pairs @table) {
-               my ($title, $cells) = @{$row};
-               printf '<tr id="%s">', (lc $title) =~ s/<[^>]+>//gr =~ s/\s+/-/gr;
-               say '<th>', $title;
+               my ($id, $info) = @{$row};
+
+               printf '<tr id="%s">', $id;
+               say '<th>', $info->{title} // ucfirst $id;
+
                my $colspan = 1;
-               for (@{$cells}) {
+               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;
                        }
-                       print '>' unless s/^<td//;
+                       printf ' class="%s"', "@class" if @class;
+                       print '>';
                        say;
                }
        }
@@ -87,3 +114,6 @@ else {
 
 :></div>
 
+<script type="text/javascript" src="/latinsample.js"></script>
+<script type="text/javascript"> prependinput(document.getElementById('intro')) </script>
+