@@ -42,15 +42,15 @@ |
||
42 | 42 | $start_id = 0; //Set this to something else if you like |
43 | 43 | $forum_preferencess = _mysql_query("select * from forum_preferences where userid>$start_id order by userid"); |
44 | 44 | echo _mysql_error(); |
45 | - $i=0; |
|
46 | - while ($forum_preferences = _mysql_fetch_object($forum_preferencess)){ |
|
45 | + $i = 0; |
|
46 | + while ($forum_preferences = _mysql_fetch_object($forum_preferencess)) { |
|
47 | 47 | $i++; |
48 | 48 | if ($i%100 == 0) { //For every 100 forum_preferencess |
49 | - echo $forum_preferences->userid.". "; flush(); // print out where we are |
|
49 | + echo $forum_preferences->userid.". "; flush(); // print out where we are |
|
50 | 50 | //usleep(200000); |
51 | 51 | } |
52 | 52 | |
53 | - if ($forum_preferences->userid > $start_id){ |
|
53 | + if ($forum_preferences->userid > $start_id) { |
|
54 | 54 | fix_forum_preferences($forum_preferences); |
55 | 55 | } |
56 | 56 | } |
@@ -26,13 +26,13 @@ discard block |
||
26 | 26 | |
27 | 27 | |
28 | 28 | // Create the graph. These two calls are always required |
29 | - $graph = new Graph(350,250,"auto"); |
|
29 | + $graph = new Graph(350, 250, "auto"); |
|
30 | 30 | //$graph->SetScale("lin"); |
31 | 31 | //$graph->SetScale("textlin"); |
32 | 32 | $graph->SetScale("loglin"); |
33 | 33 | |
34 | 34 | // Create the linear plot |
35 | - $lineplot=new BarPlot($arr, $xarr); |
|
35 | + $lineplot = new BarPlot($arr, $xarr); |
|
36 | 36 | $lineplot->SetColor("blue"); |
37 | 37 | |
38 | 38 | // Add the plot to the graph |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | function show_text($xarr, $yarr) { |
46 | 46 | $n = sizeof($xarr); |
47 | - for ($i=0; $i<$n; $i++) { |
|
47 | + for ($i = 0; $i < $n; $i++) { |
|
48 | 48 | echo "<br>$xarr[$i] $yarr[$i]\n"; |
49 | 49 | } |
50 | 50 | } |
@@ -90,9 +90,9 @@ discard block |
||
90 | 90 | if ($ind > $maxind) $maxind = $ind; |
91 | 91 | } |
92 | 92 | $xarr = array(); |
93 | - for ($i=0; $i<=$maxind; $i++) { |
|
93 | + for ($i = 0; $i <= $maxind; $i++) { |
|
94 | 94 | $xarr[$i] = $i; |
95 | - if (is_null($yarr[$i])) $yarr[$i]=0; |
|
95 | + if (is_null($yarr[$i])) $yarr[$i] = 0; |
|
96 | 96 | } |
97 | 97 | if ($show_text) { |
98 | 98 | show_text($xarr, $yarr); |
@@ -44,15 +44,15 @@ |
||
44 | 44 | $start_id = 0; //Set this to something else if you like |
45 | 45 | $posts = _mysql_query("select * from post where id>$start_id order by id"); |
46 | 46 | echo _mysql_error(); |
47 | - $i=0; |
|
48 | - while ($post = _mysql_fetch_object($posts)){ |
|
47 | + $i = 0; |
|
48 | + while ($post = _mysql_fetch_object($posts)) { |
|
49 | 49 | $i++; |
50 | 50 | if ($i%100 == 0) { //For every 100 posts |
51 | - echo $post->id.". "; flush(); // print out where we are |
|
51 | + echo $post->id.". "; flush(); // print out where we are |
|
52 | 52 | //usleep(200000); |
53 | 53 | } |
54 | 54 | |
55 | - if ($post->id > $start_id){ |
|
55 | + if ($post->id > $start_id) { |
|
56 | 56 | fix_post($post); |
57 | 57 | } |
58 | 58 | } |
@@ -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 | ?> |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | "deprecated?", |
73 | 73 | "" |
74 | 74 | ); |
75 | - $clause = $all?"true":"deprecated = 0"; |
|
75 | + $clause = $all ? "true" : "deprecated = 0"; |
|
76 | 76 | $avs = BoincAppVersion::enum( |
77 | 77 | "$clause order by appid, platformid, plan_class, version_num" |
78 | 78 | ); |
@@ -80,20 +80,20 @@ discard block |
||
80 | 80 | foreach ($avs as $av) { |
81 | 81 | // grey out deprecated versions |
82 | 82 | // |
83 | - $f1=$f2=''; |
|
83 | + $f1 = $f2 = ''; |
|
84 | 84 | if ($av->deprecated == 1) { |
85 | - $f1="<font color='GREY'>"; |
|
86 | - $f2="</font>"; |
|
85 | + $f1 = "<font color='GREY'>"; |
|
86 | + $f2 = "</font>"; |
|
87 | 87 | } |
88 | 88 | |
89 | - $all_value = $all?1:0; |
|
89 | + $all_value = $all ? 1 : 0; |
|
90 | 90 | $app = $apps[$av->appid]; |
91 | 91 | // ignore app versions of deprecated apps by default |
92 | 92 | if ($all_value == 0 && $app->deprecated == 1) { |
93 | 93 | continue; |
94 | 94 | } |
95 | 95 | echo "<tr class=row$i><form action=manage_app_versions.php?all=$all_value#av_$av->id method=POST>\n"; |
96 | - $i = 1-$i; |
|
96 | + $i = 1 - $i; |
|
97 | 97 | echo "<input type=hidden name=id value=$av->id>"; |
98 | 98 | echo " <TD>$f1 <a id='av_$av->id' href=db_action.php?table=app_version&id=$av->id>$av->id</a> $f2</TD>\n"; |
99 | 99 | |
@@ -110,15 +110,15 @@ discard block |
||
110 | 110 | $v = $av->min_core_version; |
111 | 111 | echo " <TD><input type='text' size='4' name=min_core_version value='$v'></TD>\n"; |
112 | 112 | |
113 | - $v=$av->max_core_version; |
|
113 | + $v = $av->max_core_version; |
|
114 | 114 | echo " <TD><input type='text' size='4' name=max_core_version value='$v'></TD>\n"; |
115 | 115 | |
116 | - $v=''; |
|
117 | - if ($av->beta) $v=' CHECKED '; |
|
116 | + $v = ''; |
|
117 | + if ($av->beta) $v = ' CHECKED '; |
|
118 | 118 | echo " <TD> <input name=beta type='checkbox' $v></TD>\n"; |
119 | 119 | |
120 | - $v=''; |
|
121 | - if ($av->deprecated) $v=' CHECKED '; |
|
120 | + $v = ''; |
|
121 | + if ($av->deprecated) $v = ' CHECKED '; |
|
122 | 122 | echo " <TD> <input name=deprecated type='checkbox' $v></TD>\n"; |
123 | 123 | |
124 | 124 | if (!in_rops()) { |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | row1("Current special users", '9'); |
28 | 28 | |
29 | 29 | echo "<tr><td>User</td>"; |
30 | -for ($i=0; $i<S_NFLAGS; $i++) { |
|
31 | - echo "<td width=\"15\">" . $special_user_bitfield[$i] . "</td>\n"; |
|
30 | +for ($i = 0; $i < S_NFLAGS; $i++) { |
|
31 | + echo "<td width=\"15\">".$special_user_bitfield[$i]."</td>\n"; |
|
32 | 32 | } |
33 | 33 | echo "</tr>"; |
34 | 34 | |
@@ -37,13 +37,13 @@ discard block |
||
37 | 37 | FROM forum_preferences as prefs, user |
38 | 38 | WHERE CONVERT(special_user, DECIMAL) > 0 and prefs.userid=user.id" |
39 | 39 | ); |
40 | -for ($i=1; $i<=_mysql_num_rows($result); $i++){ |
|
40 | +for ($i = 1; $i <= _mysql_num_rows($result); $i++) { |
|
41 | 41 | $foo = _mysql_fetch_object($result); |
42 | 42 | echo "<form action=\"manage_special_users_action.php\" method=\"POST\">\n"; |
43 | 43 | echo "<input type=\"hidden\" name=\"userid\" value=\"$foo->userid\" |
44 | 44 | <tr><td>$foo->name ($foo->id)</td> |
45 | 45 | "; |
46 | - for ($j=0; $j<S_NFLAGS; $j++) { |
|
46 | + for ($j = 0; $j < S_NFLAGS; $j++) { |
|
47 | 47 | $bit = substr($foo->special_user, $j, 1); |
48 | 48 | echo "<td><input type=\"checkbox\" name=\"role".$j."\" value=\"1\""; |
49 | 49 | if ($bit == 1) { |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | echo "<tr><form action=\"manage_special_users_action.php\" method=\"POST\">\n"; |
59 | 59 | echo "<td>Add UserID:<input type=\"text\" name=\"userid\" size=\"6\"></td>"; |
60 | 60 | |
61 | -for ($j=0; $j<S_NFLAGS; $j++) { |
|
61 | +for ($j = 0; $j < S_NFLAGS; $j++) { |
|
62 | 62 | echo "<td><input type=\"checkbox\" name=\"role".$j."\" value=\"1\""; |
63 | 63 | echo "></td>\n"; |
64 | 64 | } |
@@ -69,5 +69,5 @@ discard block |
||
69 | 69 | |
70 | 70 | admin_page_tail(); |
71 | 71 | |
72 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
72 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
73 | 73 | ?> |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | |
35 | 35 | start_table(); |
36 | 36 | |
37 | -switch($table){ |
|
37 | +switch ($table) { |
|
38 | 38 | case "platform": |
39 | 39 | break; |
40 | 40 | case "app": |
@@ -102,5 +102,5 @@ discard block |
||
102 | 102 | print_describe_table($table, 4); |
103 | 103 | |
104 | 104 | admin_page_tail(); |
105 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
105 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
106 | 106 | ?> |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | } |
42 | 42 | |
43 | 43 | function find_oldest() { |
44 | - $result=_mysql_query("select name,create_time from result where server_state=2 order by create_time limit 1"); |
|
44 | + $result = _mysql_query("select name,create_time from result where server_state=2 order by create_time limit 1"); |
|
45 | 45 | $x = _mysql_fetch_object($result); |
46 | 46 | return $x->create_time; |
47 | 47 | } |
@@ -88,25 +88,25 @@ discard block |
||
88 | 88 | |
89 | 89 | |
90 | 90 | |
91 | -$dbrc = db_init(1); // 1=soft, remember that DB might be down |
|
91 | +$dbrc = db_init(1); // 1=soft, remember that DB might be down |
|
92 | 92 | |
93 | -page_head(PROJECT . " - Server Status"); |
|
93 | +page_head(PROJECT." - Server Status"); |
|
94 | 94 | |
95 | 95 | |
96 | 96 | // Date stamp |
97 | 97 | |
98 | 98 | |
99 | -echo "<br ALIGN=RIGHT> ".PROJECT. " server status as of ". |
|
100 | - date("g:i A T"). " on ". date("l, j F Y ") . |
|
99 | +echo "<br ALIGN=RIGHT> ".PROJECT." server status as of ". |
|
100 | + date("g:i A T")." on ".date("l, j F Y "). |
|
101 | 101 | " (updated every $Nmin minutes).\n"; |
102 | 102 | |
103 | -$proc_uptime=exec("cat /proc/uptime | cut -d\" \" -f-1"); |
|
103 | +$proc_uptime = exec("cat /proc/uptime | cut -d\" \" -f-1"); |
|
104 | 104 | $days = (int)($proc_uptime/86400); |
105 | -$hours=(int)($proc_uptime/3600); |
|
106 | -$hours=$hours % 24; |
|
107 | -$minutes=(int)($proc_uptime/60); |
|
108 | -$minutes=$minutes % 60; |
|
109 | -echo "<br ALIGN=RIGHT>The ".PROJECT. " main server has been continuously up for ". "$days"." days "."$hours"." hours "."$minutes"." minutes.\n<P>"; |
|
105 | +$hours = (int)($proc_uptime/3600); |
|
106 | +$hours = $hours%24; |
|
107 | +$minutes = (int)($proc_uptime/60); |
|
108 | +$minutes = $minutes%60; |
|
109 | +echo "<br ALIGN=RIGHT>The ".PROJECT." main server has been continuously up for "."$days"." days "."$hours"." hours "."$minutes"." minutes.\n<P>"; |
|
110 | 110 | |
111 | 111 | // tables side by side |
112 | 112 | echo "<TABLE><TR><TD align=center> \n"; |
@@ -152,11 +152,11 @@ discard block |
||
152 | 152 | if ($dbrc) { |
153 | 153 | echo "The database server is not accessable"; |
154 | 154 | } else { |
155 | - $now=time(0); |
|
156 | - $s_day=24*3600; |
|
157 | - $d_ago=$now-$s_day; |
|
158 | - $s_week=7*$s_day; |
|
159 | - $w_ago=$now-$s_week; |
|
155 | + $now = time(0); |
|
156 | + $s_day = 24*3600; |
|
157 | + $d_ago = $now - $s_day; |
|
158 | + $s_week = 7*$s_day; |
|
159 | + $w_ago = $now - $s_week; |
|
160 | 160 | |
161 | 161 | echo " |
162 | 162 | <table border=2 cellpadding=6> |
@@ -276,12 +276,12 @@ discard block |
||
276 | 276 | <tr><td>invalid</td><td>".number_format($n)."</td></tr> |
277 | 277 | "; |
278 | 278 | |
279 | - $n = time(0)-find_oldest(); |
|
279 | + $n = time(0) - find_oldest(); |
|
280 | 280 | $days = (int)($n/86400); |
281 | - $hours=(int)($n/3600); |
|
282 | - $hours=$hours % 24; |
|
283 | - $minutes=(int)($n/60); |
|
284 | - $minutes=$minutes % 60; |
|
281 | + $hours = (int)($n/3600); |
|
282 | + $hours = $hours%24; |
|
283 | + $minutes = (int)($n/60); |
|
284 | + $minutes = $minutes%60; |
|
285 | 285 | echo " |
286 | 286 | <tr><td>Oldest Unsent Result</td><td>".$days." d ".$hours." h ".$minutes." m</td></tr> |
287 | 287 | "; |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | |
298 | 298 | // Display cgi-bin restriction status |
299 | 299 | |
300 | -if ( file_exists("../../cgi-bin/.htaccess") ) { |
|
300 | +if (file_exists("../../cgi-bin/.htaccess")) { |
|
301 | 301 | echo "<P><font color=RED> |
302 | 302 | <b>The ".PROJECT." scheduler is currently restricted |
303 | 303 | to uwm.edu and a few other domains. |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | do_query("alter table host add max_results_day integer not null"); |
277 | 277 | } |
278 | 278 | |
279 | -function update_4_20_2005(){ |
|
279 | +function update_4_20_2005() { |
|
280 | 280 | do_query("ALTER TABLE `thread` ADD `sticky` TINYINT UNSIGNED DEFAULT '0' NOT NULL"); |
281 | 281 | do_query("ALTER TABLE `forum` ADD `post_min_total_credit` INT NOT NULL AFTER `posts`"); |
282 | 282 | do_query("ALTER TABLE `forum` ADD `post_min_expavg_credit` INT NOT NULL AFTER `posts`"); |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | do_query("ALTER TABLE `forum_preferences` ADD `last_post` INT( 14 ) UNSIGNED NOT NULL AFTER `posts`"); |
287 | 287 | } |
288 | 288 | |
289 | -function update_4_30_2005(){ |
|
289 | +function update_4_30_2005() { |
|
290 | 290 | do_query("ALTER TABLE `forum_preferences` ADD `ignore_sticky_posts` TINYINT( 1 ) UNSIGNED NOT NULL"); |
291 | 291 | } |
292 | 292 | |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | do_query("update user set country='Macedonia' where country='Macedonia, The Former Yugoslav Republic of'"); |
314 | 314 | } |
315 | 315 | |
316 | -function update_11_24_2005(){ |
|
316 | +function update_11_24_2005() { |
|
317 | 317 | do_query("ALTER TABLE `forum_preferences` ADD `minimum_wrap_postcount` INT DEFAULT '100' NOT NULL AFTER `high_rating_threshold` , |
318 | 318 | ADD `display_wrap_postcount` INT DEFAULT '75' NOT NULL AFTER `minimum_wrap_postcount`"); |
319 | 319 | } |
@@ -618,7 +618,7 @@ discard block |
||
618 | 618 | "); |
619 | 619 | } |
620 | 620 | |
621 | -function update_10_05_2008(){ |
|
621 | +function update_10_05_2008() { |
|
622 | 622 | do_query("alter table forum_preferences add highlight_special tinyint default '1' not null"); |
623 | 623 | } |
624 | 624 | |
@@ -1244,7 +1244,7 @@ discard block |
||
1244 | 1244 | // This used to be the Subversion version#, |
1245 | 1245 | // but with Git we just use sequential integers |
1246 | 1246 | // |
1247 | -$db_updates = array ( |
|
1247 | +$db_updates = array( |
|
1248 | 1248 | array(18490, "update_6_16_2009"), |
1249 | 1249 | array(19001, "update_9_3_2009"), |
1250 | 1250 | array(20807, "update_3_5_2010"), |