X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/c2f9c9e9c05d8639e4d968efd26c393fcf6da1f1..84cb696906fed0069c2a22256c15adf0abf4f4e7:/keyboard.plp diff --git a/keyboard.plp b/keyboard.plp index 8bbe8f7..62e150a 100644 --- a/keyboard.plp +++ b/keyboard.plp @@ -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 = ( + '', + '', + !$showkeys ? '' : + $showkeys eq 'ghost' ? '' : (), + '', +); +if ($Request =~ /^altgr/ and open my $cssinc, '<', 'keyboard/altgr.css') { + local $/; + my $data = readline $cssinc; + push @keystyle, ""; +} + 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(