mplayer: update footer to recent changes
[sheet.git] / mplayer.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 = 'v1.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>mplayer 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 type="text/css"> .no {visibility:hidden} </style>' unless $showkeys;
32         print "\n".'<style type="text/css"> .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="mplayer">
38
39 <h1>MPlayer cheat sheet</h1>
40
41 <h2>index (default)</h2>
42
43 <ul id="rows">
44
45 <li class="row">
46         <ul class="keys omni">
47         <li class="mo chr27" onclick="setmode()"><b>Esc</b> q
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 'mplayer.inc.pl'});
55 $keys->map($get{map}) or undef $get{map};
56 $keys->print_rows($get{rows}, [1,0]);
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">osd
66                         <dd>Print information or change display.
67                 <dt class="pm">subtitles
68                         <dd>Control subtitle selection or settings.
69                 <dt class="po">video
70                         <dd>Video adjustment.
71                 <dt class="co">audio
72                         <dd>Sound (track) configuration.
73                 <dt class="mi">playback
74                         <dd>Playback control.
75                 <dt class="mo">general
76                         <dd>Other MPlayer features.
77                 </dl>
78         </div>
79
80         <div class="right">
81                 <dl class="legend legend-options">
82                 <dt>key<:= $sign{arg} :>
83                         <dd>Commands with a dot need an argument afterwards.
84                 <dt class="ext">optional
85                         <dd>Some features depend on setup and/or parameters.
86                 </dl>
87
88                 <ul class="legend legend-set">
89                 <li>keyboard <strong>map</strong> is
90                         <:= $get{map} ? 'set to ' : '' :><em><:= $keys->{map} :></em>
91                 <li><strong>ascii</strong> mode is
92                         <:= defined $sign{-ascii} && 'forced ' :><em><:=
93                                 $sign{-ascii} ? 'on' : 'off' :></em>
94                 <li><strong>keys</strong> are
95                         <em><:= $showkeys ? 'always shown' : 'hidden if unassigned' :></em><:=
96                                 !exists $get{keys} && ' by default' :>
97                 <li>default <strong>style</strong> is
98                         <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
99                 </ul>
100         </div>
101 </div>
102
103 <p class="footer">
104         <a href="/" rel="home">sheet.shiar.nl</a>/mplayer.<a href="/source/mplayer.plp" rel="code">plp</a>
105         <a href="http://git.shiar.nl/sheet.git" rel="vcs-git" title="Git repository"><:= $VERSION :></a>
106         created by <a href="http://shiar.nl/" rel="author">Shiar</a> <:= $sign{sep} :>
107         <a title="Licensed under the GNU Affero General Public License, version 3" rel="copyright"
108            href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a>
109 </p>
110
111 </html>