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