2003-02-12 23:06:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
define("PROJECT", "Astropulse");
|
2003-06-15 20:28:29 +00:00
|
|
|
define("MASTER_URL", "http://maggie.ssl.berkeley.edu/ap/");
|
2003-06-15 20:28:30 +00:00
|
|
|
define("URL_BASE", "http://setiboinc.ssl.berkeley.edu/ap");
|
2003-06-15 20:30:41 +00:00
|
|
|
define('IMAGE_PATH', 'user_profile/images/');
|
2003-06-15 20:28:31 +00:00
|
|
|
define('PROFILE_PATH', 'user_profile/');
|
|
|
|
define('LANGUAGE_FILE', 'languages.txt');
|
2003-02-12 23:06:49 +00:00
|
|
|
|
|
|
|
function project_intro() {
|
|
|
|
echo"
|
2003-06-15 20:28:29 +00:00
|
|
|
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.
|
|
|
|
";
|
2003-02-12 23:06:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function project_banner($user) {
|
2003-06-15 20:28:29 +00:00
|
|
|
echo "
|
|
|
|
<table cellspacing=0 border=0 cellpadding=10 width=100%><tr>
|
2003-02-12 23:06:49 +00:00
|
|
|
<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
|
|
|
|
";
|
2003-06-15 20:28:29 +00:00
|
|
|
|
2003-02-12 23:06:49 +00:00
|
|
|
if ($user) {
|
|
|
|
echo "Logged in as $user->name";
|
|
|
|
} else {
|
|
|
|
echo "<br>";
|
|
|
|
}
|
2003-06-15 20:28:28 +00:00
|
|
|
echo "</td></tr></table><br>\n";
|
2003-02-12 23:06:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|