svn path=/trunk/boinc/; revision=1492
This commit is contained in:
David Anderson 2003-06-15 20:28:29 +00:00
parent ba292f97b2
commit b235bae1f8
3 changed files with 24 additions and 54 deletions

View File

@ -2,14 +2,14 @@
// This is a sample project file. Replace it with your own.
define("PROJECT", "TestBOINC@home");
define("PROJECT", "Test Project");
define("MASTER_URL", "http://boinc.berkeley.edu/");
define("URL_BASE", "");
function project_intro() {
echo"
This is a test project of
the Berkeley Open Infrastructure for Network Computing (BOINC)
";
This is a test project for <a href=boinc.berkeley.edu>BOINC</a>.
";
}
function project_banner($user) {

View File

@ -1,24 +1,38 @@
<?php
define("PROJECT", "Astropulse");
define("MASTER_URL", "http://maggie.ssl.berkeley.edu/apt/");
define("MASTER_URL", "http://maggie.ssl.berkeley.edu/ap/");
define("URL_BASE", "http://koloth.ssl.berkeley.edu/ap");
function project_intro() {
echo"
The Astropulse project, based at UC Berkeley,
uses the idle time of thousands of computers to
analyze radio telescope signals.
";
Astropulse uses your computer's idle time to
analyze radio telescope signals, looking for
<a href=http://www.planetary.org/html/UPDATES/seti/SETI@home/Update_110501.htm>black hole evaporation</a>
and other phenomena.
";
echo "<p><b>
Astropulse is based on <a href=http://boinc.berkeley.edu>BOINC</a>,
which is being beta-tested.
We currently have enough volunteers for the beta test.
Stay tuned for an expanded beta test in the upcoming months.</b>
<p>
Beta testers: click <a href=beta_test_instructions.html>here</a>
for instructions and news.
";
}
function project_banner($user) {
echo "<table cellspacing=0 border=0 cellpadding=10 width=100%><tr>
echo "
<table cellspacing=0 border=0 cellpadding=10 width=100%><tr>
<td background=http://setiathome.berkeley.edu/images/outrspc3.gif>
<font color=ffffff size=8 face='helvetica'>Astropulse</font>
</td>
<td valign=bottom align=right background=http://setiathome.berkeley.edu/images/outrspc3.gif>
<font size=-1 color=ffffff>\n
";
if ($user) {
echo "Logged in as $user->name";
} else {

View File

@ -1,44 +0,0 @@
<?php
define("PROJECT", "Astropulse");
define("MASTER_URL", "http://maggie.ssl.berkeley.edu/ap/");
function project_intro() {
echo"
Astropulse uses your computer's idle time to
analyze radio telescope signals, looking for
<a href=http://www.planetary.org/html/UPDATES/seti/SETI@home/Update_110501.htm>black hole evaporation
</a>
and other phenomena.
";
echo "<p><b>
Astropulse is based on <a href=http://boinc.berkeley.edu>BOINC</a>,
which is being beta-tested.
We currently have enough volunteers for the beta test.
Stay tuned for an expanded beta test in the upcoming months.</b>
<p>
Beta testers: click <a href=beta_test_instructions.html>here</a>
for instructions and news.
";
}
function project_banner($user) {
echo "<table cellspacing=0 border=0 cellpadding=10 width=100%><tr>
<td background=http://setiathome.berkeley.edu/images/outrspc3.gif>
<font color=ffffff size=8 face='helvetica'>Astropulse</font>
</td>
<td valign=bottom align=right background=http://setiathome.berkeley.edu/images/outrspc3.gif>
<font size=-1 color=ffffff>\n
";
if ($user) {
echo "Logged in as $user->name";
} else {
echo "<br>";
}
echo "</td></tr></table><hr>\n";
}
?>