keyboard: move layout data to include
authorMischa POSLAWSKY <perl@shiar.org>
Wed, 1 Nov 2023 11:37:50 +0000 (12:37 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Wed, 8 Nov 2023 00:00:54 +0000 (01:00 +0100)
Similar to other keyboard pages.

keyboard.eng.inc.pl [new file with mode: 0644]
keyboard.plp

diff --git a/keyboard.eng.inc.pl b/keyboard.eng.inc.pl
new file mode 100644 (file)
index 0000000..df1d3f0
--- /dev/null
@@ -0,0 +1,49 @@
+use utf8;
+use Unicode::Normalize qw( NFKD );
+use Text::Unidecode qw( unidecode );
+
+my @usintrows = (
+       [  'a' ..                                            'z'],
+       [qw(Á B ¢ Ð É F G H Í J Œ Ø µ Ñ Ó Ö Ä ® § Þ Ú V Å X Ü Æ)],
+       [qw(á b © ð é f g h í j œ ø µ ñ ó ö ä ® ß þ ú v å x ü æ)],
+       [qw(Å ı Ç ð ´ ̉ ˝ ̣ ˆ ½  Þ ¾ ˜ Ø ∏ Œ ‰ / ˇ ¨ ◊ „ ˛ ¼ ¸)],
+       [qw(å ∫ ç ∂ ́ ƒ © ˙ ̂ ∆ ° ¬ µ ̃ ø π œ ® ß † ̈ √ ∑ ≈ ¥ Ω)],
+);
+my @usint = (
+       map {
+               my $c = $_;
+               [ map { $usintrows[$_]->[$c] } 0 .. 2 ]
+       } 0 .. $#{ $usintrows[0] }
+);
+
+{
+       def => {
+               '' => {
+                       map {
+                               my @row = @{$_};
+                               my $class = (
+                                         !defined $row[2] || $row[0] eq $row[2] ? 1 # identical
+                                       : $row[2] =~ /\A\p{Mn}+\z/ ? 8 # combining accent
+                                       : NFKD($row[2]) =~ $row[0] ? 2 # decomposed equivalent
+                                       : $row[2] =~ /^\p{Latin}/ ? 4 # latin script
+                                       : unidecode($row[2]) =~ /^\W*\Q$row[0]/ ? 5 # transliterated
+                                       : 7
+                               );
+                               $row[0] => "g$class"
+                       } @usint
+               },
+       },
+       key => {
+               map {
+                       $_->[0] => "$_->[1]<br>$_->[2]"
+               } @usint
+       },
+       flag => {
+               g1 => ['unaltered', "same results as without modifier"],
+               g2 => ['accented', "decomposes to the original letter with a combining accent"],
+               g4 => ['latin', "a different (accented) latin letter"],
+               g5 => ['similar', "transliterates (mostly) into the unmodified letter"],
+               g7 => ['other', "symbol not directly deducible from key"],
+               g8 => ['combining', "diacritical mark to be combined with a following character"],
+       },
+}
index f4ede94171db59de4c6ee80f2cdfbb585af74cb3..8579524343776a7e5169b94794ff9a4ad9c731d0 100644 (file)
@@ -1,5 +1,8 @@
 <(common.inc.plp)><:
 
+my $include = 'keyboard.eng';
+my $info = Data($include);
+
 Html({
        title => 'keyboard cheat sheet',
        version => '1.2',
@@ -9,6 +12,7 @@ Html({
        ],
        stylesheet => [qw( light dark circus mono red )],
        keys => 1,
+       data => ["$include.inc.pl"],
 });
 
 :>
@@ -20,55 +24,8 @@ for the Windows US international layout.</p>
 <h2>normal mode (default)</h2>
 
 <:
-use Shiar_Sheet::Keyboard 2.07;
-use Unicode::Normalize qw( NFKD );
-use Text::Unidecode qw( unidecode );
-
-my @usintrows = (
-       [  'a' ..                                            'z'],
-       [qw(Á B ¢ Ð É F G H Í J Œ Ø µ Ñ Ó Ö Ä ® § Þ Ú V Å X Ü Æ)],
-       [qw(á b © ð é f g h í j œ ø µ ñ ó ö ä ® ß þ ú v å x ü æ)],
-       [qw(Å ı Ç ð ´ ̉ ˝ ̣ ˆ ½  Þ ¾ ˜ Ø ∏ Œ ‰ / ˇ ¨ ◊ „ ˛ ¼ ¸)],
-       [qw(å ∫ ç ∂ ́ ƒ © ˙ ̂ ∆ ° ¬ µ ̃ ø π œ ® ß † ̈ √ ∑ ≈ ¥ Ω)],
-);
-my @usint = (
-       map {
-               my $c = $_;
-               [ map { $usintrows[$_]->[$c] } 0 .. 2 ]
-       } 0 .. $#{ $usintrows[0] }
-);
-
-my $keys = Shiar_Sheet::Keyboard->new({
-       def => {
-               '' => {
-                       map {
-                               my @row = @{$_};
-                               my $class = (
-                                         !defined $row[2] || $row[0] eq $row[2] ? 1 # identical
-                                       : $row[2] =~ /\A\p{Mn}+\z/ ? 8 # combining accent
-                                       : NFKD($row[2]) =~ $row[0] ? 2 # decomposed equivalent
-                                       : $row[2] =~ /^\p{Latin}/ ? 4 # latin script
-                                       : unidecode($row[2]) =~ /^\W*\Q$row[0]/ ? 5 # transliterated
-                                       : 7
-                               );
-                               $row[0] => "g$class"
-                       } @usint
-               },
-       },
-       key => {
-               map {
-                       $_->[0] => "$_->[1]<br>$_->[2]"
-               } @usint
-       },
-       flag => {
-               g1 => ['unaltered', "same results as without modifier"],
-               g2 => ['accented', "decomposes to the original letter with a combining accent"],
-               g4 => ['latin', "a different (accented) latin letter"],
-               g5 => ['similar', "transliterates (mostly) into the unmodified letter"],
-               g7 => ['other', "symbol not directly deducible from key"],
-               g8 => ['combining', "diacritical mark to be combined with a following character"],
-       },
-});
+use Shiar_Sheet::Keyboard 2.08;
+my $keys = Shiar_Sheet::Keyboard->new($info);
 $keys->map($get{map}) or undef $get{map};
 $keys->print_rows($get{rows}, [0]);
 $keys->print_legends(\%get);