diff options
| -rwxr-xr-x | www/dailymod.pl | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/www/dailymod.pl b/www/dailymod.pl index 0e9392b..1261a66 100755 --- a/www/dailymod.pl +++ b/www/dailymod.pl @@ -7,7 +7,7 @@ sub list { opendir(DIR, "$basedir/$dir") or die "Can't opendir($basedir/$dir)"; - @tarballs = sort grep { /^archos/ } readdir(DIR); + @tarballs = sort grep { /^a/ } readdir(DIR); closedir DIR; print "<ul>\n"; @@ -17,14 +17,19 @@ sub list { print "</ul>\n"; } +print "<table border=1><tr valign=\"top\"><td>\n"; print "<h3>player-old</h3>\n"; -print "<p>This version is for old Archos Jukebox 6000 models with ROM firmware older than 4.50.\n"; +print "<p>This version is for old Archos Jukebox 6000 models with ROM firmware older than 4.50:\n"; &list("playerold"); +print "</td><td>\n"; print "<h3>player</h3>\n"; -print "<p>This version is for Archos Jukebox 6000 with ROM firmware 4.50 or later, and all Studio models.\n"; +print "<p>This version is for Archos Jukebox 5000/6000 with ROM firmware 4.50 or later, and all Studio models:\n"; &list("player"); +print "</td><td>\n"; print "<h3>recorder</h3>\n"; -print "<p>This version is for all Archos Jukebox Recorder models.\n"; +print "<p>This version is for all Archos Jukebox Recorder models:\n"; &list("recorder"); + +print "</td></tr></table>\n"; |