common include for setup and stylesheet output
[sheet.git] / mutt.plp
index 22dcf3beedb450fe9b3c68004859bb07033a18eb..cd90e86e4f79f19a686b5d34f2155adb6c5a6d69 100644 (file)
--- a/mutt.plp
+++ b/mutt.plp
@@ -1,34 +1,23 @@
-<:
-use utf8;
-use strict;
-use warnings;
-no  warnings 'qw';  # you know what you doing
-no  warnings 'uninitialized';  # save some useless checks for more legible code
-
-use Shiar_Sheet::KeySigns qw(%sign);
+<(common.inc.plp)><:
+       use Shiar_Sheet::KeySigns qw(%sign);
 
-our $VERSION = 'v1.0';
+       our $VERSION = 'v1.0';
 
-$header{content_type} = "text/html; charset=$sign{charset}";
+       $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>
 
 <head>
-<title>mutt cheat sheet</title>
 <meta http-equiv="content-type" content="<:= $header{content_type} :>">
-<link rel="stylesheet" type="text/css" media="all" href="base.css">
+<title>mutt cheat sheet</title>
+<:= 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]--><:
-       my %styles = map {$_ => $_} qw(dark circus mono red terse);
-       our $style = exists $get{style} && $styles{$get{style}} || 'light';
-       printf(qq{\n<link rel="%s" type="text/css" media="all" href="%s" title="%s">},
-               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_
-       ) for keys %styles;
-
        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 {visibility:hidden} </style>'
+               unless $showkeys;
        print "\n".'<style type="text/css"> .no, .alias {opacity:.5} </style>'
                if $showkeys and $get{keys} eq 'ghost';
 :>