*** empty log message ***

svn path=/trunk/boinc/; revision=8803
This commit is contained in:
David Anderson 2005-11-06 05:34:08 +00:00
parent aae5740462
commit 84bc9492a0
3 changed files with 36 additions and 17 deletions

View File

@ -78,11 +78,11 @@ list_item_array(array(
"<a href=http://www.lb.shuttle.de/apastron/boincDown.shtml>Stefan Urbat</a>",
"Solaris: SPARC, AMD64 (Opteron) and x86
<br> GNU/Linux: AMD64 (Opteron), PowerPC, Itanium, s390
<br> HP-UX (PA RISC and Itanium/IA64),
<br> Tru64: Alpha,
<br> HP-UX (PA RISC and Itanium/IA64)
<br> Tru64: Alpha
<br> AIX: Power4 and later (BOINC client only)
<br> NetBSD: x86,
<br> Mac OS X 10.3 on PowerPC 7450 and later",
<br> NetBSD: x86
",
"BOINC core client, SETI@home"
));

View File

@ -112,6 +112,14 @@ resources.
<li> <a href=logo.php>Logos and graphics</a>
</ul>
<br>
<form method=get action=http://www.google.com/search>
<input type=hidden name=domains value=http://boinc.berkeley.edu>
<input type=hidden name=sitesearch value=http://boinc.berkeley.edu>
<nobr>
<input class=small name=q size=30>
<input type=submit value='Site search'>
</nobr>
</form>
</td></tr>
<tr><td>
<img align=left src=nsf.gif>
@ -127,22 +135,19 @@ and do not necessarily reflect the views of the National Science Foundation.
</table>
</td>
<td valign=top width=390>
<center>
<form method=get action=http://www.google.com/search>
<input type=hidden name=domains value=http://boinc.berkeley.edu>
<input type=hidden name=sitesearch value=http://boinc.berkeley.edu>
<nobr>
<input class=small name=q size=30>
<input type=submit value='Site search'>
</nobr>
</form>
</center>
";
$i = rand(0, 99);
$j = $i+1;
echo "<table border=2 cellpadding=4><tr><td>\n
Featured participant:
echo " <td valign=top width=390><table border=0 cellpadding=8 cellspacing=0>
<tr><td bgcolor=$light_blue>
<h2>Featured participant</h2>
</td></tr>
<tr><td>
<br>
One of over 300,000 people around the world participating in
BOINC-based projects.
<p>
Name:
";
include("piecharts/$i.html");
echo "

14
doc/stats_user.php Normal file
View File

@ -0,0 +1,14 @@
<?php
require_once("docutil.php");
page_head("Participant account info");
$num = (int)($_GET["num"]);
$file = "piecharts/x_$num.html";
include($file);
page_tail();
?>