diff options
author | Björn Stenberg <bjorn@haxx.se> | 2007-01-08 23:52:01 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2007-01-08 23:52:01 +0000 |
commit | 6d4c19707ef95942e323cbdc89fbbfdbe45e7cc5 (patch) | |
tree | d11bbebc69df06d60970d05b4816e13d93602f2d /www/irc/irclogs.pl | |
parent | 8cece5a745f30234bfced4becfd9dfe4ca1047d4 (diff) |
Splitting out www
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11952 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www/irc/irclogs.pl')
-rwxr-xr-x | www/irc/irclogs.pl | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/www/irc/irclogs.pl b/www/irc/irclogs.pl deleted file mode 100755 index 40d30ad203..0000000000 --- a/www/irc/irclogs.pl +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/perl - -require "/home/dast/perl/date.pm"; - -opendir(DIR, ".") or - die "Can't opendir()"; -@logs = grep { /^rockbox-/ } readdir(DIR); -closedir DIR; - -print "<table class=archive>\n"; - -$lasty = 0; -$lastm = 0; -$count = 0; - -for ( sort @logs ) { - $size = (stat("$_"))[7]; - $file = $_; - $log = ""; - - if (/-(\d+)/) { - if ( $1 =~ /(\d\d\d\d)(\d\d)(\d\d)/ ) { - $y = $1; - $m = $2; - $d = $3; - - $mname = ucfirst MonthNameEng($m); - if ($y != $lasty) { - if ($lasty != 0) { - print "</tr><tr><th colspan=39><hr></th></tr><tr>\n"; - } - print "<th>$y</th>\n"; - $lasty = $y; - } else { - print "</tr><tr>\n<th></th>" if ( $m != $lastm ); - } - - if ( $m != $lastm ) { - $count=0; - print "<th>$mname</th>\n"; - $lastm = $m; - } - - print "<td><a test href=\"$file\">$d</a></td>\n"; - - if ( ++$count > 15 ) { - print "</tr><tr><th></th><th></th>\n"; - $count=0; - } - } - } -} -print "</ul></td></tr></table>\n"; |