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