digraphs: css update, cell groups
[sheet.git] / index.plp
index 4b16cd23c6e936e9d5596c446c3bc4a9f3281780..94a77886a38e384342c8ba63635d013e30646f6e 100644 (file)
--- a/index.plp
+++ b/index.plp
@@ -2,22 +2,22 @@
 use utf8;
 use strict;
 use warnings;
-no  warnings "qw";  # you know what you doing
-no  warnings "uninitialized";  # save some useless checks for more legible code
+no  warnings 'qw';  # you know what you doing
+no  warnings 'uninitialized';  # save some useless checks for more legible code
 
-our $VERSION = "1.0";
+our $VERSION = '1.1';
 
 our $ascii = 0;
 if (exists $get{ascii}) {
-       $ascii = $get{ascii} ne "0";  # manual override
+       $ascii = $get{ascii} ne '0';  # manual override
 } elsif (defined $ENV{HTTP_ACCEPT_CHARSET}) {
        $ascii = 1;
-       for (split ",", $ENV{HTTP_ACCEPT_CHARSET}) {
-               $ascii = 0, last if $_ eq "*" or m/utf-?8/i;
+       for (split q{,}, $ENV{HTTP_ACCEPT_CHARSET}) {
+               $ascii = 0, last if $_ eq '*' or m{utf-?8}i;
        }
 }
 
-my $charset = $ascii ? "us-ascii" : "utf-8";
+my $charset = $ascii ? 'us-ascii' : 'utf-8';
 my $ctype = "text/html; charset=$charset";
 $header{content_type} = $ctype;
 
@@ -31,16 +31,16 @@ $header{content_type} = $ctype;
 <link rel="stylesheet" type="text/css" media="all" href="base.css">
 <!--[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]--><:
-       my %styles = map {$_ => $_} qw(dark circus mono);
-       our $style = exists $get{style} && $styles{$get{style}} || "light";
+       my %styles = map {$_ => $_} qw(dark circus mono terse);
+       our $style = exists $get{style} && $styles{$get{style}} || 'light';
        printf(qq{\n<link rel="%s" type="text/css" media="all" href="%s" title="%s">},
-               $_ eq $style ? "stylesheet" : "alternate stylesheet", "$_.css", $_
+               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_
        ) for keys %styles;
 
-       our $showkeys = exists $get{keys} && $get{keys} ne "0";
+       our $showkeys = exists $get{keys} && $get{keys} ne '0';
        print "\n<style> .no {visibility:hidden} </style>" unless $showkeys;
        print "\n<style> .no, .alias {opacity:.5} </style>"
-               if $showkeys and $get{keys} eq "ghost";
+               if $showkeys and $get{keys} eq 'ghost';
 :>
 
 <script><!--
@@ -87,24 +87,24 @@ function setmode(classname) {
 
 <:
 our %sign = (
-       arg    => $ascii ? "." : "·",  # described as 'dot'
-       motion => $ascii ? "|" : "↕",
-       alias  => $ascii ? "see: " : "»",
-       up     => $ascii ? "up"    : "▲",
-       right  => $ascii ? "right" : "▶",
-       down   => $ascii ? "down"  : "▼",
-       left   => $ascii ? "left"  : "◀",
-       sep    => $ascii ? "*"     : "•",
-       _      => exists $get{ascii} && !$ascii ? "\x{200b}" : "<wbr>",
+       arg    => $ascii ? '.' : '·',  # described as 'dot'
+       motion => $ascii ? '|' : '↕',
+       alias  => $ascii ? 'see: ' : '»',
+       up     => $ascii ? 'up'    : '▲',
+       right  => $ascii ? 'right' : '▶',
+       down   => $ascii ? 'down'  : '▼',
+       left   => $ascii ? 'left'  : '◀',
+       sep    => $ascii ? '*'     : '•',
+       _      => exists $get{ascii} && !$ascii ? "\x{200b}" : '<wbr>',
                # use the correct ZWNJ only when unicode is forced on
                # default to use unofficial html for best support
 );
 
-my %keys = do "vim-cmds.inc.pl";
+my %keys = do 'vim-cmds.inc.pl';
 
 my @casedesc = qw(ctrl shift);
 my @rowdesc = qw(numeric top home bottom);
-my %keyrows = do "vim-keys.inc.pl";
+my %keyrows = do 'vim-keys.inc.pl';
 
 sub keyunalias {
        my ($key, %tree) = @_;
@@ -125,7 +125,41 @@ sub escapeclass {
        return $_;
 }
 
-our $map = defined $keyrows{$get{map}} ? $get{map} : "qwerty";
+my %keytrans = qw(
+       ^@ NUL ^a SOH ^b STX ^c ETX  ^d EOT ^e ENQ ^f ACK ^g BEL
+       ^h BS  ^i tab ^j LF  ^k VT   ^l FF  ^m CR  ^n SO  ^o SI
+       ^p DLE ^q DC1 ^r DC2 ^s DC3  ^t DC4 ^u NAK ^v SYN ^w ETB
+       ^x CAN ^y EM  ^z SUB ^[ ESC  ^\ FS  ^] GS  ^^ RS  ^_ US
+       ^? DEL
+);
+
+sub print_key {
+       my ($mode, $key, $keyinfo) = @_;
+
+       $keyinfo = [ $sign{alias}.$keyinfo, keyunalias($keyinfo)->[1] . ' alias' ]
+               if defined $keyinfo and not ref $keyinfo;  # alias
+       my ($desc, $flags, $mnem) = @$keyinfo if defined $keyinfo;
+       defined $desc or $flags = $key eq '^0' ? 'ni' : 'no';
+
+#      $key = $keytrans{$key} if defined $keytrans{$key};
+       my $keytxt = $mode . Entity($key) if $key ne '^0';
+          $keytxt .= $sign{arg} while $flags =~ s/ ?\barg\b//;  # argument
+          $keytxt .= "<small>$sign{motion}</small>" if $flags =~ s/ ?\bargm\b//;  # motion argument
+          $keytxt =~ s{\^(?=.)}{<small>^</small>};  # element around ctrl-identifier
+       my $onclick = $flags =~ s/ ?\bmode(\S*)// && defined $keys{$1} && sprintf(
+               ' onclick="setmode(%s)"',
+               $1 eq '' ? '' : sprintf(q{'mode%s'}, escapeclass($1))
+       );
+       $onclick .= sprintf(q{ onclick="document.location='%s'"}, $1)
+               if $flags =~ s/ ?\blink(\S*)//;
+       my $keyhint = defined($mnem) && qq{ title="$mnem"};
+
+       print qq{\t\t<li class="$flags"$onclick><b$keyhint>$keytxt</b>};
+       print ' ', $desc if defined $desc;
+       print "\n";
+}
+
+our $map = defined $keyrows{$get{map}} ? $get{map} : 'qwerty';
 my $keyrows = $keyrows{$map};
 
 for (my $row = 0; $row <= $#$keyrows; $row++) {
@@ -136,42 +170,18 @@ for (my $row = 0; $row <= $#$keyrows; $row++) {
                        my $keycase = $keyrow->[$case];
                          @$keycase or next;
 
-                       printf(qq{\t<li%s><h3>%s</h3>\n}, # XXX insert &nbsp; here to fix msie<=6
-                               $mode eq '' ? '' : sprintf(
-                                       ' class="%s"', "mode mode" . escapeclass($mode)
-                               ),
-                               sprintf('%s<small>: %s</small>',
+                       printf "\t<li%s>", $mode ne '' && sprintf(
+                               ' class="%s"', 'mode mode' . escapeclass($mode)
+                       );
+                       printf("<h3>%s<small>: %s</small></h3>\n", # XXX insert &nbsp; here to fix msie<=6
                                        $modekeys->{desc} || "mode $mode",
                                        "$rowdesc[$row] row $casedesc[$case]"
-                               )
                        );
-                       my $modeclass = "keys";
-                          $modeclass .= " lead" if defined $modekeys->{lead};  # leading command key shown
-                          $modeclass .= " $casedesc[$case]" if defined $casedesc[$case];
-                       print qq{\t\t<ul class="$modeclass">\n};
-
-                       for my $key (@$keycase) {
-                               my $keyinfo = $modekeys->{$key};
-                               $keyinfo = [ $sign{alias}.$keyinfo, keyunalias($keyinfo)->[1] . " alias" ]
-                                       if defined $keyinfo and not ref $keyinfo;  # alias
-                               my ($desc, $flags, $mnem) = @$keyinfo if defined $keyinfo;
-                               defined $desc or $flags = $key eq '^0' ? "ni" : "no";
-
-                               my $keytxt = $modekeys->{lead} . Entity($key) if $key ne '^0';
-                                  $keytxt .= $sign{arg} while $flags =~ s/ ?\barg\b//;  # argument
-                                  $keytxt .= "<small>$sign{motion}</small>" if $flags =~ s/ ?\bargm\b//;  # motion argument
-                                  $keytxt =~ s{\^(?=.)}{<small>^</small>};  # element around ctrl-identifier
-                               my $onclick = $flags =~ s/ ?\bmode(\S*)// && defined $keys{$1} && sprintf(
-                                       ' onclick="setmode(%s)"',
-                                       $1 eq '' ? '' : sprintf("'mode%s'", escapeclass($1))
-                               );
-                               my $keyhint = defined($mnem) && qq{ title="$mnem"};
-
-                               print qq{\t\t<li class="$flags"$onclick><b$keyhint>$keytxt</b>};
-                               print ' ', $desc if defined $desc;
-                               print "\n";
-                       } # key
-
+                       my $caseclass = 'keys';
+                          $caseclass .= ' lead' if defined $modekeys->{lead};  # leading command key shown
+                          $caseclass .= " $casedesc[$case]" if defined $casedesc[$case];
+                       print qq{\t\t<ul class="$caseclass">\n};
+                       print_key($modekeys->{lead}, $_, $modekeys->{$_}) for @$keycase;
                        print qq{\t\t</ul>\n};
                } # case
 
@@ -220,25 +230,28 @@ for (my $row = 0; $row <= $#$keyrows; $row++) {
 
                <ul class="legend legend-set">
                <li>keyboard <strong>map</strong> is
-                       <:= $get{map} ? "set to " : "" :><em><:= $map :></em>
+                       <:= $get{map} ? 'set to ' : '' :><em><:= $map :></em>
                <li><strong>ascii</strong> mode is
-                       <:= exists $get{ascii} ? "forced " : "" :><em><:=
-                               $ascii ? "on" : "off" :></em>
+                       <:= exists $get{ascii} && 'forced ' :><em><:=
+                               $ascii ? 'on' : 'off' :></em>
                <li><strong>keys</strong> are
-                       <em><:= $showkeys ? "always shown" : "hidden if unassigned" :></em><:=
-                               exists $get{keys} ? "" : " by default" :>
+                       <em><:= $showkeys ? 'always shown' : 'hidden if unassigned' :></em><:=
+                               exists $get{keys} || ' by default' :>
                <li>default <strong>style</strong> is
-                       <:= defined $get{style} ? "set to " : "" :><em><:= $style :></em>
+                       <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
                </ul>
        </div>
 </div>
 
 <p class="footer">
-       <a href="http://<:= $ENV{SERVER_NAME} :>/vim-cheat">shiar.demon.nl/<b>vim-cheat</b></a>
-       <a href="vim-cheat.tar.gz"><:= "v$VERSION" :></a>
-       created by Shiar <:= $sign{sep} :> last update <:
+       <a href="http://vi.shiar.net/">vi.<strong>shiar.net</strong></a>
+       <a href="git://dev.shiar.net/vi-cheat"><:= "v$VERSION" :></a>
+       created by Shiar <:= $sign{sep} :>
+       <a title="Licensed under the GNU Affero General Public License, version 3"
+          href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a> <:= $sign{sep} :>
+       last update <:
                use Time::Format qw(time_format);
-               print time_format("yyyy-mm-dd", (stat "vim-cmds.inc.pl")[9]);
+               print time_format('yyyy-mm-dd', (stat 'vim-cmds.inc.pl')[9]);
        :>
 </p>