latin: add sütterlin glyphs (includes ttf font)
[sheet.git] / latin.plp
index 89afb61358b194ecb4f5672ddf5c364de7beddbf..85cabe4d0a110d9c13e0a79c1e3a3259119b72d7 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -8,11 +8,20 @@ Html({
        keywords => [qw'
                latin roman alphabet script letter unicode font glyph abc
                writing comparison character sample test language
+               cursive fraktur
        '],
        stylesheet => [qw'light dark red'],
 });
 
 :>
+<style>
+       @font-face {
+               font-family: Suetterlin; /* R. G. Arens */
+               src: url("/suetterlin.ttf");
+       }
+       .glyphs tr:first-child+tr td.di-a { font-family: Suetterlin }
+</style>
+
 <h1>Latin alphabet</h1>
 
 <p>Also see <a href="/writing">other alphabets</a>
@@ -28,13 +37,23 @@ unless (exists $get{v}) {
        $glyphs->{digraph}--;
 }
 
-my @t = (qw{
-       .>Latin      a b c d e f g h i j k l m n o p q r s t u v w x y z
-       .>Braille    ⠁ ⠃ ⠉ ⠙ ⠑ ⠋ ⠛ ⠓ ⠊ ⠚ ⠅ ⠇ ⠍ ⠝ ⠕ ⠏ ⠟ ⠗ ⠎ ⠞ ⠥ ⠧ ⠺ ⠭ ⠽ ⠵
-       .>Morse      ‧‑ ‑‧‧‧ ‑‧‑‧ ‑‧‧ ‧ ‧‧‐‧ ‐‐‧ ‧‧‧‧ ‧‧ ‧‐‐‐ ‐‧‐ ‧‐‧‧ ‐‐
-                    ‐‧ ‐‐‐ ‧‐‐‧ ‐‐‧‐ ‧‐‧ ‧‧‧ ‐ ‧‧‐ ‧‧‧‐ ‧‐‐ ‐‧‧‐ ‐‧‐‐ ‐‐‧‧
-});
-print $glyphs->table(exists $get{uc} ? [map {s/\s.//; uc} @t] : \@t);
+my %scriptname = (
+       latn     => 'Latin',
+       latfsuet => 'Sütterlin',
+       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([map {
+               ref $_ ne 'ARRAY' ? ".>$scriptname{$_}"
+                       : exists $get{uc} ? map {uc} @$_ : @$_
+       } @table]);
+}
 
 print "</div>\n";