font: describe search query
[sheet.git] / mutt.plp
index 22dcf3beedb450fe9b3c68004859bb07033a18eb..40959656e4bd8cdd79507f0e0664cdcee5047894 100644 (file)
--- a/mutt.plp
+++ b/mutt.plp
@@ -1,61 +1,33 @@
-<:
-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
-
-use Shiar_Sheet::KeySigns qw(%sign);
-
-our $VERSION = 'v1.0';
-
-$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>
-
-<head>
-<title>mutt cheat sheet</title>
-<meta http-equiv="content-type" content="<:= $header{content_type} :>">
-<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 red 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", $_
-       ) for keys %styles;
+<(common.inc.plp)><:
+
+Html({
+       title => 'mutt cheat sheet',
+       version => 'v1.1',
+       description => [
+               "Cheat sheet for the Mutt e-mail client,",
+               "showing the default binding for each key.",
+       ],
+       keywords => [qw'
+               mutt MUA email client sheet cheat reference overview commands keyboard
+       '],
+       charset => $sign{charset},
+       stylesheet => [qw'light dark circus mono red terse'],
+       keys => 1,
+});
 
-       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';
 :>
-<script type="text/javascript" src="/keys.js"></script>
-
-<body id="mutt">
-
 <h1>Mutt cheat sheet</h1>
 
 <h2>index (default)</h2>
 
-<ul id="rows">
-
-<li class="row">
-       <ul class="keys omni">
-       <li class="me chr27" onclick="setmode()"><b>Esc</b> +
-               <!-- not as static anymore, but never bothered; just see ^[ -->
-       </ul>
-</li>
-
 <:
-use Shiar_Sheet::Keyboard;
-my $keys = Shiar_Sheet::Keyboard->new({do 'mutt.inc.pl'});
+use Shiar_Sheet::Keyboard 2;
+my $info = do 'mutt.eng.inc.pl' or die $@;
+$info->{def} = do 'mutt.inc.pl';
+my $keys = Shiar_Sheet::Keyboard->new($info);
 $keys->map($get{map}) or undef $get{map};
 $keys->print_rows($get{rows});
 :>
-</ul>
 
 <hr>
 
@@ -102,14 +74,3 @@ $keys->print_rows($get{rows});
        </div>
 </div>
 
-<p class="footer">
-       <a href="/" rel="home">sheet.shiar.nl</a>/mutt.<a href="/source/mutt.plp"
-        rel="code" title="Written in Perl">plp</a>
-       <a href="http://git.shiar.nl/sheet.git/history/HEAD:/mutt.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>