X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/ce28a2bfea95452b19fd271e1a20d7aad1511211..5fadf3bba74628ae85920b5c2d71f804e3256601:/index.plp diff --git a/index.plp b/index.plp index e8b3a0f..1aaf0f6 100644 --- a/index.plp +++ b/index.plp @@ -43,6 +43,7 @@ but you're free to use, print, alter, and redistribute under the AGPL license.
  • common glyphs
  • digraphs
  • script comparison +
  • font coverage @@ -52,7 +53,21 @@ but you're free to use, print, alter, and redistribute under the AGPL license.
  • browser support
  • country codes
  • terminal colours +
  • starcraft units
  • emoticons +<: +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"; +} +