diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-08-27 09:34:07 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-08-27 09:34:07 +0000 |
| commit | b68759a1db0beada4852038708b25cfee207a75d (patch) | |
| tree | 6794e7a4d5f458fda85d0cf6a51597a2adaa7622 | |
| parent | 902b273467ecece60799168951fdf0824842f93e (diff) | |
| download | rockbox-b68759a1db0beada4852038708b25cfee207a75d.zip rockbox-b68759a1db0beada4852038708b25cfee207a75d.tar.gz rockbox-b68759a1db0beada4852038708b25cfee207a75d.tar.bz2 rockbox-b68759a1db0beada4852038708b25cfee207a75d.tar.xz | |
Updates
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1996 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | www/daily.t | 4 | ||||
| -rwxr-xr-x | www/dailysrc.pl | 8 | ||||
| -rw-r--r-- | www/history.t | 2 | ||||
| -rw-r--r-- | www/style.css | 13 |
4 files changed, 19 insertions, 8 deletions
diff --git a/www/daily.t b/www/daily.t index 011f8b8..64ff2f7 100644 --- a/www/daily.t +++ b/www/daily.t @@ -17,9 +17,9 @@ describing how to compile Rockbox <h2>Target builds</h2> <p>These are automated daily builds of the CVS code. -They are <i>not</i> official releases, they are in fact almost guaranteed to not work properly! +They are <i>not</i> official releases and are in fact almost guaranteed to contain bugs! -<p>These builds are discussed in IRC only. <font color="red"><big><b>DO NOT FILE BUG REPORTS FOR THEM!</b></big></font> +<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> <p>There are three versions of each build: diff --git a/www/dailysrc.pl b/www/dailysrc.pl index 71f49c8..25495d5 100755 --- a/www/dailysrc.pl +++ b/www/dailysrc.pl @@ -15,13 +15,11 @@ for ( @tarballs ) { if (/-(\d+)/) { $date = $1; if ( -f "$basedir/changes-$date.txt") { - $log = "<a href=\"daily/changes-$date.txt\">Changelog</a>"; - } - elsif ( -f "$basedir/changes-$date.log") { - $log = "<a href=\"daily/changes-$date.log\">Changelog</a>"; + $lines = `grep "Number of changes:" $basedir/changes-$date.txt | cut "-d " -f4` + 0; + $log = "<a href=\"daily/changes-$date.txt\">Changelog</a> <small>($lines changes)</small>"; } } - print "<li><a href=\"daily/$_\">$_</a> ($size bytes) $log\n"; + print "<li><a href=\"daily/$_\">$_</a> <small>($size bytes)</small> $log\n"; } print "</ul>\n"; diff --git a/www/history.t b/www/history.t index 455f1f5..6932cdc 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>. <p><i>2002-04-11</i>: The <a href="codes_rec.png">Recorder charset</a> has been mapped. <p><i>2002-03-28</i>: Lots of new stuff on the web page: -<a href="docs/FAQ">faq</a>, +<a href="docs/faq.html">faq</a>, <a href="irc/">irc logs</a>, <a href="tools.html">tools</a> and <a href="internals/">photos</a>. diff --git a/www/style.css b/www/style.css index 4c624a3..20af194 100644 --- a/www/style.css +++ b/www/style.css @@ -73,6 +73,19 @@ A { background-color: #ff8080; } +.faqq { + font-weight: bold; +} + +.faqa { + margin-left: 2em; +} + +PRE { + font-size: 9pt; +} + + .changetable, .bugs, .dailymod, .buildstatus, .archive { border: outset 2px #ffffff; } |