2003-02-12 23:06:49 +00:00
|
|
|
<?php
|
|
|
|
|
2003-02-24 21:25:16 +00:00
|
|
|
// This is a sample project file. Replace it with your own.
|
|
|
|
|
2003-03-21 04:38:55 +00:00
|
|
|
define("PROJECT", "TestBOINC@home");
|
|
|
|
define("MASTER_URL", "http://boinc.berkeley.edu/");
|
2003-02-12 23:06:49 +00:00
|
|
|
|
|
|
|
function project_intro() {
|
|
|
|
echo"
|
2003-03-21 04:38:55 +00:00
|
|
|
This is a test project of
|
|
|
|
the Berkeley Open Infrastructure for Network Computing (BOINC)
|
2003-02-12 23:06:49 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|