termcol: fix index numbers of 88-colour greyscale ramp
[sheet.git] / readline.plp
index a166a8ab555314c3a18c2f5f5b096a30588dff1a..ded17093b70d6e9bc43a29b3e76f6dc2ae4c038d 100644 (file)
@@ -1,37 +1,29 @@
-<:
-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);  # dependant on $get{ascii}
+<(common.inc.plp)><:
+       our $VERSION = 'v1.0';
 
-our $VERSION = 'v1.0';
+       use Shiar_Sheet::KeySigns qw(%sign);  # dependant on $get{ascii}
 
-$header{content_type} = "text/html; charset=$sign{charset}";
+       $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>
+<html lang="en">
 
 <head>
 <meta http-equiv="content-type" content="<:= $header{content_type} :>">
 <title>readline cheat sheet</title>
-<link rel="stylesheet" type="text/css" media="all" href="base.css">
+<meta name="description" content="Reference sheet of default key bindings for GNU readline, used in line-editing in most Unix software, notably emacs and bash.">
+<meta name="keywords" content="readline, gnu, bash, emacs, sheet, cheat, reference, overview, keyboard, editing, curses">
+<:= 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]--><:
-       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;
-
        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 {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="readline">
@@ -104,11 +96,13 @@ $keys->print_rows($get{rows} || '^x=213', [4,3,2]);
 </div>
 
 <p class="footer">
-       <a href="/" rel="home">sheet.shiar.nl</a>/readline.<a href="/source/readline.plp" rel="code">plp</a>
-       <a href="http://git.shiar.nl/sheet.git" rel="vcs-git" title="Git repository"><:= $VERSION :></a>
+       <a href="/" rel="home">sheet.shiar.nl</a>/readline.<a href="/source/readline.plp"
+        rel="code" title="Written in Perl">plp</a>
+       <a href="http://git.shiar.nl/sheet.git/history/HEAD:/readline.plp"
+        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>
+       <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>