@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | // TODO: convert to new DB interface |
41 | 41 | |
42 | -$alphabet = array('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','0','1','2','3','4','5','6','7','8','9'); |
|
42 | +$alphabet = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'); |
|
43 | 43 | |
44 | 44 | |
45 | 45 | // Builds a summary table of user profiles. |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | function show_user_table($members, $offset, $numToDisplay, $cols) { |
54 | 54 | start_table(); |
55 | 55 | |
56 | - $rows = ceil($numToDisplay / $cols); |
|
56 | + $rows = ceil($numToDisplay/$cols); |
|
57 | 57 | $count = $offset; |
58 | 58 | $numMembers = count($members); |
59 | 59 | |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | // Build an array of IDs of all users with pictures in their profiles. |
152 | 152 | $userIds = array(); |
153 | 153 | $numIds = 0; |
154 | - foreach($profiles as $profile) { |
|
154 | + foreach ($profiles as $profile) { |
|
155 | 155 | $user = BoincUser::lookup_id($profile->userid); |
156 | 156 | if (!$user) continue; // maybe we should delete the profile if user is non-existent anymore? |
157 | 157 | if ($user->name) { |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | // shuffle($userIds); |
172 | 172 | // } |
173 | 173 | |
174 | - $numPages = ceil(count($userIds)/($width * $height)); |
|
174 | + $numPages = ceil(count($userIds)/($width*$height)); |
|
175 | 175 | |
176 | 176 | // Make sure that a page is generated even when no profiles with pictures |
177 | 177 | // exist in order to avoid 404 errors from the profile_menu page. |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | $count = 0; |
186 | 186 | |
187 | 187 | for ($page = 1; $page <= $numPages; $page++) { |
188 | - $filename = PROFILE_PATH . "user_gallery_" . $page . ".html"; |
|
188 | + $filename = PROFILE_PATH."user_gallery_".$page.".html"; |
|
189 | 189 | open_output_buffer(); |
190 | 190 | |
191 | 191 | page_head("Profile gallery: page $page of $numPages", null, false, "../"); |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | // of the userids who belong to those countries. |
245 | 245 | // Format: array[country][index] = userid. |
246 | 246 | |
247 | - foreach($profiles as $profile) { |
|
247 | + foreach ($profiles as $profile) { |
|
248 | 248 | $user = BoincUser::lookup_id($profile->userid); |
249 | 249 | if (!$user) continue; // maybe we should delete the profile if user is non-existent anymore? |
250 | 250 | if ($user->country) { |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | // TODO: Define a constant for the desired number of rows per page. |
265 | 265 | |
266 | 266 | foreach ($countries as $country) { |
267 | - $baseFileName = "profile_country_" . get_legal_filename($country); |
|
267 | + $baseFileName = "profile_country_".get_legal_filename($country); |
|
268 | 268 | build_profile_pages( |
269 | 269 | $countryMembers[$country], |
270 | 270 | "User Profiles from $country", 5, 2, |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | $numIds = 0; |
291 | 291 | $members = array(); |
292 | 292 | |
293 | - foreach($profiles as $profile) { |
|
293 | + foreach ($profiles as $profile) { |
|
294 | 294 | $user = BoincUser::lookup_id($profile->userid); |
295 | 295 | if (!$user) continue; // maybe we should delete the profile if user is non-existent anymore? |
296 | 296 | if ($user->name) { |
@@ -335,11 +335,11 @@ discard block |
||
335 | 335 | function build_profile_pages( |
336 | 336 | $members, $title, $rowsPerPage, $colsPerPage, $dir, $base_filename |
337 | 337 | ) { |
338 | - $numPerPage = $rowsPerPage * $colsPerPage; |
|
339 | - $numPages = ceil(count($members) / $numPerPage); |
|
338 | + $numPerPage = $rowsPerPage*$colsPerPage; |
|
339 | + $numPages = ceil(count($members)/$numPerPage); |
|
340 | 340 | |
341 | 341 | for ($page = 1; $page <= $numPages; $page++) { |
342 | - $filename = $dir . $base_filename . "_" . $page . ".html"; |
|
342 | + $filename = $dir.$base_filename."_".$page.".html"; |
|
343 | 343 | open_output_buffer(); |
344 | 344 | |
345 | 345 | $pagetitle = $title.": Page $page of $numPages"; |
@@ -347,7 +347,7 @@ discard block |
||
347 | 347 | |
348 | 348 | echo "Last updated ", pretty_time_str(time()), "<p>\n"; |
349 | 349 | |
350 | - $offset = (($page-1) * $rowsPerPage * $colsPerPage); |
|
350 | + $offset = (($page - 1)*$rowsPerPage*$colsPerPage); |
|
351 | 351 | |
352 | 352 | show_user_table($members, $offset, $numPerPage, $colsPerPage); |
353 | 353 | |
@@ -364,11 +364,11 @@ discard block |
||
364 | 364 | print_debug_msg("Beginning to build country summary page..."); |
365 | 365 | $countries = array_keys($countryMembers); |
366 | 366 | |
367 | - $filename = PROFILE_PATH . "profile_country.html"; |
|
367 | + $filename = PROFILE_PATH."profile_country.html"; |
|
368 | 368 | open_output_buffer(); |
369 | 369 | |
370 | 370 | page_head("User Profiles by Country", null, null, "../"); |
371 | - echo "Last updated " . pretty_time_str(time()) . "<p>"; |
|
371 | + echo "Last updated ".pretty_time_str(time())."<p>"; |
|
372 | 372 | |
373 | 373 | start_table(); |
374 | 374 | row_heading_array(array("Country", "Profiles")); |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | |
414 | 414 | $caching = true; |
415 | 415 | |
416 | -if (@$argv[1]=="-d") $debug=true; |
|
416 | +if (@$argv[1] == "-d") $debug = true; |
|
417 | 417 | |
418 | 418 | build_country_pages(); |
419 | 419 | build_alpha_pages(); |
@@ -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"); |
@@ -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"); |
@@ -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 |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $post = array(); |
59 | 59 | $post["request"] = $xml; |
60 | 60 | if ($req->type == "upload") { |
61 | - $i=0; |
|
61 | + $i = 0; |
|
62 | 62 | foreach ($files as $f) { |
63 | 63 | if ($f['path'] != "") { |
64 | 64 | $post["file_$i"] = '@'.$f['path']; |
@@ -70,9 +70,9 @@ discard block |
||
70 | 70 | curl_setopt($ch, CURLOPT_POSTFIELDS, $post); |
71 | 71 | $reply = curl_exec($ch); |
72 | 72 | if ($reply) { |
73 | - print $reply . "\n"; |
|
73 | + print $reply."\n"; |
|
74 | 74 | } else { |
75 | - print curl_error($ch) . "\n"; |
|
75 | + print curl_error($ch)."\n"; |
|
76 | 76 | } |
77 | 77 | curl_close($ch); |
78 | 78 | } |
@@ -40,7 +40,7 @@ |
||
40 | 40 | } |
41 | 41 | if ($is_helpdesk) { |
42 | 42 | $diff = ($now - $thread->create_time)/86400; |
43 | - $activity = ($thread->sufferers+1)/$diff; |
|
43 | + $activity = ($thread->sufferers + 1)/$diff; |
|
44 | 44 | echo "thread $thread->id helpdesk $diff $activity\n"; |
45 | 45 | } else { |
46 | 46 | $posts = BoincPost::enum("thread=$thread->id"); |
@@ -51,7 +51,7 @@ |
||
51 | 51 | $n = 0; |
52 | 52 | while (1) { |
53 | 53 | $n++; |
54 | - if ($n % 1000 == 0) echo "$n\n"; |
|
54 | + if ($n%1000 == 0) echo "$n\n"; |
|
55 | 55 | $x = fgets($fres); |
56 | 56 | if (!$x) break; |
57 | 57 | list($reswuid, $resid) = sscanf($x, "%d %d"); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | $cli_only = true; |
22 | 22 | require_once("../inc/util_ops.inc"); |
23 | 23 | |
24 | -ini_set ("memory_limit", "8000M"); |
|
24 | +ini_set("memory_limit", "8000M"); |
|
25 | 25 | set_time_limit(0); |
26 | 26 | |
27 | 27 | error_reporting(E_ALL); |
@@ -68,21 +68,21 @@ discard block |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | function analyze_nvidia() { |
71 | - $hosts_total = 0; // number of hosts 6.2 or better |
|
72 | - $hosts_gpu = 0; // number with an nvidia gpu |
|
73 | - $rac_total =0; |
|
71 | + $hosts_total = 0; // number of hosts 6.2 or better |
|
72 | + $hosts_gpu = 0; // number with an nvidia gpu |
|
73 | + $rac_total = 0; |
|
74 | 74 | $rac_gpu = 0; |
75 | 75 | $linux_total = 0; |
76 | 76 | $linux_gpus = 0; |
77 | 77 | $windows_total = 0; |
78 | 78 | $windows_gpus = 0; |
79 | - $model = array(); // name -> count |
|
80 | - $ram = array(); // size -> count |
|
81 | - $driver = array(); // vers -> count |
|
82 | - $ngpus = array(); // ngpus -> count |
|
79 | + $model = array(); // name -> count |
|
80 | + $ram = array(); // size -> count |
|
81 | + $driver = array(); // vers -> count |
|
82 | + $ngpus = array(); // ngpus -> count |
|
83 | 83 | |
84 | 84 | $hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''"); |
85 | - foreach($hosts as $host) { |
|
85 | + foreach ($hosts as $host) { |
|
86 | 86 | $boinc_vers = parse_vers($host->serialnum); |
87 | 87 | if (!$boinc_vers) continue; |
88 | 88 | if ($boinc_vers->major < 6) continue; |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | echo "Avg RAC: GPU: $a non-GPU: $b\n"; |
129 | 129 | |
130 | 130 | arsort($model); |
131 | - foreach($model as $m=>$c) { |
|
131 | + foreach ($model as $m=>$c) { |
|
132 | 132 | echo "$m $c\n"; |
133 | 133 | } |
134 | 134 | print_r($ram); |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $nati = 0; |
143 | 143 | $nboth = 0; |
144 | 144 | $hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''"); |
145 | - foreach($hosts as $host) { |
|
145 | + foreach ($hosts as $host) { |
|
146 | 146 | $boinc_vers = parse_vers($host->serialnum); |
147 | 147 | if (!$boinc_vers) continue; |
148 | 148 | if ($boinc_vers->major < 6) continue; |