Skip to content
Snippets Groups Projects
Commit 5c7008db authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Fix spelling mistake on incomming versus incoming. Thanks Simon.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1150 44740490-163a-0410-bde0-09ae8108e29a
parent 689f8577
No related branches found
No related tags found
No related merge requests found
......@@ -1220,7 +1220,7 @@ openssl x509 -req -days 60 -in server2.csr -signkey server2.key -out server2.crt
<para>The authentication plugin should be placed in the
<filename>auth</filename> directory.</para>
<para>The following parameters must be accepted in the incomming
<para>The following parameters must be accepted in the incoming
URL:</para>
<itemizedlist>
......@@ -1230,7 +1230,7 @@ openssl x509 -req -days 60 -in server2.csr -signkey server2.key -out server2.crt
</listitem>
<listitem>
<para><literal>RequestID</literal>: ID of an incomming
<para><literal>RequestID</literal>: ID of an incoming
request.</para>
</listitem>
</itemizedlist>
......
......@@ -18,7 +18,7 @@ if($_SERVER['REQUEST_METHOD'] !== 'POST') {
* POST fields will be added to the email in the order they appear here, and with the description
* from the value in the array.
*
* DEPRECATED. Included as reference of incomming parameters.
* DEPRECATED. Included as reference of incoming parameters.
*/
$mailFormat = array(
'email' => 'Email address of submitter',
......
<?php
/**
* The SSOService is part of the SAML 2.0 IdP code, and it receives incomming Authentication Requests
* The SSOService is part of the SAML 2.0 IdP code, and it receives incoming Authentication Requests
* from a SAML 2.0 SP, parses, and process it, and then authenticates the user and sends the user back
* to the SP with an Authentication Response.
*
......@@ -35,7 +35,7 @@ if (!$config->getValue('enable.saml20-idp', false))
/*
* If the SAMLRequest query parameter is set, we got an incomming Authentication Request
* If the SAMLRequest query parameter is set, we got an incoming Authentication Request
* at this interface.
*
* In this case, what we should do is to process the request and set the neccessary information
......@@ -114,7 +114,7 @@ if (isset($_GET['SAMLRequest'])) {
}
/*
* If we did not get an incomming Authenticaiton Request, we need a RequestID parameter.
* If we did not get an incoming Authenticaiton Request, we need a RequestID parameter.
*
* The RequestID parameter is used to retrieve the information stored in the session object
* related to the request that was received earlier. Usually the request is processed with
......@@ -126,7 +126,7 @@ if (isset($_GET['SAMLRequest'])) {
try {
SimpleSAML_Logger::info('SAML2.0 - IdP.SSOService: Got incomming authentication ID');
SimpleSAML_Logger::info('SAML2.0 - IdP.SSOService: Got incoming authentication ID');
$authId = $_GET['RequestID'];
$requestcache = $session->getAuthnRequest('saml2', $authId);
......
<?php
/**
* This SAML 2.0 endpoint can receive incomming LogoutRequests. It will also send LogoutResponses,
* This SAML 2.0 endpoint can receive incoming LogoutRequests. It will also send LogoutResponses,
* and LogoutRequests and also receive LogoutResponses. It is implemeting SLO at the SAML 2.0 IdP.
*
* @author Andreas Åkre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
......@@ -82,7 +82,7 @@ function saveLogoutInfo($id) {
/**
* If we get an incomming LogoutRequest then we initiate the logout process.
* If we get an incoming LogoutRequest then we initiate the logout process.
* in this case an SAML 2.0 SP is sending an request, which also is referred to as
* SP initiated Single Logout.
*
......
<?php
/**
* This SAML 2.0 endpoint can receive incomming LogoutRequests. It will also send LogoutResponses,
* This SAML 2.0 endpoint can receive incoming LogoutRequests. It will also send LogoutResponses,
* and LogoutRequests and also receive LogoutResponses. It is implemeting SLO at the SAML 2.0 IdP.
*
* @author Andreas Åkre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
......
......@@ -2,7 +2,7 @@
/**
* This SAML 2.0 endpoint can receive incomming LogoutResponses.
* This SAML 2.0 endpoint can receive incoming LogoutResponses.
*
* @author Andreas Åkre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
* @package simpleSAMLphp
......
<?php
/**
* The SSOService is part of the Shibboleth 1.3 IdP code, and it receives incomming Authentication Requests
* The SSOService is part of the Shibboleth 1.3 IdP code, and it receives incoming Authentication Requests
* from a Shibboleth 1.3 SP, parses, and process it, and then authenticates the user and sends the user back
* to the SP with an Authentication Response.
*
......@@ -30,7 +30,7 @@ try {
}
/*
* If the shire query parameter is set, we got an incomming Authentication Request
* If the shire query parameter is set, we got an incoming Authentication Request
* at this interface.
*
* In this case, what we should do is to process the request and set the neccessary information
......@@ -56,7 +56,7 @@ if (isset($_GET['shire'])) {
'RelayState' => $authnrequest->getRelayState(),
);
SimpleSAML_Logger::info('Shib1.3 - IdP.SSOService: Got incomming Shib authnRequest requestid: '.$requestid);
SimpleSAML_Logger::info('Shib1.3 - IdP.SSOService: Got incoming Shib authnRequest requestid: '.$requestid);
} catch(Exception $exception) {
SimpleSAML_Utilities::fatalError($session->getTrackID(), 'PROCESSAUTHNREQUEST', $exception);
......@@ -64,7 +64,7 @@ if (isset($_GET['shire'])) {
/*
* If we did not get an incomming Authenticaiton Request, we need a RequestID parameter.
* If we did not get an incoming Authenticaiton Request, we need a RequestID parameter.
*
* The RequestID parameter is used to retrieve the information stored in the session object
* related to the request that was received earlier. Usually the request is processed with
......@@ -80,7 +80,7 @@ if (isset($_GET['shire'])) {
$requestcache = $session->getAuthnRequest('shib13', $authId);
SimpleSAML_Logger::info('Shib1.3 - IdP.SSOService: Got incomming RequestID: '. $authId);
SimpleSAML_Logger::info('Shib1.3 - IdP.SSOService: Got incoming RequestID: '. $authId);
if (!$requestcache) {
throw new Exception('Could not retrieve cached RequestID = ' . $authId);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment