mirror of https://github.com/BOINC/boinc.git
commit
29414cb3cc
|
@ -155,17 +155,17 @@ function show_host($host, $user, $ipprivate) {
|
|||
$x = $host->p_iops/1e9;
|
||||
$y = round($x, 2);
|
||||
row2(tra("Measured integer speed"), tra("%1 billion ops/sec", $y));
|
||||
$x = $host->n_bwup/KILO;
|
||||
$x = $host->n_bwup/MEGA;
|
||||
$y = round($x, 2);
|
||||
if ($y > 0) {
|
||||
row2(tra("Average upload rate"), tra("%1 KB/sec", $y));
|
||||
row2(tra("Average upload rate"), tra("%1 MB/sec", $y));
|
||||
} else {
|
||||
row2(tra("Average upload rate"), tra("Unknown"));
|
||||
}
|
||||
$x = $host->n_bwdown/KILO;
|
||||
$x = $host->n_bwdown/MEGA;
|
||||
$y = round($x, 2);
|
||||
if ($y > 0) {
|
||||
row2(tra("Average download rate"), tra("%1 KB/sec", $y));
|
||||
row2(tra("Average download rate"), tra("%1 MB/sec", $y));
|
||||
} else {
|
||||
row2(tra("Average download rate"), tra("Unknown"));
|
||||
}
|
||||
|
|
|
@ -86,7 +86,6 @@ function display_team_page($team, $user) {
|
|||
global $team_name_sites;
|
||||
page_head("$team->name");
|
||||
|
||||
echo sanitize_html($team->name_html);
|
||||
echo "<p>";
|
||||
start_table();
|
||||
row1(tra('Team info'));
|
||||
|
|
|
@ -121,10 +121,19 @@ function show_other_projects($user, $personal) {
|
|||
|
||||
usort($user->projects, "cmp");
|
||||
if ($personal) {
|
||||
echo "<h3>".tra("Projects in which you are participating")."</h3>";
|
||||
$t = tra("Projects in which you are participating");
|
||||
} else {
|
||||
echo "<h3>".tra("Projects in which %1 is participating", $user->name)."</h3>";
|
||||
$t = tra("Projects in which %1 is participating", $user->name);
|
||||
}
|
||||
panel(
|
||||
$t,
|
||||
function() use ($user) {
|
||||
show_other_projects_aux($user);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
function show_other_projects_aux($user) {
|
||||
start_table('table-striped');
|
||||
row_heading_array(
|
||||
array(
|
||||
|
@ -159,11 +168,6 @@ require_once("../inc/stats_sites.inc");
|
|||
function show_user_stats_private($user) {
|
||||
global $cpid_stats_sites;
|
||||
|
||||
if (NO_COMPUTING && NO_STATS && NO_HOSTS) {
|
||||
return;
|
||||
}
|
||||
row1(tra("Computing"));
|
||||
|
||||
if (!NO_STATS) {
|
||||
show_credit($user);
|
||||
}
|
||||
|
@ -313,7 +317,6 @@ function show_user_info_private($user) {
|
|||
}
|
||||
|
||||
function show_preference_links() {
|
||||
row1("<a name=\"prefs\"></a>".tra("Preferences"));
|
||||
if (!NO_GLOBAL_PREFS) {
|
||||
row2(
|
||||
tra("When and how BOINC uses your computer"),
|
||||
|
@ -354,7 +357,7 @@ function friend_links($user) {
|
|||
}
|
||||
$alt = tra("Profile");
|
||||
$x .= sprintf(
|
||||
'<p><a href="%sview_profile.php?userid=%d"><img title="%s" src="%s" alt="%s"></a><br>',
|
||||
'<a href="%sview_profile.php?userid=%d"><img title="%s" src="%s" alt="%s"></a><br>',
|
||||
url_base(),
|
||||
$user->id,
|
||||
tra("View the profile of %1", $user->name),
|
||||
|
@ -373,6 +376,10 @@ function friend_links($user) {
|
|||
// if $name_limit, limit name to N chars
|
||||
//
|
||||
function user_links($user, $badge_height=0, $name_limit=0) {
|
||||
if (!$user) {
|
||||
error_log("user_links(): null arg\n");
|
||||
return;
|
||||
}
|
||||
BoincForumPrefs::lookup($user);
|
||||
if (is_banished($user)) {
|
||||
return "(banished: ID $user->id)";
|
||||
|
@ -521,9 +528,8 @@ function show_user_summary_public($user) {
|
|||
}
|
||||
}
|
||||
|
||||
// Returns a cacheable community links data object
|
||||
// @param user The user to produce a community links object for
|
||||
|
||||
// return an object with data to show the user's community links
|
||||
//
|
||||
function get_community_links_object($user){
|
||||
$cache_object = new StdClass;
|
||||
$cache_object->post_count = total_posts($user);
|
||||
|
@ -544,6 +550,10 @@ function get_community_links_object($user){
|
|||
//
|
||||
function community_links($clo, $logged_in_user){
|
||||
$user = $clo->user;
|
||||
if (!$user) {
|
||||
error_log("community_links(): null user\n");
|
||||
return;
|
||||
}
|
||||
$team = $clo->team;
|
||||
$friends = $clo->friends;
|
||||
$tot = $clo->post_count;
|
||||
|
@ -552,7 +562,7 @@ function community_links($clo, $logged_in_user){
|
|||
if ($user->teamid && $team) {
|
||||
row2(tra("Team"), "<a href=\"".url_base()."team_display.php?teamid=$team->id\">$team->name</a>");
|
||||
} else {
|
||||
row2(tra("Team"), tra("None"));
|
||||
row2(tra("Team"), '—');
|
||||
}
|
||||
}
|
||||
if (!DISABLE_FORUMS) {
|
||||
|
@ -593,16 +603,27 @@ function show_account_private($user) {
|
|||
grid(
|
||||
false,
|
||||
function() use ($user) {
|
||||
start_table();
|
||||
row1(tra("Account information"), 2, 'heading');
|
||||
show_user_info_private($user);
|
||||
show_preference_links();
|
||||
show_user_stats_private($user);
|
||||
|
||||
panel(
|
||||
tra("Account information"),
|
||||
function() use ($user) {
|
||||
start_table();
|
||||
show_user_info_private($user);
|
||||
end_table();
|
||||
}
|
||||
);
|
||||
if (!NO_COMPUTING || !NO_STATS || !NO_HOSTS) {
|
||||
panel(
|
||||
tra("Computing"),
|
||||
function() use($user) {
|
||||
start_table();
|
||||
show_user_stats_private($user);
|
||||
end_table();
|
||||
}
|
||||
);
|
||||
}
|
||||
if (function_exists('show_user_donations_private')) {
|
||||
show_user_donations_private($user);
|
||||
}
|
||||
end_table();
|
||||
if (!NO_COMPUTING) {
|
||||
show_other_projects($user, true);
|
||||
}
|
||||
|
@ -611,10 +632,22 @@ function show_account_private($user) {
|
|||
}
|
||||
},
|
||||
function() use ($user) {
|
||||
start_table();
|
||||
row1(tra("Community"));
|
||||
show_community_private($user);
|
||||
end_table();
|
||||
panel(
|
||||
tra("Community"),
|
||||
function() use ($user) {
|
||||
start_table();
|
||||
show_community_private($user);
|
||||
end_table();
|
||||
}
|
||||
);
|
||||
panel(
|
||||
tra("Preferences"),
|
||||
function() use($user) {
|
||||
start_table();
|
||||
show_preference_links();
|
||||
end_table();
|
||||
}
|
||||
);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
@ -8,6 +8,10 @@ body, navbar-text, panel {
|
|||
color:white;
|
||||
}
|
||||
|
||||
.panel-body .table {
|
||||
background-color: #303030;
|
||||
}
|
||||
|
||||
table a:not(.btn), .table a:not(.btn), a:not(.btn) {
|
||||
color: #EA9185;
|
||||
text-decoration: none;
|
||||
|
|
|
@ -154,7 +154,7 @@ $blocked_str = "";
|
|||
foreach ($blocked_users as $id) {
|
||||
if ($id) {
|
||||
$blocked_user = BoincUser::lookup_id((int)$id);
|
||||
if (!$blocked) {
|
||||
if (!$blocked_user) {
|
||||
echo "Missing user $id";
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -90,23 +90,35 @@ if ($format=="xml"){
|
|||
$logged_in_user = get_logged_in_user(false);
|
||||
|
||||
page_head($user->name);
|
||||
start_table();
|
||||
echo "<tr><td valign=top>";
|
||||
start_table("table-striped");
|
||||
show_user_summary_public($user);
|
||||
end_table();
|
||||
project_user_summary($user);
|
||||
show_other_projects($user, false);
|
||||
echo "</td><td valign=top>";
|
||||
start_table("table-striped");
|
||||
show_badges_row(true, $user);
|
||||
if (!DISABLE_PROFILES) {
|
||||
show_profile_link($user);
|
||||
}
|
||||
community_links($community_links, $logged_in_user);
|
||||
end_table();
|
||||
echo "</td></tr>";
|
||||
end_table();
|
||||
grid(
|
||||
false,
|
||||
function() use ($data) {
|
||||
panel(
|
||||
tra("Account information"),
|
||||
function() use ($data) {
|
||||
start_table("table-striped");
|
||||
show_user_summary_public($data->user);
|
||||
project_user_summary($data->user);
|
||||
end_table();
|
||||
}
|
||||
);
|
||||
show_other_projects($data->user, false);
|
||||
},
|
||||
function() use ($data, $logged_in_user) {
|
||||
panel(
|
||||
tra("Community"),
|
||||
function() use ($data, $logged_in_user) {
|
||||
start_table("table-striped");
|
||||
show_badges_row(true, $data->user);
|
||||
if (!DISABLE_PROFILES) {
|
||||
show_profile_link($data->user);
|
||||
}
|
||||
community_links($data->clo, $logged_in_user);
|
||||
end_table();
|
||||
}
|
||||
);
|
||||
}
|
||||
);
|
||||
page_tail(true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue