X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/194cffeee825787e5ac61e3919681d19b9109aaf..HEAD:/keyboard.plp diff --git a/keyboard.plp b/keyboard.plp index 2fe9c07..fa2aaf2 100644 --- a/keyboard.plp +++ b/keyboard.plp @@ -1,67 +1,84 @@ <(common.inc.plp)><: +$Request ||= 'altgr/windows'; +my $mode = lc $Request; +my $include = "keyboard/$mode.eng"; + +if (-e (my $page = "keyboard/$Request/index.inc.plp")) { + Include $page; + exit; +} + +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 = ( + '', + '', + !$showkeys ? '' : + $showkeys eq 'ghost' ? '' : (), + '', +); + Html({ - title => 'keyboard cheat sheet', - version => '1.0', + title => "\L$mode\E keyboard cheat sheet", + version => $info->{version} || '0.1', + canonical => -e "$Request.plp" ? "/$Request" : undef, # historic shorthand + description => $info->{description} // + ["Keyboard cheat sheet for the default controls of $mode."], + 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, }); -:> -

keyboard cheat sheet

+%{$info} or Abort( + "Requested keyboard $mode not available", + '404 request not found', +); -

normal mode (default)

+say "

$mode keyboard

"; +say "

$_

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

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

" + if $info->{mode} and %{ $info->{mode} } > 1; -<: -use Shiar_Sheet::Keyboard 2.07; -use Unicode::Normalize qw( NFKD ); -use Text::Unidecode qw( unidecode ); +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->{moderows}, $info->{rows}); -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] } -); +{ + say "
\n"; + say '
'; -my $keys = Shiar_Sheet::Keyboard->new({ - def => { - '' => { - map { - my @row = @{$_}; - my $class = ( - !defined $row[2] || $row[0] eq $row[2] ? 1 # identical - : NFKD($row[2]) =~ $row[0] ? 2 # decomposed equivalent - : $row[2] =~ /^\p{Latin}/ ? 4 # latin script - : unidecode($row[2]) =~ /^\W*\Q$row[0]/ ? 5 # transliterated - : $row[2] =~ /^\p{Mn}/ ? 8 # combining accent - : 7 - ); - $row[0] => "g$class" - } @usint - }, - }, - key => { - map { - $_->[0] => "$_->[1]
$_->[2]" - } @usint - }, - flag => { - g1 => ['unaltered'], - g2 => ['accented'], - g4 => ['latin'], - g7 => ['other'], - g8 => ['combining'], - }, -}); -$keys->map($get{map}) or undef $get{map}; -$keys->print_rows($get{rows}, [0]); -$keys->print_legends(\%get); + use List::MoreUtils qw( part ); + my @gflags = part {/^g\d/} sort keys %{ $keys->{flag} }; + + say "\t", '
'; + $keys->print_legend('legend-types', $gflags[1]); + say "\t
\n"; + + say "\t", '
'; + $keys->print_legend('legend-options', $gflags[0]); + say ''; + + say "\t\t", '"; + say "\t
\n"; + say "
\n"; +}