add meta data (language, description, keywords)
[sheet.git] / vimperator.plp
1 <(common.inc.plp)><:
2         our $VERSION = 'v1.0';
3
4         use Shiar_Sheet::KeySigns qw(%sign);
5
6         $header{content_type} = "text/html; charset=$sign{charset}";
7
8 :><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
9  "http://www.w3.org/TR/html4/loose.dtd">
10 <html lang="en">
11
12 <head>
13 <meta http-equiv="content-type" content="<:= $header{content_type} :>">
14 <title>vimperator cheat sheet</title>
15 <meta name="description" content="Keyboard functionality overview sheet for the Vimperator Firefox extension.">
16 <meta name="keywords" content="vimperator, firefox, vim, iceweasel, sheet, cheat, reference, overview, commands, keyboard, browser">
17 <:= stylesheet(qw'light dark circus mono red terse') :>
18 <!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->
19 <!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]--><:
20         our $showkeys = exists $get{keys} && $get{keys} ne '0';
21         print "\n".'<style type="text/css"> .no {visibility:hidden} </style>'
22                 unless $showkeys;
23         print "\n".'<style type="text/css"> .no, .alias {opacity:.5} </style>'
24                 if $showkeys and $get{keys} eq 'ghost';
25 :>
26 <script type="text/javascript" src="/keys.js"></script>
27
28 <body id="vimperator">
29
30 <h1>Vimperator cheat sheet</h1>
31
32 <h2>normal mode (default)</h2>
33
34 <ul id="rows">
35
36 <li class="row">
37         <ul class="keys omni">
38         <li class="mv chr27" onclick="setmode()"><b>Esc</b> normal mode
39                 <!-- not as static anymore, but never bothered; just see ^[ -->
40         </ul>
41 </li>
42
43 <:
44 use Shiar_Sheet::Keyboard;
45 my $keys = Shiar_Sheet::Keyboard->new({do 'vimperator.inc.pl'});
46 $keys->map($get{map}) or undef $get{map};
47 $keys->print_rows($get{rows});
48 :>
49 </ul>
50
51 <hr>
52
53 <div class="help">
54         <div class="left">
55                 <dl class="legend legend-types">
56                 <dt class="ci">info
57                         <dd>Displays something without any permanent consequences.
58                 <dt class="pm">motion
59                         <dd>Move cursor, scroll window, focus buffer element.
60                 <dt class="po">tab
61                         <dd>Tab or window navigation/selection.
62                 <dt class="co">buffer
63                         <dd>Page interaction.
64                 <dt class="cp">open
65                         <dd>Browse to a location in the current tab.
66                 <dt class="mi">tab open
67                         <dd>Browse somewhere in a new tab.
68                 <dt class="mo">browser
69                         <dd>Other browser action.
70                 <dt class="mv">mode
71                         <dd>Enter a different mode.
72                 <dt class="me">key cmd
73                         <dd>Additional key commands (click for overview).
74                 </dl>
75         </div>
76
77         <div class="right">
78                 <dl class="legend legend-options">
79                 <dt>key<:= $sign{arg} :>
80                         <dd>Commands with a dot need a char argument afterwards.
81                 <dt>key<:= $sign{args} :>
82                         <dd>Commands with two dots require variable arguments afterwards.
83                 </dl>
84
85                 <ul class="legend legend-set">
86                 <li>keyboard <strong>map</strong> is
87                         <:= $get{map} ? 'set to ' : '' :><em><:= $keys->{map} :></em>
88                 <li><strong>ascii</strong> mode is
89                         <:= defined $sign{-ascii} && 'forced ' :><em><:=
90                                 $sign{-ascii} ? 'on' : 'off' :></em>
91                 <li><strong>keys</strong> are
92                         <em><:= $showkeys ? 'always shown' : 'hidden if unassigned' :></em><:=
93                                 !exists $get{keys} && ' by default' :>
94                 <li>default <strong>style</strong> is
95                         <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
96                 </ul>
97         </div>
98 </div>
99
100 <p class="footer">
101         <a href="/" rel="home">sheet.shiar.nl</a>/vimperator.<a href="/source/vimperator.plp"
102          rel="code" title="Written in Perl">plp</a>
103         <a href="http://git.shiar.nl/sheet.git/history/HEAD:/vimperator.plp"
104          rel="vcs-git" title="Git repository"><:= $VERSION :></a>
105         created by <a href="http://shiar.nl/" rel="author">Shiar</a> <:= $sign{sep} :>
106         <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" rel="copyright"
107          title="Licensed under the GNU Affero General Public License, version 3">AGPLv3</a>
108 </p>
109
110 </html>