writing: fix non-verbose annotation setup
[sheet.git] / latin.plp
index 2809d7efdb8ef74bc1fb2d8db384dfb32b402ab1..f8472d7e4698641aa4642ad649690b239bb01ca3 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -7,12 +7,26 @@ Html({
        ],
        keywords => [qw'
                latin roman alphabet script letter unicode font glyph abc
-               writing comparison character sample test language
+               writing comparison character sample test language spelling
+               cursive fraktur blind deaf
        '],
        stylesheet => [qw'light dark red'],
 });
 
 :>
+<style>
+       @font-face {
+               font-family: Suetterlin; /* R. G. Arens */
+               src: url("/suetterlin.ttf");
+       }
+       @font-face {
+               font-family: Gallaudet;
+               src: url("/gallaudet.ttf");
+       }
+       .glyphs tr:first-child+tr td.di-a { font-family: Suetterlin }
+       .glyphs tr:first-child+tr+tr td.di-a { font-family: Gallaudet }
+</style>
+
 <h1>Latin alphabet</h1>
 
 <p>Also see <a href="/writing">other alphabets</a>
@@ -25,15 +39,27 @@ use Shiar_Sheet::FormatChar;
 my $glyphs = Shiar_Sheet::FormatChar->new;
 unless (exists $get{v}) {
        $glyphs->{unicode}--;
-       $glyphs->{digraph}--;
+       $glyphs->{anno}  = [];
+       $glyphs->{style} = 0;
 }
 
+my %scriptname = (
+       latn     => 'Latin',
+       latfsuet => 'Sütterlin',
+       ase      => '<abbr title="American Sign Lanugage">ASL</abbr> shapes',
+       brai     => 'Braille',
+       morse    => 'Morse',
+);
+
 my @table = do 'writing-latn.inc.pl';
 if ($! or $@) {
        printf "<p>Table data not found: <em>%s</em>.</p>\n", $! || $@;
 }
 else {
-       print $glyphs->table(exists $get{uc} ? [map {s/\s.//; uc} @table] : \@table);
+       print $glyphs->table([map {
+               ref $_ ne 'ARRAY' ? ".>$scriptname{$_}"
+                       : exists $get{uc} ? map {uc} @$_ : @$_
+       } @table]);
 }
 
 print "</div>\n";