mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=6092
This commit is contained in:
parent
0b822c4645
commit
d18861e5e7
|
@ -66,6 +66,7 @@ Various implementation notes:
|
|||
<li> <a href=version_diff.txt>How to see what has changed
|
||||
between two versions of an executable</a>.
|
||||
<li> <a href=acct_mgt.php>Account management systems</a>
|
||||
<li> <a href=spec.txt>Spec info for RPMs</a>
|
||||
</ul>
|
||||
|
||||
";
|
||||
|
|
|
@ -28,6 +28,18 @@ function page_head($title) {
|
|||
";
|
||||
}
|
||||
|
||||
function copyright() {
|
||||
echo "
|
||||
Copyright © $y University of California
|
||||
";
|
||||
return;
|
||||
echo "
|
||||
<br><br>
|
||||
<!-- Creative Commons License -->
|
||||
<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/2.0/\"><img alt=\"Creative Commons License\" border=\"0\" src=\"http://creativecommons.org/images/public/somerights20.gif\" /></a><br />
|
||||
";
|
||||
}
|
||||
|
||||
function page_tail() {
|
||||
$y = date("Y ");
|
||||
echo "
|
||||
|
@ -35,7 +47,9 @@ function page_tail() {
|
|||
<p align='center'>
|
||||
<a href='/'>Return to BOINC main page</a>
|
||||
<br/><br/>
|
||||
Copyright © $y University of California
|
||||
";
|
||||
copyright();
|
||||
echo "
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -107,4 +121,35 @@ function list_end() {
|
|||
echo "</table><p>\n";
|
||||
}
|
||||
|
||||
function stats_sites() {
|
||||
echo "
|
||||
<ul>
|
||||
<li>
|
||||
<a href=http://www.setisynergy.com/stats/index.php>BOINC Statistics for the WORLD!</a>
|
||||
developed by Zain Upton (email: zain.upton at setisynergy.com)
|
||||
<li>
|
||||
<a href=http://www.boincstats.com/>www.boincstats.com</a>
|
||||
by Willy de Zutter
|
||||
<li>
|
||||
<a href=http://www.seti.nl/boinc_team.php>
|
||||
SETI@Netherlands stats page</a>
|
||||
<li>
|
||||
<a href=http://www.boinc.dk/index.php?page=statistics>http://www.boinc.dk</a>,
|
||||
developed by Janus Kristensen (email: stats at boinc.dk).
|
||||
<li>
|
||||
<a href=http://www.saschapfalz.de/boincstats/boinc-stats.php>boincstats</a>,
|
||||
developed by Sascha Pfalz.
|
||||
|
||||
<li>
|
||||
<a href=http://stats.boincbzh.net/BZHwds/index.php>BOINC Alliance Francophone</a>,
|
||||
developed by Vincent Mary (email: stats at hoincbzh.net).
|
||||
Supports competition between 'mini-teams'.
|
||||
<li>
|
||||
<a href=http://stats.kwsn.net/>The Knights Who Say 'Ni' stats</a>
|
||||
|
||||
<li>
|
||||
<a href=http://www.teamocuk.com/>Team OcUK stats</a>
|
||||
</ul>
|
||||
";
|
||||
}
|
||||
?>
|
||||
|
|
|
@ -135,5 +135,9 @@ echo "
|
|||
</td></tr></table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<hr>
|
||||
<center>
|
||||
";
|
||||
copyright();
|
||||
?>
|
||||
|
|
|
@ -21,6 +21,13 @@ page_head("Web sites for BOINC participants");
|
|||
|
||||
list_start();
|
||||
echo "
|
||||
<h2>Project status</h2>
|
||||
<a href=http://boincprojectstatus.ath.cx/boinc/>BOINC project status</a>
|
||||
<h2>Statistics</h2>
|
||||
";
|
||||
stats_sites();
|
||||
echo "
|
||||
<h2>Informational sites</h2>
|
||||
<tr><th>Language</th><th>Site</th></tr>
|
||||
";
|
||||
|
||||
|
|
|
@ -238,6 +238,7 @@ int wu_is_infeasible(
|
|||
reply.wreq.insufficient_speed = true;
|
||||
reason |= INFEASIBLE_CPU;
|
||||
}
|
||||
#if 0
|
||||
if (wu.delay_bound < request.global_prefs.work_buf_min_days*SECONDS_IN_DAY) {
|
||||
log_messages.printf(
|
||||
SCHED_MSG_LOG::DEBUG,
|
||||
|
@ -248,6 +249,7 @@ int wu_is_infeasible(
|
|||
reply.wreq.excessive_work_buf = true;
|
||||
reason |= INFEASIBLE_WORK_BUF;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
return reason;
|
||||
|
|
Loading…
Reference in New Issue