1
0
Fork 0
forked from len0rd/rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1996 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-08-27 09:34:07 +00:00
parent 902b273467
commit b68759a1db
4 changed files with 19 additions and 8 deletions

View file

@ -17,9 +17,9 @@ describing how to compile Rockbox
<h2>Target builds</h2> <h2>Target builds</h2>
<p>These are automated daily builds of the CVS code. <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: <p>There are three versions of each build:

View file

@ -15,13 +15,11 @@ for ( @tarballs ) {
if (/-(\d+)/) { if (/-(\d+)/) {
$date = $1; $date = $1;
if ( -f "$basedir/changes-$date.txt") { if ( -f "$basedir/changes-$date.txt") {
$log = "<a href=\"daily/changes-$date.txt\">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>";
elsif ( -f "$basedir/changes-$date.log") {
$log = "<a href=\"daily/changes-$date.log\">Changelog</a>";
} }
} }
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"; print "</ul>\n";

View file

@ -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-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: <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="irc/">irc logs</a>,
<a href="tools.html">tools</a> and <a href="tools.html">tools</a> and
<a href="internals/">photos</a>. <a href="internals/">photos</a>.

View file

@ -73,6 +73,19 @@ A {
background-color: #ff8080; background-color: #ff8080;
} }
.faqq {
font-weight: bold;
}
.faqa {
margin-left: 2em;
}
PRE {
font-size: 9pt;
}
.changetable, .bugs, .dailymod, .buildstatus, .archive { .changetable, .bugs, .dailymod, .buildstatus, .archive {
border: outset 2px #ffffff; border: outset 2px #ffffff;
} }