termcol: OS X Terminal.app, optional PuTTY, SluTTY
[sheet.git] / index.plp
index a81aadd4cc0f40393f0f60a85ec055549381223a..904edd9c12c6ec0dfc907a472b524f3e3415a7f5 100644 (file)
--- a/index.plp
+++ b/index.plp
@@ -53,20 +53,8 @@ but you're free to use, print, alter, and redistribute under the AGPL license.
 <li><a href="/browser">browser support</a>
 <li><a href="/countries">country codes</a>
 <li><a href="/termcol">terminal colours</a>
+<li><a href="/sc">starcraft units</a>
 <li><a href="/emoji">emoticons</a>
 </ul>
 </div>
 
-<:
-if (open my $log, '-|', 'git log -20 --since=2\ week\ ago --pretty=%ai%x00%s%x00%h') {
-       print "<h1>Recent updates</h1>\n\n";
-       print "<dl>\n";
-       while (readline $log) {
-               chomp;
-               my ($date, $subject, $commit) = split /\0/, $_;
-               $date =~ s{( .+)}{<small>$1</small>};
-               printf '<dt>%s</dt><dd>%s</dd>'."\n", $date, $subject;
-       }
-       print "</dl>\n\n";
-}
-