X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/77ac3d52d89913a79cca834d882c54a58c15a488..d66fb2e242cd73e7a3b5c3980d7491080fc5f8d1:/keyboard.plp diff --git a/keyboard.plp b/keyboard.plp index f1d5634..36ccaca 100644 --- a/keyboard.plp +++ b/keyboard.plp @@ -1,55 +1,37 @@ <(common.inc.plp)><: +my $mode = lc($Request || 'keyboard'); +my $include = "$mode.eng"; + +my $info = eval { Data($include) } || {}; +$mode = $info->{title} // $mode; + Html({ - title => 'keyboard cheat sheet', - version => '1.0', + title => "\L$mode\E keyboard cheat sheet", + version => $info->{version} || '0.1', + description => $info->{description} // + ["Keyboard cheat sheet for the default controls of $mode."], + keywords => [@{ $info->{keywords} // [] }, qw' + sheet cheat reference overview keyboard control commands shortkey + '], stylesheet => [qw( light dark circus mono red )], keys => 1, + data => ["$include.inc.pl"], }); -:> -

keyboard cheat sheet

- -

normal mode (default)

+%{$info} or Abort( + "Requested keyboard $mode not available", + '404 request not found', +); -<: -use Shiar_Sheet::Keyboard 2; -my $usint = [ - [ 'a' .. 'z'], - [qw(Á B ¢ Ð É F G H Í J Œ Ø µ Ñ Ó Ö Ä ® § Þ Ú V Å X Ü Æ)], - [qw(á b © ð é f g h í j œ ø µ ñ ó ö ä ® ß þ ú v å x ü æ)], - [qw(Å ı Ç ð ´ ̉ ˝ ̣ ˆ ½  Þ ¾ ˜ Ø ∏ Œ ‰ / ˇ ¨ ◊ „ ˛ ¼ ¸)], - [qw(å ∫ ç ∂ ´ ƒ © ˙ ^ ∆ ° ¬ µ ~ ø π œ ® ß † ¨ √ ∑ ≈ ¥ Ω)], -]; +say "

$mode cheat sheet

"; +say "

$_

" for $info->{intro} // (); +say "

", $info->{mode}->{''}, " (default)

" + if $info->{mode} and %{ $info->{mode} } > 1; -my $keys = Shiar_Sheet::Keyboard->new({ - def => { - '' => { - map { $_ => '' } @{ $usint->[0] } - }, - }, - key => { - map { - $usint->[0]->[$_] => "$usint->[1]->[$_]
$usint->[2]->[$_]" - } 0 .. $#{ $usint->[0] } - }, -}); +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_rows($get{rows}, $info->{rows}); +$keys->print_legends(\%get);