countries: store abbreviations in include
[sheet.git] / writing.plp
index 4187d017646eeed06060524eef0218c3ac90729a..a8bf630a9684ef7555b9cad722d163b535d55fb5 100644 (file)
@@ -13,6 +13,7 @@ Html({
                history phoenician latin sample test language multilingual
        '],
        stylesheet => [qw'light dark red'],
+       data => [qw'writing-phnx.inc.pl'],
 });
 
 :>
@@ -28,74 +29,16 @@ 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 = (
-       arab     => 'Arabic',
-       armi     => 'Aramaic',
-       bali     => 'Balinese',
-       beng     => 'Bengali',
-       brah     => 'Brahmi',
-       cham     => 'Cham',
-       copt     => 'Coptic',
-       cyrl     => 'Cyrillic',
-       deva     => 'Devanagari',
-       ethi     => 'Ethiopic',
-       goth     => 'Gothic',
-       grek     => 'Greek',
-       gujr     => 'Gujarati',
-       guru     => 'Gurmukhi', # ਪੰਜਾਬੀ     ੧
-       hans     => 'Chinese',
-       hant     => 'Chinese',
-       hebr     => 'Hebrew',
-       ipa      => 'IPA',
-       iso      => 'ISO',
-       ital     => 'Old_Italic',
-       java     => 'Javanese',
-       kali     => 'Kayah_Li',
-       khmr     => 'Khmer',
-       knda     => 'Kannada',
-       lana     => 'Tai_Tham',
-       laoo     => 'Lao',
-       latn     => '<a href="/latin">Latin</a>',
-       lepc     => 'Lepcha',
-       lyci     => 'Lycian',
-       lydi     => 'Lydian',
-       mlym     => 'Malayalam', # മലയാളം   ൧
-       mymr     => 'Myanmar',
-       olck     => 'Ol_Chiki',
-       orya     => 'Oriya', # ଓଡ଼ିଆ
-       osma     => 'Osmanya',
-       phnx     => 'Phoenician',
-       samr     => 'Samaritan',
-       saur     => 'Saurashtra',
-       sinh     => 'Sinhala',
-       sund     => 'Sundanese',
-       syrc     => 'Syriac',
-       talu     => 'New_Tai_Lue',
-       taml     => 'Tamil', # தமிழ்         ௧
-       telu     => 'Telugu',
-       teng     => 'Tengwar',
-       tglg     => 'Baybayin',
-       thai     => 'Thai', # ไทย
-       tibt     => 'Tibetan',
-       tlh      => 'Klingon',
-
-       digits_latn     => 'Arabic_(Western)',
-       digits_latnlat  => 'Roman',
-       digits_brai     => 'Braille_[⠼+]',
-              arabindi => 'Arabic_-_Indic',
-              arabpers => 'Arabic_-_Indic_(Alt)',
-       digits_brahnumb => 'Brahmi',
-              lanahora => 'Tai_Tham_Hora',
-              suzhou   => 'Hangzhou',
-);
+my $scriptname = do 'writing-script.inc.pl';
+$_ = qq{<a href="/latin">$_</a>} for $scriptname->{latn} || ();
 
 for (
        [phnx => 'Phoenician'],
        [brah => 'Brahmi'],
-       [digits => 'Digits'],
 ) {
        my ($source, $title) = @$_;
        my @table = do "writing-$source.inc.pl";
@@ -106,7 +49,7 @@ for (
        }
        $glyphs->print($title => [map {
                ref $_ eq 'ARRAY' ? @$_ : map { ".>$_" }
-                       $scriptname{$source.'_'.$_} || $scriptname{$_} || $_
+                       $scriptname->{$source.'_'.$_} || $scriptname->{$_} || $_
        } @table]);
 }