vimperator: describe caret mode functionality
[sheet.git] / mplayer.plp
index 46dcaa36d10063c1880bcaf0893cd5ed6e2f3aa6..5620792af02b449b4b5713bfeab6890df0939d04 100644 (file)
 <(common.inc.plp)><:
-       our $VERSION = 'v1.0';
 
-       use Shiar_Sheet::KeySigns qw(%sign);
+Html({
+       title => 'mplayer cheat sheet',
+       version => '1.1',
+       description => [
+               "Keyboard cheat sheet for the MPlayer media player,",
+               "overviewing the default controls."
+       ],
+       keywords => [qw'
+               mplayer video media sheet cheat reference overview control shortkey keyboard
+       '],
+       stylesheet => [qw( light dark circus mono red )],
+       keys => 1,
+});
 
-       $header{content_type} = "text/html; charset=$sign{charset}";
-
-:><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="en">
-
-<head>
-<meta http-equiv="content-type" content="<:= $header{content_type} :>">
-<title>mplayer cheat sheet</title>
-<meta name="description" content="Keyboard functionality overview sheet for the MPlayer media player.">
-<meta name="keywords" content="mplayer, video, media, sheet, cheat, reference, overview, control, shortkey, keyboard">
-<:= stylesheet(qw'light dark circus mono red terse') :>
-<!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->
-<!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]--><:
-       our $showkeys = exists $get{keys} && $get{keys} ne '0';
-       print "\n".'<style type="text/css"> .no {visibility:hidden} </style>'
-               unless $showkeys;
-       print "\n".'<style type="text/css"> .no, .alias {opacity:.5} </style>'
-               if $showkeys and $get{keys} eq 'ghost';
 :>
-<script type="text/javascript" src="/keys.js"></script>
-
-<body id="mplayer">
-
 <h1>MPlayer cheat sheet</h1>
 
 <h2>index (default)</h2>
 
-<ul id="rows">
-
-<li class="row">
-       <ul class="keys omni">
-       <li class="mo chr27" onclick="setmode()"><b>Esc</b> q
-               <!-- not as static anymore, but never bothered; just see ^[ -->
-       </ul>
-</li>
-
 <:
-use Shiar_Sheet::Keyboard;
-my $keys = Shiar_Sheet::Keyboard->new({do 'mplayer.inc.pl'});
+use Shiar_Sheet::Keyboard 2;
+my $info = do 'mplayer.eng.inc.pl' or die $@;
+my $keys = Shiar_Sheet::Keyboard->new($info);
 $keys->map($get{map}) or undef $get{map};
 $keys->print_rows($get{rows}, [1,0]);
-:>
-</ul>
-
-<hr>
-
-<div class="help">
-       <div class="left">
-               <dl class="legend legend-types">
-               <dt class="ci">osd
-                       <dd>Print information or change display.
-               <dt class="pm">subtitles
-                       <dd>Alter subtitle selection and settings.
-               <dt class="co">video
-                       <dd>Video output adjustment.
-               <dt class="mi">audio
-                       <dd>Sound (track) configuration.
-               <dt class="mo">playback
-                       <dd>Playback control.
-               <dt class="me">general
-                       <dd>Other MPlayer features.
-               </dl>
-       </div>
-
-       <div class="right">
-               <dl class="legend legend-options">
-               <dt>key<:= $sign{arg} :>
-                       <dd>Commands with a dot need an argument afterwards.
-               <dt class="ext">optional
-                       <dd>Some features depend on setup and/or parameters.
-               </dl>
-
-               <ul class="legend legend-set">
-               <li>keyboard <strong>map</strong> is
-                       <:= $get{map} ? 'set to ' : '' :><em><:= $keys->{map} :></em>
-               <li><strong>ascii</strong> mode is
-                       <:= defined $sign{-ascii} && 'forced ' :><em><:=
-                               $sign{-ascii} ? 'on' : 'off' :></em>
-               <li><strong>keys</strong> are
-                       <em><:= $showkeys ? 'always shown' : 'hidden if unassigned' :></em><:=
-                               !exists $get{keys} && ' by default' :>
-               <li>default <strong>style</strong> is
-                       <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
-               </ul>
-       </div>
-</div>
-
-<p class="footer">
-       <a href="/" rel="home">sheet.shiar.nl</a>/mplayer.<a href="/source/mplayer.plp"
-        rel="code" title="Written in Perl">plp</a>
-       <a href="http://git.shiar.nl/sheet.git/history/HEAD:/mplayer.plp"
-        rel="vcs-git" title="Git repository"><:= $VERSION :></a>
-       created by <a href="http://shiar.nl/" rel="author">Shiar</a> <:= $sign{sep} :>
-       <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" rel="copyright"
-        title="Licensed under the GNU Affero General Public License, version 3">AGPLv3</a>
-</p>
+$keys->print_legends(\%get);
 
-</html>