@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | // - daily total |
24 | 24 | // - breakdown by desc (number, credit) |
25 | 25 | |
26 | -ini_set ("memory_limit", "1G"); |
|
26 | +ini_set("memory_limit", "1G"); |
|
27 | 27 | set_time_limit(0); |
28 | 28 | |
29 | 29 | $cli_only = true; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | add_to_array($days, $day, $granted); |
77 | 77 | } |
78 | 78 | $i++; |
79 | - if ($i % 10000 == 0) echo "$i\n"; |
|
79 | + if ($i%10000 == 0) echo "$i\n"; |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | uasort($hosts, "compare"); |
@@ -63,24 +63,24 @@ discard block |
||
63 | 63 | // loop over all users |
64 | 64 | while ($user = _mysql_fetch_object($result)) { |
65 | 65 | |
66 | - $id=$user->id; |
|
67 | - $email_addr=$user->email_addr; |
|
68 | - $cpid=$user->cross_project_id; |
|
66 | + $id = $user->id; |
|
67 | + $email_addr = $user->email_addr; |
|
68 | + $cpid = $user->cross_project_id; |
|
69 | 69 | |
70 | - $new_email=strtolower(trim($email_addr)); |
|
70 | + $new_email = strtolower(trim($email_addr)); |
|
71 | 71 | |
72 | 72 | if (strcmp($email_addr, $new_email)) |
73 | 73 | echo "Problematic email address [$id] $email_addr becomes $new_email<br/>"; |
74 | 74 | |
75 | - if (!(strcmp($cpid,"0"))) { |
|
76 | - $newcpid=random_string(); |
|
75 | + if (!(strcmp($cpid, "0"))) { |
|
76 | + $newcpid = random_string(); |
|
77 | 77 | echo "Problematic CPID=0 for [$id] $email_addr gets CPID=$newcpid<br/>"; |
78 | 78 | } |
79 | 79 | else |
80 | - $newcpid=$cpid; |
|
80 | + $newcpid = $cpid; |
|
81 | 81 | |
82 | - if (strcmp($email_addr, $new_email) || strcmp($newcpid,$cpid)) { |
|
83 | - $update="update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'"; |
|
82 | + if (strcmp($email_addr, $new_email) || strcmp($newcpid, $cpid)) { |
|
83 | + $update = "update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'"; |
|
84 | 84 | if ($confirm != "yes") { |
85 | 85 | echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>"; |
86 | 86 | $update_needed = TRUE; |
@@ -99,5 +99,5 @@ discard block |
||
99 | 99 | _mysql_free_result($result); |
100 | 100 | |
101 | 101 | admin_page_tail(); |
102 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
102 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
103 | 103 | ?> |
@@ -100,7 +100,7 @@ |
||
100 | 100 | $f = fopen("temp.xml", "w"); |
101 | 101 | $teams = BoincTeam::enum(null); |
102 | 102 | fwrite($f, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<teams>\n"); |
103 | - foreach($teams as $team) { |
|
103 | + foreach ($teams as $team) { |
|
104 | 104 | handle_team($team, $f); |
105 | 105 | } |
106 | 106 | fwrite($f, "</teams>\n"); |
@@ -39,7 +39,7 @@ |
||
39 | 39 | $i = 0; |
40 | 40 | foreach ($badges as $badge) { |
41 | 41 | echo "<tr class=row$i valign=top><form action=badge_admin.php method=POST>"; |
42 | - $i = 1-$i; |
|
42 | + $i = 1 - $i; |
|
43 | 43 | echo "<td>$badge->id</td>\n"; |
44 | 44 | echo "<input type=hidden name=id value=$badge->id>"; |
45 | 45 | $nu = BoincBadgeUser::count("badge_id=$badge->id"); |
@@ -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 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | |
43 | 43 | // returns formatted data size |
44 | -function size_format($size){ |
|
44 | +function size_format($size) { |
|
45 | 45 | $retval = 0; |
46 | 46 | |
47 | 47 | $KB = 1024; |
@@ -52,13 +52,13 @@ discard block |
||
52 | 52 | if ($size < $KB) { |
53 | 53 | $retval = $size; |
54 | 54 | } elseif (($size > $KB) && ($size < $MB)) { |
55 | - $retval = sprintf("%.0fK", ($size / $KB)); |
|
56 | - } elseif ( ($size >= $MB) && ($size < $GB)) { |
|
57 | - $retval = sprintf("%.2fMB", ($size / $MB)); |
|
58 | - } elseif ( ($size >= $GB) && ($size < $TB)) { |
|
59 | - $retval = sprintf("%.2fGB", ($size / $GB)); |
|
60 | - } elseif ( $size >= $TB ) { |
|
61 | - $retval = sprintf("%.2fTB", ($size / $TB)); |
|
55 | + $retval = sprintf("%.0fK", ($size/$KB)); |
|
56 | + } elseif (($size >= $MB) && ($size < $GB)) { |
|
57 | + $retval = sprintf("%.2fMB", ($size/$MB)); |
|
58 | + } elseif (($size >= $GB) && ($size < $TB)) { |
|
59 | + $retval = sprintf("%.2fGB", ($size/$GB)); |
|
60 | + } elseif ($size >= $TB) { |
|
61 | + $retval = sprintf("%.2fTB", ($size/$TB)); |
|
62 | 62 | } |
63 | 63 | return $retval; |
64 | 64 | } |
@@ -85,20 +85,20 @@ discard block |
||
85 | 85 | |
86 | 86 | $i = 0; |
87 | 87 | $db_rec = array(); |
88 | - while($myarr = _mysql_fetch_assoc($result)) { |
|
88 | + while ($myarr = _mysql_fetch_assoc($result)) { |
|
89 | 89 | |
90 | 90 | // sum grand totals |
91 | - $total = $myarr["Data_length"] + $myarr["Index_length"]; |
|
91 | + $total = $myarr["Data_length"] + $myarr["Index_length"]; |
|
92 | 92 | $gindex += $myarr["Index_length"]; |
93 | - $gdata += $myarr["Data_length"]; |
|
93 | + $gdata += $myarr["Data_length"]; |
|
94 | 94 | $grows += $myarr["Rows"]; |
95 | 95 | $gtotal += $total; |
96 | 96 | |
97 | - $db_rec[$i] = new DB_REC ($myarr["Name"], $myarr["Data_length"], $myarr["Index_length"], $total, $myarr["Rows"], $myarr["Avg_row_length"] ); |
|
97 | + $db_rec[$i] = new DB_REC($myarr["Name"], $myarr["Data_length"], $myarr["Index_length"], $total, $myarr["Rows"], $myarr["Avg_row_length"]); |
|
98 | 98 | $i++; |
99 | 99 | } |
100 | 100 | |
101 | - $db_rec[$i] = new DB_REC ("Total", $gdata, $gindex, $gtotal, $grows, "" ); |
|
101 | + $db_rec[$i] = new DB_REC("Total", $gdata, $gindex, $gtotal, $grows, ""); |
|
102 | 102 | |
103 | 103 | return $db_rec; |
104 | 104 | } |
@@ -122,25 +122,25 @@ discard block |
||
122 | 122 | echo "<th>Avg. Size per Row</th>"; |
123 | 123 | echo "</tr>"; |
124 | 124 | |
125 | - for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
125 | + for ($i = 0; $i < sizeof($db_rec) - 1; $i++) { |
|
126 | 126 | echo "<tr>"; |
127 | - echo "<td align=left valign=top class=fieldname>" . $db_rec[$i]->name . "</td>"; |
|
128 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->data_size) . "</td>"; |
|
129 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->index_size) . "</td>"; |
|
130 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->total_size) . "</td>"; |
|
131 | - echo "<td align=left valign=top class=fieldname>" . number_format($db_rec[$i]->rows) . "</td>"; |
|
132 | - echo "<td align=left valign=top class=fieldname>" . size_format($db_rec[$i]->size_per_row) . "</td>"; |
|
127 | + echo "<td align=left valign=top class=fieldname>".$db_rec[$i]->name."</td>"; |
|
128 | + echo "<td align=left valign=top class=fieldname>".size_format($db_rec[$i]->data_size)."</td>"; |
|
129 | + echo "<td align=left valign=top class=fieldname>".size_format($db_rec[$i]->index_size)."</td>"; |
|
130 | + echo "<td align=left valign=top class=fieldname>".size_format($db_rec[$i]->total_size)."</td>"; |
|
131 | + echo "<td align=left valign=top class=fieldname>".number_format($db_rec[$i]->rows)."</td>"; |
|
132 | + echo "<td align=left valign=top class=fieldname>".size_format($db_rec[$i]->size_per_row)."</td>"; |
|
133 | 133 | echo "</tr>"; |
134 | 134 | } |
135 | 135 | |
136 | 136 | // Last record is just a summary |
137 | - $i = sizeof($db_rec)-1; |
|
137 | + $i = sizeof($db_rec) - 1; |
|
138 | 138 | echo "<tr>"; |
139 | - echo "<th align=left>" . $db_rec[$i]->name . "</th>"; |
|
140 | - echo "<th align=left>" . size_format($db_rec[$i]->data_size) . "</th>"; |
|
141 | - echo "<th align=left>" . size_format($db_rec[$i]->index_size) . "</th>"; |
|
142 | - echo "<th align=left>" . size_format($db_rec[$i]->total_size) . "</th>"; |
|
143 | - echo "<th align=left>" . number_format($db_rec[$i]->rows) . "</th>"; |
|
139 | + echo "<th align=left>".$db_rec[$i]->name."</th>"; |
|
140 | + echo "<th align=left>".size_format($db_rec[$i]->data_size)."</th>"; |
|
141 | + echo "<th align=left>".size_format($db_rec[$i]->index_size)."</th>"; |
|
142 | + echo "<th align=left>".size_format($db_rec[$i]->total_size)."</th>"; |
|
143 | + echo "<th align=left>".number_format($db_rec[$i]->rows)."</th>"; |
|
144 | 144 | echo "<th align=left></th>"; |
145 | 145 | echo "</tr>"; |
146 | 146 | |
@@ -156,27 +156,27 @@ discard block |
||
156 | 156 | $file_list = array(); |
157 | 157 | $file_sort = array(); |
158 | 158 | |
159 | - $sort = get_str("sort", true); |
|
159 | + $sort = get_str("sort", true); |
|
160 | 160 | $r = get_str("r", true); |
161 | 161 | |
162 | 162 | // check if its empty |
163 | - if(empty($sort)) $sort = "name"; |
|
163 | + if (empty($sort)) $sort = "name"; |
|
164 | 164 | // check for allowed keys |
165 | - if ((strcmp($sort, "name")!=0) && |
|
166 | - (strcmp($sort, "data_size")!=0) && |
|
167 | - (strcmp($sort, "index_size")!=0) && |
|
168 | - (strcmp($sort, "total_size")!=0) && |
|
169 | - (strcmp($sort, "rows")!=0) && |
|
170 | - (strcmp($sort, "size_per_row")!=0)) |
|
165 | + if ((strcmp($sort, "name") != 0) && |
|
166 | + (strcmp($sort, "data_size") != 0) && |
|
167 | + (strcmp($sort, "index_size") != 0) && |
|
168 | + (strcmp($sort, "total_size") != 0) && |
|
169 | + (strcmp($sort, "rows") != 0) && |
|
170 | + (strcmp($sort, "size_per_row") != 0)) |
|
171 | 171 | $sort = "name"; |
172 | - if(empty($r)) $r=0; |
|
172 | + if (empty($r)) $r = 0; |
|
173 | 173 | |
174 | - for ($i = 0; $i < sizeof($db_rec)-1; $i++){ |
|
174 | + for ($i = 0; $i < sizeof($db_rec) - 1; $i++) { |
|
175 | 175 | $file_details["name"] = $db_rec[$i]->name; |
176 | 176 | $file_details["data_size"] = $db_rec[$i]->data_size; |
177 | 177 | $file_details["index_size"] = $db_rec[$i]->index_size; |
178 | 178 | $file_details["total_size"] = $db_rec[$i]->total_size; |
179 | - $file_details["rows"] = $db_rec[$i]->rows; |
|
179 | + $file_details["rows"] = $db_rec[$i]->rows; |
|
180 | 180 | $file_details["size_per_row"] = $db_rec[$i]->size_per_row; |
181 | 181 | |
182 | 182 | $file_list[$i] = $file_details; |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | $file_sort[$i] = $key; |
185 | 185 | } |
186 | 186 | |
187 | - if($r)arsort($file_sort); |
|
187 | + if ($r)arsort($file_sort); |
|
188 | 188 | else asort($file_sort); |
189 | 189 | // -- end sort |
190 | 190 | |
@@ -194,36 +194,36 @@ discard block |
||
194 | 194 | echo "</tr>"; |
195 | 195 | |
196 | 196 | echo "<tr>"; |
197 | - echo "<th><a href='dbinfo.php?sort=name&r=" . (!$r) . "'>Table </a></th>"; |
|
198 | - echo "<th><a href='dbinfo.php?sort=data_size&r=" . (!$r) . "'>Data Size</a></th>"; |
|
199 | - echo "<th><a href='dbinfo.php?sort=index_size&r=" . (!$r) . "'>Index Size</a></th>"; |
|
200 | - echo "<th><a href='dbinfo.php?sort=total_size&r=" . (!$r) . "'>Total Size</a></th>"; |
|
201 | - echo "<th><a href='dbinfo.php?sort=rows&r=" . (!$r) . "'>Total Rows</a></th>"; |
|
202 | - echo "<th><a href='dbinfo.php?sort=size_per_row&r=" . (!$r) . "'>Avg. Size per Row</a></th>"; |
|
197 | + echo "<th><a href='dbinfo.php?sort=name&r=".(!$r)."'>Table </a></th>"; |
|
198 | + echo "<th><a href='dbinfo.php?sort=data_size&r=".(!$r)."'>Data Size</a></th>"; |
|
199 | + echo "<th><a href='dbinfo.php?sort=index_size&r=".(!$r)."'>Index Size</a></th>"; |
|
200 | + echo "<th><a href='dbinfo.php?sort=total_size&r=".(!$r)."'>Total Size</a></th>"; |
|
201 | + echo "<th><a href='dbinfo.php?sort=rows&r=".(!$r)."'>Total Rows</a></th>"; |
|
202 | + echo "<th><a href='dbinfo.php?sort=size_per_row&r=".(!$r)."'>Avg. Size per Row</a></th>"; |
|
203 | 203 | echo "</tr>"; |
204 | 204 | |
205 | 205 | $i = 0; |
206 | - while ( list($key, $value) = each($file_sort) ) { |
|
206 | + while (list($key, $value) = each($file_sort)) { |
|
207 | 207 | $value = $file_list[$key]; |
208 | 208 | echo "<tr>"; |
209 | - echo "<td align=left valign=top class=fieldname>" . $value["name"] . "</td>"; |
|
210 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["data_size"]) . "</td>"; |
|
211 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["index_size"]) . "</td>"; |
|
212 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["total_size"]) . "</td>"; |
|
213 | - echo "<td align=left valign=top class=fieldname>" . number_format($value["rows"]) . "</td>"; |
|
214 | - echo "<td align=left valign=top class=fieldname>" . size_format($value["size_per_row"]) . "</td>"; |
|
209 | + echo "<td align=left valign=top class=fieldname>".$value["name"]."</td>"; |
|
210 | + echo "<td align=left valign=top class=fieldname>".size_format($value["data_size"])."</td>"; |
|
211 | + echo "<td align=left valign=top class=fieldname>".size_format($value["index_size"])."</td>"; |
|
212 | + echo "<td align=left valign=top class=fieldname>".size_format($value["total_size"])."</td>"; |
|
213 | + echo "<td align=left valign=top class=fieldname>".number_format($value["rows"])."</td>"; |
|
214 | + echo "<td align=left valign=top class=fieldname>".size_format($value["size_per_row"])."</td>"; |
|
215 | 215 | echo "</tr>"; |
216 | 216 | $i++; |
217 | 217 | } |
218 | 218 | |
219 | 219 | // Last record is just a summary |
220 | - $i = sizeof($db_rec)-1; |
|
220 | + $i = sizeof($db_rec) - 1; |
|
221 | 221 | echo "<tr>"; |
222 | - echo "<th align=left>" . $db_rec[$i]->name . "</th>"; |
|
223 | - echo "<th align=left>" . size_format($db_rec[$i]->data_size) . "</th>"; |
|
224 | - echo "<th align=left>" . size_format($db_rec[$i]->index_size) . "</th>"; |
|
225 | - echo "<th align=left>" . size_format($db_rec[$i]->total_size) . "</th>"; |
|
226 | - echo "<th align=left>" . number_format($db_rec[$i]->rows) . "</th>"; |
|
222 | + echo "<th align=left>".$db_rec[$i]->name."</th>"; |
|
223 | + echo "<th align=left>".size_format($db_rec[$i]->data_size)."</th>"; |
|
224 | + echo "<th align=left>".size_format($db_rec[$i]->index_size)."</th>"; |
|
225 | + echo "<th align=left>".size_format($db_rec[$i]->total_size)."</th>"; |
|
226 | + echo "<th align=left>".number_format($db_rec[$i]->rows)."</th>"; |
|
227 | 227 | echo "<th align=left></th>"; |
228 | 228 | echo "</tr>"; |
229 | 229 |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $mid = 200; |
33 | 33 | $lo = $mid - $range; |
34 | 34 | $hi = $mid + $range; |
35 | - return imagecolorallocate($im, rand($lo,$hi), rand($lo,$hi), rand($lo,$hi)); |
|
35 | + return imagecolorallocate($im, rand($lo, $hi), rand($lo, $hi), rand($lo, $hi)); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | function add_ellipse($im, $case) { |
@@ -46,14 +46,14 @@ discard block |
||
46 | 46 | $cy = rand(-100, 400); |
47 | 47 | $w = rand(50, 100); |
48 | 48 | $h = rand(50, 100); |
49 | - imagefilledrectangle($im, $cx, $cy, $cx+$w, $cy+$h, rand_color($im, 50)); |
|
49 | + imagefilledrectangle($im, $cx, $cy, $cx + $w, $cy + $h, rand_color($im, 50)); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | |
53 | 53 | function make_image($case) { |
54 | 54 | $im = imagecreatetruecolor(600, 400); |
55 | 55 | imagefill($im, 0, 0, imagecolorallocate($im, 255, 255, 255)); |
56 | - for ($i=0; $i<400; $i++) { |
|
56 | + for ($i = 0; $i < 400; $i++) { |
|
57 | 57 | add_rect($im); |
58 | 58 | } |
59 | 59 | $im2 = imagecreatetruecolor(600, 400); |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | $nfiles = 0; |
86 | 86 | $dir = null; |
87 | 87 | $ellipse_frac = 0.5; |
88 | -for ($i=1; $i<$argc; $i++) { |
|
88 | +for ($i = 1; $i < $argc; $i++) { |
|
89 | 89 | if ($argv[$i] == '--nfiles') $nfiles = $argv[++$i]; |
90 | 90 | elseif ($argv[$i] == '--dir') $dir = $argv[++$i]; |
91 | 91 | elseif ($argv[$i] == '--ellipse_frac') $ellipse_frac = $argv[++$i]; |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | exit("$dir is not a directory\n"); |
100 | 100 | } |
101 | 101 | |
102 | -for ($i=0; $i<$nfiles; $i++) { |
|
102 | +for ($i = 0; $i < $nfiles; $i++) { |
|
103 | 103 | $path = "$dir/$i.png"; |
104 | 104 | $anspath = "$dir/$i.ans"; |
105 | 105 | $case = make_test_case($ellipse_frac); |
@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | $db_revision = 0; |
23 | 23 | if (file_exists("../../db_revision")) { |
24 | - $db_revision = (int) file_get_contents("../../db_revision"); |
|
24 | + $db_revision = (int)file_get_contents("../../db_revision"); |
|
25 | 25 | } |
26 | 26 | require_once("db_update.php"); |
27 | 27 |
@@ -42,15 +42,15 @@ |
||
42 | 42 | $start_id = 0; //Set this to something else if you like |
43 | 43 | $profiles = _mysql_query("select * from profile where userid>$start_id order by userid"); |
44 | 44 | echo _mysql_error(); |
45 | - $i=0; |
|
46 | - while ($profile = _mysql_fetch_object($profiles)){ |
|
45 | + $i = 0; |
|
46 | + while ($profile = _mysql_fetch_object($profiles)) { |
|
47 | 47 | $i++; |
48 | 48 | if ($i%100 == 0) { //For every 100 profiles |
49 | - echo $profile->userid.". "; flush(); // print out where we are |
|
49 | + echo $profile->userid.". "; flush(); // print out where we are |
|
50 | 50 | //usleep(200000); |
51 | 51 | } |
52 | 52 | |
53 | - if ($profile->userid > $start_id){ |
|
53 | + if ($profile->userid > $start_id) { |
|
54 | 54 | fix_profile($profile); |
55 | 55 | } |
56 | 56 | } |