Skip to content

Commit f65a794

Browse files
committed
Fix some typos in documentation
1 parent 3bde482 commit f65a794

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Installation
8080

8181
* python 2.7 // python 3.3
8282
* [xmlsec](https://pypi.python.org/pypi/xmlsec) Python bindings for the XML Security Library.
83-
* [isodate](https://pypi.python.org/pypi/isodate) An ISO 8601 date/time/duration parser and formater
83+
* [isodate](https://pypi.python.org/pypi/isodate) An ISO 8601 date/time/duration parser and formatter
8484

8585
Review the setup.py file to know the version of the library that python3-saml is using
8686

@@ -426,7 +426,7 @@ auth = OneLogin_Saml2_Auth(req, settings_data)
426426
settings = OneLogin_Saml2_Settings(settings_data)
427427
```
428428

429-
You can declare the settings_data in the file that constains the constructor execution or locate them in any file and load the file in order to get the dict available as we see in the following example:
429+
You can declare the settings_data in the file that contains the constructor execution or locate them in any file and load the file in order to get the dict available as we see in the following example:
430430

431431
```python
432432
filename = "/var/www/django-project/custom_settings.json" # The custom_settings.json contains a
@@ -526,7 +526,7 @@ The login method can recieve 3 more optional parameters:
526526
#### The SP Endpoints ####
527527

528528
Related to the SP there are 3 important endpoints: The metadata view, the ACS view and the SLS view.
529-
The toolkit provides examples of those views in the demos, but lets see an example.
529+
The toolkit provides examples of those views in the demos, but let's see an example.
530530

531531
***SP Metadata***
532532

@@ -583,7 +583,7 @@ The SAML response is processed and then checked that there are no errors. It als
583583
At that point there are 2 possible alternatives:
584584

585585
* If no RelayState is provided, we could show the user data in this view or however we wanted.
586-
* If RelayState is provided, a rediretion take place.
586+
* If RelayState is provided, a redirection takes place.
587587

588588
Notice that we saved the user data in the session before the redirection to have the user data available at the RelayState view.
589589

@@ -878,7 +878,7 @@ A class that contains functionality related to the metadata of the SP
878878

879879
* ***builder*** Generates the metadata of the SP based on the settings.
880880
* ***sign_metadata*** Signs the metadata with the key/cert provided.
881-
* ***add_x509_key_descriptors*** Adds the x509 descriptors (sign/encriptation) to the metadata
881+
* ***add_x509_key_descriptors*** Adds the x509 descriptors (sign/encryption) to the metadata
882882

883883
####OneLogin_Saml2_Utils - utils.py####
884884

@@ -945,8 +945,8 @@ how it deployed. New demos using other python frameworks are welcome as a contri
945945

946946
### Getting Started ###
947947

948-
We said that this toolkit includes a django application demo and a flask applicacion demo,
949-
lets see how fast is deploy them.
948+
We said that this toolkit includes a django application demo and a flask application demo,
949+
let's see how fast is it to deploy them.
950950

951951
***Virtualenv***
952952

@@ -1037,7 +1037,7 @@ Once the SP is configured, the metadata of the SP is published at the /metadata
10371037

10381038
5.2 SLO Initiated by IdP. In this case, the action takes place on the IdP side, the logout process is initiated at the IdP, sends a Logout Request to the SP (SLS endpoint, /?sls). The SLS endpoint of the SP process the Logout Request and if is valid, close the session of the user at the local app and send a Logout Response to the IdP (to the SLS endpoint of the IdP). The IdP receives the Logout Response, process it and close the session at of the IdP. Notice that the SLO Workflow starts and ends at the IdP.
10391039

1040-
Notice that all the SAML Requests and Responses are handled at a unique view (index) and how GET paramters are used to know the action that must be done.
1040+
Notice that all the SAML Requests and Responses are handled at a unique view (index) and how GET parameters are used to know the action that must be done.
10411041

10421042
### Demo Django ###
10431043

0 commit comments

Comments
 (0)