*** empty log message ***

svn path=/trunk/boinc/; revision=9515
This commit is contained in:
David Anderson 2006-02-20 07:55:32 +00:00
parent 89cd557820
commit 49f1a1be8f
6 changed files with 41 additions and 6 deletions

View File

@ -2122,3 +2122,13 @@ Charlie 18 Feb 2006
clientgui/
BOINCTaskBar.cpp
MainFrame.cpp
David 19 Feb 2006
- user web: show error results with pink background
(from Rytis Slatkevicius)
html/
inc/
result.inc
user/
white.css

View File

@ -1,6 +1,14 @@
<?
$project_news = array(
array("February 19, 2006",
"<a href=http://boinccast.podhost.de/>BOINCcast</a>
is the first German Podcast about BOINC.
Weekly episodes of 5 minutes length will explain Distributed Computing
and the Goals of BOINC to the German public,
and will present and explain the projects that use BOINC.
"
),
array("February 15, 2006",
"View <a href=http://news.bbc.co.uk/nolavconsole/ukfs_news/hi/newsid_4710000/newsid_4713000/bb_rm_4713004.stm>a video clip</a>
about the BBC Climate Change Experiment.

View File

@ -176,6 +176,7 @@ show_name("Alex A. dos Santos");
show_name("Steven Schweda");
show_name("Josef W. Segur");
show_name("Jens Seidler");
show_name("Rytis Slatkevicius");
show_name("Peter Smithson");
show_name("Christian S&oslash;ttrup");
show_name("Michela Taufer");

View File

@ -19,7 +19,7 @@ function site($url, $name) {
return "<a href=$url>$name</a>";
}
page_head("Web sites for BOINC participants");
page_head("Web resources for BOINC participants");
echo "
<table cellpadding=8><tr><td valign=top>
@ -77,6 +77,7 @@ language("Dutch", array(
site("http://www.boinc.be", "www.boinc.be"),
));
language("English", array(
site("http://symbion.madnezz.com/", "Symbion"),
site("http://scotlandsseti.blogspot.com/", "Megacruncher's Blog"),
site("http://www.bc-team.org/", "BOINC Confederation"),
site("http://theclangers.net/", "The Clangers"),
@ -108,6 +109,7 @@ language("French", array(
site("http://boinc-quebec.org", "boinc-quebec.org")
));
language("German", array(
site("http://boinccast.podhost.de/", "BOINCcast (Podcast)"),
site("http://www.boinc-team.de/", "BOINC@Heidelberg"),
site("http://www.crunching-family.wins.info/", "Crunching Family"),
site("http://www.boinc.at/", "www.boinc.at"),
@ -142,7 +144,8 @@ language("Portuguese", array(
site( "http://portugalathome.pt.vu/", "Portugal@home")
));
language("Russian", array(
site("http://www.boinc.narod.ru", "www.boinc.narod.ru")
site("http://www.boinc.ru", "BOINC.ru")
site("http://distributed.ru", "distributed.ru")
));
//show_link(
// "Serbian",

View File

@ -146,6 +146,14 @@ function result_table_start($show_wu_link, $show_host_link, $show_result_link) {
";
}
// was result invalid or timed out?
//
function bad_result($result) {
if ($result->validate_state == 2) return true;
if (!$result->received_time && ($result->report_deadline < time())) return true;
return false;
}
function show_result_row(
$result, $show_wu_link, $show_host_link, $show_result_link
) {
@ -172,9 +180,11 @@ function show_result_row(
$result_granted_credit = format_credit($result->granted_credit);
$result_claimed_credit = result_claimed_credit_string($result, $result_claimed_credit);
$result_granted_credit = result_granted_credit_string($result, $result_granted_credit);
echo "
<tr>
";
if (bad_result($result)) {
echo "<tr class=invalid_result>";
} else {
echo "<tr>";
}
if ($show_result_link) {
echo "<td><a href=\"result.php?resultid=$result->id\">$result->id</a></td>\n";
}

View File

@ -178,7 +178,10 @@ tr.postseperator{
background-color: rgb(200,200,200);
height:4px;
}
tr.postseperator td{
tr.postseperator td {
border-top: 1px solid rgb(170,170,170);
border-bottom: 1px solid rgb(170,170,170);
}
.invalid_result td {
background-color: #ffcccc;
}