summaryrefslogtreecommitdiff
path: root/www/dailysrc.pl
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2007-01-08 23:52:01 +0000
committerBjörn Stenberg <bjorn@haxx.se>2007-01-08 23:52:01 +0000
commit6d4c19707ef95942e323cbdc89fbbfdbe45e7cc5 (patch)
treed11bbebc69df06d60970d05b4816e13d93602f2d /www/dailysrc.pl
parent8cece5a745f30234bfced4becfd9dfe4ca1047d4 (diff)
downloadrockbox-6d4c19707ef95942e323cbdc89fbbfdbe45e7cc5.zip
rockbox-6d4c19707ef95942e323cbdc89fbbfdbe45e7cc5.tar.gz
rockbox-6d4c19707ef95942e323cbdc89fbbfdbe45e7cc5.tar.bz2
rockbox-6d4c19707ef95942e323cbdc89fbbfdbe45e7cc5.tar.xz
Splitting out www
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11952 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www/dailysrc.pl')
-rwxr-xr-xwww/dailysrc.pl21
1 files changed, 0 insertions, 21 deletions
diff --git a/www/dailysrc.pl b/www/dailysrc.pl
deleted file mode 100755
index 0143909..0000000
--- a/www/dailysrc.pl
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/perl
-
-$basedir = "/home/dast/rockbox-build/daily-build/";
-
-opendir(DIR, $basedir) or
- die "Can't opendir($basedir)";
-@tarballs = sort grep { /^rockbox-daily-/ } readdir(DIR);
-closedir DIR;
-
-for ( sort {$b cmp $a} @tarballs ) {
- $size = (stat("$basedir/$_"))[7];
- $log = "";
- if (/-(\d+)/) {
- $date = $1;
- if ( -f "$basedir/changes-$date.html") {
- $log = "<a href=\"daily/changes-$date.html\">Changes done $date</a>";
- }
- }
- print "$log\n";
- last;
-}