Completed
Push — master ( 51fd7c...f6831d )
by Kevin
17:07 queued 07:24
created
html/ops/bossa_example_make_jobs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 }
64 64
 
65 65
 $calibration = false;
66
-for ($i=1; $i<$argc; $i++) {
66
+for ($i = 1; $i < $argc; $i++) {
67 67
     if ($argv[$i] == '--app_name') $app_name = $argv[++$i];
68 68
     elseif ($argv[$i] == '--dir') $dir = $argv[++$i];
69 69
     elseif ($argv[$i] == '--calibration') $calibration = true;
Please login to merge, or discard this patch.
html/ops/eah_server_status.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,9 +41,9 @@
 block discarded – undo
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");
45
-   $x = _mysql_fetch_object($result);
46
-   return $x->create_time;
44
+    $result=_mysql_query("select name,create_time from result where server_state=2 order by create_time limit 1");
45
+    $x = _mysql_fetch_object($result);
46
+    return $x->create_time;
47 47
 }
48 48
 
49 49
 function daemon_status($host, $pidname) {
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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.
Please login to merge, or discard this patch.
html/ops/error_summary.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 $nresults_per_code = get_int('nresults_per_code', true);
28 28
 if (!$nresults_per_code) $nresults_per_code = 10;
29 29
 
30
-function compare ($x, $y) {
30
+function compare($x, $y) {
31 31
     return $x->count < $y->count;
32 32
 }
33 33
 
Please login to merge, or discard this patch.
html/ops/opsw.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     db_init();
44 44
 
45
-   wap_begin();
45
+    wap_begin();
46 46
 
47 47
     // keep a 'running tab' in wapstr in case exceeds 1K WAP limit
48 48
 
@@ -56,15 +56,15 @@  discard block
 block discarded – undo
56 56
     //$wapstr .= "#Activ: " . getSingleQuery("select count(distinct hostid) from cpdnexpt.trickle "
57 57
     //   . "where trickledate>=" . sprintf("%d", mktime() - (3600*24*7))) . "<br/>";
58 58
 
59
-   // finally get last 5 trickles for everyone
60
-   //$wapstr .= show_trickles("a", 0, 5, 1);
59
+    // finally get last 5 trickles for everyone
60
+    //$wapstr .= show_trickles("a", 0, 5, 1);
61 61
 
62
-   // limit wap output to 1KB
63
-   if (strlen($wapstr)>1024)
64
-       echo substr($wapstr,0,1024);
65
-   else
66
-       echo $wapstr;
62
+    // limit wap output to 1KB
63
+    if (strlen($wapstr)>1024)
64
+        echo substr($wapstr,0,1024);
65
+    else
66
+        echo $wapstr;
67 67
 
68
-   wap_end();
68
+    wap_end();
69 69
 
70 70
 ?>
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     // show the home page of app user from envvar
36 36
 
37 37
     $valid = $_GET['id'];
38
-    if (!$valid || $valid!="whatever-validation-key-you-want") {
38
+    if (!$valid || $valid != "whatever-validation-key-you-want") {
39 39
         echo "User id (t.php?id=###) missing!";
40 40
         exit(); // can't do much without a userid!
41 41
     }
@@ -46,12 +46,12 @@  discard block
 block discarded – undo
46 46
 
47 47
     // keep a 'running tab' in wapstr in case exceeds 1K WAP limit
48 48
 
49
-    $wapstr = PROJECT . "<br/>Status Info on<br/>" . wap_timestamp() . "<br/><br/>";
49
+    $wapstr = PROJECT."<br/>Status Info on<br/>".wap_timestamp()."<br/><br/>";
50 50
 
51
-    $wapstr .= "#Users: " . getSingleQuery("select count(*) from user") . "<br/>";
52
-    $wapstr .= "#Hosts: " . getSingleQuery("select count(*) from host") . "<br/>";
53
-    $wapstr .= "#ModYr: " . sprintf("%ld", getSingleQuery("select sum(total_credit)/(.007*17280.0) from host")) . "<br/>";
54
-    $wapstr .= "#Cobbl: " . sprintf("%ld", getSingleQuery("select sum(total_credit) from host")) . "<br/>";
51
+    $wapstr .= "#Users: ".getSingleQuery("select count(*) from user")."<br/>";
52
+    $wapstr .= "#Hosts: ".getSingleQuery("select count(*) from host")."<br/>";
53
+    $wapstr .= "#ModYr: ".sprintf("%ld", getSingleQuery("select sum(total_credit)/(.007*17280.0) from host"))."<br/>";
54
+    $wapstr .= "#Cobbl: ".sprintf("%ld", getSingleQuery("select sum(total_credit) from host"))."<br/>";
55 55
     // I consider a host active if it's trickled in the last week
56 56
     //$wapstr .= "#Activ: " . getSingleQuery("select count(distinct hostid) from cpdnexpt.trickle "
57 57
     //   . "where trickledate>=" . sprintf("%d", mktime() - (3600*24*7))) . "<br/>";
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
    //$wapstr .= show_trickles("a", 0, 5, 1);
61 61
 
62 62
    // limit wap output to 1KB
63
-   if (strlen($wapstr)>1024)
64
-       echo substr($wapstr,0,1024);
63
+   if (strlen($wapstr) > 1024)
64
+       echo substr($wapstr, 0, 1024);
65 65
    else
66 66
        echo $wapstr;
67 67
 
Please login to merge, or discard this patch.
html/ops/size_census.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -37,12 +37,12 @@  discard block
 block discarded – undo
37 37
     // joined to the host
38 38
 
39 39
     $db = BoincDb::get();
40
-    $query = "select et_avg, host.on_frac, host.active_frac, host.gpu_active_frac, app_version.plan_class " .
41
-        " from DBNAME.host_app_version, DBNAME.host, DBNAME.app_version " .
42
-        " where host_app_version.app_version_id = app_version.id " .
43
-        " and app_version.appid = $app->id " .
44
-        " and et_n > 0  and et_avg > 0 " .
45
-        " and host.id = host_app_version.host_id " .
40
+    $query = "select et_avg, host.on_frac, host.active_frac, host.gpu_active_frac, app_version.plan_class ".
41
+        " from DBNAME.host_app_version, DBNAME.host, DBNAME.app_version ".
42
+        " where host_app_version.app_version_id = app_version.id ".
43
+        " and app_version.appid = $app->id ".
44
+        " and et_n > 0  and et_avg > 0 ".
45
+        " and host.id = host_app_version.host_id ".
46 46
         " and host.expavg_credit > 10";
47 47
     $result = $db->do_query($query);
48 48
     $a = array();
@@ -55,15 +55,15 @@  discard block
 block discarded – undo
55 55
                 $av *= $x->active_frac;
56 56
             }
57 57
         } else {
58
-            $av = $x->on_frac * $x->active_frac;
58
+            $av = $x->on_frac*$x->active_frac;
59 59
         }
60
-        $a[] = (1/$x->et_avg) * $av;
60
+        $a[] = (1/$x->et_avg)*$av;
61 61
     }
62 62
     _mysql_free_result($result);
63 63
     sort($a);
64 64
     $n = count($a);
65 65
     $f = fopen("../../size_census_".$app->name, "w");
66
-    for ($i=1; $i<$app->n_size_classes; $i++) {
66
+    for ($i = 1; $i < $app->n_size_classes; $i++) {
67 67
         $k = (int)(($i*$n)/$app->n_size_classes);
68 68
         fprintf($f, "%e\n", $a[$k]);
69 69
     }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
 echo "Starting: ", time_str(time()), "\n";
74 74
 
75
-if ($argc == 2 && $argv[1]=="--all_apps") {
75
+if ($argc == 2 && $argv[1] == "--all_apps") {
76 76
     $apps = BoincApp::enum("deprecated=0");
77 77
 } else {
78 78
     $apps = BoincApp::enum("deprecated=0 and n_size_classes>1");
Please login to merge, or discard this patch.
html/ops/list_new_users.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 \***********************************************************************/
28 28
 
29 29
 $limit = get_int('limit', true);
30
-if (! $limit > 0 ) $limit = 30;
30
+if (!$limit > 0) $limit = 30;
31 31
 
32 32
 
33 33
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 echo "<input class=\"btn btn-default\" type=\"submit\" value=\"Display\">\n";
49 49
 echo "</form>\n";
50 50
 
51
-$query="SELECT * FROM user ORDER BY create_time DESC LIMIT $limit";
51
+$query = "SELECT * FROM user ORDER BY create_time DESC LIMIT $limit";
52 52
 $result = _mysql_query($query);
53 53
 if (_mysql_num_rows($result) < 1) {
54 54
     echo "There are no new users.";
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
     $joined = time_str($row->create_time);
67 67
     $email_validated = $row->email_validated;
68 68
     
69
-    $team_name="";
70
-    if($row->teamid > 0){
69
+    $team_name = "";
70
+    if ($row->teamid > 0) {
71 71
         $team = BoincTeam::lookup_id($row->teamid);
72 72
         $team_name = $team->name;
73 73
     }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     if ($special_bits != "0") {
81 81
         for ($i = 0; $i < 7; $i++) {
82 82
             $bit = substr($special_bits, $i, 1);
83
-            if ($bit == '1'){
83
+            if ($bit == '1') {
84 84
                 if (!empty($roles)) {
85 85
                     $roles .= ", ";
86 86
                 }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     // Banished?
96 96
     if (!empty($user->banished_until)) {
97 97
         $dt = $user->banished_until - time();
98
-        if( $dt > 0 ) {
98
+        if ($dt > 0) {
99 99
             $x = "<span style=\"color: #ff0000\">Currently banished</span>";
100 100
         }
101 101
         else {
@@ -117,5 +117,5 @@  discard block
 block discarded – undo
117 117
 
118 118
 admin_page_tail();
119 119
 
120
-$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit
120
+$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit
121 121
 ?>
Please login to merge, or discard this patch.
Braces   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 start_table();
59 59
 table_header("ID", "Name", "Email", "Team", "Country", "Joined");
60 60
 
61
-while ($row = _mysql_fetch_object($result)) { 
61
+while ($row = _mysql_fetch_object($result)) {
62 62
     $id = $row->id;
63 63
     $name = $row->name;
64 64
     $email = $row->email_addr;
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     $email_validated = $row->email_validated;
68 68
     
69 69
     $team_name="";
70
-    if($row->teamid > 0){
70
+    if($row->teamid > 0) {
71 71
         $team = BoincTeam::lookup_id($row->teamid);
72 72
         $team_name = $team->name;
73 73
     }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     if ($special_bits != "0") {
81 81
         for ($i = 0; $i < 7; $i++) {
82 82
             $bit = substr($special_bits, $i, 1);
83
-            if ($bit == '1'){
83
+            if ($bit == '1') {
84 84
                 if (!empty($roles)) {
85 85
                     $roles .= ", ";
86 86
                 }
@@ -97,8 +97,7 @@  discard block
 block discarded – undo
97 97
         $dt = $user->banished_until - time();
98 98
         if( $dt > 0 ) {
99 99
             $x = "<span style=\"color: #ff0000\">Currently banished</span>";
100
-        }
101
-        else {
100
+        } else {
102 101
             $x = "<span style=\"color: #ff9900\">Previously banished</span>";
103 102
         }
104 103
         $roles .= $x;
Please login to merge, or discard this patch.
html/ops/app_select_edit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
     $dom->preserveWhiteSpace = false;
101 101
     $dom->formatOutput = true;
102 102
     $dom->loadXML($prefs->asXML());
103
-    return $dom->saveXML($dom->documentElement) . "\n";
103
+    return $dom->saveXML($dom->documentElement)."\n";
104 104
 }
105 105
 
106 106
 function update_user($user, $app_id) {
Please login to merge, or discard this patch.
html/ops/repair_forums.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
 function cleanup_orphan_threads() {
36 36
     $threads = BoincThread::enum("");
37
-    foreach($threads as $thread) {
37
+    foreach ($threads as $thread) {
38 38
         $forum = BoincForum::lookup_id($thread->forum);
39 39
         if (!$forum) {
40 40
             cleanup_thread($thread);
Please login to merge, or discard this patch.
html/ops/mass_email.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 
85 85
     $result = _mysql_query($query);
86 86
     while ($user = _mysql_fetch_object($result)) {
87
-    	// TODO: might want to also replace TOTAL_CREDIT, RAC, and similar.
87
+        // TODO: might want to also replace TOTAL_CREDIT, RAC, and similar.
88 88
         $body_to_send = str_replace("USERNAME", $user->name, $body);
89 89
         $body_to_send .= "\n\nTo opt out of future emails from ".PROJECT.", please edit your project preferences at ".secure_url_base()."prefs.php?subset=project\n";
90 90
         $retval = send_email($user, $subject, $body_to_send);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 // These are set to large values because otherwise the script has
37 37
 // a tendency to just stop after some time.
38 38
 //
39
-ini_set ("memory_limit", "20M");
39
+ini_set("memory_limit", "20M");
40 40
 set_time_limit(3600);
41 41
 
42 42
 $receiver = 0;
Please login to merge, or discard this patch.