@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | if (!hosts_compatible($host, $host2, $detail)) continue; |
51 | 51 | $hosts[] = $host2; |
52 | 52 | $nhosts++; |
53 | - if ($nhosts==500) break; |
|
53 | + if ($nhosts == 500) break; |
|
54 | 54 | } |
55 | 55 | if ($nhosts == 1) { |
56 | 56 | echo "<br>".tra("No hosts are eligible for merging with this one."); |
@@ -90,14 +90,14 @@ discard block |
||
90 | 90 | <script> |
91 | 91 | function set_all() { |
92 | 92 | "; |
93 | -for ($i=1; $i<$nhosts; $i++) { |
|
93 | +for ($i = 1; $i < $nhosts; $i++) { |
|
94 | 94 | echo "document.host_list.id_$i.checked=1;\n"; |
95 | 95 | } |
96 | 96 | echo " |
97 | 97 | } |
98 | 98 | function clear_all() { |
99 | 99 | "; |
100 | -for ($i=1; $i<$nhosts; $i++) { |
|
100 | +for ($i = 1; $i < $nhosts; $i++) { |
|
101 | 101 | echo "document.host_list.id_$i.checked=0;\n"; |
102 | 102 | } |
103 | 103 | echo " |
@@ -220,7 +220,7 @@ |
||
220 | 220 | } |
221 | 221 | } |
222 | 222 | if ($detail == "low" || $table == "profile") { |
223 | - end_table(); |
|
223 | + end_table(); |
|
224 | 224 | } |
225 | 225 | _mysql_free_result($result); |
226 | 226 | } else { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | // For display, convert query string characters < and > into 'html form' so |
65 | 65 | // that they will be displayed. |
66 | 66 | // |
67 | -$html_text=str_replace('<', '<', str_replace('>', '>', $main_query)); |
|
67 | +$html_text = str_replace('<', '<', str_replace('>', '>', $main_query)); |
|
68 | 68 | |
69 | 69 | echo "<p>Query: <b>$html_text</b><p>\n"; |
70 | 70 | |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | if ($result) { |
160 | 160 | if ($detail == "low") { |
161 | 161 | start_table('table-striped'); |
162 | - switch($table) { |
|
162 | + switch ($table) { |
|
163 | 163 | case "result": |
164 | 164 | result_short_header(); |
165 | 165 | break; |
@@ -228,5 +228,5 @@ discard block |
||
228 | 228 | } |
229 | 229 | |
230 | 230 | admin_page_tail(); |
231 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
231 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
232 | 232 | ?> |
@@ -20,16 +20,16 @@ discard block |
||
20 | 20 | |
21 | 21 | // TODO: document; use new DB interface |
22 | 22 | |
23 | -include_once( "../inc/db.inc" ); |
|
24 | -include_once( "../inc/util.inc" ); |
|
25 | -include_once( "../inc/db_ops.inc" ); |
|
26 | -include_once( "../inc/util_ops.inc" ); |
|
27 | -include_once( "../inc/prefs.inc" ); |
|
23 | +include_once("../inc/db.inc"); |
|
24 | +include_once("../inc/util.inc"); |
|
25 | +include_once("../inc/db_ops.inc"); |
|
26 | +include_once("../inc/util_ops.inc"); |
|
27 | +include_once("../inc/prefs.inc"); |
|
28 | 28 | |
29 | 29 | db_init(); |
30 | 30 | |
31 | 31 | if (get_int('hostid')) { |
32 | - $hostid = get_int( 'hostid' ); |
|
32 | + $hostid = get_int('hostid'); |
|
33 | 33 | } else { |
34 | 34 | error_page("no hostid"); |
35 | 35 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | admin_page_head($title); |
41 | 41 | |
42 | -if($hostid > 0) { |
|
42 | +if ($hostid > 0) { |
|
43 | 43 | $result = _mysql_query("UPDATE host SET max_results_day=1 WHERE id=".$hostid); |
44 | 44 | } |
45 | 45 |
@@ -116,14 +116,14 @@ |
||
116 | 116 | } else { |
117 | 117 | $host = BoincHost::lookup_id($hostid); |
118 | 118 | if (!$host) { |
119 | - echo "<h2>No host with that ID</h2> |
|
119 | + echo "<h2>No host with that ID</h2> |
|
120 | 120 | <center>Please <a href=\"problem_host.php\">try again</a></center>"; |
121 | 121 | } else { |
122 | 122 | $user = BoincUser::lookup_id($host->userid); |
123 | - echo "<a href=\"problem_host.php\">Do another?</a><br><br>"; |
|
124 | - send_problem_email($user, $host); |
|
125 | - echo "Email to ".$user->email_addr." has been sent.<br>"; |
|
126 | - } |
|
123 | + echo "<a href=\"problem_host.php\">Do another?</a><br><br>"; |
|
124 | + send_problem_email($user, $host); |
|
125 | + echo "Email to ".$user->email_addr." has been sent.<br>"; |
|
126 | + } |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | admin_page_tail(); |
@@ -37,12 +37,12 @@ discard block |
||
37 | 37 | Average credit: ".$host->expavg_credit." |
38 | 38 | Average update time: ".time_str($host->expavg_time)." |
39 | 39 | IP address: $host->last_ip_addr (same the last $host->nsame_ip_addr times) |
40 | - Domain name: " . $host->domain_name; |
|
40 | + Domain name: ".$host->domain_name; |
|
41 | 41 | $x = $host->timezone/3600; |
42 | - if ($x >= 0) $x="+$x"; |
|
43 | - $host_content.=" |
|
42 | + if ($x >= 0) $x = "+$x"; |
|
43 | + $host_content .= " |
|
44 | 44 | Local Time = UTC $x hours |
45 | - Number of CPUs: " . $host->p_ncpus." |
|
45 | + Number of CPUs: ".$host->p_ncpus." |
|
46 | 46 | CPU: $host->p_vendor $host->p_model |
47 | 47 | FP ops/sec: ".$host->p_fpops." |
48 | 48 | Int ops/sec: ".$host->p_iops." |
@@ -50,28 +50,28 @@ discard block |
||
50 | 50 | Operating System: $host->os_name $host->os_version"; |
51 | 51 | $x = $host->m_nbytes/(1024*1024); |
52 | 52 | $y = round($x, 2); |
53 | - $host_content.=" |
|
53 | + $host_content .= " |
|
54 | 54 | Memory: $y MB"; |
55 | 55 | $x = $host->m_cache/1024; |
56 | 56 | $y = round($x, 2); |
57 | - $host_content.=" |
|
57 | + $host_content .= " |
|
58 | 58 | Cache: $y KB"; |
59 | 59 | $x = $host->m_swap/(1024*1024); |
60 | 60 | $y = round($x, 2); |
61 | - $host_content.=" |
|
61 | + $host_content .= " |
|
62 | 62 | Swap Space: $y MB"; |
63 | 63 | $x = $host->d_total/(1024*1024*1024); |
64 | 64 | $y = round($x, 2); |
65 | - $host_content.=" |
|
65 | + $host_content .= " |
|
66 | 66 | Total Disk Space: $y GB"; |
67 | 67 | $x = $host->d_free/(1024*1024*1024); |
68 | 68 | $y = round($x, 2); |
69 | - $host_content.=" |
|
69 | + $host_content .= " |
|
70 | 70 | Free Disk Space: $y GB |
71 | 71 | Avg network bandwidth (upstream): $host->n_bwup bytes/sec |
72 | 72 | Avg network bandwidth (downstream): $host->n_bwdown bytes/sec"; |
73 | 73 | $x = $host->avg_turnaround/86400; |
74 | - $host_content.=" |
|
74 | + $host_content .= " |
|
75 | 75 | Average turnaround: ".round($x, 2)." days |
76 | 76 | Number of RPCs: $host->rpc_seqno |
77 | 77 | Last RPC: ".time_str($host->rpc_time)." |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | installation. Could you please have a look at it? |
89 | 89 | |
90 | 90 | Sincerely, |
91 | - The ". PROJECT." team |
|
91 | + The ".PROJECT." team |
|
92 | 92 | "; |
93 | 93 | $body .= " |
94 | 94 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | " . $host_content." |
97 | 97 | |
98 | 98 | For further information and assistance with ".PROJECT." go to $master_url"; |
99 | - echo nl2br($body) . "<br><br>"; |
|
99 | + echo nl2br($body)."<br><br>"; |
|
100 | 100 | return send_email($user, $subject, $body); |
101 | 101 | |
102 | 102 | } |
@@ -127,5 +127,5 @@ discard block |
||
127 | 127 | } |
128 | 128 | |
129 | 129 | admin_page_tail(); |
130 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
130 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
131 | 131 | ?> |
@@ -24,17 +24,17 @@ |
||
24 | 24 | set_time_limit(0); |
25 | 25 | |
26 | 26 | function cache_check_diskspace2(){ |
27 | - $too_old = 86400; |
|
28 | - while (1) { |
|
29 | - $f = disk_free_space("../cache"); |
|
30 | - $u = disk_usage("../cache"); |
|
31 | - echo "free: $f used: $u\n"; |
|
32 | - if ($f > MIN_FREE_SPACE && $u < MAX_CACHE_USAGE) { |
|
33 | - break; |
|
34 | - } |
|
35 | - clean_cache($too_old, "../cache"); |
|
36 | - $too_old/=2; |
|
37 | - } |
|
27 | + $too_old = 86400; |
|
28 | + while (1) { |
|
29 | + $f = disk_free_space("../cache"); |
|
30 | + $u = disk_usage("../cache"); |
|
31 | + echo "free: $f used: $u\n"; |
|
32 | + if ($f > MIN_FREE_SPACE && $u < MAX_CACHE_USAGE) { |
|
33 | + break; |
|
34 | + } |
|
35 | + clean_cache($too_old, "../cache"); |
|
36 | + $too_old/=2; |
|
37 | + } |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | cache_check_diskspace2(); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | set_time_limit(0); |
25 | 25 | |
26 | -function cache_check_diskspace2(){ |
|
26 | +function cache_check_diskspace2() { |
|
27 | 27 | $too_old = 86400; |
28 | 28 | while (1) { |
29 | 29 | $f = disk_free_space("../cache"); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | break; |
34 | 34 | } |
35 | 35 | clean_cache($too_old, "../cache"); |
36 | - $too_old/=2; |
|
36 | + $too_old /= 2; |
|
37 | 37 | } |
38 | 38 | } |
39 | 39 |
@@ -23,7 +23,7 @@ |
||
23 | 23 | |
24 | 24 | set_time_limit(0); |
25 | 25 | |
26 | -function cache_check_diskspace2(){ |
|
26 | +function cache_check_diskspace2() { |
|
27 | 27 | $too_old = 86400; |
28 | 28 | while (1) { |
29 | 29 | $f = disk_free_space("../cache"); |
@@ -38,30 +38,30 @@ discard block |
||
38 | 38 | if ($cancel && ($cancel == 1)) { |
39 | 39 | if ($WU) { |
40 | 40 | foreach ($WU as $key => $value) { |
41 | - if($WUs != "") { |
|
42 | - $WUs = $WUs . ","; |
|
41 | + if ($WUs != "") { |
|
42 | + $WUs = $WUs.","; |
|
43 | 43 | } |
44 | - $WUs = $WUs . $value; |
|
44 | + $WUs = $WUs.$value; |
|
45 | 45 | } |
46 | 46 | } |
47 | 47 | } |
48 | 48 | |
49 | 49 | // cancel WUs (if not in rops) |
50 | 50 | // |
51 | -if($WUs != "") { |
|
51 | +if ($WUs != "") { |
|
52 | 52 | echo "<!--- WUs to cancel: $WUs --->\n"; |
53 | 53 | if (!in_rops()) { |
54 | - cancel_wus_where("id IN (" . $WUs . ")"); |
|
54 | + cancel_wus_where("id IN (".$WUs.")"); |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 | |
58 | 58 | if ($back) { |
59 | 59 | if ($back == "errorwus") { |
60 | 60 | $args = "?refresh_cache=1"; |
61 | - if ($hide_canceled && $hide_canceled=="on") { |
|
61 | + if ($hide_canceled && $hide_canceled == "on") { |
|
62 | 62 | $args .= "&hide_canceled=on"; |
63 | 63 | } |
64 | - if ($hide_dlerr && $hide_dlerr=="on") { |
|
64 | + if ($hide_dlerr && $hide_dlerr == "on") { |
|
65 | 65 | $args .= "&hide_dlerr=on"; |
66 | 66 | } |
67 | 67 | if ($appid) { |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | echo "<p><a href=\"errorwus.php$args\">Return to All-error Workunits page</a> (refreshes the cache)</p>"; |
71 | 71 | } else if ($back == "cancelwus") { |
72 | 72 | if ($clause) { |
73 | - $clause=urlencode($clause); |
|
73 | + $clause = urlencode($clause); |
|
74 | 74 | echo "<p><a href=\"cancel_workunits.php?limit=$limit&uclause=$clause\">"; |
75 | 75 | echo "Cancel next (max $limit) Workunits</a></p>"; |
76 | 76 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | // and you want to rerun it on some jobs |
22 | 22 | // (e.g. to grant credit to instances previously marked as invalid) |
23 | 23 | |
24 | -ini_set ("memory_limit", "2G"); |
|
24 | +ini_set("memory_limit", "2G"); |
|
25 | 25 | |
26 | 26 | require_once("../inc/util_ops.inc"); |
27 | 27 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | $nresults = 0; |
53 | 53 | |
54 | 54 | $wus = BoincWorkunit::enum($clause); |
55 | - foreach($wus as $wu) { |
|
55 | + foreach ($wus as $wu) { |
|
56 | 56 | $results = BoincResult::enum("workunitid=$wu->id"); |
57 | 57 | $n = 0; |
58 | 58 | foreach ($results as $result) { |
@@ -25,11 +25,11 @@ discard block |
||
25 | 25 | |
26 | 26 | $bitset = ''; |
27 | 27 | |
28 | -for ($i=0;$i<S_NFLAGS;$i++) { |
|
28 | +for ($i = 0; $i < S_NFLAGS; $i++) { |
|
29 | 29 | if (post_int("role".$i, TRUE) == '1') { |
30 | - $bitset = str_pad($bitset, $i+1, '1'); |
|
30 | + $bitset = str_pad($bitset, $i + 1, '1'); |
|
31 | 31 | } else { |
32 | - $bitset = str_pad($bitset, $i+1, '0'); |
|
32 | + $bitset = str_pad($bitset, $i + 1, '0'); |
|
33 | 33 | } |
34 | 34 | } |
35 | 35 | if ($bitset == "0000000") $bitset = ''; |
@@ -50,5 +50,5 @@ discard block |
||
50 | 50 | |
51 | 51 | admin_page_tail(); |
52 | 52 | |
53 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
53 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
54 | 54 | ?> |
@@ -26,7 +26,7 @@ |
||
26 | 26 | $bitset = ''; |
27 | 27 | |
28 | 28 | for ($i=0;$i<S_NFLAGS;$i++) { |
29 | - if (post_int("role".$i, TRUE) == '1') { |
|
29 | + if (post_int("role".$i, true) == '1') { |
|
30 | 30 | $bitset = str_pad($bitset, $i+1, '1'); |
31 | 31 | } else { |
32 | 32 | $bitset = str_pad($bitset, $i+1, '0'); |
@@ -41,10 +41,10 @@ discard block |
||
41 | 41 | return $db->insert_id(); |
42 | 42 | } |
43 | 43 | |
44 | -function create_forum($category, $orderID, $title, $description, $is_dev_blog=0) { |
|
44 | +function create_forum($category, $orderID, $title, $description, $is_dev_blog = 0) { |
|
45 | 45 | $q = "(category, orderID, title, description, is_dev_blog) values ($category, $orderID, '$title', '$description', $is_dev_blog)"; |
46 | 46 | $db = BoincDB::get(); |
47 | - $result = $db->insert("forum",$q); |
|
47 | + $result = $db->insert("forum", $q); |
|
48 | 48 | if (!$result) { |
49 | 49 | $forum = BoincForum::lookup("category=$category and title='$title'"); |
50 | 50 | if ($forum) return $forum->id; |
@@ -72,5 +72,5 @@ discard block |
||
72 | 72 | create_forum($catid, 4, "Preferences", "Using preferences"); |
73 | 73 | create_forum($catid, 6, "Web site", "Issues involving this web site"); |
74 | 74 | |
75 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
75 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
76 | 76 | ?> |