mplayer: preliminary keyboard page of default bindings
[sheet.git] / nethack.plp
index dc8e616d826a36897e22b19c20851e53abbe818f..8a73a6c3ac7fc9b532da52f5dc67f8b64a96b08a 100644 (file)
@@ -7,7 +7,7 @@ no  warnings 'uninitialized';  # save some useless checks for more legible code
 
 use Shiar_Sheet::KeySigns qw(%sign);
 
-our $VERSION = '1.0';
+our $VERSION = 'v1.0';
 
 $header{content_type} = "text/html; charset=$sign{charset}";
 
@@ -16,8 +16,8 @@ $header{content_type} = "text/html; charset=$sign{charset}";
 <html>
 
 <head>
-<title>nethack cheat sheet</title>
 <meta http-equiv="content-type" content="<:= $header{content_type} :>">
+<title>nethack cheat sheet</title>
 <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]--><:
@@ -28,8 +28,8 @@ $header{content_type} = "text/html; charset=$sign{charset}";
        ) for keys %styles;
 
        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>"
+       print "\n".'<style type="text/css"> .no {visibility:hidden} </style>' unless $showkeys;
+       print "\n".'<style type="text/css"> .no, .alias {opacity:.5} </style>'
                if $showkeys and $get{keys} eq 'ghost';
 :>
 <script type="text/javascript" src="/keys.js"></script>
@@ -44,7 +44,7 @@ $header{content_type} = "text/html; charset=$sign{charset}";
 
 <li class="row">
        <ul class="keys omni">
-       <li class="me" onclick="setmode()"><b>Esc</b>
+       <li class="me chr27" onclick="setmode()"><b>Esc</b>
                <!-- static reset button, even though it's not (officially) in the game -->
        </ul>
 </li>
@@ -53,7 +53,7 @@ $header{content_type} = "text/html; charset=$sign{charset}";
 use Shiar_Sheet::Keyboard;
 my $keys = Shiar_Sheet::Keyboard->new({do 'nethack.inc.pl'});
 $keys->map($get{map}) or undef $get{map};
-$keys->print_rows($get{static});
+$keys->print_rows($get{rows} || '4321-421', [3,2,1,0]);
 :>
 </ul>
 
@@ -103,15 +103,11 @@ $keys->print_rows($get{static});
 </div>
 
 <p class="footer">
-       <a href="http://sheet.shiar.nl/" rel="home">sheet.shiar.nl</a>/nethack
-       <a href="git://dev.shiar.nl/sheet" rel="vcs-git" title="Git repository"><:= "v$VERSION" :></a>
+       <a href="/" rel="home">sheet.shiar.nl</a>/nethack.<a href="/source/nethack.plp" rel="code">plp</a>
+       <a href="http://git.shiar.nl/sheet.git" rel="vcs-git" title="Git repository"><:= $VERSION :></a>
        created by <a href="http://shiar.nl/" rel="author">Shiar</a> <:= $sign{sep} :>
        <a title="Licensed under the GNU Affero General Public License, version 3" rel="copyright"
-          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 'nethack.inc.pl')[9]);
-       :>
+          href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a>
 </p>
 
 </html>