forked from davidpanderson/science_united
-
Notifications
You must be signed in to change notification settings - Fork 0
/
su_help.php
81 lines (79 loc) · 2.72 KB
/
su_help.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2019 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/>.
require_once("../inc/util.inc");
page_head(tra("Help"));
text_start();
echo sprintf("%s
<h3>%s</h3>
<p>
%s %s
<p>
%s
",
tra("If you received a 'no work reported' email from Science United or are having other problems, please do the following:"),
tra("Make sure BOINC is installed on your computer"),
tra("Do you see the BOINC icon %1 in your system tray or dock?",
"<img height=24 src=https://boinc.berkeley.edu/logo/boinc32.bmp>"
),
tra("If not, %1download and install BOINC%2.",
"<a href=download_software.php>", "</a>"
),
tra("Science United requires BOINC version 7.14 or later.")
);
echo sprintf("<h3>%s</h3>
<p>
<ul>
<li> %s
<li> %s
<li> %s
</ul>
<br><img width=400 src=pictures/su_menu.jpg>
",
tra("Make sure BOINC is attached to Science United"),
tra("Double-click the BOINC icon to open the BOINC Manager."),
tra("Switch to the Advanced View (View / Advanced View)."),
tra("Click on the Tools menu. You should see 'Synchronize with Science United'. If not, select 'Use account manager' and attach BOINC to your Science United account.")
);
echo sprintf("<h3>%s</h3>
<ul>
<li> %s
<li> %s
<li> %s
<li> %s
</ul>
",
tra("Other sources of help"),
tra("Problems installing or running BOINC: %1 get help here%2.",
"<a href=http://boinc.berkeley.edu/wiki/BOINC_Help>",
"</a>"
),
tra("Problems with Science United: ask for help on the %1Science United message boards%2.",
"<a href=forum_index.php>",
"</a>"
),
tra("To report a bug or request a feature in Science United, create an issue on the %1Science United Github repository%2 (you'll need a free Github account).",
"<a href=https://github.com/davidpanderson/science_united>",
"</a>"
),
tra("If none of the above work for you, %1email us%2.",
"<a href=https://boinc.berkeley.edu/anderson/>", "</a>"
)
);
text_end();
page_tail();
?>