X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/106a575297624a006488fe22cb785a260bee1f5c..20944668da222b8510754fb4819b2b21e768840c:/index.plp diff --git a/index.plp b/index.plp index 8de16db..e3cd122 100644 --- a/index.plp +++ b/index.plp @@ -2,14 +2,20 @@ Html({ title => 'cheat sheets', - version => 'v1.5', + version => '1.11', description => [ "Cheat sheets summarising various software programs and standards.", ], keywords => [qw' sheet cheat reference software overview summary help keyboard map unicode '], - stylesheet => [qw'light dark red'], + raw => [ + '', + '', + ], + data => ['UPDATE'], }); :> @@ -19,10 +25,22 @@ Html({ Through the miracle of formatting, design, abbreviation, compression, and Perl, the following topics have been condensed into single pages of reference.
-Originally created by Mischa Poslawsky, +Originally created by Mischa Poslawsky, but you're free to use, print, alter, and redistribute under the AGPL license.

+<: +if (open my $log, '<', 'UPDATE') {{ + my $line = readline $log; + $line or next; # explicitly ignore empty input + EscapeHTML $line; + my ($date, $subject) = split /[\t\n]/, $line; + $date =~ s/ \K// and $date .= ''; + $subject =~ s{\A(\w+)(?=: )}{showlink($1, -e "$1.plp" && "/$1")}e; + say "

Last update: $date $subject

"; +}} +:> +