common: bump version to 1.11
[sheet.git] / latin.plp
index 897fe0a086e67ae51be5270ba4f0a02784917083..199a49c3b28a622d7b27c23823929ae3ed078dab 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -2,7 +2,7 @@
 
 Html({
        title => 'latin alphabet cheat sheet',
-       version => '1.3',
+       version => '1.5',
        description => [
        ],
        keywords => [qw'
@@ -17,76 +17,9 @@ Html({
 
 :>
 <style>
-       @font-face {
-               font-family: Suetterlin; /* R. G. Arens */
-               src: url("/suetterlin.ttf");
-       }
-       #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%;
-       }
-       #cards td {
-               font-family: Symbola, "DejaVu Sans", serif, sans;
-       }
-       #pigpen {
-               stroke-linecap: square;
-       }
-       #nyctographs,
-       #old-roman-cursive {
-               stroke-linecap: round;
-               stroke-linejoin: round;
-       }
-       td {
-               white-space: nowrap;
-       }
-
-       .sample {
+       td svg {
                vertical-align: middle;
-               text-align: left;
-               padding: 1px 0.3em;
-       }
-       #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;
        }
-       #sutton-asl .sample span,
-       #maritime-flags .sample span,
-       #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;
@@ -95,11 +28,15 @@ Html({
                fill: currentColor;
        }
 
-       td {
-               vertical-align: top;
+       .sample {
+               text-align: left;
+               padding: 1px 0.3em;
        }
-       td > svg {
-               vertical-align: middle;
+       td.sample {
+               width: auto;
+       }
+       th {
+               white-space: nowrap; /* prevent resize by sample */
        }
 </style>
 
@@ -120,15 +57,32 @@ 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;
+               my $th = 'th';
+               $th .= sprintf ' title="%s"', $_ for $info->{title} || ();
+               say "<$th>", $info->{name} // ucfirst $id;
+
                my $colspan = 1;
                my $col = 0;
-               for (@{$cells}) {
+               for (@{ $info->{list} }) {
                        $col++;
                        if ($_ eq '>') {
                                $colspan++;
@@ -161,5 +115,7 @@ else {
 :></div>
 
 <script type="text/javascript" src="/latinsample.js"></script>
-<script type="text/javascript"> prependinput(document.getElementById('intro')) </script>
+<script type="text/javascript"><!--
+       prependinput(document.getElementById('intro'));
+//--></script>