14be32e4745fdf34dcbfc56f10270ae01b3d1956
[sheet.git] / vimperator.plp
1 <:
2 use utf8;
3 use strict;
4 use warnings;
5 no  warnings 'qw';  # you know what you doing
6 no  warnings 'uninitialized';  # save some useless checks for more legible code
7
8 our $VERSION = '1.0';
9
10 our $ascii = 0;
11 if (exists $get{ascii}) {
12         $ascii = $get{ascii} ne '0';  # manual override
13 } elsif (defined $ENV{HTTP_ACCEPT_CHARSET}) {
14         $ascii = 1;
15         for (split q{,}, $ENV{HTTP_ACCEPT_CHARSET}) {
16                 $ascii = 0, last if $_ eq '*' or m{utf-?8}i;
17         }
18 }
19
20 my $charset = $ascii ? 'us-ascii' : 'utf-8';
21 my $ctype = "text/html; charset=$charset";
22 $header{content_type} = $ctype;
23
24 :><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
25  "http://www.w3.org/TR/html4/loose.dtd">
26 <html>
27
28 <head>
29 <title>vimperator cheat sheet</title>
30 <meta http-equiv="content-type" content="<:= $ctype :>">
31 <link rel="stylesheet" type="text/css" media="all" href="base.css">
32 <!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->
33 <!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]--><:
34         my %styles = map {$_ => $_} qw(dark circus mono red terse);
35         our $style = exists $get{style} && $styles{$get{style}} || 'light';
36         printf(qq{\n<link rel="%s" type="text/css" media="all" href="%s" title="%s">},
37                 $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_
38         ) for keys %styles;
39
40         our $showkeys = exists $get{keys} && $get{keys} ne '0';
41         print "\n<style> .no {visibility:hidden} </style>" unless $showkeys;
42         print "\n<style> .no, .alias {opacity:.5} </style>"
43                 if $showkeys and $get{keys} eq 'ghost';
44 :>
45 <link rel="vcs" type="git" href="git://dev.shiar.nl/sheet">
46 <script type="text/javascript" src="/keys.js"></script>
47
48 <body id="vimperator">
49
50 <h1>Vimperator cheat sheet</h1>
51
52 <h2>normal mode (default)</h2>
53
54 <ul id="rows">
55
56 <li class="row">
57         <ul class="keys omni">
58         <li class="mv" onclick="setmode()"><b>Esc</b> normal mode
59                 <!-- not as static anymore, but never bothered; just see ^[ -->
60         </ul>
61 </li>
62
63 <:
64 our %sign = (
65         arg    => $ascii ? '.' : '·',  # described as 'dot'
66         args   => $ascii ? ':' : '⁚',  # described as 'two dots'
67         alias  => $ascii ? 'see: ' : '»',
68         up     => $ascii ? 'up'    : '▲',
69         right  => $ascii ? 'right' : '▶',
70         down   => $ascii ? 'down'  : '▼',
71         left   => $ascii ? 'left'  : '◀',
72         sep    => $ascii ? '*'     : '•',
73         _      => exists $get{ascii} && !$ascii ? "\x{200b}" : '<wbr>',
74                 # use the correct ZWNJ only when unicode is forced on
75                 # default to use unofficial html for best support
76 );
77
78 use Shiar_Sheet::Keyboard;
79 my $keys = Shiar_Sheet::Keyboard->new({do 'vimperator.inc.pl'});
80 $keys->map($get{map}) or undef $get{map};
81 $keys->print_rows($get{static});
82 :>
83 </ul>
84
85 <hr>
86
87 <div class="help">
88         <div class="left">
89                 <dl class="legend legend-types">
90                 <dt class="ci">info
91                         <dd>Displays something without any permanent consequences.
92                 <dt class="pm">motion
93                         <dd>Move cursor, scroll window, focus buffer element.
94                 <dt class="po">tab
95                         <dd>Tab or window navigation/selection.
96                 <dt class="co">buffer
97                         <dd>Page interaction.
98                 <dt class="cp">open
99                         <dd>Browse to a location in the current tab.
100                 <dt class="mi">tab open
101                         <dd>Browse somewhere in a new tab.
102                 <dt class="mo">browser
103                         <dd>Other browser action.
104                 <dt class="mv">mode
105                         <dd>Enter a different mode.
106                 <dt class="me">key cmd
107                         <dd>Additional key commands (click for overview).
108                 </dl>
109         </div>
110
111         <div class="right">
112                 <dl class="legend legend-options">
113                 <dt>key<:= $sign{arg} :>
114                         <dd>Commands with a dot need a char argument afterwards.
115                 <dt>key<:= $sign{args} :>
116                         <dd>Commands with two dots require variable arguments afterwards.
117                 </dl>
118
119                 <ul class="legend legend-set">
120                 <li>keyboard <strong>map</strong> is
121                         <:= $get{map} ? 'set to ' : '' :><em><:= $keys->{map} :></em>
122                 <li><strong>ascii</strong> mode is
123                         <:= exists $get{ascii} && 'forced ' :><em><:=
124                                 $ascii ? 'on' : 'off' :></em>
125                 <li><strong>keys</strong> are
126                         <em><:= $showkeys ? 'always shown' : 'hidden if unassigned' :></em><:=
127                                 !exists $get{keys} && ' by default' :>
128                 <li>default <strong>style</strong> is
129                         <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
130                 </ul>
131         </div>
132 </div>
133
134 <p class="footer">
135         <a href="http://sheet.shiar.nl/vimperator">sheet.shiar.nl<strong>/vimperator</strong></a>
136         <a href="git://dev.shiar.nl/sheet"><:= "v$VERSION" :></a>
137         created by Shiar <:= $sign{sep} :>
138         <a title="Licensed under the GNU Affero General Public License, version 3"
139            href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a> <:= $sign{sep} :>
140         last update <:
141                 use Time::Format qw(time_format);
142                 print time_format('yyyy-mm-dd', (stat 'vimperator.inc.pl')[9]);
143         :>
144 </p>
145
146 </html>