keyboard: move layout data to include
[sheet.git] / keyboard.plp
index cd75090456b91a552639aa08e94e3f5eae37dff8..8579524343776a7e5169b94794ff9a4ad9c731d0 100644 (file)
@@ -1,59 +1,31 @@
 <(common.inc.plp)><:
 
+my $include = 'keyboard.eng';
+my $info = Data($include);
+
 Html({
        title => 'keyboard cheat sheet',
-       version => '1.0',
+       version => '1.2',
+       description => [
+               "Windows US international keyboard layout table",
+               "with the AltGr modifier key.",
+       ],
        stylesheet => [qw( light dark circus mono red )],
        keys => 1,
+       data => ["$include.inc.pl"],
 });
 
 :>
 <h1>keyboard cheat sheet</h1>
 
+<p>Special <a href="/unicode">characters</a> returned with the AltGr modifier
+for the Windows US international layout.</p>
+
 <h2>normal mode (default)</h2>
 
 <:
-use Shiar_Sheet::Keyboard 2.07;
-use Unicode::Normalize qw( NFKD );
-
-my $usint = [
-       [  'a' ..                                            'z'],
-       [qw(Á B ¢ Ð É F G H Í J Œ Ø µ Ñ Ó Ö Ä ® § Þ Ú V Å X Ü Æ)],
-       [qw(á b © ð é f g h í j œ ø µ ñ ó ö ä ® ß þ ú v å x ü æ)],
-       [qw(Å ı Ç ð ´ ̉ ˝ ̣ ˆ ½  Þ ¾ ˜ Ø ∏ Œ ‰ / ˇ ¨ ◊ „ ˛ ¼ ¸)],
-       [qw(å ∫ ç ∂ ́ ƒ © ˙ ̂ ∆ ° ¬ µ ̃ ø π œ ® ß † ̈ √ ∑ ≈ ¥ Ω)],
-];
-
-my $keys = Shiar_Sheet::Keyboard->new({
-       def => {
-               '' => {
-                       map {
-                               my $c = $_;
-                               my @row = map { $usint->[$_]->[$c] } 0 .. 2;
-                               my $class = (
-                                         !defined $row[2] || $row[0] eq $row[2] ? 1 # identical
-                                       : NFKD($row[2]) =~ $row[0] ? 2 # decomposed equivalent
-                                       : $row[2] =~ /^\p{Latin}/ ? 3 # latin script
-                                       : $row[2] =~ /^\p{Mn}/ ? 5 # combining accent
-                                       : 4
-                               );
-                               $row[0] => "g$class"
-                       } 0 .. $#{ $usint->[0] }
-               },
-       },
-       key => {
-               map {
-                       $usint->[0]->[$_] => "$usint->[1]->[$_]<br>$usint->[2]->[$_]"
-               } 0 .. $#{ $usint->[0] }
-       },
-       flag => {
-               g1 => ['unaltered'],
-               g2 => ['accented'],
-               g3 => ['latin'],
-               g4 => ['other'],
-               g5 => ['combining'],
-       },
-});
+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);