@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | ?> |
| 28 | 28 | <?php |
| 29 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
| 29 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
| 30 | 30 | |
| 31 | 31 | $deco = new \web\lib\admin\PageDecoration(); |
| 32 | 32 | $validator = new \web\lib\common\InputValidation(); |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | } else { |
| 39 | 39 | $link = 'http://'; |
| 40 | 40 | } |
| 41 | -$link .= $_SERVER['SERVER_NAME'] . $_SERVER['SCRIPT_NAME']; |
|
| 41 | +$link .= $_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME']; |
|
| 42 | 42 | $link = htmlspecialchars($link); |
| 43 | 43 | |
| 44 | 44 | echo $deco->defaultPagePrelude(sprintf(_("%s: %s Dashboard"), \config\Master::APPEARANCE['productname'], $uiElements->nomenclatureHotspot)); |
@@ -88,21 +88,21 @@ discard block |
||
| 88 | 88 | <?php |
| 89 | 89 | if (\config\Master::CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS'] !== NULL) { |
| 90 | 90 | echo "<tr> |
| 91 | - <td>" . _("Check another realm's reachability") . "</td> |
|
| 91 | + <td>" . _("Check another realm's reachability")."</td> |
|
| 92 | 92 | <td><form method='post' action='../diag/action_realmcheck.php?inst_id=$my_inst->identifier' accept-charset='UTF-8'> |
| 93 | 93 | <input type='text' name='realm' id='realm'> |
| 94 | 94 | <input type='hidden' name='comefrom' id='comefrom' value='$link'/> |
| 95 | - <button type='submit'>" . _("Go!") . "</button> |
|
| 95 | + <button type='submit'>"._("Go!")."</button> |
|
| 96 | 96 | </form> |
| 97 | 97 | </td> |
| 98 | 98 | </tr>"; |
| 99 | 99 | } |
| 100 | 100 | if (\config\ConfAssistant::CONSORTIUM['name'] == "eduroam") { // SW: APPROVED |
| 101 | 101 | echo "<tr> |
| 102 | - <td>" . sprintf(_("Check %s server status"), $uiElements->nomenclatureFed) . "</td> |
|
| 102 | + <td>" . sprintf(_("Check %s server status"), $uiElements->nomenclatureFed)."</td> |
|
| 103 | 103 | <td> |
| 104 | 104 | <form action='https://monitor.eduroam.org/mon_direct.php' accept-charset='UTF-8'> |
| 105 | - <button type='submit'>" . _("Go!") . "</button> |
|
| 105 | + <button type='submit'>" . _("Go!")."</button> |
|
| 106 | 106 | </form> |
| 107 | 107 | </td> |
| 108 | 108 | </tr>"; |
@@ -113,10 +113,10 @@ discard block |
||
| 113 | 113 | <?php |
| 114 | 114 | $hotspotProfiles = $my_inst->listDeployments(); |
| 115 | 115 | if (count($hotspotProfiles) == 0) { // no profiles yet. |
| 116 | - echo "<h2>" . sprintf(_("There are not yet any known deployments for your %s."), $uiElements->nomenclatureHotspot) . "</h2>"; |
|
| 116 | + echo "<h2>".sprintf(_("There are not yet any known deployments for your %s."), $uiElements->nomenclatureHotspot)."</h2>"; |
|
| 117 | 117 | } |
| 118 | 118 | if (count($hotspotProfiles) > 0) { // no profiles yet. |
| 119 | - echo "<h2>" . sprintf(_("Deployments for this %s"), $uiElements->nomenclatureHotspot) . "</h2>"; |
|
| 119 | + echo "<h2>".sprintf(_("Deployments for this %s"), $uiElements->nomenclatureHotspot)."</h2>"; |
|
| 120 | 120 | // display an info box with the connection data |
| 121 | 121 | } |
| 122 | 122 | |
@@ -124,19 +124,19 @@ discard block |
||
| 124 | 124 | ?> |
| 125 | 125 | <div style='display: table-row; margin-bottom: 20px;'> |
| 126 | 126 | <div class='profilebox' style='display: table-cell;'> |
| 127 | - <h2><?php echo core\DeploymentManaged::PRODUCTNAME . " (<span style='color:" . ( $deploymentObject->status == \core\AbstractDeployment::INACTIVE ? "red;'>" . _("inactive") : "green;'>" . _("active") ) . "</span>)"; ?></h2> |
|
| 127 | + <h2><?php echo core\DeploymentManaged::PRODUCTNAME." (<span style='color:".($deploymentObject->status == \core\AbstractDeployment::INACTIVE ? "red;'>"._("inactive") : "green;'>"._("active"))."</span>)"; ?></h2> |
|
| 128 | 128 | <table> |
| 129 | 129 | <tr> |
| 130 | 130 | <td><strong><?php echo _("Your primary RADIUS server") ?></strong><br/> |
| 131 | 131 | <?php |
| 132 | 132 | if ($deploymentObject->host1_v4 !== NULL) { |
| 133 | - echo _("IPv4") . ": " . $deploymentObject->host1_v4; |
|
| 133 | + echo _("IPv4").": ".$deploymentObject->host1_v4; |
|
| 134 | 134 | } |
| 135 | 135 | if ($deploymentObject->host1_v4 !== NULL && $deploymentObject->host1_v6 !== NULL) { |
| 136 | 136 | echo "<br/>"; |
| 137 | 137 | } |
| 138 | 138 | if ($deploymentObject->host1_v6 !== NULL) { |
| 139 | - echo _("IPv6") . ": " . $deploymentObject->host1_v6; |
|
| 139 | + echo _("IPv6").": ".$deploymentObject->host1_v6; |
|
| 140 | 140 | } |
| 141 | 141 | ?> |
| 142 | 142 | </td> |
@@ -147,13 +147,13 @@ discard block |
||
| 147 | 147 | <td><strong><?php echo _("Your backup RADIUS server") ?><br/></strong> |
| 148 | 148 | <?php |
| 149 | 149 | if ($deploymentObject->host2_v4 !== NULL) { |
| 150 | - echo _("IPv4") . ": " . $deploymentObject->host2_v4; |
|
| 150 | + echo _("IPv4").": ".$deploymentObject->host2_v4; |
|
| 151 | 151 | } |
| 152 | 152 | if ($deploymentObject->host2_v4 !== NULL && $deploymentObject->host2_v6 !== NULL) { |
| 153 | 153 | echo "<br/>"; |
| 154 | 154 | } |
| 155 | 155 | if ($deploymentObject->host2_v6 !== NULL) { |
| 156 | - echo _("IPv6") . ": " . $deploymentObject->host2_v6; |
|
| 156 | + echo _("IPv6").": ".$deploymentObject->host2_v6; |
|
| 157 | 157 | } |
| 158 | 158 | ?></td> |
| 159 | 159 | <td><?php echo _("RADIUS port number: ") ?></td> |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | * <base_url>/copyright.php after deploying the software |
| 20 | 20 | */ |
| 21 | 21 | |
| 22 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
| 22 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
| 23 | 23 | require_once \config\Master::AUTHENTICATION['ssp-path-to-autoloader']; |
| 24 | 24 | |
| 25 | 25 | $deco = new \web\lib\admin\PageDecoration(); |
@@ -38,13 +38,13 @@ discard block |
||
| 38 | 38 | if ($cutoff !== FALSE) { |
| 39 | 39 | $substring = substr($_SERVER['PHP_SELF'], 0, $cutoff); |
| 40 | 40 | if ($substring !== FALSE) { |
| 41 | - $url = "//" . htmlspecialchars($_SERVER['SERVER_NAME']) . $substring; |
|
| 41 | + $url = "//".htmlspecialchars($_SERVER['SERVER_NAME']).$substring; |
|
| 42 | 42 | } |
| 43 | 43 | } |
| 44 | 44 | header("Location: $url"); |
| 45 | 45 | } else { |
| 46 | 46 | /* Logout failed. Tell the user to close the browser. */ |
| 47 | 47 | echo $deco->pageheader(_("Incomplete Logout"), "ADMIN", FALSE); |
| 48 | - echo "<p>" . _("We were unable to log you out of all your sessions. To be completely sure that you are logged out, you need to close your web browser.") . "</p>"; |
|
| 48 | + echo "<p>"._("We were unable to log you out of all your sessions. To be completely sure that you are logged out, you need to close your web browser.")."</p>"; |
|
| 49 | 49 | echo $deco->footer(); |
| 50 | 50 | } |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | ?> |
| 22 | 22 | <?php |
| 23 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
| 23 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
| 24 | 24 | |
| 25 | 25 | $auth = new \web\lib\admin\Authentication(); |
| 26 | 26 | $auth->authenticate(); |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | // if we have a pushed close button, submit attributes and send user back to the overview page |
| 37 | 37 | // if external DB sync is disabled globally, the user never gets to this page. If he came here *anyway* -> send him back immediately. |
| 38 | -if ((isset($_POST['submitbutton']) && $_POST['submitbutton'] == web\lib\common\FormElements::BUTTON_CLOSE ) || \config\Master::DB['enforce-external-sync'] == FALSE) { |
|
| 38 | +if ((isset($_POST['submitbutton']) && $_POST['submitbutton'] == web\lib\common\FormElements::BUTTON_CLOSE) || \config\Master::DB['enforce-external-sync'] == FALSE) { |
|
| 39 | 39 | header("Location: ../overview_federation.php"); |
| 40 | 40 | exit; |
| 41 | 41 | } |
@@ -92,9 +92,9 @@ discard block |
||
| 92 | 92 | $cat = new \core\CAT(); |
| 93 | 93 | switch ($my_inst->getExternalDBSyncState()) { |
| 94 | 94 | case \core\IdP::EXTERNAL_DB_SYNCSTATE_SYNCED: |
| 95 | - printf(_("This %s is linked to the %s database."), $uiElements->nomenclatureInst, \config\ConfAssistant::CONSORTIUM['display_name']) . "</p>"; |
|
| 96 | - echo "<p>" . sprintf(_("The following information about the IdP is stored in the %s DB and %s DB:"), \config\Master::APPEARANCE['productname'], \config\ConfAssistant::CONSORTIUM['display_name']) . "</p>"; |
|
| 97 | - echo "<table><tr><td>" . sprintf(_("Information in <strong>%s Database</strong>"), \config\Master::APPEARANCE['productname']) . "</td><td>" . sprintf(_("Information in <strong>%s Database</strong>"), \config\ConfAssistant::CONSORTIUM['display_name']) . "</td></tr>"; |
|
| 95 | + printf(_("This %s is linked to the %s database."), $uiElements->nomenclatureInst, \config\ConfAssistant::CONSORTIUM['display_name'])."</p>"; |
|
| 96 | + echo "<p>".sprintf(_("The following information about the IdP is stored in the %s DB and %s DB:"), \config\Master::APPEARANCE['productname'], \config\ConfAssistant::CONSORTIUM['display_name'])."</p>"; |
|
| 97 | + echo "<table><tr><td>".sprintf(_("Information in <strong>%s Database</strong>"), \config\Master::APPEARANCE['productname'])."</td><td>".sprintf(_("Information in <strong>%s Database</strong>"), \config\ConfAssistant::CONSORTIUM['display_name'])."</td></tr>"; |
|
| 98 | 98 | echo "<tr><td>"; |
| 99 | 99 | // left-hand side: CAT DB |
| 100 | 100 | echo "<table>"; |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | } else { |
| 107 | 107 | $language = \config\Master::LANGUAGES[$name['lang']]['display'] ?? "(unsupported language)"; |
| 108 | 108 | } |
| 109 | - echo "<tr><td>" . sprintf(_("%s Name (%s)"), $uiElements->nomenclatureInst, $language) . "</td><td>" . $name['value'] . "</td></tr>"; |
|
| 109 | + echo "<tr><td>".sprintf(_("%s Name (%s)"), $uiElements->nomenclatureInst, $language)."</td><td>".$name['value']."</td></tr>"; |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | $admins = $my_inst->listOwners(); |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | if (count($username) == 0) { |
| 118 | 118 | $username[0]['value'] = _("Unnamed User"); |
| 119 | 119 | } |
| 120 | - echo "<tr><td>" . _("Administrator [invited as]") . "</td><td>" . $username[0]['value'] . " [" . $admin['MAIL'] . "]</td></tr>"; |
|
| 120 | + echo "<tr><td>"._("Administrator [invited as]")."</td><td>".$username[0]['value']." [".$admin['MAIL']."]</td></tr>"; |
|
| 121 | 121 | } |
| 122 | 122 | echo "</table>"; |
| 123 | 123 | // end of left-hand side |
@@ -125,38 +125,38 @@ discard block |
||
| 125 | 125 | // right-hand side: external DB |
| 126 | 126 | $externalid = $my_inst->getExternalDBId(); |
| 127 | 127 | if (is_bool($externalid)) { // we are in SYNCED state so this cannot happen |
| 128 | - throw new Exception("We are in SYNCSTATE_SYNCED but still there is no external DB Id available for the " . \config\ConfAssistant::CONSORTIUM['nomenclature_institution'] . "!"); |
|
| 128 | + throw new Exception("We are in SYNCSTATE_SYNCED but still there is no external DB Id available for the ".\config\ConfAssistant::CONSORTIUM['nomenclature_institution']."!"); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | $extinfo = $cat->getExternalDBEntityDetails($externalid); |
| 132 | 132 | |
| 133 | 133 | echo "<table>"; |
| 134 | 134 | foreach ($extinfo['names'] as $lang => $name) { |
| 135 | - echo "<tr><td>" . sprintf(_("%s Name (%s)"), $uiElements->nomenclatureInst, $lang) . "</td><td>$name</td>"; |
|
| 135 | + echo "<tr><td>".sprintf(_("%s Name (%s)"), $uiElements->nomenclatureInst, $lang)."</td><td>$name</td>"; |
|
| 136 | 136 | } |
| 137 | 137 | foreach ($extinfo['admins'] as $number => $admin_details) { |
| 138 | - echo "<tr><td>" . _("Administrator email") . "</td><td>" . $admin_details['email'] . "</td></tr>"; |
|
| 138 | + echo "<tr><td>"._("Administrator email")."</td><td>".$admin_details['email']."</td></tr>"; |
|
| 139 | 139 | } |
| 140 | 140 | echo "</table>"; |
| 141 | 141 | // end of right-hand side |
| 142 | 142 | echo "</td></tr></table>"; |
| 143 | - echo "<p>" . _("If this mapping is not correct any more, you can remove the link:") . " "; |
|
| 143 | + echo "<p>"._("If this mapping is not correct any more, you can remove the link:")." "; |
|
| 144 | 144 | echo "<form name='form-unlink-inst' action='inc/manageDBLink.inc.php?inst_id=$my_inst->identifier' method='post' accept-charset='UTF-8'>"; |
| 145 | - echo "<button type='submit' class='delete' name='submitbutton' id='submit' value='" . web\lib\common\FormElements::BUTTON_DELETE . "'>" . _("Unlink") . "</button></form>"; |
|
| 145 | + echo "<button type='submit' class='delete' name='submitbutton' id='submit' value='".web\lib\common\FormElements::BUTTON_DELETE."'>"._("Unlink")."</button></form>"; |
|
| 146 | 146 | break; |
| 147 | 147 | case \core\IdP::EXTERNAL_DB_SYNCSTATE_NOT_SYNCED: |
| 148 | 148 | $temparray = []; |
| 149 | - printf(_("This %s is not yet linked to the %s database."), $uiElements->nomenclatureInst, \config\ConfAssistant::CONSORTIUM['display_name']) . " "; |
|
| 150 | - echo "<strong>" . _("This means that its profiles are not made available on the user download page.") . "</strong> "; |
|
| 149 | + printf(_("This %s is not yet linked to the %s database."), $uiElements->nomenclatureInst, \config\ConfAssistant::CONSORTIUM['display_name'])." "; |
|
| 150 | + echo "<strong>"._("This means that its profiles are not made available on the user download page.")."</strong> "; |
|
| 151 | 151 | printf(_("You can link it to the %s database below."), \config\ConfAssistant::CONSORTIUM['display_name']); |
| 152 | 152 | $candidates = $my_inst->getExternalDBSyncCandidates($my_inst->type); |
| 153 | 153 | echo "<br/><form name='form-link-inst' action='inc/manageDBLink.inc.php?inst_id=$my_inst->identifier' method='post' accept-charset='UTF-8'>"; |
| 154 | - printf(_("Please select an entity from the %s DB which corresponds to this CAT %s."), \config\ConfAssistant::CONSORTIUM['display_name'], $uiElements->nomenclatureInst) . " "; |
|
| 154 | + printf(_("Please select an entity from the %s DB which corresponds to this CAT %s."), \config\ConfAssistant::CONSORTIUM['display_name'], $uiElements->nomenclatureInst)." "; |
|
| 155 | 155 | if (count($candidates) > 0) { |
| 156 | 156 | printf(_("Particularly promising entries (names in CAT and %s DB are a 100%% match) are on top of the list."), \config\ConfAssistant::CONSORTIUM['display_name']); |
| 157 | 157 | } |
| 158 | 158 | echo "<table>"; |
| 159 | - echo "<tr><th>" . _("Link to this entity?") . "</th><th>" . sprintf(_("%s Name"), $uiElements->nomenclatureInst) . "</th><th>" . _("Administrators") . "</th></tr>"; |
|
| 159 | + echo "<tr><th>"._("Link to this entity?")."</th><th>".sprintf(_("%s Name"), $uiElements->nomenclatureInst)."</th><th>"._("Administrators")."</th></tr>"; |
|
| 160 | 160 | |
| 161 | 161 | foreach ($candidates as $candidate) { |
| 162 | 162 | $info = $cat->getExternalDBEntityDetails($candidate); |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | } |
| 167 | 167 | echo "</td><td>"; |
| 168 | 168 | foreach ($info['admins'] as $number => $admin_details) { |
| 169 | - echo "[E-Mail] " . $admin_details['email'] . "<br/>"; |
|
| 169 | + echo "[E-Mail] ".$admin_details['email']."<br/>"; |
|
| 170 | 170 | } |
| 171 | 171 | echo "</td></tr>"; |
| 172 | 172 | $temparray[] = $candidate; |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | $buffer = ""; |
| 179 | 179 | |
| 180 | 180 | foreach ($unmappedentities as $v) { |
| 181 | - $buffer .= "<option value='" . $v['ID'] . "'>[ID " . $v['ID'] . "] " . $v['name'] . "</option>"; |
|
| 181 | + $buffer .= "<option value='".$v['ID']."'>[ID ".$v['ID']."] ".$v['name']."</option>"; |
|
| 182 | 182 | } |
| 183 | 183 | |
| 184 | 184 | if ($buffer != "") { |
@@ -189,9 +189,9 @@ discard block |
||
| 189 | 189 | } |
| 190 | 190 | // issue a big red warning if there are no link candidates at all in the federation |
| 191 | 191 | if (empty($buffer) && empty($candidates)) { |
| 192 | - echo "<tr><td style='color:#ff0000' colspan='2'>" . sprintf(_('There is no single unmapped %s in the external database for this %s!'), $uiElements->nomenclatureInst, $uiElements->nomenclatureFed) . "</td></tr>"; |
|
| 192 | + echo "<tr><td style='color:#ff0000' colspan='2'>".sprintf(_('There is no single unmapped %s in the external database for this %s!'), $uiElements->nomenclatureInst, $uiElements->nomenclatureFed)."</td></tr>"; |
|
| 193 | 193 | } |
| 194 | - echo "</table><button type='submit' name='submitbutton' id='submit' value='" . web\lib\common\FormElements::BUTTON_SAVE . "' disabled >" . _("Create Link") . "</button></form>"; |
|
| 194 | + echo "</table><button type='submit' name='submitbutton' id='submit' value='".web\lib\common\FormElements::BUTTON_SAVE."' disabled >"._("Create Link")."</button></form>"; |
|
| 195 | 195 | break; |
| 196 | 196 | default: |
| 197 | 197 | } |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | ?> |
| 22 | 22 | <?php |
| 23 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
| 23 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
| 24 | 24 | |
| 25 | 25 | $auth = new \web\lib\admin\Authentication(); |
| 26 | 26 | $uiElements = new \web\lib\admin\UIElements(); |
@@ -57,8 +57,8 @@ discard block |
||
| 57 | 57 | <?php |
| 58 | 58 | echo sprintf(_("On this page, you can add a new %s to your %s. Please fill out the form below to send out an email invitation to the new %s administrator."), $uiElements->nomenclatureInst, $uiElements->nomenclatureFed, $uiElements->nomenclatureInst); |
| 59 | 59 | if (\config\Master::DB['enforce-external-sync']) { |
| 60 | - echo "<p>" . sprintf(_("You can either register a known %s (as defined in the %s database) or create a totally new %s."), $uiElements->nomenclatureInst, \config\ConfAssistant::CONSORTIUM['display_name'], $uiElements->nomenclatureInst) . "</p>"; |
|
| 61 | - echo "<p>" . sprintf(_("The latter one is typically for an %s which is yet in a testing phase and therefore doesn't appear in the %s database yet."), $uiElements->nomenclatureInst, \config\ConfAssistant::CONSORTIUM['display_name']) . "</p>"; |
|
| 60 | + echo "<p>".sprintf(_("You can either register a known %s (as defined in the %s database) or create a totally new %s."), $uiElements->nomenclatureInst, \config\ConfAssistant::CONSORTIUM['display_name'], $uiElements->nomenclatureInst)."</p>"; |
|
| 61 | + echo "<p>".sprintf(_("The latter one is typically for an %s which is yet in a testing phase and therefore doesn't appear in the %s database yet."), $uiElements->nomenclatureInst, \config\ConfAssistant::CONSORTIUM['display_name'])."</p>"; |
|
| 62 | 62 | } |
| 63 | 63 | ?> |
| 64 | 64 | <hr/> |
@@ -68,12 +68,12 @@ discard block |
||
| 68 | 68 | <?php |
| 69 | 69 | if (\config\Master::DB['enforce-external-sync']) { |
| 70 | 70 | echo "<tr><td> |
| 71 | - <input type='radio' name='creation' value='existing'>" . sprintf(_("Existing %s:"), $uiElements->nomenclatureParticipant) . "</input> |
|
| 71 | + <input type='radio' name='creation' value='existing'>" . sprintf(_("Existing %s:"), $uiElements->nomenclatureParticipant)."</input> |
|
| 72 | 72 | </td>"; |
| 73 | 73 | |
| 74 | 74 | echo "<td colspan='4'> |
| 75 | 75 | <select id='externals' name='externals' onchange='document.sendinvite.creation[0].checked=true; document.sendinvite.mailaddr.value=this.options[this.selectedIndex].id;'> |
| 76 | - <option value='FREETEXT'>" . sprintf(_("--- select %s here ---"),$uiElements->nomenclatureParticipant) . "</option>"; |
|
| 76 | + <option value='FREETEXT'>" . sprintf(_("--- select %s here ---"), $uiElements->nomenclatureParticipant)."</option>"; |
|
| 77 | 77 | |
| 78 | 78 | foreach ($feds as $fed_value) { |
| 79 | 79 | $thefed = new \core\Federation(strtoupper($fed_value['value'])); |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | $entities = $thefed->listExternalEntities(TRUE, NULL); |
| 83 | 83 | |
| 84 | 84 | foreach ($entities as $v) { |
| 85 | - echo "<option id='" . $v['contactlist'] . "' value='" . $v['ID'] . "'>[" . $fed_value['value'] . "] " . $v['name'] . "</option>"; |
|
| 85 | + echo "<option id='".$v['contactlist']."' value='".$v['ID']."'>[".$fed_value['value']."] ".$v['name']."</option>"; |
|
| 86 | 86 | } |
| 87 | 87 | } |
| 88 | 88 | |
@@ -91,16 +91,16 @@ discard block |
||
| 91 | 91 | ?> |
| 92 | 92 | <tr> |
| 93 | 93 | <td> |
| 94 | - <input type='radio' name='creation' value='new'><?php echo sprintf(_("New %s"),$uiElements->nomenclatureParticipant); ?></input> |
|
| 94 | + <input type='radio' name='creation' value='new'><?php echo sprintf(_("New %s"), $uiElements->nomenclatureParticipant); ?></input> |
|
| 95 | 95 | </td> |
| 96 | 96 | <td> |
| 97 | 97 | <?php echo _("Name"); ?><input type='text' size='30' id='name' name='name' onchange='document.sendinvite.creation[1].checked = true'/> |
| 98 | 98 | </td> |
| 99 | 99 | <td> |
| 100 | 100 | <select name="participant_type"> |
| 101 | - <option value="IdPSP" selected><?php printf(_("%s and %s"),$uiElements->nomenclatureInst, $uiElements->nomenclatureHotspot)?></option> |
|
| 102 | - <option value="IdP"><?php printf(_("%s"),$uiElements->nomenclatureInst)?></option> |
|
| 103 | - <option value="SP"><?php printf(_("%s"),$uiElements->nomenclatureHotspot)?></option> |
|
| 101 | + <option value="IdPSP" selected><?php printf(_("%s and %s"), $uiElements->nomenclatureInst, $uiElements->nomenclatureHotspot)?></option> |
|
| 102 | + <option value="IdP"><?php printf(_("%s"), $uiElements->nomenclatureInst)?></option> |
|
| 103 | + <option value="SP"><?php printf(_("%s"), $uiElements->nomenclatureHotspot)?></option> |
|
| 104 | 104 | </select> |
| 105 | 105 | </td> |
| 106 | 106 | <td><?php echo $uiElements->nomenclatureFed; ?> |
@@ -34,9 +34,9 @@ |
||
| 34 | 34 | $skinObject = new \web\lib\user\Skinjob("classic"); |
| 35 | 35 | /// eduroam CAT, twice the consortium name eduroam, twice eduroam CAT |
| 36 | 36 | $out = sprintf(_("<span class='edu_cat'>%s</span> is built as a cooperation platform."))."<p>". |
| 37 | - sprintf(_("Local %s administrators enter their %s configuration details and based on them, <span class='edu_cat'>%s</span> builds customised installers for a number of popular platforms. ". |
|
| 38 | - "An installer prepared for one organisation will not work for users of another one, therefore if your organisation is not on the list, you cannot use this system. ". |
|
| 39 | - "Please contact your local administrators and try to influence them to add your %s configuration to <span class='edu_cat'>%s</span>."), |
|
| 37 | + sprintf(_("Local %s administrators enter their %s configuration details and based on them, <span class='edu_cat'>%s</span> builds customised installers for a number of popular platforms. ". |
|
| 38 | + "An installer prepared for one organisation will not work for users of another one, therefore if your organisation is not on the list, you cannot use this system. ". |
|
| 39 | + "Please contact your local administrators and try to influence them to add your %s configuration to <span class='edu_cat'>%s</span>."), |
|
| 40 | 40 | \config\Master::APPEARANCE['productname'], |
| 41 | 41 | \config\ConfAssistant::CONSORTIUM['display_name'], |
| 42 | 42 | \config\ConfAssistant::CONSORTIUM['display_name'], |
@@ -42,10 +42,10 @@ discard block |
||
| 42 | 42 | \config\ConfAssistant::CONSORTIUM['display_name'], |
| 43 | 43 | \config\Master::APPEARANCE['productname'], |
| 44 | 44 | \config\Master::APPEARANCE['productname']); |
| 45 | -$out .= "<p>" . sprintf(_("<span class='edu_cat'>%s</span> currently supports the following devices and EAP type combinations:"), \config\Master::APPEARANCE['productname']) . "</p>"; |
|
| 46 | -$out .= "<table><tr><th>" . _("Device Group") . "</th><th>" . _("Device") . "</th>"; |
|
| 45 | +$out .= "<p>".sprintf(_("<span class='edu_cat'>%s</span> currently supports the following devices and EAP type combinations:"), \config\Master::APPEARANCE['productname'])."</p>"; |
|
| 46 | +$out .= "<table><tr><th>"._("Device Group")."</th><th>"._("Device")."</th>"; |
|
| 47 | 47 | foreach (\core\common\EAP::listKnownEAPTypes() as $oneeap) { |
| 48 | - $out .= "<th style='min-width: 80px;'>" . $oneeap->getPrintableRep() . "</th>"; |
|
| 48 | + $out .= "<th style='min-width: 80px;'>".$oneeap->getPrintableRep()."</th>"; |
|
| 49 | 49 | } |
| 50 | 50 | $out .= "</tr>"; |
| 51 | 51 | foreach (\devices\Devices::listDevices() as $index => $onedevice) { |
@@ -54,12 +54,12 @@ discard block |
||
| 54 | 54 | continue; |
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | - $vendor = (new \web\lib\user\Skinjob())->findResourceUrl("IMAGES", "vendorlogo/" . $onedevice['group'] . ".png"); |
|
| 57 | + $vendor = (new \web\lib\user\Skinjob())->findResourceUrl("IMAGES", "vendorlogo/".$onedevice['group'].".png"); |
|
| 58 | 58 | $vendorImg = ""; |
| 59 | 59 | if ($vendor !== FALSE) { |
| 60 | 60 | $vendorImg = "<img src='$vendor' alt='logo'>"; |
| 61 | 61 | } |
| 62 | - $out .= "<tr><td class='vendor'>$vendorImg</td><td>" . $onedevice['display'] . "</td>"; |
|
| 62 | + $out .= "<tr><td class='vendor'>$vendorImg</td><td>".$onedevice['display']."</td>"; |
|
| 63 | 63 | $device_instance = new \core\DeviceFactory($index); |
| 64 | 64 | foreach (\core\common\EAP::listKnownEAPTypes() as $oneeap) { |
| 65 | 65 | $out .= "<td>"; |
@@ -50,19 +50,19 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | array_push($FAQ, [ |
| 52 | 52 | 'title' => sprintf(_("Is it safe to use %s installers?"), \config\Master::APPEARANCE['productname']), |
| 53 | - 'text' => sprintf(_("%s installers configure security settings on your device, therefore you should be sure that you are using genuine ones."), \config\Master::APPEARANCE['productname']) . ' ' . ( isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("This is why %s installers are digitally signed by %s. Watch out for a system message confirming this."), \config\Master::APPEARANCE['productname'], \config\ConfAssistant::CONSORTIUM['signer_name']) : ""), |
|
| 53 | + 'text' => sprintf(_("%s installers configure security settings on your device, therefore you should be sure that you are using genuine ones."), \config\Master::APPEARANCE['productname']).' '.(isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("This is why %s installers are digitally signed by %s. Watch out for a system message confirming this."), \config\Master::APPEARANCE['productname'], \config\ConfAssistant::CONSORTIUM['signer_name']) : ""), |
|
| 54 | 54 | ]); |
| 55 | 55 | |
| 56 | 56 | array_push($FAQ, [ |
| 57 | 57 | 'title' => _("Windows 'SmartScreen' or 'Internet Explorer' tell me that the file is not commonly downloaded and possibly harmful. Should I be concerned?"), |
| 58 | - 'text' => _("Contrary to what the name suggests, 'SmartScreen' isn't actually very smart. The warning merely means that the file has not yet been downloaded by enough users to make Microsoft consider it popular (which would strangely enough make it be considered 'safe'). This message alone is not a security problem.") . " " . (isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("So long as the file is carrying a valid signature from %s, the download is safe."), \config\ConfAssistant::CONSORTIUM['signer_name']) . " " : "") . sprintf(_("Please see also Microsoft's FAQ regarding SmartScreen at %s."), "<a href='http://windows.microsoft.com/en-US/windows7/SmartScreen-Filter-frequently-asked-questions-IE9?SignedIn=1'>Microsoft FAQ</a>") |
|
| 58 | + 'text' => _("Contrary to what the name suggests, 'SmartScreen' isn't actually very smart. The warning merely means that the file has not yet been downloaded by enough users to make Microsoft consider it popular (which would strangely enough make it be considered 'safe'). This message alone is not a security problem.")." ".(isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("So long as the file is carrying a valid signature from %s, the download is safe."), \config\ConfAssistant::CONSORTIUM['signer_name'])." " : "").sprintf(_("Please see also Microsoft's FAQ regarding SmartScreen at %s."), "<a href='http://windows.microsoft.com/en-US/windows7/SmartScreen-Filter-frequently-asked-questions-IE9?SignedIn=1'>Microsoft FAQ</a>") |
|
| 59 | 59 | ]); |
| 60 | 60 | |
| 61 | 61 | if (\config\Master::CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS'] == NULL) { |
| 62 | 62 | $text = sprintf(_("There can be a number of different reasons. The network you see may not be a genuine %s one and your device silently drops the connection attempt; there may be something wrong with the configuration of the network; your account may have expired; there may be a connection problem with your home authentication server; you may have broken the regulations of the network you are using and have been refused access as a consequence. You should contact your organisation and report the problem, the administrators should be able to trace your connections."), \config\ConfAssistant::CONSORTIUM['display_name']); |
| 63 | 63 | } else { |
| 64 | 64 | if (\config\Master::CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS'] == 'LOCAL') { |
| 65 | - $diagUrl = \config\Master::PATHS['cat_base_url'] . "diag/"; |
|
| 65 | + $diagUrl = \config\Master::PATHS['cat_base_url']."diag/"; |
|
| 66 | 66 | } else { |
| 67 | 67 | $diagUrl = \config\Master::CONFIG['FUNCTIONALITY_LOCATIONS']['DIAGNOSTICS']; |
| 68 | 68 | } |
@@ -99,8 +99,8 @@ discard block |
||
| 99 | 99 | $tocText = ""; |
| 100 | 100 | $fullText = ""; |
| 101 | 101 | foreach ($FAQ as $faq) { |
| 102 | - $tocText .= '<a href="#toc' . $counter . '">' . $faq['title'] . "</a><br>\n"; |
|
| 103 | - $fullText .= "<dt><a name=toc$counter>" . $faq['title'] . "</a></dt>\n<dd>" . $faq['text'] . "</dd>\n"; |
|
| 102 | + $tocText .= '<a href="#toc'.$counter.'">'.$faq['title']."</a><br>\n"; |
|
| 103 | + $fullText .= "<dt><a name=toc$counter>".$faq['title']."</a></dt>\n<dd>".$faq['text']."</dd>\n"; |
|
| 104 | 104 | $counter++; |
| 105 | 105 | } |
| 106 | 106 | ?> |
@@ -23,54 +23,54 @@ |
||
| 23 | 23 | this is just an include file for Gui class definition |
| 24 | 24 | */ |
| 25 | 25 | $Faq = [ |
| 26 | - [ |
|
| 26 | + [ |
|
| 27 | 27 | 'id'=>'idp_not_listed', |
| 28 | 28 | 'title'=>_("My organisation is not listed. Can't I just use any of the other ones?"), |
| 29 | 29 | 'text'=>_("No! The installers contain security settings which are specific to the organisation. If you are not from that organisation, your device will detect that you are about to send your username and credential to an unauthorised server and will abort the login. Using an installer from a different organisation is <i>guaranteed to not work</i>!") |
| 30 | - ], |
|
| 31 | - [ |
|
| 30 | + ], |
|
| 31 | + [ |
|
| 32 | 32 | 'id'=>'idp_not_listed', |
| 33 | 33 | 'title'=>_("What can I do to get my organisation listed?"), |
| 34 | 34 | 'text'=>sprintf(_("Contact %s administrators within your organisation and request that they add their organisation to the system. It will take at most one hour of their time to get things done."),\config\ConfAssistant::CONSORTIUM['display_name']) |
| 35 | 35 | ], |
| 36 | - [ |
|
| 36 | + [ |
|
| 37 | 37 | 'id'=>'device_not_listed', |
| 38 | 38 | 'title'=>sprintf(_("My device is not listed! Does that mean I can't do %s?"),\config\ConfAssistant::CONSORTIUM['display_name']), |
| 39 | 39 | 'text'=>sprintf(_("No. The CAT tool can only support Operating Systems which can be automatically configured in some way. Many other devices can still be used with %s, but must be configured manually. Please contact your organisation to get help in setting up such a device."),\config\ConfAssistant::CONSORTIUM['display_name']) |
| 40 | - ], |
|
| 40 | + ], |
|
| 41 | 41 | |
| 42 | - [ |
|
| 42 | + [ |
|
| 43 | 43 | 'title'=>sprintf(_("I can connect to %s simply by providing username and password, what is the point of using an installer?"),\config\ConfAssistant::CONSORTIUM['display_name']), |
| 44 | 44 | 'text'=>sprintf(_("When you are connecting from an unconfigured device your security is at risk. The very point of preconfiguration is to set up security, when this is done, your device will first confirm that it talks to the correct authentication server and will never send your password to an untrusted one.")) |
| 45 | 45 | ], |
| 46 | - [ |
|
| 46 | + [ |
|
| 47 | 47 | 'title'=>sprintf(_("Is it safe to use %s installers?"),\config\Master::APPEARANCE['productname']), |
| 48 | 48 | 'text'=>sprintf(_("%s installers configure security settings on your device, therefore you should be sure that you are using genuine ones."),\config\Master::APPEARANCE['productname']).' '.( isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("This is why %s installers are digitally signed by %s. Watch out for a system message confirming this."),\config\Master::APPEARANCE['productname'],\config\ConfAssistant::CONSORTIUM['signer_name']):""), |
| 49 | 49 | |
| 50 | 50 | ], |
| 51 | - [ |
|
| 51 | + [ |
|
| 52 | 52 | 'title'=>_("Windows 'SmartScreen' or 'Internet Explorer' tell me that the file is not commonly downloaded and possibly harmful. Should I be concerned?"), |
| 53 | 53 | 'text'=>_("Contrary to what the name suggests, 'SmartScreen' isn't actually very smart. The warning merely means that the file has not yet been downloaded by enough users to make Microsoft consider it popular (which would strangely enough make it be considered 'safe'). This message alone is not a security problem.")." ".(isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("So long as the file is carrying a valid signature from %s, the download is safe."),\config\ConfAssistant::CONSORTIUM['signer_name'])." ":"").sprintf(_("Please see also Microsoft's FAQ regarding SmartScreen at %s."),"<a href='http://windows.microsoft.com/en-US/windows7/SmartScreen-Filter-frequently-asked-questions-IE9?SignedIn=1'>Microsoft FAQ</a>") |
| 54 | 54 | |
| 55 | 55 | ], |
| 56 | - [ |
|
| 56 | + [ |
|
| 57 | 57 | 'title'=>sprintf(_("I can see %s network and my device is configured but it does not connect, what can be the cause?"),\config\ConfAssistant::CONSORTIUM['display_name']), |
| 58 | - 'text'=>sprintf(_("There can be a number of different reasons. The network you see may not be a genuine %s one and your device silently drops the connection attempt; there may be something wrong with the configuration of the network; your account may have expired; there may be a connection problem with your home authentication server; you may have broken the regulations of the network you are using and have been refused access as a consequence. You should contact your organisation and report the problem, the administrators should be able to trace your connections."),\config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 58 | + 'text'=>sprintf(_("There can be a number of different reasons. The network you see may not be a genuine %s one and your device silently drops the connection attempt; there may be something wrong with the configuration of the network; your account may have expired; there may be a connection problem with your home authentication server; you may have broken the regulations of the network you are using and have been refused access as a consequence. You should contact your organisation and report the problem, the administrators should be able to trace your connections."),\config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 59 | 59 | ], |
| 60 | - [ |
|
| 60 | + [ |
|
| 61 | 61 | 'id'=>'contact', |
| 62 | 62 | 'title'=>sprintf(_("I have a question about this web site. Whom should I contact?")), |
| 63 | 63 | 'text'=>sprintf(_("You should send a mail to %s."),\config\Master::APPEARANCE['support-contact']['display']) |
| 64 | - ], |
|
| 64 | + ], |
|
| 65 | 65 | ]; |
| 66 | 66 | |
| 67 | 67 | if (\config\ConfAssistant::CONSORTIUM['name'] == "eduroam") { |
| 68 | 68 | $eduroamDb = new core\ExternalEduroamDBData(); |
| 69 | 69 | $SPs = $eduroamDb->allServiceProviders(); |
| 70 | - array_push($Faq, |
|
| 71 | - [ |
|
| 72 | - 'id'=>'what_is_'.\config\ConfAssistant::CONSORTIUM['name'], |
|
| 73 | - 'title'=>sprintf(_("What is this %s thing anyway?"), \config\ConfAssistant::CONSORTIUM['display_name']), |
|
| 74 | - 'text'=>sprintf(_("%s is a global WiFi roaming consortium which gives members of education and research access to the internet <i>for free</i> on all %s hotspots on the planet. There are several million %s users already, enjoying free internet access on more than %d hotspots! Visit <a href='http://www.eduroam.org'>the %s homepage</a> or <a href='http://monitor.eduroam.org/map_service_loc.php'>the %s location map</a> for more details."),\config\ConfAssistant::CONSORTIUM['display_name'],\config\ConfAssistant::CONSORTIUM['display_name'],\config\ConfAssistant::CONSORTIUM['display_name'], count($SPs), \config\ConfAssistant::CONSORTIUM['display_name'], \config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 75 | - ]); |
|
| 70 | + array_push($Faq, |
|
| 71 | + [ |
|
| 72 | + 'id'=>'what_is_'.\config\ConfAssistant::CONSORTIUM['name'], |
|
| 73 | + 'title'=>sprintf(_("What is this %s thing anyway?"), \config\ConfAssistant::CONSORTIUM['display_name']), |
|
| 74 | + 'text'=>sprintf(_("%s is a global WiFi roaming consortium which gives members of education and research access to the internet <i>for free</i> on all %s hotspots on the planet. There are several million %s users already, enjoying free internet access on more than %d hotspots! Visit <a href='http://www.eduroam.org'>the %s homepage</a> or <a href='http://monitor.eduroam.org/map_service_loc.php'>the %s location map</a> for more details."),\config\ConfAssistant::CONSORTIUM['display_name'],\config\ConfAssistant::CONSORTIUM['display_name'],\config\ConfAssistant::CONSORTIUM['display_name'], count($SPs), \config\ConfAssistant::CONSORTIUM['display_name'], \config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 75 | + ]); |
|
| 76 | 76 | } |
@@ -31,36 +31,36 @@ discard block |
||
| 31 | 31 | [ |
| 32 | 32 | 'id'=>'idp_not_listed', |
| 33 | 33 | 'title'=>_("What can I do to get my organisation listed?"), |
| 34 | - 'text'=>sprintf(_("Contact %s administrators within your organisation and request that they add their organisation to the system. It will take at most one hour of their time to get things done."),\config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 34 | + 'text'=>sprintf(_("Contact %s administrators within your organisation and request that they add their organisation to the system. It will take at most one hour of their time to get things done."), \config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 35 | 35 | ], |
| 36 | 36 | [ |
| 37 | 37 | 'id'=>'device_not_listed', |
| 38 | - 'title'=>sprintf(_("My device is not listed! Does that mean I can't do %s?"),\config\ConfAssistant::CONSORTIUM['display_name']), |
|
| 39 | - 'text'=>sprintf(_("No. The CAT tool can only support Operating Systems which can be automatically configured in some way. Many other devices can still be used with %s, but must be configured manually. Please contact your organisation to get help in setting up such a device."),\config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 38 | + 'title'=>sprintf(_("My device is not listed! Does that mean I can't do %s?"), \config\ConfAssistant::CONSORTIUM['display_name']), |
|
| 39 | + 'text'=>sprintf(_("No. The CAT tool can only support Operating Systems which can be automatically configured in some way. Many other devices can still be used with %s, but must be configured manually. Please contact your organisation to get help in setting up such a device."), \config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 40 | 40 | ], |
| 41 | 41 | |
| 42 | 42 | [ |
| 43 | - 'title'=>sprintf(_("I can connect to %s simply by providing username and password, what is the point of using an installer?"),\config\ConfAssistant::CONSORTIUM['display_name']), |
|
| 43 | + 'title'=>sprintf(_("I can connect to %s simply by providing username and password, what is the point of using an installer?"), \config\ConfAssistant::CONSORTIUM['display_name']), |
|
| 44 | 44 | 'text'=>sprintf(_("When you are connecting from an unconfigured device your security is at risk. The very point of preconfiguration is to set up security, when this is done, your device will first confirm that it talks to the correct authentication server and will never send your password to an untrusted one.")) |
| 45 | 45 | ], |
| 46 | 46 | [ |
| 47 | - 'title'=>sprintf(_("Is it safe to use %s installers?"),\config\Master::APPEARANCE['productname']), |
|
| 48 | - 'text'=>sprintf(_("%s installers configure security settings on your device, therefore you should be sure that you are using genuine ones."),\config\Master::APPEARANCE['productname']).' '.( isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("This is why %s installers are digitally signed by %s. Watch out for a system message confirming this."),\config\Master::APPEARANCE['productname'],\config\ConfAssistant::CONSORTIUM['signer_name']):""), |
|
| 47 | + 'title'=>sprintf(_("Is it safe to use %s installers?"), \config\Master::APPEARANCE['productname']), |
|
| 48 | + 'text'=>sprintf(_("%s installers configure security settings on your device, therefore you should be sure that you are using genuine ones."), \config\Master::APPEARANCE['productname']).' '.(isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("This is why %s installers are digitally signed by %s. Watch out for a system message confirming this."), \config\Master::APPEARANCE['productname'], \config\ConfAssistant::CONSORTIUM['signer_name']) : ""), |
|
| 49 | 49 | |
| 50 | 50 | ], |
| 51 | 51 | [ |
| 52 | 52 | 'title'=>_("Windows 'SmartScreen' or 'Internet Explorer' tell me that the file is not commonly downloaded and possibly harmful. Should I be concerned?"), |
| 53 | - 'text'=>_("Contrary to what the name suggests, 'SmartScreen' isn't actually very smart. The warning merely means that the file has not yet been downloaded by enough users to make Microsoft consider it popular (which would strangely enough make it be considered 'safe'). This message alone is not a security problem.")." ".(isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("So long as the file is carrying a valid signature from %s, the download is safe."),\config\ConfAssistant::CONSORTIUM['signer_name'])." ":"").sprintf(_("Please see also Microsoft's FAQ regarding SmartScreen at %s."),"<a href='http://windows.microsoft.com/en-US/windows7/SmartScreen-Filter-frequently-asked-questions-IE9?SignedIn=1'>Microsoft FAQ</a>") |
|
| 53 | + 'text'=>_("Contrary to what the name suggests, 'SmartScreen' isn't actually very smart. The warning merely means that the file has not yet been downloaded by enough users to make Microsoft consider it popular (which would strangely enough make it be considered 'safe'). This message alone is not a security problem.")." ".(isset(\config\ConfAssistant::CONSORTIUM['signer_name']) && \config\ConfAssistant::CONSORTIUM['signer_name'] != "" ? sprintf(_("So long as the file is carrying a valid signature from %s, the download is safe."), \config\ConfAssistant::CONSORTIUM['signer_name'])." " : "").sprintf(_("Please see also Microsoft's FAQ regarding SmartScreen at %s."), "<a href='http://windows.microsoft.com/en-US/windows7/SmartScreen-Filter-frequently-asked-questions-IE9?SignedIn=1'>Microsoft FAQ</a>") |
|
| 54 | 54 | |
| 55 | 55 | ], |
| 56 | 56 | [ |
| 57 | - 'title'=>sprintf(_("I can see %s network and my device is configured but it does not connect, what can be the cause?"),\config\ConfAssistant::CONSORTIUM['display_name']), |
|
| 58 | - 'text'=>sprintf(_("There can be a number of different reasons. The network you see may not be a genuine %s one and your device silently drops the connection attempt; there may be something wrong with the configuration of the network; your account may have expired; there may be a connection problem with your home authentication server; you may have broken the regulations of the network you are using and have been refused access as a consequence. You should contact your organisation and report the problem, the administrators should be able to trace your connections."),\config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 57 | + 'title'=>sprintf(_("I can see %s network and my device is configured but it does not connect, what can be the cause?"), \config\ConfAssistant::CONSORTIUM['display_name']), |
|
| 58 | + 'text'=>sprintf(_("There can be a number of different reasons. The network you see may not be a genuine %s one and your device silently drops the connection attempt; there may be something wrong with the configuration of the network; your account may have expired; there may be a connection problem with your home authentication server; you may have broken the regulations of the network you are using and have been refused access as a consequence. You should contact your organisation and report the problem, the administrators should be able to trace your connections."), \config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 59 | 59 | ], |
| 60 | 60 | [ |
| 61 | 61 | 'id'=>'contact', |
| 62 | 62 | 'title'=>sprintf(_("I have a question about this web site. Whom should I contact?")), |
| 63 | - 'text'=>sprintf(_("You should send a mail to %s."),\config\Master::APPEARANCE['support-contact']['display']) |
|
| 63 | + 'text'=>sprintf(_("You should send a mail to %s."), \config\Master::APPEARANCE['support-contact']['display']) |
|
| 64 | 64 | ], |
| 65 | 65 | ]; |
| 66 | 66 | |
@@ -71,6 +71,6 @@ discard block |
||
| 71 | 71 | [ |
| 72 | 72 | 'id'=>'what_is_'.\config\ConfAssistant::CONSORTIUM['name'], |
| 73 | 73 | 'title'=>sprintf(_("What is this %s thing anyway?"), \config\ConfAssistant::CONSORTIUM['display_name']), |
| 74 | - 'text'=>sprintf(_("%s is a global WiFi roaming consortium which gives members of education and research access to the internet <i>for free</i> on all %s hotspots on the planet. There are several million %s users already, enjoying free internet access on more than %d hotspots! Visit <a href='http://www.eduroam.org'>the %s homepage</a> or <a href='http://monitor.eduroam.org/map_service_loc.php'>the %s location map</a> for more details."),\config\ConfAssistant::CONSORTIUM['display_name'],\config\ConfAssistant::CONSORTIUM['display_name'],\config\ConfAssistant::CONSORTIUM['display_name'], count($SPs), \config\ConfAssistant::CONSORTIUM['display_name'], \config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 74 | + 'text'=>sprintf(_("%s is a global WiFi roaming consortium which gives members of education and research access to the internet <i>for free</i> on all %s hotspots on the planet. There are several million %s users already, enjoying free internet access on more than %d hotspots! Visit <a href='http://www.eduroam.org'>the %s homepage</a> or <a href='http://monitor.eduroam.org/map_service_loc.php'>the %s location map</a> for more details."), \config\ConfAssistant::CONSORTIUM['display_name'], \config\ConfAssistant::CONSORTIUM['display_name'], \config\ConfAssistant::CONSORTIUM['display_name'], count($SPs), \config\ConfAssistant::CONSORTIUM['display_name'], \config\ConfAssistant::CONSORTIUM['display_name']) |
|
| 75 | 75 | ]); |
| 76 | 76 | } |
@@ -19,13 +19,13 @@ |
||
| 19 | 19 | * <base_url>/copyright.php after deploying the software |
| 20 | 20 | */ |
| 21 | 21 | |
| 22 | -$out = "<h3>" . _("Access the sources") . "</h3>" . |
|
| 23 | - sprintf(_("%s is an opensource project. If you are interested in the details of the implementation, please visit <a href='%s'>GitHub</a>."), \config\Master::APPEARANCE['productname'], "https://github.com/GEANT/CAT" ) . |
|
| 24 | - "<h3>" . _("Join the developers mailing list.") . "</h3>" . |
|
| 25 | - sprintf(_("The list is available at: %s"), \config\Master::APPEARANCE['support-contact']['display']) . |
|
| 26 | - "<h3>" . _("Add a translation") . "</h3>" . |
|
| 27 | - _("If you would like to add a new language to CAT then please contact us ...") . |
|
| 28 | - "<h3><a href='" . \core\CAT::getRootUrlPath() . "/apidoc' target='_blank'>". _("Documentation") . "</a></h3>" ; |
|
| 22 | +$out = "<h3>"._("Access the sources")."</h3>". |
|
| 23 | + sprintf(_("%s is an opensource project. If you are interested in the details of the implementation, please visit <a href='%s'>GitHub</a>."), \config\Master::APPEARANCE['productname'], "https://github.com/GEANT/CAT"). |
|
| 24 | + "<h3>"._("Join the developers mailing list.")."</h3>". |
|
| 25 | + sprintf(_("The list is available at: %s"), \config\Master::APPEARANCE['support-contact']['display']). |
|
| 26 | + "<h3>"._("Add a translation")."</h3>". |
|
| 27 | + _("If you would like to add a new language to CAT then please contact us ..."). |
|
| 28 | + "<h3><a href='".\core\CAT::getRootUrlPath()."/apidoc' target='_blank'>"._("Documentation")."</a></h3>"; |
|
| 29 | 29 | |
| 30 | 30 | |
| 31 | 31 | |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | * @package UserGUI |
| 27 | 27 | */ |
| 28 | 28 | error_reporting(E_ALL | E_STRICT); |
| 29 | -require dirname(dirname(__FILE__)) . "/config/_config.php"; |
|
| 29 | +require dirname(dirname(__FILE__))."/config/_config.php"; |
|
| 30 | 30 | $langObject = new \core\common\Language(); |
| 31 | 31 | $langObject->setTextDomain("web_user"); |
| 32 | 32 | |
@@ -38,25 +38,25 @@ discard block |
||
| 38 | 38 | <body style='background: #fff url(resources/images/bg_grey_tile.png) repeat-x;'> |
| 39 | 39 | <div id="heading"> |
| 40 | 40 | <?php |
| 41 | - print '<img src="'. dirname($_SERVER['SCRIPT_NAME']) .'/resources/images/consortium_logo.png" alt="Consortium Logo" style="float:right; padding-right:20px; padding-top:20px"/>'; |
|
| 42 | - print '<div id="motd">' . ( isset(\config\Master::APPEARANCE['MOTD']) ? \config\Master::APPEARANCE['MOTD'] : ' ' ) . '</div>'; |
|
| 43 | - print '<h1 style="padding-bottom:0px; height:1em;">' . sprintf(_("Welcome to %s"), \config\Master::APPEARANCE['productname']) . '</h1> |
|
| 44 | -<h2 style="padding-bottom:0px; height:0px; vertical-align:bottom;">' . \config\Master::APPEARANCE['productname_long'] . '</h2>'; |
|
| 41 | + print '<img src="'.dirname($_SERVER['SCRIPT_NAME']).'/resources/images/consortium_logo.png" alt="Consortium Logo" style="float:right; padding-right:20px; padding-top:20px"/>'; |
|
| 42 | + print '<div id="motd">'.(isset(\config\Master::APPEARANCE['MOTD']) ? \config\Master::APPEARANCE['MOTD'] : ' ').'</div>'; |
|
| 43 | + print '<h1 style="padding-bottom:0px; height:1em;">'.sprintf(_("Welcome to %s"), \config\Master::APPEARANCE['productname']).'</h1> |
|
| 44 | +<h2 style="padding-bottom:0px; height:0px; vertical-align:bottom;">' . \config\Master::APPEARANCE['productname_long'].'</h2>'; |
|
| 45 | 45 | echo '<table id="lang_select"><tr><td>'; |
| 46 | 46 | echo _("View this page in"); |
| 47 | 47 | ?> |
| 48 | 48 | <?php |
| 49 | 49 | foreach (\config\Master::LANGUAGES as $lang => $value) { |
| 50 | - echo "<a href='javascript:changeLang(\"$lang\")'>" . $value['display'] . "</a> "; |
|
| 50 | + echo "<a href='javascript:changeLang(\"$lang\")'>".$value['display']."</a> "; |
|
| 51 | 51 | } |
| 52 | - echo '</td><td style="text-align:right;padding-right:20px"><a href="' . dirname($_SERVER['SCRIPT_NAME']) . '?lang=' . $langObject->getLang() . '">' . _("Start page") . '</a></td></tr></table>'; |
|
| 52 | + echo '</td><td style="text-align:right;padding-right:20px"><a href="'.dirname($_SERVER['SCRIPT_NAME']).'?lang='.$langObject->getLang().'">'._("Start page").'</a></td></tr></table>'; |
|
| 53 | 53 | ?> |
| 54 | 54 | </div> <!-- id="heading" --> |
| 55 | 55 | <div id="main_body" style='padding:20px;'> |
| 56 | - <h1><?php echo _("This is not the CAT you are looking for.");?></h1> |
|
| 57 | - <p><?php echo _("Whatever you expected to see at this URL - it's not here. The only thing here is the number");?></p> |
|
| 56 | + <h1><?php echo _("This is not the CAT you are looking for."); ?></h1> |
|
| 57 | + <p><?php echo _("Whatever you expected to see at this URL - it's not here. The only thing here is the number"); ?></p> |
|
| 58 | 58 | <h2>404</h2> |
| 59 | - <p><?php echo sprintf(_("staring at you. Your mistake? Our error? Who knows! Maybe you should go back to the <a href='%s'>Start Page</a>."), dirname($_SERVER['SCRIPT_NAME']) . '?lang=' . $langObject->getLang());?></p> |
|
| 59 | + <p><?php echo sprintf(_("staring at you. Your mistake? Our error? Who knows! Maybe you should go back to the <a href='%s'>Start Page</a>."), dirname($_SERVER['SCRIPT_NAME']).'?lang='.$langObject->getLang()); ?></p> |
|
| 60 | 60 | </div> <!-- id="main_body" --> |
| 61 | 61 | |
| 62 | 62 | <?php echo $deco->footer(); |