X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/959984aabc5adb85b5b85d08ff7b247442075399..02e6a32fd44d994d88f8bcb79d47e217455c580d:/index.plp diff --git a/index.plp b/index.plp index 1aaf0f6..904edd9 100644 --- a/index.plp +++ b/index.plp @@ -58,16 +58,3 @@ 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"; -} -