forked from davidpanderson/science_united
-
Notifications
You must be signed in to change notification settings - Fork 0
/
su_boinc_users.php
51 lines (47 loc) · 1.83 KB
/
su_boinc_users.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2018 University of California
//
// BOINC is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// BOINC is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
// info for existing BOINC users
require_once("../inc/su.inc");
function main() {
page_head("Info for current BOINC users");
text_start();
echo "
<p>
Science United attaches your computer
to projects based on your science preferences.
For example, if you select cancer research,
your computer will compute for BOINC projects doing cancer research.
If a new cancer project starts up, it will compute for that one too.
<p>
<a href=su_about.php>Read why this helps volunteer computing</a>.
<p>
Science United uses a single anonymous account on each project,
and attaches your computer to this account.
Your Science United account information is not shared with projects.
<p>
Science United keeps track of how much work your computers
have done, but it has no leader boards.
If you use Science United, you won't be able to see
your BOINC credit totals on project web sites,
or on sites like BOINCStats.
";
text_end();
page_tail();
}
main();
?>