summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/daily.t4
-rwxr-xr-xwww/dailysrc.pl8
-rw-r--r--www/history.t2
-rw-r--r--www/style.css13
4 files changed, 19 insertions, 8 deletions
diff --git a/www/daily.t b/www/daily.t
index 011f8b8f98..64ff2f7b67 100644
--- a/www/daily.t
+++ b/www/daily.t
@@ -17,9 +17,9 @@ describing how to compile Rockbox
17<h2>Target builds</h2> 17<h2>Target builds</h2>
18 18
19<p>These are automated daily builds of the CVS code. 19<p>These are automated daily builds of the CVS code.
20They are <i>not</i> official releases, they are in fact almost guaranteed to not work properly! 20They are <i>not</i> official releases and are in fact almost guaranteed to contain bugs!
21 21
22<p>These builds are discussed in IRC only. <font color="red"><big><b>DO NOT FILE BUG REPORTS FOR THEM!</b></big></font> 22<p>These builds are discussed in IRC or mail only. <font color="red"><big><b>DO NOT FILE BUG REPORTS FOR THEM!</b></big></font>
23 23
24<p>There are three versions of each build: 24<p>There are three versions of each build:
25 25
diff --git a/www/dailysrc.pl b/www/dailysrc.pl
index 71f49c8423..25495d557c 100755
--- a/www/dailysrc.pl
+++ b/www/dailysrc.pl
@@ -15,13 +15,11 @@ for ( @tarballs ) {
15 if (/-(\d+)/) { 15 if (/-(\d+)/) {
16 $date = $1; 16 $date = $1;
17 if ( -f "$basedir/changes-$date.txt") { 17 if ( -f "$basedir/changes-$date.txt") {
18 $log = "<a href=\"daily/changes-$date.txt\">Changelog</a>"; 18 $lines = `grep "Number of changes:" $basedir/changes-$date.txt | cut "-d " -f4` + 0;
19 } 19 $log = "<a href=\"daily/changes-$date.txt\">Changelog</a> <small>($lines changes)</small>";
20 elsif ( -f "$basedir/changes-$date.log") {
21 $log = "<a href=\"daily/changes-$date.log\">Changelog</a>";
22 } 20 }
23 } 21 }
24 print "<li><a href=\"daily/$_\">$_</a> ($size bytes) $log\n"; 22 print "<li><a href=\"daily/$_\">$_</a> <small>($size bytes)</small> $log\n";
25} 23}
26 24
27print "</ul>\n"; 25print "</ul>\n";
diff --git a/www/history.t b/www/history.t
index 455f1f5e18..6932cdc4c2 100644
--- a/www/history.t
+++ b/www/history.t
@@ -41,7 +41,7 @@ If you like living on the edge, <a href="daily.shtml">here are daily builds</a>.
41<p><i>2002-04-11</i>: The <a href="codes_rec.png">Recorder charset</a> has been mapped. 41<p><i>2002-04-11</i>: The <a href="codes_rec.png">Recorder charset</a> has been mapped.
42 42
43<p><i>2002-03-28</i>: Lots of new stuff on the web page: 43<p><i>2002-03-28</i>: Lots of new stuff on the web page:
44<a href="docs/FAQ">faq</a>, 44<a href="docs/faq.html">faq</a>,
45<a href="irc/">irc logs</a>, 45<a href="irc/">irc logs</a>,
46<a href="tools.html">tools</a> and 46<a href="tools.html">tools</a> and
47<a href="internals/">photos</a>. 47<a href="internals/">photos</a>.
diff --git a/www/style.css b/www/style.css
index 4c624a3841..20af1941ac 100644
--- a/www/style.css
+++ b/www/style.css
@@ -73,6 +73,19 @@ A {
73 background-color: #ff8080; 73 background-color: #ff8080;
74} 74}
75 75
76.faqq {
77 font-weight: bold;
78}
79
80.faqa {
81 margin-left: 2em;
82}
83
84PRE {
85 font-size: 9pt;
86}
87
88
76.changetable, .bugs, .dailymod, .buildstatus, .archive { 89.changetable, .bugs, .dailymod, .buildstatus, .archive {
77 border: outset 2px #ffffff; 90 border: outset 2px #ffffff;
78} 91}