X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/8da111b671c9914450077a1ec506964e70dceb40..ff9e3ed9324334426d82f411422efd5480692dff:/index.plp diff --git a/index.plp b/index.plp index 096a35f..01a3bf2 100644 --- a/index.plp +++ b/index.plp @@ -2,39 +2,22 @@ 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 - -# 2006-03-29 ~20:00 started work -# 2006-03-30 11:58 html version -# 2006-05-20 03:44 perl version -# 2007-02-07 07:34 cleaned up - -# TODO: -# - use js to detect optimal key size -# - style for .undo (maybe just some css3-only shadow) -# - fix mode switching in konq (used to work) -# only when s present?! use browser sniffing to force ?ascii=0 :( -# - safari loading bug? -# - good case for gzip compression -# - link to source tarball -# - default stylesheet selectable -# - catch and execute pressed keys -# - ghosting option documented and default -# - option to follow aliases (default on?) -# - custom row combinations (eg for comparing different modes) +no warnings 'qw'; # you know what you doing +no warnings 'uninitialized'; # save some useless checks for more legible code + +our $VERSION = '1.1'; our $ascii = 0; if (exists $get{ascii}) { - $ascii = $get{ascii} ne "0"; # manual override + $ascii = $get{ascii} ne '0'; # manual override } elsif (defined $ENV{HTTP_ACCEPT_CHARSET}) { $ascii = 1; - for (split ",", $ENV{HTTP_ACCEPT_CHARSET}) { - $ascii = 0, last if $_ eq "*" or m/utf-?8/i; + for (split q{,}, $ENV{HTTP_ACCEPT_CHARSET}) { + $ascii = 0, last if $_ eq '*' or m{utf-?8}i; } } -my $charset = $ascii ? "us-ascii" : "utf-8"; +my $charset = $ascii ? 'us-ascii' : 'utf-8'; my $ctype = "text/html; charset=$charset"; $header{content_type} = $ctype; @@ -48,16 +31,16 @@ $header{content_type} = $ctype; <: - my %styles = map {$_ => $_} qw(dark circus mono); - our $style = exists $get{style} && $styles{$get{style}} || "light"; + my %styles = map {$_ => $_} qw(dark circus mono terse); + our $style = exists $get{style} && $styles{$get{style}} || 'light'; printf(qq{\n}, - $_ eq $style ? "stylesheet" : "alternate stylesheet", "$_.css", $_ + $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_ ) for keys %styles; - our $showkeys = exists $get{keys} && $get{keys} ne "0"; + our $showkeys = exists $get{keys} && $get{keys} ne '0'; print "\n" unless $showkeys; print "\n" - if $showkeys and $get{keys} eq "ghost"; + if $showkeys and $get{keys} eq 'ghost'; :>