keyboard/altgr: shifted row above unshifted
[sheet.git] / keyboard.plp
index ea62b5a5284a9bf4c13fb126493a8b3c04c2f5e1..62e150a7dd726b75c4d1d9ba0f4898a837b149ef 100644 (file)
@@ -1,12 +1,28 @@
 <(common.inc.plp)><:
 
-my $mode = lc($Request || 'altgr');
-my $include = "$mode.eng";
+$Request ||= 'altgr/windows';
+my $mode = lc $Request;
+my $include = "keyboard/$mode.eng";
 
 my $info = eval { Data($include) } || {};
 warn "error in $include: ", @{$@} if ref $@;
 $mode = $info->{title} // $mode;
 
+my $showkeys //= !exists $get{keys} ? undef :
+       ($get{keys} ne '0' && ($get{keys} || 'always'));
+my @keystyle = (
+       '<!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->',
+       '<!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]-->',
+       !$showkeys ? '<style> .no {visibility:hidden} </style>' :
+       $showkeys eq 'ghost' ? '<style> .no, .alias {opacity:.5} </style>' : (),
+       '<script type="text/javascript" src="/keys.js?1.6" async></script>',
+);
+if ($Request =~ /^altgr/ and open my $cssinc, '<', 'keyboard/altgr.css') {
+       local $/;
+       my $data = readline $cssinc;
+       push @keystyle, "<style>\n$data</style>";
+}
+
 Html({
        title => "\L$mode\E keyboard cheat sheet",
        version => $info->{version} || '0.1',
@@ -15,9 +31,10 @@ Html({
        keywords => [@{ $info->{keywords} // [] }, qw'
                sheet cheat reference overview keyboard control commands shortkey
        '],
+       image => $info->{image},
        stylesheet => [qw( light dark circus mono red )],
-       keys => 1,
        data => ["$include.inc.pl"],
+       raw => \@keystyle,
 });
 
 %{$info} or Abort(
@@ -33,7 +50,7 @@ say "<h2>", $info->{mode}->{''}, " (default)</h2>"
 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}, $info->{rows});
+$keys->print_rows($get{rows} || $info->{moderows}, $info->{rows});
 
 {
        say "<hr/>\n";