font: include math/logic by default
[sheet.git] / nethack.plp
index 9ccf8742397fe43e4445088b0258af93ef0fc776..3115e28d696a12121aad0da7a55218a169c3b31e 100644 (file)
@@ -1,33 +1,21 @@
 <(common.inc.plp)><:
-       our $VERSION = 'v1.0';
 
-       use Shiar_Sheet::KeySigns qw(%sign);
+Html({
+       title => 'nethack cheat sheet',
+       version => 'v1.1',
+       description => [
+               "Keyboard overview sheet for the Nethack console RPG game,",
+               "describing the default controls.",
+       ],
+       keywords => [qw'
+               nethack rogue game control controls sheet reference overview keyboard
+       '],
+       charset => $sign{charset},
+       stylesheet => [qw'light dark circus mono red terse'],
+       keys => 1,
+});
 
-       $header{content_type} = "text/html; charset=$sign{charset}";
-
-:><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="en">
-
-<head>
-<meta http-equiv="content-type" content="<:= $header{content_type} :>">
-<title>nethack cheat sheet</title>
-<meta name="description" content="Keyboard functionality overview sheet for the Nethack console RPG game.">
-<meta name="keywords" content="nethack, rogue, game, control, controls, sheet, reference, overview, keyboard">
-<:= stylesheet(qw'light dark circus mono red terse') :>
-<!--[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]--><:
-       our $showkeys = exists $get{keys} && $get{keys} ne '0';
-       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';
 :>
-<link rel="icon" type="image/png" href="/clip.png">
-<script type="text/javascript" src="/keys.js"></script>
-
-<body id="nethack">
-
 <h1>NetHack cheat sheet</h1>
 
 <h2>normal gameplay</h2>
 </li>
 
 <:
-use Shiar_Sheet::Keyboard;
-my $keys = Shiar_Sheet::Keyboard->new({do 'nethack.inc.pl'});
+use Shiar_Sheet::Keyboard 2;
+my $info = do 'nethack.eng.inc.pl' or die $@;
+$info->{def} = do 'nethack.inc.pl';
+my $keys = Shiar_Sheet::Keyboard->new($info);
 $keys->map($get{map}) or undef $get{map};
 $keys->print_rows($get{rows} || '4321-421', [3,2,1,0]);
 :>
@@ -94,14 +84,3 @@ $keys->print_rows($get{rows} || '4321-421', [3,2,1,0]);
        </div>
 </div>
 
-<p class="footer">
-       <a href="/" rel="home">sheet.shiar.nl</a>/nethack.<a href="/source/nethack.plp"
-        rel="code" title="Written in Perl">plp</a>
-       <a href="http://git.shiar.nl/sheet.git/history/HEAD:/nethack.plp"
-        rel="vcs-git" title="Git repository"><:= $VERSION :></a>
-       created by <a href="http://shiar.nl/" rel="author">Shiar</a> <:= $sign{sep} :>
-       <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" rel="copyright"
-        title="Licensed under the GNU Affero General Public License, version 3">AGPLv3</a>
-</p>
-
-</html>