@@ -41,7 +41,7 @@ |
||
| 41 | 41 | $f->mode = "local_staged"; |
| 42 | 42 | $f->source = "input"; |
| 43 | 43 | |
| 44 | - for ($i=10; $i<20; $i++) { |
|
| 44 | + for ($i = 10; $i < 20; $i++) { |
|
| 45 | 45 | $job = new StdClass; |
| 46 | 46 | $job->input_files = array($f); |
| 47 | 47 | $job->rsc_fpops_est = $i*1e9; |
@@ -63,13 +63,13 @@ discard block |
||
| 63 | 63 | global $language_names; |
| 64 | 64 | $supported_languages = get_supported_languages(); |
| 65 | 65 | $supported_languages[] = "en"; |
| 66 | - $sel = $cur_lang_name?"":"selected"; |
|
| 66 | + $sel = $cur_lang_name ? "" : "selected"; |
|
| 67 | 67 | echo " |
| 68 | 68 | <option $sel value=auto>Language: default |
| 69 | 69 | "; |
| 70 | 70 | foreach ($language_names as $lang) { |
| 71 | 71 | if (!in_array($lang[0], $supported_languages)) continue; |
| 72 | - $sel = ($cur_lang_name == $lang[0])?"selected":""; |
|
| 72 | + $sel = ($cur_lang_name == $lang[0]) ? "selected" : ""; |
|
| 73 | 73 | if ($lang[0] == "en") { |
| 74 | 74 | echo "<option $sel value=".$lang[0].">".$lang[1]; |
| 75 | 75 | } else { |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | // show a menu of supported languages |
| 83 | 83 | // |
| 84 | -function language_form($cur_lang_name=null) { |
|
| 84 | +function language_form($cur_lang_name = null) { |
|
| 85 | 85 | echo ' |
| 86 | 86 | <form name="language" method="get" action="set_language.php"> |
| 87 | 87 | <select class="selectbox form-control" name="lang" onchange="javascript: submit()"> |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | // |
| 65 | 65 | function get_platform($user_agent) { |
| 66 | 66 | if (strstr($user_agent, 'Windows')) { |
| 67 | - if (strstr($user_agent, 'Win64')||strstr($user_agent, 'WOW64')) { |
|
| 67 | + if (strstr($user_agent, 'Win64') || strstr($user_agent, 'WOW64')) { |
|
| 68 | 68 | return 'windows_x86_64'; |
| 69 | 69 | } else { |
| 70 | 70 | return 'windows_intelx86'; |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | $token, |
| 139 | 139 | $user->id, |
| 140 | 140 | (string)$v->filename, |
| 141 | - $green?"btn-success":"btn-info", |
|
| 141 | + $green ? "btn-success" : "btn-info", |
|
| 142 | 142 | (string)$v->platform, |
| 143 | 143 | (string)$v->size_mb, |
| 144 | 144 | (string)$v->version_num |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | |
| 148 | 148 | function download_button_vbox($v, $project_id, $token, $user) { |
| 149 | 149 | // if no vbox version exists for platform, don't show vbox button |
| 150 | - if(!$v->vbox_filename) { |
|
| 150 | + if (!$v->vbox_filename) { |
|
| 151 | 151 | return; |
| 152 | 152 | } |
| 153 | 153 | return sprintf( |
@@ -436,7 +436,7 @@ discard block |
||
| 436 | 436 | handle_get_info(); |
| 437 | 437 | } else { |
| 438 | 438 | $dev = get_str("dev", true); |
| 439 | - $user_agent = get_str("user_agent", true); // for debugging |
|
| 439 | + $user_agent = get_str("user_agent", true); // for debugging |
|
| 440 | 440 | if (!$user_agent) { |
| 441 | 441 | $user_agent = $_SERVER['HTTP_USER_AGENT']; |
| 442 | 442 | } |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | // Adapt to your web site. The following assumes Bootstrap. |
| 137 | 137 | // |
| 138 | 138 | function show_download_button($info, $is_vbox) { |
| 139 | - $desc = $is_vbox?$info->boinc_vbox:$info->boinc; |
|
| 139 | + $desc = $is_vbox ? $info->boinc_vbox : $info->boinc; |
|
| 140 | 140 | echo sprintf(' |
| 141 | 141 | <form action="https://boinc.berkeley.edu/concierge.php" method="post"> |
| 142 | 142 | <input type=hidden name=project_id value="%d"> |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | (string)$info->token, |
| 151 | 151 | (int)$info->user_id, |
| 152 | 152 | (string)$desc->filename, |
| 153 | - $is_vbox?" + VirtualBox":"", |
|
| 153 | + $is_vbox ? " + VirtualBox" : "", |
|
| 154 | 154 | (string)$info->platform, |
| 155 | 155 | (string)$desc->size_mb |
| 156 | 156 | ); |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | // You can pass a function $filter; |
| 56 | 56 | // if $filter(item) returns true, don't show it. |
| 57 | 57 | // |
| 58 | -function show_rss_items($items, $n=0, $filter=null) { |
|
| 58 | +function show_rss_items($items, $n = 0, $filter = null) { |
|
| 59 | 59 | $i = 0; |
| 60 | 60 | foreach ($items as $item) { |
| 61 | 61 | if ($filter && $filter($item)) { |
@@ -24,72 +24,72 @@ |
||
| 24 | 24 | define('KW_CATEGORY_SCIENCE', 0); |
| 25 | 25 | define('KW_CATEGORY_LOC', 1); |
| 26 | 26 | |
| 27 | -define('KW_ASTRONOMY', 1); |
|
| 28 | -define('KW_SETI', 2); |
|
| 29 | -define('KW_PULSARS', 3); |
|
| 30 | -define('KW_GW', 4); |
|
| 31 | -define('KW_COSMOLOGY', 5); |
|
| 32 | -define('KW_PHYSICS', 6); |
|
| 27 | +define('KW_ASTRONOMY', 1); |
|
| 28 | +define('KW_SETI', 2); |
|
| 29 | +define('KW_PULSARS', 3); |
|
| 30 | +define('KW_GW', 4); |
|
| 31 | +define('KW_COSMOLOGY', 5); |
|
| 32 | +define('KW_PHYSICS', 6); |
|
| 33 | 33 | define('KW_PARTICLE_PHYSICS', 7); |
| 34 | -define('KW_NANOSCIENCE', 8); |
|
| 35 | -define('KW_BIOMED', 9); |
|
| 34 | +define('KW_NANOSCIENCE', 8); |
|
| 35 | +define('KW_BIOMED', 9); |
|
| 36 | 36 | define('KW_DRUG_DISCOVERY', 10); |
| 37 | -define('KW_PROTEINS', 11); |
|
| 38 | -define('KW_GENETICS', 12); |
|
| 39 | -define('KW_DISEASE', 13); |
|
| 40 | -define('KW_CANCER', 14); |
|
| 41 | -define('KW_MATH_CS', 15); |
|
| 42 | -define('KW_AI', 16); |
|
| 43 | -define('KW_OCEANIA', 17); |
|
| 44 | -define('KW_AUSTRALIA', 18); |
|
| 37 | +define('KW_PROTEINS', 11); |
|
| 38 | +define('KW_GENETICS', 12); |
|
| 39 | +define('KW_DISEASE', 13); |
|
| 40 | +define('KW_CANCER', 14); |
|
| 41 | +define('KW_MATH_CS', 15); |
|
| 42 | +define('KW_AI', 16); |
|
| 43 | +define('KW_OCEANIA', 17); |
|
| 44 | +define('KW_AUSTRALIA', 18); |
|
| 45 | 45 | |
| 46 | -define('KW_EUROPE', 20); |
|
| 47 | -define('KW_GERMANY', 21); |
|
| 48 | -define('KW_ASIA', 22); |
|
| 49 | -define('KW_AMERICAS', 23); |
|
| 50 | -define('KW_US', 24); |
|
| 51 | -define('KW_UCB', 25); |
|
| 52 | -define('KW_AEI', 26); |
|
| 53 | -define('KW_CERN', 27); |
|
| 54 | -define('KW_UW', 28); |
|
| 55 | -define('KW_EARTH_SCI', 29); |
|
| 56 | -define('KW_SPAIN', 30); |
|
| 57 | -define('KW_SAN_JORGE', 31); |
|
| 58 | -define('KW_NUMBER_THEORY', 32); |
|
| 59 | -define('KW_CRYPTO', 33); |
|
| 60 | -define('KW_ENV_RESEARCH', 34); |
|
| 61 | -define('KW_CLIMATE', 35); |
|
| 62 | -define('KW_CZECH', 36); |
|
| 46 | +define('KW_EUROPE', 20); |
|
| 47 | +define('KW_GERMANY', 21); |
|
| 48 | +define('KW_ASIA', 22); |
|
| 49 | +define('KW_AMERICAS', 23); |
|
| 50 | +define('KW_US', 24); |
|
| 51 | +define('KW_UCB', 25); |
|
| 52 | +define('KW_AEI', 26); |
|
| 53 | +define('KW_CERN', 27); |
|
| 54 | +define('KW_UW', 28); |
|
| 55 | +define('KW_EARTH_SCI', 29); |
|
| 56 | +define('KW_SPAIN', 30); |
|
| 57 | +define('KW_SAN_JORGE', 31); |
|
| 58 | +define('KW_NUMBER_THEORY', 32); |
|
| 59 | +define('KW_CRYPTO', 33); |
|
| 60 | +define('KW_ENV_RESEARCH', 34); |
|
| 61 | +define('KW_CLIMATE', 35); |
|
| 62 | +define('KW_CZECH', 36); |
|
| 63 | 63 | define('KW_CHARLES_PRAGUE', 37); |
| 64 | -define('KW_RECHENKRAFT', 38); |
|
| 65 | -define('KW_RHEINMAIN', 39); |
|
| 66 | -define('KW_HUNGARY', 40); |
|
| 67 | -define('KW_IRELAND', 41); |
|
| 68 | -define('KW_UC_DUBLIN', 42); |
|
| 69 | -define('KW_POLAND', 43); |
|
| 70 | -define('KW_RUSSIA', 44); |
|
| 64 | +define('KW_RECHENKRAFT', 38); |
|
| 65 | +define('KW_RHEINMAIN', 39); |
|
| 66 | +define('KW_HUNGARY', 40); |
|
| 67 | +define('KW_IRELAND', 41); |
|
| 68 | +define('KW_UC_DUBLIN', 42); |
|
| 69 | +define('KW_POLAND', 43); |
|
| 70 | +define('KW_RUSSIA', 44); |
|
| 71 | 71 | define('KW_SW_STATE_RUSSIA', 45); |
| 72 | -define('KW_RAS', 46); |
|
| 73 | -define('KW_PRBB', 47); |
|
| 74 | -define('KW_UK', 48); |
|
| 75 | -define('KW_OXFORD', 49); |
|
| 76 | -define('KW_CHINA', 50); |
|
| 77 | -define('KW_U_DAYTON', 51); |
|
| 78 | -define('KW_WRIGHT_STATE', 52); |
|
| 79 | -define('KW_USC', 53); |
|
| 80 | -define('KW_FULLERTON', 54); |
|
| 81 | -define('KW_ARIZONA_STATE', 55); |
|
| 82 | -define('KW_U_ILLINOIS', 56); |
|
| 83 | -define('KW_U_WARSAW', 57); |
|
| 84 | -define('KW_RPI', 58); |
|
| 85 | -define('KW_INTERNATIONAL', 59); |
|
| 86 | -define('KW_UND', 60); |
|
| 87 | -define('KW_HOLLAND', 61); |
|
| 88 | -define('KW_CHEMISTRY', 62); |
|
| 89 | -define('KW_GAMES', 63); |
|
| 90 | -define('KW_VIRUS', 64); |
|
| 91 | -define('KW_FRANCE', 65); |
|
| 92 | -define('KW_CANADA', 66); |
|
| 72 | +define('KW_RAS', 46); |
|
| 73 | +define('KW_PRBB', 47); |
|
| 74 | +define('KW_UK', 48); |
|
| 75 | +define('KW_OXFORD', 49); |
|
| 76 | +define('KW_CHINA', 50); |
|
| 77 | +define('KW_U_DAYTON', 51); |
|
| 78 | +define('KW_WRIGHT_STATE', 52); |
|
| 79 | +define('KW_USC', 53); |
|
| 80 | +define('KW_FULLERTON', 54); |
|
| 81 | +define('KW_ARIZONA_STATE', 55); |
|
| 82 | +define('KW_U_ILLINOIS', 56); |
|
| 83 | +define('KW_U_WARSAW', 57); |
|
| 84 | +define('KW_RPI', 58); |
|
| 85 | +define('KW_INTERNATIONAL', 59); |
|
| 86 | +define('KW_UND', 60); |
|
| 87 | +define('KW_HOLLAND', 61); |
|
| 88 | +define('KW_CHEMISTRY', 62); |
|
| 89 | +define('KW_GAMES', 63); |
|
| 90 | +define('KW_VIRUS', 64); |
|
| 91 | +define('KW_FRANCE', 65); |
|
| 92 | +define('KW_CANADA', 66); |
|
| 93 | 93 | |
| 94 | 94 | $job_keywords = array(); |
| 95 | 95 | |
@@ -46,10 +46,10 @@ discard block |
||
| 46 | 46 | "; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | -function xml_error($num=-1, $msg=null, $file=null, $line=null) { |
|
| 49 | +function xml_error($num = -1, $msg = null, $file = null, $line = null) { |
|
| 50 | 50 | global $xml_outer_tag; |
| 51 | 51 | if (!$msg) { |
| 52 | - switch($num) { |
|
| 52 | + switch ($num) { |
|
| 53 | 53 | case -112: $msg = "Invalid XML"; break; |
| 54 | 54 | case -136: $msg = "Not found"; break; |
| 55 | 55 | case -137: $msg = "Name or email address is not unique"; break; |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | // If it's a single-tag element, and it's present, just return the tag |
| 96 | 96 | // |
| 97 | 97 | function parse_element($xml, $tag) { |
| 98 | - $closetag = "</" . substr($tag,1); |
|
| 98 | + $closetag = "</".substr($tag, 1); |
|
| 99 | 99 | $x = strstr($xml, $tag); |
| 100 | 100 | if ($x) { |
| 101 | 101 | if (strstr($tag, "/>")) return $tag; |
@@ -111,8 +111,8 @@ discard block |
||
| 111 | 111 | |
| 112 | 112 | function parse_next_element($xml, $tag, &$cursor) { |
| 113 | 113 | $element = null; |
| 114 | - $closetag = "</" . substr($tag,1); |
|
| 115 | - $pos = substr($xml,$cursor); |
|
| 114 | + $closetag = "</".substr($tag, 1); |
|
| 115 | + $pos = substr($xml, $cursor); |
|
| 116 | 116 | $x = strstr($pos, $tag); |
| 117 | 117 | if ($x) { |
| 118 | 118 | if (strstr($tag, "/>")) return $tag; |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | $offset = get_int("offset", true); |
| 35 | -if (!$offset) $offset=0; |
|
| 35 | +if (!$offset) $offset = 0; |
|
| 36 | 36 | |
| 37 | 37 | if ($offset > 1000) { |
| 38 | 38 | error_page(tra("Limit exceeded: Can only display the first 1000 members.")); |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | function show_forum_rss_item($thread, $userid, $threads_only, $no_images) { |
| 33 | - $unique_url=secure_url_base()."forum_thread.php?id=".$thread->id; |
|
| 33 | + $unique_url = secure_url_base()."forum_thread.php?id=".$thread->id; |
|
| 34 | 34 | |
| 35 | 35 | $clause2 = " and hidden=0 "; |
| 36 | 36 | if ($userid) $clause2 .= "and user=$userid"; |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | if (!count($posts)) return; |
| 43 | 43 | $post = $posts[0]; |
| 44 | - $post_date = gmdate('D, d M Y H:i:s',$post->timestamp).' GMT'; |
|
| 44 | + $post_date = gmdate('D, d M Y H:i:s', $post->timestamp).' GMT'; |
|
| 45 | 45 | $post_user = BOincUser::lookup_id($post->user); |
| 46 | 46 | BoincForumPrefs::lookup($post_user); |
| 47 | 47 | $options = new output_options(); |
@@ -84,25 +84,25 @@ discard block |
||
| 84 | 84 | |
| 85 | 85 | // Now construct header |
| 86 | 86 | // |
| 87 | - header ("Expires: " . gmdate('D, d M Y H:i:s', time()+86400) . " GMT"); |
|
| 87 | + header("Expires: ".gmdate('D, d M Y H:i:s', time() + 86400)." GMT"); |
|
| 88 | 88 | if (sizeof($threads)) { |
| 89 | 89 | $t = $threads[0]; |
| 90 | - $last_mod_time = $threads_only?$t->create_time:$t->timestamp; |
|
| 91 | - $create_date = gmdate('D, d M Y H:i:s', $last_mod_time) . ' GMT'; |
|
| 92 | - header ("Last-Modified: " . $create_date); |
|
| 90 | + $last_mod_time = $threads_only ? $t->create_time : $t->timestamp; |
|
| 91 | + $create_date = gmdate('D, d M Y H:i:s', $last_mod_time).' GMT'; |
|
| 92 | + header("Last-Modified: ".$create_date); |
|
| 93 | 93 | } else { |
| 94 | - $create_date = gmdate('D, d M Y H:i:s') . ' GMT'; |
|
| 94 | + $create_date = gmdate('D, d M Y H:i:s').' GMT'; |
|
| 95 | 95 | } |
| 96 | - header ("Content-Type: application/xml"); |
|
| 96 | + header("Content-Type: application/xml"); |
|
| 97 | 97 | |
| 98 | - $forum=BoincForum::lookup_id($forumid); |
|
| 98 | + $forum = BoincForum::lookup_id($forumid); |
|
| 99 | 99 | // Create channel header and open XML content |
| 100 | 100 | // |
| 101 | 101 | $description = PROJECT.": $forum->title"; |
| 102 | 102 | if ($userid) { |
| 103 | 103 | $description .= " (posts by $user->name)"; |
| 104 | 104 | } |
| 105 | - $channel_image = secure_url_base() . "rss_image.gif"; |
|
| 105 | + $channel_image = secure_url_base()."rss_image.gif"; |
|
| 106 | 106 | $language = "en-us"; |
| 107 | 107 | echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?> |
| 108 | 108 | <rss version=\"2.0\"> |