mirror of https://github.com/BOINC/boinc.git
27 lines
572 B
PHP
Executable File
27 lines
572 B
PHP
Executable File
<?php
|
|
|
|
define("PROJECT", "Astropulse");
|
|
define("MASTER_URL", "http://maggie.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.
|
|
";
|
|
}
|
|
|
|
function project_banner($user) {
|
|
// Put your project title and logo here
|
|
|
|
echo "<table width=100%><tr><td><h2>".PROJECT."</h2></td><td align=right>\n";
|
|
if ($user) {
|
|
echo "Logged in as $user->name";
|
|
} else {
|
|
echo "<br>";
|
|
}
|
|
echo "</td></tr></table><hr>\n";
|
|
}
|
|
|
|
?>
|