forked from BOINC/boinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
230 lines (202 loc) · 8.18 KB
/
index.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?php
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2008 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/db_ops.inc");
require_once("../inc/util_ops.inc");
require_once("../inc/uotd.inc");
require_once("../project/project.inc");
$config = get_config();
$cgi_url = parse_config($config, "<cgi_url>");
$stripchart_cgi_url = parse_config($config, "<stripchart_cgi_url>");
db_init();
$title = "Project Management";
admin_page_head($title);
// Notification area
echo "<ul>\n";
echo "<li>";
if (file_exists("../../local.revision")) {
$local_rev = file_get_contents("../../local.revision");
}
if ($local_rev) {
echo "Currently used SVN revision: ".$local_rev."; ";
}
if (file_exists("../cache/remote.revision")
&& (time() < filemtime("../cache/remote.revision")+(24*60*60))
) {
$remote_rev = file_get_contents("../cache/remote.revision");
} else {
// Get latest revision
if (isset($project_http_proxy)) {
$context = stream_context_create(
array(
'http' => array(
'request_fulluri' => true,
'proxy' => $project_http_proxy
)
)
);
$handle = fopen("http://boinc.berkeley.edu/svn/", "r", false, $context);
} else {
$handle = fopen("http://boinc.berkeley.edu/svn/", "r");
}
if ($handle) {
$remote = fread($handle, 255);
fclose($handle);
preg_match("/Revision (\d+)/", $remote, $remote_rev);
$remote_rev = $remote_rev[1];
$handle = fopen("../cache/remote.revision", "w");
fwrite($handle, $remote_rev);
fclose($handle);
} else {
echo "Can't get latest SVN revision";
}
}
if ($remote_rev) {
echo "Latest SVN revision: ".$remote_rev."</li>\n";
}
if (!file_exists(".htaccess")) {
echo "<li><span style=\"color: #ff0000\">The Project Management directory is not
protected from public access by a .htaccess file.</span></li>\n";
}
if (!defined("SYS_ADMIN_EMAIL")) {
echo "<li><span style=\"color: #ff0000\">The defined constant SYS_ADMIN_EMAIL
has not been set. Please edit <tt>project/project.inc</tt> and set this
to an address which can be used to contact the project administrators.
</span></li>\n";
}
if (parse_bool($config, "disable_account_creation")) {
echo "<li><span style=\"color: #ff9900\">Account creation is disabled.</span></li>\n";
}
if (defined("INVITE_CODES")) {
echo "<li><span style=\"color: #ff9900\">Account creation is restricted by the use of
invitation codes.</span></li>\n";
}
$uotd_candidates = count_uotd_candidates();
if ($uotd_candidates >= 0) {
if ($uotd_candidates >= UOTD_THRESHOLD*2) {
$color = "#00aa00";
} elseif ($uotd_candidates < UOTD_THRESHOLD) {
$color = "#ff0000";
} else {
$color = "#ff9900";
}
echo "<li><span style=\"color: ".$color."\">There are ".$uotd_candidates." remaining
candidates for User of the Day.</span></li>\n";
}
echo "</ul>\n";
echo "
<p>
<table border=\"0\"><tr valign=\"top\">
<td><b>Browse database:</b>
<ul>
<li><a href=\"db_action.php?table=platform\">Platforms</a></li>
<li><a href=\"db_action.php?table=app\">Applications</a></li>
<li><a href=\"db_form.php?table=app_version\">Application versions</a></li>
<li><a href=\"db_form.php?table=user\">Users</a> (<a href=\"list_new_users.php\">recently registered</a>)</li>
<li><a href=\"db_form.php?table=team\">Teams</a></li>
<li><a href=\"db_form.php?table=host&detail=low\">Hosts</a></li>
<li><a href=\"db_form.php?table=workunit\">Workunits</a></li>
<li><a href=\"db_form.php?table=result&detail=low\">Results</a></li>
<li><a href=dbinfo.php>DB row counts and disk usage</a>
</ul>
</td>
<td><b>Regular Operations:</b>
<ul>
<li><a href=\"profile_screen_form.php\">Screen user profiles </a></li>
<li><a href=\"manage_special_users.php\">Manage special users</a></li>
</ul>
</td>
<td><b>Special Operations:</b>
<ul>
<li><a href=\"manage_apps.php\">Manage applications</a></li>
<li><a href=\"manage_app_versions.php\">Manage application versions</a></li>
<li><a href=\"mass_email.php\">Send mass email to a selected set of users</a></li>
<li><a href=\"problem_host.php\">Email user with misconfigured host</a></li>
<li><a href=\"job_times.php\">FLOP count statistics</a>
<li><a href=\"cancel_wu_form.php\">Cancel workunits</a></li>
<li><form action=\"manage_user.php\">
<input type=\"submit\" value=\"Manage user\">
ID: <input name=\"userid\">
</form>
</li>
<li>
<form method=\"get\" action=\"clear_host.php\">
Clear Host:
<input type=\"text\" size=\"5\" name=\"hostid\">
<input type=\"submit\" value=\"Clear RPC\">
</form>
</li>
</ul>
</td>
</tr>
</table>
";
// Application Result Summaries:
$show_deprecated = get_str("show_deprecated", true);
$show_only = array("all"); // Add all appids you want to display, or "all"
$result = mysql_query("select id, name, deprecated from app");
while ($app = mysql_fetch_object($result)) {
if (in_array($app->id, $show_only)
|| ( in_array("all", $show_only)
&& (!$app->deprecated || $show_deprecated)
)
) {
echo "
<b>Result summary for <tt>$app->name</tt>:</b>
<ul>
<li> Past 24 hours:
<a href=\"result_summary.php?appid=$app->id&nsecs=86400\">summary</a> |
<a href=\"pass_percentage_by_platform.php?appid=$app->id&nsecs=86400\">pass percentage by platform</a> |
<a href=\"failure_result_summary_by_host.php?appid=$app->id&nsecs=86400\">failure by host</a> |
<a href=\"failure_result_summary_by_platform.php?appid=$app->id&nsecs=86400\"> failure by platform</a>
<li>Past 7 days:
<a href=\"result_summary.php?appid=$app->id&nsecs=604800\">summary</a> |
<a href=\"pass_percentage_by_platform.php?appid=$app->id&nsecs=604800\">pass percentage by platform</a> |
<a href=\"failure_result_summary_by_host.php?appid=$app->id&nsecs=604800\">failure by host</a> |
<a href=\"failure_result_summary_by_platform.php?appid=$app->id&nsecs=604800\">failure by platform</a>
</ul>
";
}
}
mysql_free_result($result);
if ($show_deprecated) {
echo "<a href=\"index.php?show_deprecated=0\">Hide deprecated applications</a>";
} else {
echo "<a href=\"index.php?show_deprecated=1\">Show deprecated applications</a>";
}
// Periodic tasks
echo "<h3>Periodic or special tasks</h3>
<ul>
<li> The following scripts should be run as periodic tasks,
not via this web page
(see <a href=\"http://boinc.berkeley.edu/trac/wiki/ProjectTasks\">http://boinc.berkeley.edu/trac/wiki/ProjectTasks</a>):
<pre> update_forum_activities.php, update_profile_pages.php, update_uotd.php</pre>
<li> The following scripts can be run manually on the command line
as needed (i.e. <tt>php scriptname.php</tt>):
<pre>forum_repair.php, team_repair.php, repair_validator_problem.php</pre>
</ul>
";
// Stripcharts, logs, etc
echo "<div>
<a href=\"$stripchart_cgi_url/stripchart.cgi\">Stripcharts</a>
| <a href=\"show_log.php\">Show/Grep all logs</a>
| <a href=\"show_log.php?f=mysql*.log&l=-20\">Tail MySQL logs</a>
</div>
";
admin_page_tail();
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
?>