summaryrefslogtreecommitdiff
path: root/www/dailymod.pl
diff options
context:
space:
mode:
Diffstat (limited to 'www/dailymod.pl')
-rwxr-xr-xwww/dailymod.pl13
1 files changed, 9 insertions, 4 deletions
diff --git a/www/dailymod.pl b/www/dailymod.pl
index 0e9392b3cc..1261a66e88 100755
--- a/www/dailymod.pl
+++ b/www/dailymod.pl
@@ -7,7 +7,7 @@ sub list {
7 7
8 opendir(DIR, "$basedir/$dir") or 8 opendir(DIR, "$basedir/$dir") or
9 die "Can't opendir($basedir/$dir)"; 9 die "Can't opendir($basedir/$dir)";
10 @tarballs = sort grep { /^archos/ } readdir(DIR); 10 @tarballs = sort grep { /^a/ } readdir(DIR);
11 closedir DIR; 11 closedir DIR;
12 12
13 print "<ul>\n"; 13 print "<ul>\n";
@@ -17,14 +17,19 @@ sub list {
17 print "</ul>\n"; 17 print "</ul>\n";
18} 18}
19 19
20print "<table border=1><tr valign=\"top\"><td>\n";
20print "<h3>player-old</h3>\n"; 21print "<h3>player-old</h3>\n";
21print "<p>This version is for old Archos Jukebox 6000 models with ROM firmware older than 4.50.\n"; 22print "<p>This version is for old Archos Jukebox 6000 models with ROM firmware older than 4.50:\n";
22&list("playerold"); 23&list("playerold");
23 24
25print "</td><td>\n";
24print "<h3>player</h3>\n"; 26print "<h3>player</h3>\n";
25print "<p>This version is for Archos Jukebox 6000 with ROM firmware 4.50 or later, and all Studio models.\n"; 27print "<p>This version is for Archos Jukebox 5000/6000 with ROM firmware 4.50 or later, and all Studio models:\n";
26&list("player"); 28&list("player");
27 29
30print "</td><td>\n";
28print "<h3>recorder</h3>\n"; 31print "<h3>recorder</h3>\n";
29print "<p>This version is for all Archos Jukebox Recorder models.\n"; 32print "<p>This version is for all Archos Jukebox Recorder models:\n";
30&list("recorder"); 33&list("recorder");
34
35print "</td></tr></table>\n";