mirror of https://github.com/BOINC/boinc.git
parent
ba292f97b2
commit
b235bae1f8
|
@ -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) {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue