@@ -46,9 +46,9 @@ discard block |
||
| 46 | 46 | $Gui->loggerInstance->debug(4, $operatingSystem); |
| 47 | 47 | $uiElements = new web\lib\admin\UIElements(); |
| 48 | 48 | if ($operatingSystem) { |
| 49 | - print "recognisedOS = '" . $operatingSystem['device'] . "';\n"; |
|
| 49 | + print "recognisedOS = '".$operatingSystem['device']."';\n"; |
|
| 50 | 50 | } |
| 51 | -require dirname(__DIR__) . '/user/js/cat_js.php'; |
|
| 51 | +require dirname(__DIR__).'/user/js/cat_js.php'; |
|
| 52 | 52 | |
| 53 | 53 | ?> |
| 54 | 54 | </script> |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | <div id='wrap' style='background-image:url("<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "beta.png"); ?>");'> |
| 61 | 61 | <form id="cat_form" name="cat_form" accept-charset="UTF-8" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" method="POST"> |
| 62 | 62 | <?php |
| 63 | -require dirname(__DIR__) . '/diag/js/diag_js.php'; |
|
| 63 | +require dirname(__DIR__).'/diag/js/diag_js.php'; |
|
| 64 | 64 | echo $divs->divHeading($visibility); |
| 65 | 65 | $Gui->languageInstance->setTextDomain("diagnostics"); |
| 66 | 66 | ?> |
@@ -78,12 +78,12 @@ discard block |
||
| 78 | 78 | </div> |
| 79 | 79 | <div id="main_body"> |
| 80 | 80 | <div id="user_page"> |
| 81 | - <?php echo $divs->divPagetitle(_("Diagnostics site") . " (<span style='color:red'>beta</span>)", ""); ?> |
|
| 81 | + <?php echo $divs->divPagetitle(_("Diagnostics site")." (<span style='color:red'>beta</span>)", ""); ?> |
|
| 82 | 82 | <div id="user_info" style='padding-top: 10px;'> |
| 83 | 83 | <div id='diagnostic_choice'> |
| 84 | - <?php echo _("The diagnostics system will do its best to identify and resolve your problems!") . ' ' . _("Please help the system by answering the questions as precisely as possible.") . "<br/>" . _("Are you a") . ' '; ?> |
|
| 85 | - <input type='radio' name='diagnostic_usertype' value='0'><?php echo _("end-user") . ' ' . _("or"); ?> |
|
| 86 | - <input type='radio' name='diagnostic_usertype' value='1' <?php if ($admin == 1) { echo " checked"; } ?> > <?php echo _("eduroam administrator") .'?'; ?> |
|
| 84 | + <?php echo _("The diagnostics system will do its best to identify and resolve your problems!").' '._("Please help the system by answering the questions as precisely as possible.")."<br/>"._("Are you a").' '; ?> |
|
| 85 | + <input type='radio' name='diagnostic_usertype' value='0'><?php echo _("end-user").' '._("or"); ?> |
|
| 86 | + <input type='radio' name='diagnostic_usertype' value='1' <?php if ($admin == 1) { echo " checked"; } ?> > <?php echo _("eduroam administrator").'?'; ?> |
|
| 87 | 87 | </div> |
| 88 | 88 | <div id='diagnostic_enduser' style='display: none;'> |
| 89 | 89 | <h2><?php echo _("Tools for End Users"); ?></h2> |
@@ -93,24 +93,24 @@ discard block |
||
| 93 | 93 | ?> |
| 94 | 94 | </p> |
| 95 | 95 | <?php |
| 96 | - echo '<div id="before_stage_1"><h3>' . _("The system needs some information on your home institution - issuer of your account") . '</h3>'; |
|
| 96 | + echo '<div id="before_stage_1"><h3>'._("The system needs some information on your home institution - issuer of your account").'</h3>'; |
|
| 97 | 97 | echo _("What is the realm part of your user account (the part behind the @ of 'your.username@<b>realm.tld</b>):"); |
| 98 | 98 | ?> |
| 99 | 99 | <input type='text' name='user_realm' id='user_realm' value=''> |
| 100 | 100 | <?php |
| 101 | - echo '<div id="realm_by_select"><br/>' . _("alternatively") . '<br/>'; |
|
| 102 | - echo _("You can select your home institution from the following list") . '<br/>'; |
|
| 101 | + echo '<div id="realm_by_select"><br/>'._("alternatively").'<br/>'; |
|
| 102 | + echo _("You can select your home institution from the following list").'<br/>'; |
|
| 103 | 103 | echo '<div id="select_idp_country"><a href="" id="idp_countries_list">'; |
| 104 | - echo '<span id="realmselect">' . _("Click to select your country/region and organisation") . '</span></a></div>'; |
|
| 104 | + echo '<span id="realmselect">'._("Click to select your country/region and organisation").'</span></a></div>'; |
|
| 105 | 105 | ?> |
| 106 | 106 | <div id="select_idp_area" style="display:none;"> |
| 107 | 107 | </div> |
| 108 | 108 | </div> |
| 109 | 109 | <div id="position_info"> |
| 110 | 110 | <?php |
| 111 | - echo '<h3>' . _("Optionally, to improve tests, you can provide information on your current location") . '</h3>'; |
|
| 111 | + echo '<h3>'._("Optionally, to improve tests, you can provide information on your current location").'</h3>'; |
|
| 112 | 112 | echo '<div id="select_sp_country"><a href="" id="sp_countries_list">'; |
| 113 | - echo '<span id="spselect">' . _("Click to select a location in which you have an eduroam problem") . '</span></a></div>'; |
|
| 113 | + echo '<span id="spselect">'._("Click to select a location in which you have an eduroam problem").'</span></a></div>'; |
|
| 114 | 114 | ?> |
| 115 | 115 | <div id="select_sp_area" style="display:none;"> |
| 116 | 116 | </div> |
@@ -143,11 +143,11 @@ discard block |
||
| 143 | 143 | echo 'none'; |
| 144 | 144 | } |
| 145 | 145 | echo ";'>"; |
| 146 | - echo '<h3>' . _("What is the nature of the problem?") . '</h3>'; |
|
| 147 | - echo '<input type="radio" name="problem_type" value="0"' . (($sp==1)? ' checked' : '') . '>'; |
|
| 148 | - echo _("I suspect a technical problem at a particular IdP") . '<br>'; |
|
| 146 | + echo '<h3>'._("What is the nature of the problem?").'</h3>'; |
|
| 147 | + echo '<input type="radio" name="problem_type" value="0"'.(($sp == 1) ? ' checked' : '').'>'; |
|
| 148 | + echo _("I suspect a technical problem at a particular IdP").'<br>'; |
|
| 149 | 149 | echo '<input type="radio" name="problem_type" value="1">'; |
| 150 | - echo _("I want to report abuse of network resources by a roaming user") . '<br>'; |
|
| 150 | + echo _("I want to report abuse of network resources by a roaming user").'<br>'; |
|
| 151 | 151 | echo '<input type="radio" name="problem_type" value="2">'; |
| 152 | 152 | echo _("I suspect a technical problem for one of my users at a particular SP"); |
| 153 | 153 | echo "<div id='idp_contact_area'></div>"; |
@@ -156,9 +156,9 @@ discard block |
||
| 156 | 156 | echo "</div>"; |
| 157 | 157 | } else { |
| 158 | 158 | echo "0\">"; |
| 159 | - echo _("This service is for authenticated admins only.") . '<br>'; |
|
| 160 | - echo "<a href=\"diag.php?admin=1\">" . |
|
| 161 | - _("eduroam® admin access is needed") . "</a>"; |
|
| 159 | + echo _("This service is for authenticated admins only.").'<br>'; |
|
| 160 | + echo "<a href=\"diag.php?admin=1\">". |
|
| 161 | + _("eduroam® admin access is needed")."</a>"; |
|
| 162 | 162 | } |
| 163 | 163 | ?> |
| 164 | 164 | </div> |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | return false; |
| 235 | 235 | }); |
| 236 | 236 | $(document).on('change', '#idp_country' , function() { |
| 237 | - var comment = <?php echo '"' . _("Fetching institutions list") . '..."'; ?>; |
|
| 237 | + var comment = <?php echo '"'._("Fetching institutions list").'..."'; ?>; |
|
| 238 | 238 | var id = $(this).attr('id'); |
| 239 | 239 | var k = id.indexOf('_'); |
| 240 | 240 | var type = id.substr(0,k); |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | var shtml = ''; |
| 253 | 253 | var select = ''; |
| 254 | 254 | if (type !== 'asp') { |
| 255 | - shtml = <?php echo '"<td>' . _("Select institution:") . '</td><td>"'; ?>; |
|
| 255 | + shtml = <?php echo '"<td>'._("Select institution:").'</td><td>"'; ?>; |
|
| 256 | 256 | } |
| 257 | 257 | select = '<select id="' + type + '_inst" name="' + type + '_inst" style="margin-left:0px; width:400px;"><option value=""></option>'; |
| 258 | 258 | for (var i in institutions) { |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | } else { |
| 274 | 274 | if (data.status === 0) { |
| 275 | 275 | inProgress(0); |
| 276 | - var msg = <?php echo '"' . _("The database does not contain the information needed to help you in realm selection for this country. You have to provide the realm you are interested in.") . '"'; ?>; |
|
| 276 | + var msg = <?php echo '"'._("The database does not contain the information needed to help you in realm selection for this country. You have to provide the realm you are interested in.").'"'; ?>; |
|
| 277 | 277 | alert(msg); |
| 278 | 278 | $('#select_idp_country').show(); |
| 279 | 279 | $('#select_idp_area').hide(); |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | }, |
| 283 | 283 | error:function() { |
| 284 | 284 | inProgress(0); |
| 285 | - var msg = <?php echo '"' . _("Can not search in database. You have to provide the realm you are interested in.") . '"'; ?>; |
|
| 285 | + var msg = <?php echo '"'._("Can not search in database. You have to provide the realm you are interested in.").'"'; ?>; |
|
| 286 | 286 | alert(msg); |
| 287 | 287 | $('#select_idp_country').show(); |
| 288 | 288 | $('#select_idp_area').hide(); |
@@ -298,9 +298,9 @@ discard block |
||
| 298 | 298 | }); |
| 299 | 299 | $(document).on('change', '#select_sp_problem' , function() { |
| 300 | 300 | if ($('#select_sp_problem').val().substr(0,6) == 'abuse-') { |
| 301 | - $('#realm_in_db_admin').text(<?php echo '"' . _("Check if this realm is registered") . '"'; ?>); |
|
| 301 | + $('#realm_in_db_admin').text(<?php echo '"'._("Check if this realm is registered").'"'; ?>); |
|
| 302 | 302 | } else { |
| 303 | - $('#realm_in_db_admin').text(<?php echo '"' . _("Check this realm") . '"'; ?>); |
|
| 303 | + $('#realm_in_db_admin').text(<?php echo '"'._("Check this realm").'"'; ?>); |
|
| 304 | 304 | } |
| 305 | 305 | $('#realm_in_db_admin').hide(); |
| 306 | 306 | $('#admin_realm').val(''); |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | clear_sp_question(); |
| 309 | 309 | }); |
| 310 | 310 | $(document).on('change', '#sp_country, #asp_country' , function() { |
| 311 | - var comment = <?php echo '"' . _("Fetching institutions list") . '..."'; ?>; |
|
| 311 | + var comment = <?php echo '"'._("Fetching institutions list").'..."'; ?>; |
|
| 312 | 312 | var id = $(this).attr('id'); |
| 313 | 313 | var k = id.indexOf('_'); |
| 314 | 314 | var type = id.substr(0,k); |
@@ -326,7 +326,7 @@ discard block |
||
| 326 | 326 | var shtml = ''; |
| 327 | 327 | var select = ''; |
| 328 | 328 | if (type !== 'asp') { |
| 329 | - shtml = <?php echo '"<td>' . _("Select institution:") . '</td><td>"'; ?>; |
|
| 329 | + shtml = <?php echo '"<td>'._("Select institution:").'</td><td>"'; ?>; |
|
| 330 | 330 | } |
| 331 | 331 | select = '<select id="' + type + '_inst" name="' + type + '_inst" style="margin-left:0px; width:400px;"><option value=""></option>'; |
| 332 | 332 | for (var i in hotspots) { |
@@ -349,7 +349,7 @@ discard block |
||
| 349 | 349 | inProgress(0); |
| 350 | 350 | var select = '<select id="' + type + '_inst" name="' + type + '_inst" style="margin-left:0px; width:400px;"><option value="">'; |
| 351 | 351 | var shtml = '<td></td><td>'; |
| 352 | - select = select + <?php echo '"' . _("Other location") . '"'; ?> + '</option></select></td>'; |
|
| 352 | + select = select + <?php echo '"'._("Other location").'"'; ?> + '</option></select></td>'; |
|
| 353 | 353 | if (type !== 'asp') { |
| 354 | 354 | $('#row_' + type + '_institution').html(''); |
| 355 | 355 | $('#row_' + type + '_institution').append(shtml + select); |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | $('#start_test_area').hide(); |
| 384 | 384 | return false; |
| 385 | 385 | } |
| 386 | - var comment = <?php echo '"' . _("Fetching realms list") . '..."'; ?>; |
|
| 386 | + var comment = <?php echo '"'._("Fetching realms list").'..."'; ?>; |
|
| 387 | 387 | inProgress(1, comment); |
| 388 | 388 | $.ajax({ |
| 389 | 389 | url: "findRealm.php", |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | var realms = data.realms; |
| 396 | 396 | var realmselect = ''; |
| 397 | 397 | if (realms.length > 1) { |
| 398 | - realmselect = <?php echo '"<td>' . _("Check realm(s):") . '</td>"'; ?>; |
|
| 398 | + realmselect = <?php echo '"<td>'._("Check realm(s):").'</td>"'; ?>; |
|
| 399 | 399 | realmselect = realmselect + '<td>' + "<span style='margin-left: 10px'>"; |
| 400 | 400 | for (var i in realms) { |
| 401 | 401 | realmselect = realmselect + '<input type="radio" name="realm" '; |
@@ -407,7 +407,7 @@ discard block |
||
| 407 | 407 | } |
| 408 | 408 | realmselect = realmselect + '</span></td>'; |
| 409 | 409 | } else { |
| 410 | - realmselect = <?php echo '"<td>' . _("Realm:") . '</td>"'; ?>; |
|
| 410 | + realmselect = <?php echo '"<td>'._("Realm:").'</td>"'; ?>; |
|
| 411 | 411 | realmselect = realmselect + '<td>' + "<span style='margin-left: 10px'>"; |
| 412 | 412 | realmselect = realmselect + realms[0] + '</span>'; |
| 413 | 413 | realmselect = realmselect + '<input type="hidden" name="realm" value="' + realms[0] + '">'; |
@@ -459,7 +459,7 @@ discard block |
||
| 459 | 459 | clear_sp_question(); |
| 460 | 460 | t = 1; |
| 461 | 461 | } |
| 462 | - var comment = <?php echo '"' . _("Running realm tests") . '..."'; ?>; |
|
| 462 | + var comment = <?php echo '"'._("Running realm tests").'..."'; ?>; |
|
| 463 | 463 | inProgress(1, comment); |
| 464 | 464 | /*waiting(comment);*/ |
| 465 | 465 | $.ajax({ |
@@ -518,7 +518,7 @@ discard block |
||
| 518 | 518 | testSociopath('', answer); |
| 519 | 519 | }); |
| 520 | 520 | $('#realmtest').click(function(event){ |
| 521 | - var comment = <?php echo '"<br><br>' . _("Running realm tests") . '..."'; ?>; |
|
| 521 | + var comment = <?php echo '"<br><br>'._("Running realm tests").'..."'; ?>; |
|
| 522 | 522 | inProgress(1, comment); |
| 523 | 523 | $('#start_test_area').hide(); |
| 524 | 524 | if ($('#select_sp_area').is(':hidden')) { |
@@ -566,13 +566,13 @@ discard block |
||
| 566 | 566 | reset_footer(); |
| 567 | 567 | testSociopath(realm, 0); |
| 568 | 568 | } else { |
| 569 | - var title = <?php echo '"' . _("Diagnostics results for selected realms") . '"'; ?>; |
|
| 570 | - result = '<div class="padding"><h3>' + <?php echo '"' . _("An unknown problem occured") . '"'; ?>; |
|
| 569 | + var title = <?php echo '"'._("Diagnostics results for selected realms").'"'; ?>; |
|
| 570 | + result = '<div class="padding"><h3>' + <?php echo '"'._("An unknown problem occured").'"'; ?>; |
|
| 571 | 571 | result = result + '</h3>' |
| 572 | 572 | if (r.length == 1) { |
| 573 | - result = result + <?php echo '"' . _("This test includes checking of the following realm") . '"'; ?>; |
|
| 573 | + result = result + <?php echo '"'._("This test includes checking of the following realm").'"'; ?>; |
|
| 574 | 574 | } else { |
| 575 | - result = result + <?php echo '"' . _("This test includes checking of the following realms") . '"'; ?>; |
|
| 575 | + result = result + <?php echo '"'._("This test includes checking of the following realms").'"'; ?>; |
|
| 576 | 576 | } |
| 577 | 577 | result = result + ': ' |
| 578 | 578 | for (var i=0; i < r.length; i++) { |
@@ -582,7 +582,7 @@ discard block |
||
| 582 | 582 | result = result + r[i]; |
| 583 | 583 | } |
| 584 | 584 | result = result + '.<br>'; |
| 585 | - result = result + <?php echo '"' . _("You should report this to") . '"'; ?> + ' <a href="mailto:[email protected]">[email protected]</a>'; |
|
| 585 | + result = result + <?php echo '"'._("You should report this to").'"'; ?> + ' <a href="mailto:[email protected]">[email protected]</a>'; |
|
| 586 | 586 | result = result + '</div>'; |
| 587 | 587 | $('#after_stage_1').hide(); |
| 588 | 588 | $('#before_stage_1').show(); |
@@ -650,43 +650,43 @@ discard block |
||
| 650 | 650 | success:function(data) { |
| 651 | 651 | if (data.status === 1) { |
| 652 | 652 | var result = ''; |
| 653 | - var title = <?php echo '"' . _("eduroam admin report submission") . '"'; ?>; |
|
| 653 | + var title = <?php echo '"'._("eduroam admin report submission").'"'; ?>; |
|
| 654 | 654 | result = '<div class="padding">'; |
| 655 | 655 | if (type == 'idp_send') { |
| 656 | - result = result + '<h3>'+ <?php echo '"' . _("SP contacting IdP due to technical problems or abuse") . '"'; ?> + '</h3>'; |
|
| 656 | + result = result + '<h3>'+ <?php echo '"'._("SP contacting IdP due to technical problems or abuse").'"'; ?> + '</h3>'; |
|
| 657 | 657 | result = result + '<table>'; |
| 658 | - result = result + '<tr><td>' + <?php echo '"' . _("Reason") . '"'; ?> + '</td><td>' + data.reason + '</td></tr>'; |
|
| 659 | - result = result + '<tr><td>' + <?php echo '"' . _("Event's timestamp") . '"'; ?> + '</td><td>' + data.timestamp + '</td></tr>'; |
|
| 660 | - result = result + '<tr><td>' + <?php echo '"' . _("Calling-Station-Id") . '"'; ?> + '</td><td>' + data.mac + '</td></tr>'; |
|
| 661 | - result = result + '<tr><td>' + <?php echo '"' . _("Additional description") . '"'; ?> +'</td><td>' + data.freetext + '</td></tr>'; |
|
| 662 | - result = result + '<tr><td>' + <?php echo '"' . _("An email to contact the reporter") . '"'; ?> + '</td><td>' + data.email + '</td></tr>'; |
|
| 663 | - result = result + '<tr><td>' + <?php echo '"' . _("Test result") . '" '; ?> +'</td><td>'; |
|
| 658 | + result = result + '<tr><td>' + <?php echo '"'._("Reason").'"'; ?> + '</td><td>' + data.reason + '</td></tr>'; |
|
| 659 | + result = result + '<tr><td>' + <?php echo '"'._("Event's timestamp").'"'; ?> + '</td><td>' + data.timestamp + '</td></tr>'; |
|
| 660 | + result = result + '<tr><td>' + <?php echo '"'._("Calling-Station-Id").'"'; ?> + '</td><td>' + data.mac + '</td></tr>'; |
|
| 661 | + result = result + '<tr><td>' + <?php echo '"'._("Additional description").'"'; ?> +'</td><td>' + data.freetext + '</td></tr>'; |
|
| 662 | + result = result + '<tr><td>' + <?php echo '"'._("An email to contact the reporter").'"'; ?> + '</td><td>' + data.email + '</td></tr>'; |
|
| 663 | + result = result + '<tr><td>' + <?php echo '"'._("Test result").'" '; ?> +'</td><td>'; |
|
| 664 | 664 | if (data.tests_result == 1) { |
| 665 | - result = result + <?php echo '"' . _("failure") . '"'; ?>; |
|
| 665 | + result = result + <?php echo '"'._("failure").'"'; ?>; |
|
| 666 | 666 | } else { |
| 667 | - result = result + <?php echo '"' . _("success") . '"'; ?>; |
|
| 667 | + result = result + <?php echo '"'._("success").'"'; ?>; |
|
| 668 | 668 | } |
| 669 | 669 | result = result + '</td></tr>'; |
| 670 | - result = result + '<tr><td>' + <?php echo '"' . _("Test URL") . '" '; ?> +'</td><td><a href="' + data.testurl + '">' + data.testurl + '</a></td></tr>'; |
|
| 671 | - result = result + '<tr><td>' + <?php echo '"' . _("Email to IdP administrators ") . '"'; ?> + ' '; |
|
| 670 | + result = result + '<tr><td>' + <?php echo '"'._("Test URL").'" '; ?> +'</td><td><a href="' + data.testurl + '">' + data.testurl + '</a></td></tr>'; |
|
| 671 | + result = result + '<tr><td>' + <?php echo '"'._("Email to IdP administrators ").'"'; ?> + ' '; |
|
| 672 | 672 | if (data.emailsent == 1) { |
| 673 | - result = result + <?php echo '"' . _("send successfully") . '"'; ?>; |
|
| 673 | + result = result + <?php echo '"'._("send successfully").'"'; ?>; |
|
| 674 | 674 | } else { |
| 675 | - result = result + <?php echo '"' . _("not sent - failure while sending") . '"'; ?>; |
|
| 675 | + result = result + <?php echo '"'._("not sent - failure while sending").'"'; ?>; |
|
| 676 | 676 | } |
| 677 | 677 | result = result + '</td><td></td></tr>'; |
| 678 | 678 | } |
| 679 | 679 | if (type == 'sp_send') { |
| 680 | - result = result + '<h3>'+ <?php echo '"' . _("IdP contacting SP due to technical problems or abuse") . '"'; ?> + '</h3>'; |
|
| 680 | + result = result + '<h3>'+ <?php echo '"'._("IdP contacting SP due to technical problems or abuse").'"'; ?> + '</h3>'; |
|
| 681 | 681 | result = result + '<table>'; |
| 682 | - result = result + '<tr><td>' + <?php echo '"' . _("Reason") . '"'; ?> + '</td><td>' + data.reason + '</td></tr>'; |
|
| 683 | - result = result + '<tr><td>' + <?php echo '"' . _("SP's Operator-Name") . '"'; ?> + '</td><td>' + data.opname + '</td></tr>'; |
|
| 684 | - result = result + '<tr><td>' + <?php echo '"' . _("User's outer ID") . '"'; ?> + '</td><td>' + data.outerid + '</td></tr>'; |
|
| 685 | - result = result + '<tr><td>' + <?php echo '"' . _("IdP email") . '"'; ?> + '</td><td>' + data.email + '</td></tr>'; |
|
| 686 | - result = result + '<tr><td>' + <?php echo '"' . _("Event's timestamp") . '"'; ?> + '</td><td>' + data.timestamp + '</td></tr>'; |
|
| 687 | - result = result + '<tr><td>' + <?php echo '"' . _("Calling-Station-Id") . '"'; ?> + '</td><td>' + data.mac + '</td></tr>'; |
|
| 688 | - result = result + '<tr><td>' + <?php echo '"' . _("Additional description") . '"'; ?> +'</td><td>' + data.freetext + '</td></tr>'; |
|
| 689 | - result = result + '<tr><td>' + <?php echo '"' . _("How to contact the user") . '"'; ?> +'</td><td>' + data.cdetails + '</td></tr>'; |
|
| 682 | + result = result + '<tr><td>' + <?php echo '"'._("Reason").'"'; ?> + '</td><td>' + data.reason + '</td></tr>'; |
|
| 683 | + result = result + '<tr><td>' + <?php echo '"'._("SP's Operator-Name").'"'; ?> + '</td><td>' + data.opname + '</td></tr>'; |
|
| 684 | + result = result + '<tr><td>' + <?php echo '"'._("User's outer ID").'"'; ?> + '</td><td>' + data.outerid + '</td></tr>'; |
|
| 685 | + result = result + '<tr><td>' + <?php echo '"'._("IdP email").'"'; ?> + '</td><td>' + data.email + '</td></tr>'; |
|
| 686 | + result = result + '<tr><td>' + <?php echo '"'._("Event's timestamp").'"'; ?> + '</td><td>' + data.timestamp + '</td></tr>'; |
|
| 687 | + result = result + '<tr><td>' + <?php echo '"'._("Calling-Station-Id").'"'; ?> + '</td><td>' + data.mac + '</td></tr>'; |
|
| 688 | + result = result + '<tr><td>' + <?php echo '"'._("Additional description").'"'; ?> +'</td><td>' + data.freetext + '</td></tr>'; |
|
| 689 | + result = result + '<tr><td>' + <?php echo '"'._("How to contact the user").'"'; ?> +'</td><td>' + data.cdetails + '</td></tr>'; |
|
| 690 | 690 | } |
| 691 | 691 | result = result + '</div>'; |
| 692 | 692 | showInfo(result, title); |
@@ -711,7 +711,7 @@ discard block |
||
| 711 | 711 | $(this).removeClass('visible_row').addClass('hidden_row'); |
| 712 | 712 | } |
| 713 | 713 | }); |
| 714 | - $('#admin_realm').attr('title', <?php echo '"' . _("Wrong format of realm") . '"'; ?>); |
|
| 714 | + $('#admin_realm').attr('title', <?php echo '"'._("Wrong format of realm").'"'; ?>); |
|
| 715 | 715 | } else { |
| 716 | 716 | $('#admin_realm').removeClass('error_input'); |
| 717 | 717 | $('#admin_realm').attr('title', ''); |
@@ -721,7 +721,7 @@ discard block |
||
| 721 | 721 | $(document).on('keyup change', '#email' , function() { |
| 722 | 722 | if ($(this).val().length == 0 || !isEmail($(this).val())) { |
| 723 | 723 | $('#email').addClass('error_input'); |
| 724 | - $('#email').attr('title', <?php echo '"' . _("Wrong format of email") . '"'; ?>); |
|
| 724 | + $('#email').attr('title', <?php echo '"'._("Wrong format of email").'"'; ?>); |
|
| 725 | 725 | } else { |
| 726 | 726 | $('#email').removeClass('error_input'); |
| 727 | 727 | $('#email').attr('title', ''); |
@@ -734,7 +734,7 @@ discard block |
||
| 734 | 734 | if ($('#mac').val().length > 0) { |
| 735 | 735 | if ($('#mac').val().length != 17) { |
| 736 | 736 | $('#mac').addClass('error_input'); |
| 737 | - $('#mac').attr('title', <?php echo '"' . _("MAC address is incomplete") . '"'; ?>); |
|
| 737 | + $('#mac').attr('title', <?php echo '"'._("MAC address is incomplete").'"'; ?>); |
|
| 738 | 738 | } else { |
| 739 | 739 | $('#mac').removeClass('error_input'); |
| 740 | 740 | $('#mac').attr('title', ''); |
@@ -743,7 +743,7 @@ discard block |
||
| 743 | 743 | if ($(this).attr('id') == 'email' && $(this).val().length > 0) { |
| 744 | 744 | if (!isEmail($(this).val())) { |
| 745 | 745 | $('#email').addClass('error_input'); |
| 746 | - $('#email').attr('title', <?php echo '"' . _("Wrong format of email") . '"'; ?>); |
|
| 746 | + $('#email').attr('title', <?php echo '"'._("Wrong format of email").'"'; ?>); |
|
| 747 | 747 | } else { |
| 748 | 748 | $('#email').removeClass('error_input'); |
| 749 | 749 | $('#email').attr('title', ''); |
@@ -752,7 +752,7 @@ discard block |
||
| 752 | 752 | if ($(this).attr('id') == 'outer_id' && $(this).val().length > 0) { |
| 753 | 753 | if (!isEmail($(this).val(), true)) { |
| 754 | 754 | $('#outer_id').addClass('error_input'); |
| 755 | - $('#outer_id').attr('title', <?php echo '"' . _("Wrong format of outer ID") . '"'; ?>); |
|
| 755 | + $('#outer_id').attr('title', <?php echo '"'._("Wrong format of outer ID").'"'; ?>); |
|
| 756 | 756 | } else { |
| 757 | 757 | $('#outer_id').removeClass('error_input'); |
| 758 | 758 | $('#outer_id').attr('title', ''); |
@@ -761,7 +761,7 @@ discard block |
||
| 761 | 761 | if ($(this).attr('id') == 'opname' && $('#opname').val().length > 0) { |
| 762 | 762 | if (!isOperatorName($(this).val())) { |
| 763 | 763 | $('#opname').addClass('error_input'); |
| 764 | - $('#opname').attr('title', <?php echo '"' . _("Wrong string given as OperatorName") . '"'; ?>); |
|
| 764 | + $('#opname').attr('title', <?php echo '"'._("Wrong string given as OperatorName").'"'; ?>); |
|
| 765 | 765 | $('#spmanually').show(); |
| 766 | 766 | } else { |
| 767 | 767 | $('#opname').removeClass('error_input'); |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | if (type === 'idp' || type === 'sp') { |
| 39 | 39 | shtml = '<table><tbody><tr id="row_'+type+'_country"></tr>'; |
| 40 | 40 | shtml = shtml + '<tr id="row_'+type+'_institution" style="visibility: collapse;">'; |
| 41 | - shtml = shtml + '<td>' + <?php echo '"' . _("Select institiution:") . '"'; ?> + '</td><td></td></tr>'; |
|
| 41 | + shtml = shtml + '<td>' + <?php echo '"'._("Select institiution:").'"'; ?> + '</td><td></td></tr>'; |
|
| 42 | 42 | if (type === 'idp') { |
| 43 | 43 | shtml = shtml + '<tr id="row_idp_realm"></tr>'; |
| 44 | 44 | } |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | var options = ''; |
| 65 | 65 | var selecthead = ''; |
| 66 | 66 | if (type1 === 'sp' || type1 === 'idp') { |
| 67 | - selecthead = <?php echo '"<td>' . _("Select country or region:") . ' </td>"'; ?>; |
|
| 67 | + selecthead = <?php echo '"<td>'._("Select country or region:").' </td>"'; ?>; |
|
| 68 | 68 | selecthead = selecthead + '<td>\n'; |
| 69 | 69 | } |
| 70 | 70 | var select = '<select id="' + type1 + '_country" name="' + type1 + '_country" style="margin-left:0px; width:400px;">'; |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | options = ($('#'+type2+'_country').html()); |
| 73 | 73 | countryAddSelect(selecthead, select + options + '</select>', type1); |
| 74 | 74 | } else { |
| 75 | - var comment = <?php echo '"<br><br>' . _("Fetching country/region list") . '..."'; ?>; |
|
| 75 | + var comment = <?php echo '"<br><br>'._("Fetching country/region list").'..."'; ?>; |
|
| 76 | 76 | inProgress(1, comment); |
| 77 | 77 | $.ajax({ |
| 78 | 78 | url: "findRealm.php", |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | return false; |
| 110 | 110 | } |
| 111 | 111 | function testSociopath(realm, answer) { |
| 112 | - var comment = <?php echo '"' . _("Testing realm") . '..."'; ?>; |
|
| 112 | + var comment = <?php echo '"'._("Testing realm").'..."'; ?>; |
|
| 113 | 113 | inProgress(1, comment); |
| 114 | 114 | if ($('#tested_realm').length == 0) { |
| 115 | 115 | $('<input>').attr({ |
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | query = '<input type="hidden" id="tested_realm" value="' + realm + '">'; |
| 134 | 134 | } |
| 135 | 135 | query = query + '<div id="current_query">'+data['TEXT']+'</div>'; |
| 136 | - query = query + '<div><button class="diag_button" id="answer_yes">' + <?php echo '"' . _("Yes") . '"'; ?> + '</button>'; |
|
| 137 | - query = query + '<button style="margin-left:20px;" class="diag_button" id="answer_no">' + <?php echo '"' . _("No") . '"'; ?> + '</button>'; |
|
| 138 | - query = query + '<button style="margin-left:20px;" class="diag_button" id="answer_noidea">' + <?php echo '"' . _("I don't know") . '"'; ?> + '</button></div>'; |
|
| 136 | + query = query + '<div><button class="diag_button" id="answer_yes">' + <?php echo '"'._("Yes").'"'; ?> + '</button>'; |
|
| 137 | + query = query + '<button style="margin-left:20px;" class="diag_button" id="answer_no">' + <?php echo '"'._("No").'"'; ?> + '</button>'; |
|
| 138 | + query = query + '<button style="margin-left:20px;" class="diag_button" id="answer_noidea">' + <?php echo '"'._("I don't know").'"'; ?> + '</button></div>'; |
|
| 139 | 139 | $('#sociopath_queries').html(query); |
| 140 | 140 | $('#sociopath_query_area').show(); |
| 141 | 141 | } |
@@ -166,55 +166,55 @@ discard block |
||
| 166 | 166 | }); |
| 167 | 167 | } |
| 168 | 168 | function finalVerdict(realm, verdict) { |
| 169 | - var title = <?php echo '"' . _("Diagnostic tests results for selected realm") . '"'; ?>; |
|
| 169 | + var title = <?php echo '"'._("Diagnostic tests results for selected realm").'"'; ?>; |
|
| 170 | 170 | result = '<div class="padding">'; |
| 171 | 171 | result = result + '<div><h3>'; |
| 172 | - result = result + <?php echo '"' . _("The result for tested realm:") . ' "'; ?> + realm; |
|
| 172 | + result = result + <?php echo '"'._("The result for tested realm:").' "'; ?> + realm; |
|
| 173 | 173 | result = result + '</h3></p><div style="padding: 5px;"><div style="padding: 0px;">'; |
| 174 | - result = result + <?php echo '"' . _("The system identified") . '" '; ?> + ' '; |
|
| 174 | + result = result + <?php echo '"'._("The system identified").'" '; ?> + ' '; |
|
| 175 | 175 | result = result + Object.keys(verdict).length + ' '; |
| 176 | - result = result + <?php echo '"' . _("suspected areas which potentially can cause a problem.") . '"'; ?> + '<br>'; |
|
| 177 | - result = result + <?php echo '"' . _("Next to the problem description we show a speculated probability of this event.") . '"'; ?>; |
|
| 176 | + result = result + <?php echo '"'._("suspected areas which potentially can cause a problem.").'"'; ?> + '<br>'; |
|
| 177 | + result = result + <?php echo '"'._("Next to the problem description we show a speculated probability of this event.").'"'; ?>; |
|
| 178 | 178 | result = result + '</div><div style="padding: 5px;"><table>'; |
| 179 | 179 | k = 1; |
| 180 | 180 | for (key in verdict) { |
| 181 | 181 | result = result + '<tr><td>' + k + '.</td>'; |
| 182 | 182 | k = k + 1; |
| 183 | 183 | if (key === 'INFRA_DEVICE') { |
| 184 | - result = result + '<td>' + <?php echo '"' . _("Your device configuration is broken") . '"'; ?> + '</td>'; |
|
| 184 | + result = result + '<td>' + <?php echo '"'._("Your device configuration is broken").'"'; ?> + '</td>'; |
|
| 185 | 185 | } |
| 186 | 186 | if (key === 'INFRA_SP_80211') { |
| 187 | - result = result + '<td>' + <?php echo '"' . _("The Wi-Fi network in your vicinity has quality issues") . '"'; ?> + '</td>'; |
|
| 187 | + result = result + '<td>' + <?php echo '"'._("The Wi-Fi network in your vicinity has quality issues").'"'; ?> + '</td>'; |
|
| 188 | 188 | } |
| 189 | 189 | if (key === 'INFRA_SP_LAN') { |
| 190 | - result = result + '<td>' + <?php echo '"' . _("The network environment around you is broken") . '"'; ?> + '</td>'; |
|
| 190 | + result = result + '<td>' + <?php echo '"'._("The network environment around you is broken").'"'; ?> + '</td>'; |
|
| 191 | 191 | } |
| 192 | 192 | if (key === 'INFRA_SP_RADIUS') { |
| 193 | - result = result + '<td>' + <?php echo '"' . _("The RADIUS server of your service provider is the source of the problem") . '"'; ?> + '</td>'; |
|
| 193 | + result = result + '<td>' + <?php echo '"'._("The RADIUS server of your service provider is the source of the problem").'"'; ?> + '</td>'; |
|
| 194 | 194 | } |
| 195 | 195 | if (key === 'INFRA_IDP_AUTHBACKEND') { |
| 196 | - result = result + '<td>' + <?php echo '"' . _("The RADIUS server in your home institution is currently unable to authenticate you") . '"'; ?> + '</td>'; |
|
| 196 | + result = result + '<td>' + <?php echo '"'._("The RADIUS server in your home institution is currently unable to authenticate you").'"'; ?> + '</td>'; |
|
| 197 | 197 | } |
| 198 | 198 | if (key === 'INFRA_NRO_SP') { |
| 199 | - result = result + '<td>' + <?php echo '"' . _("The national server in the country/region you are visiting is not functioning correctly") . '"'; ?> + '</td>'; |
|
| 199 | + result = result + '<td>' + <?php echo '"'._("The national server in the country/region you are visiting is not functioning correctly").'"'; ?> + '</td>'; |
|
| 200 | 200 | } |
| 201 | 201 | if (key === 'INFRA_LINK_ETLR_NRO_SP') { |
| 202 | - result = result + '<td>' + <?php echo '"' . _("The link between the national server of the country/region you are visiting and the top-level server is broken") . '"'; ?> + '</td>'; |
|
| 202 | + result = result + '<td>' + <?php echo '"'._("The link between the national server of the country/region you are visiting and the top-level server is broken").'"'; ?> + '</td>'; |
|
| 203 | 203 | } |
| 204 | 204 | if (key === 'INFRA_LINK_ETLR_NRO_IdP') { |
| 205 | - result = result + '<td>' + <?php echo '"' . _("The link between the national server of your home country/region and the top-level server is broken") . '"'; ?> + '</td>'; |
|
| 205 | + result = result + '<td>' + <?php echo '"'._("The link between the national server of your home country/region and the top-level server is broken").'"'; ?> + '</td>'; |
|
| 206 | 206 | } |
| 207 | 207 | if (key === 'INFRA_ETLR') { |
| 208 | - result = result + '<td>' + <?php echo '"' . _("The communication to the top-level server is down") . '"'; ?> + '</td>'; |
|
| 208 | + result = result + '<td>' + <?php echo '"'._("The communication to the top-level server is down").'"'; ?> + '</td>'; |
|
| 209 | 209 | } |
| 210 | 210 | if (key === 'INFRA_NRO_IdP') { |
| 211 | - result = result + '<td>' + <?php echo '"' . _("The national server in your home country/region is not functioning properly.") . '"'; ?> + '</td>'; |
|
| 211 | + result = result + '<td>' + <?php echo '"'._("The national server in your home country/region is not functioning properly.").'"'; ?> + '</td>'; |
|
| 212 | 212 | } |
| 213 | 213 | if (key === 'INFRA_IdP_RADIUS') { |
| 214 | - result = result + '<td>' + <?php echo '"' . _("The RADIUS server of your home institution is the source of the problem") . '"'; ?> + '</td>'; |
|
| 214 | + result = result + '<td>' + <?php echo '"'._("The RADIUS server of your home institution is the source of the problem").'"'; ?> + '</td>'; |
|
| 215 | 215 | } |
| 216 | 216 | if (key === 'INFRA_NONEXISTENTREALM') { |
| 217 | - result = result + '<td>' + <?php echo '"' . _("This realm does not exist") . '"'; ?> + '</td>'; |
|
| 217 | + result = result + '<td>' + <?php echo '"'._("This realm does not exist").'"'; ?> + '</td>'; |
|
| 218 | 218 | } |
| 219 | 219 | result = result + '<td style="padding-left: 5px;">' + (verdict[key] * 100).toFixed(2) + "%</td></tr>"; |
| 220 | 220 | } |
@@ -292,8 +292,8 @@ discard block |
||
| 292 | 292 | function runConnectionTests(data, realm, token, wherefrom) { |
| 293 | 293 | dynamic_req = null; |
| 294 | 294 | udp_req = null; |
| 295 | - var running = <?php echo '"<img style=\'vertical-align:middle\' src=' . "'../resources/images/icons/loading51.gif' width='24' height='24'/><i>" . _('Running connectivity tests for this realm') . '...</i>"'; ?>; |
|
| 296 | - var testresult = "<a target='_blank' href='show_realmcheck.php?token=" + token + "'>" + <?php echo '"' . _("New tests results are available, click to see") . '"'; ?> + '</a>'; |
|
| 295 | + var running = <?php echo '"<img style=\'vertical-align:middle\' src='."'../resources/images/icons/loading51.gif' width='24' height='24'/><i>"._('Running connectivity tests for this realm').'...</i>"'; ?>; |
|
| 296 | + var testresult = "<a target='_blank' href='show_realmcheck.php?token=" + token + "'>" + <?php echo '"'._("New tests results are available, click to see").'"'; ?> + '</a>'; |
|
| 297 | 297 | if (wherefrom == 'diag') { |
| 298 | 298 | $('#tests_info_area').css('color', 'black'); |
| 299 | 299 | $('#tests_info_area').html(running); |
@@ -420,7 +420,7 @@ discard block |
||
| 420 | 420 | return requests; |
| 421 | 421 | } |
| 422 | 422 | function show_tests_result(token, level) { |
| 423 | - $('#tests_info_area').html(global_info[level] + ': ' + "<a target='_blank' href='show_realmcheck.php?token=" + token + "'>" + <?php echo '"' . _("See details") . '"'; ?> + '</a>'); |
|
| 423 | + $('#tests_info_area').html(global_info[level] + ': ' + "<a target='_blank' href='show_realmcheck.php?token=" + token + "'>" + <?php echo '"'._("See details").'"'; ?> + '</a>'); |
|
| 424 | 424 | if (level > 0) { |
| 425 | 425 | $('#tests_info_area').css('color', 'red'); |
| 426 | 426 | $('#tests_result').val('1'); |
@@ -428,9 +428,9 @@ discard block |
||
| 428 | 428 | $('#tests_info_area').css('color', 'black'); |
| 429 | 429 | $('#tests_result').val('0'); |
| 430 | 430 | } |
| 431 | - var info = global_info[level] + ': ' + "<a target='_blank' href='show_realmcheck.php?token=" + token + "'>" + <?php echo '"' . _("See details") . '"'; ?> + '</a>'; |
|
| 431 | + var info = global_info[level] + ': ' + "<a target='_blank' href='show_realmcheck.php?token=" + token + "'>" + <?php echo '"'._("See details").'"'; ?> + '</a>'; |
|
| 432 | 432 | if (level == 0) { |
| 433 | - info = info + '<br>' + <?php echo "'" . _("If you want to report your problem, fill fields bellow.") . "'";?>; |
|
| 433 | + info = info + '<br>' + <?php echo "'"._("If you want to report your problem, fill fields bellow.")."'"; ?>; |
|
| 434 | 434 | } |
| 435 | 435 | $('#tests_info_area').html(info); |
| 436 | 436 | |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | * License: see the web/copyright.inc.php file in the file structure or |
| 20 | 20 | * <base_url>/copyright.php after deploying the software |
| 21 | 21 | */ |
| 22 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
| 22 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
| 23 | 23 | $languageInstance = new \core\common\Language(); |
| 24 | 24 | $languageInstance->setTextDomain("diagnostics"); |
| 25 | 25 | $loggerInstance = new \core\common\Logging(); |
@@ -61,43 +61,43 @@ discard block |
||
| 61 | 61 | $select = "<div id='sp_abuse_problem'> |
| 62 | 62 | <select style='margin-left: 0px;' id='select_sp_problem'>"; |
| 63 | 63 | foreach ($sp_problem as $pname => $pdesc) { |
| 64 | - $select = $select . "<option value='$pname'>$pdesc</option>\n"; |
|
| 64 | + $select = $select."<option value='$pname'>$pdesc</option>\n"; |
|
| 65 | 65 | } |
| 66 | - $select = $select . "</select></div>"; |
|
| 66 | + $select = $select."</select></div>"; |
|
| 67 | 67 | $res = " |
| 68 | 68 | <input type='hidden' name='token' id='token' value=''> |
| 69 | 69 | <input type='hidden' name='tests_result' id='tests_result' value=''> |
| 70 | 70 | <table id='sp_questions'> |
| 71 | 71 | <tr id='sp_problem_selector'> |
| 72 | - <td>" . _("Select your problem") . "</td> |
|
| 72 | + <td>" . _("Select your problem")."</td> |
|
| 73 | 73 | <td>$select</td> |
| 74 | 74 | </tr> |
| 75 | 75 | <tr> |
| 76 | - <td>" . _("What is the realm of the IdP in question?") . "</td> |
|
| 76 | + <td>"._("What is the realm of the IdP in question?")."</td> |
|
| 77 | 77 | <td> |
| 78 | 78 | <input type='text' name='admin_realm' id='admin_realm' value='$realmFromURL'> |
| 79 | - <button class='diag_button' id='realm_in_db_admin' style='display: none;' accesskey='R' type='button'>" . |
|
| 80 | - _("Check this realm") . |
|
| 79 | + <button class='diag_button' id='realm_in_db_admin' style='display: none;' accesskey='R' type='button'>". |
|
| 80 | + _("Check this realm"). |
|
| 81 | 81 | "</button> |
| 82 | 82 | <div id='tests_info_area'></div> |
| 83 | 83 | </td> |
| 84 | 84 | </tr> |
| 85 | 85 | <tr class='hidden_row'> |
| 86 | - <td>" . _("What is the authentication timestamp of the user session in question?") . "</td> |
|
| 86 | + <td>" . _("What is the authentication timestamp of the user session in question?")."</td> |
|
| 87 | 87 | <td><input type='text' id='timestamp' name='timestamp'> |
| 88 | 88 | <div id='datepicker'></div> |
| 89 | 89 | </td> |
| 90 | 90 | </tr> |
| 91 | 91 | <tr class='hidden_row'> |
| 92 | - <td>" . _("What is the MAC address of the user session in question?") . "</td> |
|
| 92 | + <td>" . _("What is the MAC address of the user session in question?")."</td> |
|
| 93 | 93 | <td><input type='text' id='mac' name='mac'></td> |
| 94 | 94 | </tr> |
| 95 | 95 | <tr class='hidden_row'> |
| 96 | - <td>" . _("Additional comments") . "</td> |
|
| 96 | + <td>" . _("Additional comments")."</td> |
|
| 97 | 97 | <td><textarea id='freetext' name='freetext' cols='60' rows='5'></textarea></td> |
| 98 | 98 | </tr> |
| 99 | 99 | <tr class='hidden_row'> |
| 100 | - <td>" . _("Please specify an email address on which the IdP can contact you") . "</td> |
|
| 100 | + <td>" . _("Please specify an email address on which the IdP can contact you")."</td> |
|
| 101 | 101 | <td><input type='text' id='email' name='email'></td> |
| 102 | 102 | </tr> |
| 103 | 103 | <tr> |
@@ -105,82 +105,82 @@ discard block |
||
| 105 | 105 | <td></td> |
| 106 | 106 | </tr> |
| 107 | 107 | <tr class='hidden_row' id='send_query_to_idp'> |
| 108 | - <td>" . _("Now you can send your query") . "</td> |
|
| 109 | - <td><button type='submit' class='diag_button' id='submit_idp_query' name='go'>" . _("Send") . "</button></td> |
|
| 108 | + <td>" . _("Now you can send your query")."</td> |
|
| 109 | + <td><button type='submit' class='diag_button' id='submit_idp_query' name='go'>" . _("Send")."</button></td> |
|
| 110 | 110 | </tr> |
| 111 | 111 | </table>"; |
| 112 | - $res = $res . $javascript; |
|
| 112 | + $res = $res.$javascript; |
|
| 113 | 113 | } |
| 114 | 114 | if ($queryType == 'idp') { |
| 115 | 115 | $select = "<div id='idp_reported_problem' style='display:;'> |
| 116 | 116 | <select style='margin-left:0px;' id='select_idp_problem'>"; |
| 117 | 117 | foreach ($idp_problem as $pname => $pdesc) { |
| 118 | - $select = $select . "<option value='$pname'>$pdesc</option>\n"; |
|
| 118 | + $select = $select."<option value='$pname'>$pdesc</option>\n"; |
|
| 119 | 119 | } |
| 120 | - $select = $select . "</select></div>"; |
|
| 120 | + $select = $select."</select></div>"; |
|
| 121 | 121 | $res = " |
| 122 | 122 | <table id='idp_questions'> |
| 123 | 123 | <tr> |
| 124 | - <td>" . _("Select your problem") . "</td> |
|
| 124 | + <td>" . _("Select your problem")."</td> |
|
| 125 | 125 | <td>$select</td> |
| 126 | 126 | </tr> |
| 127 | 127 | <tr> |
| 128 | - <td>" . _("Identify the SP by one of following means") . "</td> |
|
| 128 | + <td>"._("Identify the SP by one of following means")."</td> |
|
| 129 | 129 | <td></td> |
| 130 | 130 | </tr> |
| 131 | 131 | <tr id='by_opname'> |
| 132 | - <td>" . _("SP Operator-Name attribute") . "</td> |
|
| 132 | + <td>" . _("SP Operator-Name attribute")."</td> |
|
| 133 | 133 | <td><input type='text' id='opname' name='opname' value=''></td> |
| 134 | 134 | </tr> |
| 135 | 135 | <tr id='spmanually'> |
| 136 | - <td>" . _("Select the SP manually:") . "</td> |
|
| 136 | + <td>" . _("Select the SP manually:")."</td> |
|
| 137 | 137 | <td> |
| 138 | 138 | <div id='select_asp_country'><a href='' id='asp_countries_list'> |
| 139 | - <span id='opnameselect'>" . _("click to select country and organisation") . "</a></span> |
|
| 139 | + <span id='opnameselect'>" . _("click to select country and organisation")."</a></span> |
|
| 140 | 140 | </div> |
| 141 | 141 | <div id='select_asp_area'></div> |
| 142 | 142 | </td> |
| 143 | 143 | </tr> |
| 144 | 144 | <tr id='asp_desc' style='display: none;'> |
| 145 | - <td>" . _("or") . ' ' . _("at least describe the SP location") . "</td> |
|
| 145 | + <td>" . _("or").' '._("at least describe the SP location")."</td> |
|
| 146 | 146 | <td><input type='text' id='asp_location' name='asp_location' value=''></td> |
| 147 | 147 | </tr> |
| 148 | 148 | <tr> |
| 149 | - <td>" . _("What is the outer ID of the user session in question?") . "</td> |
|
| 149 | + <td>" . _("What is the outer ID of the user session in question?")."</td> |
|
| 150 | 150 | <td><input type='text' id='outer_id' name='outer_id' value=''></td> |
| 151 | 151 | </tr> |
| 152 | 152 | <tr> |
| 153 | - <td>" . _("What is the authentication timestamp of the user session in question?") . "</td> |
|
| 153 | + <td>" . _("What is the authentication timestamp of the user session in question?")."</td> |
|
| 154 | 154 | <td> |
| 155 | 155 | <input type='text' id='timestamp' name='timestamp'> |
| 156 | 156 | <div id='datepicker'></div> |
| 157 | 157 | </td> |
| 158 | 158 | </tr> |
| 159 | 159 | <tr> |
| 160 | - <td>" . _("What is the MAC address of the user session in question?") . "</td> |
|
| 160 | + <td>" . _("What is the MAC address of the user session in question?")."</td> |
|
| 161 | 161 | <td><input type='text' id='mac' name='mac'></td> |
| 162 | 162 | </tr> |
| 163 | 163 | <tr> |
| 164 | - <td>" . _("Additional comments about the problem") . "</td> |
|
| 164 | + <td>" . _("Additional comments about the problem")."</td> |
|
| 165 | 165 | <td><textarea id='freetext' name='freetext' cols='60' rows='5'></textarea></td> |
| 166 | 166 | </tr> |
| 167 | 167 | <tr> |
| 168 | - <td>" . _("Do you have any contact details by which the user wishes to be contacted by the SP?") . "</td> |
|
| 168 | + <td>" . _("Do you have any contact details by which the user wishes to be contacted by the SP?")."</td> |
|
| 169 | 169 | <td><textarea id='c_details' name='c_details' cols='60' rows='5'></textarea></td> |
| 170 | 170 | </tr> |
| 171 | 171 | <tr> |
| 172 | - <td>" . _("Please specify an email address on which the SP can contact you") . "</td> |
|
| 172 | + <td>" . _("Please specify an email address on which the SP can contact you")."</td> |
|
| 173 | 173 | <td><input type='text' id='email' name='email'></td> |
| 174 | 174 | </tr> |
| 175 | 175 | <tr class='hidden_row' id='send_query_to_sp'> |
| 176 | - <td>" . _("Now you can send your query") . "</td> |
|
| 177 | - <td><button type='submit' class='diag_button' id='submit_sp_query' name='go'>" . _("Send") . "</button></td> |
|
| 176 | + <td>" . _("Now you can send your query")."</td> |
|
| 177 | + <td><button type='submit' class='diag_button' id='submit_sp_query' name='go'>" . _("Send")."</button></td> |
|
| 178 | 178 | </tr> |
| 179 | 179 | </table>"; |
| 180 | - $res = $res . $javascript; |
|
| 180 | + $res = $res.$javascript; |
|
| 181 | 181 | } |
| 182 | 182 | if ($queryType == 'idp_send' || $queryType == 'sp_send') { |
| 183 | - include_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
| 183 | + include_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
| 184 | 184 | $cat = new \core\CAT(); |
| 185 | 185 | $returnArray = array(); |
| 186 | 186 | if (count((array) $o) > 0) { |
@@ -189,8 +189,8 @@ discard block |
||
| 189 | 189 | switch ($key) { |
| 190 | 190 | case 'realm': |
| 191 | 191 | $pos = strpos($value, '@'); |
| 192 | - if ($pos !== FALSE ) { |
|
| 193 | - $value = substr($value, $pos+1); |
|
| 192 | + if ($pos !== FALSE) { |
|
| 193 | + $value = substr($value, $pos + 1); |
|
| 194 | 194 | } |
| 195 | 195 | case 'email': |
| 196 | 196 | case 'mac': |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | $mail = \core\common\OutsideComm::mailHandle(); |
| 227 | 227 | $emails = ['[email protected]']; |
| 228 | 228 | //$emails = explode(',', $returnArray['idpcontact']); |
| 229 | - $mail->FromName = \config\Master::APPEARANCE['productname'] . " Notification System"; |
|
| 229 | + $mail->FromName = \config\Master::APPEARANCE['productname']." Notification System"; |
|
| 230 | 230 | foreach ($emails as $email) { |
| 231 | 231 | $mail->addAddress($email); |
| 232 | 232 | } |
@@ -236,11 +236,11 @@ discard block |
||
| 236 | 236 | } else { |
| 237 | 237 | $link = 'http://'; |
| 238 | 238 | } |
| 239 | - $link .= $_SERVER['SERVER_NAME'] . \core\CAT::getRootUrlPath() . '/diag/show_realmcheck.php?token=' . $returnArray['token']; |
|
| 239 | + $link .= $_SERVER['SERVER_NAME'].\core\CAT::getRootUrlPath().'/diag/show_realmcheck.php?token='.$returnArray['token']; |
|
| 240 | 240 | $returnArray['testurl'] = $link; |
| 241 | 241 | $mail->Subject = _('Suspected a technical problem with the IdP'); |
| 242 | - $txt = _("We suspect a technical problem with the IdP handling the realm") . ' ' . |
|
| 243 | - $returnArray['realm'] . ".\n"; |
|
| 242 | + $txt = _("We suspect a technical problem with the IdP handling the realm").' '. |
|
| 243 | + $returnArray['realm'].".\n"; |
|
| 244 | 244 | $txt .= _("The CAT diagnostic test was run for this realm during reporting.\n"); |
| 245 | 245 | $txt .= _("The overall result was "); |
| 246 | 246 | if ($returnArray['tests_result'] == 0) { |
@@ -248,15 +248,15 @@ discard block |
||
| 248 | 248 | } else { |
| 249 | 249 | $txt .= _("failure"); |
| 250 | 250 | } |
| 251 | - $txt .= ".\n" . _("To see details go to "); |
|
| 251 | + $txt .= ".\n"._("To see details go to "); |
|
| 252 | 252 | $txt .= "$link\n\n"; |
| 253 | - $txt .= _("The reported problem details are as follows") . "\n"; |
|
| 254 | - $txt .= _("timestamp") . ": " . $returnArray['timestamp'] . "\n"; |
|
| 255 | - $txt .= _("client MAC address") . ": " . $returnArray['mac'] . "\n"; |
|
| 253 | + $txt .= _("The reported problem details are as follows")."\n"; |
|
| 254 | + $txt .= _("timestamp").": ".$returnArray['timestamp']."\n"; |
|
| 255 | + $txt .= _("client MAC address").": ".$returnArray['mac']."\n"; |
|
| 256 | 256 | if ($returnArray['freetext']) { |
| 257 | - $txt .= _("additional comments") . ': ' . $returnArray['freetext'] . "\n"; |
|
| 257 | + $txt .= _("additional comments").': '.$returnArray['freetext']."\n"; |
|
| 258 | 258 | } |
| 259 | - $txt .= "\n" . _("You can contact the incident reporter at") . ' ' . $returnArray['email']; |
|
| 259 | + $txt .= "\n"._("You can contact the incident reporter at").' '.$returnArray['email']; |
|
| 260 | 260 | |
| 261 | 261 | $mail->Body = $txt; |
| 262 | 262 | $sent = $mail->send(); |