X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/e23bdedbbacbada904520b4d2a90d13f3dd5179d..01d61f72fed7ac041786ea69d1b080f45a4c49d1:/index.plp diff --git a/index.plp b/index.plp index 22f13df..01b59c4 100644 --- a/index.plp +++ b/index.plp @@ -2,14 +2,13 @@ Html({ title => 'cheat sheets', - version => 'v1.4', + version => '1.9', 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'], }); :> @@ -22,11 +21,22 @@ the following topics have been condensed into single pages of reference. Originally created by Mischa Poslawsky, but you're free to use, print, alter, and redistribute under the AGPL license.

+<: +my @format = ('--date=short', "--pretty=%ad (%ar)\t%s"); +if (open my $log, '-|', git => 'log', -1, @format) {{ + my $line = readline $log; + $line or next; # explicitly ignore empty input + my ($date, $subject) = split /[\t\n]/, $line; + $date =~ s/ \K// and $date .= ''; + print "

Last update: $date $subject

\n"; +}} +:>

Keyboard maps

@@ -51,21 +63,12 @@ but you're free to use, print, alter, and redistribute under the AGPL license. -<: -if (open my $log, '-|', 'git log -20 --since=2\ week\ ago --pretty=%ai%x00%s%x00%h') { - print "

Recent updates

\n\n"; - print "
\n"; - while (readline $log) { - chomp; - my ($date, $subject, $commit) = split /\0/, $_; - $date =~ s{( .+)}{$1}; - printf '
%s
%s
'."\n", $date, $subject; - } - print "
\n\n"; -} -