Skip to content

Commit

Permalink
Remove references to onelogin provided support.
Browse files Browse the repository at this point in the history
  • Loading branch information
pitbulk committed Jan 6, 2023
1 parent bdae8cb commit 1a3b040
Show file tree
Hide file tree
Showing 28 changed files with 29 additions and 47 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Expand Up @@ -230,4 +230,4 @@ Implement a more specific exception class for handling some validation errors. I
* Security improved, added more checks at the SAMLResponse validation

### 1.0.0 (Jun 26, 2014)
* OneLogin's SAML Python Toolkit v1.0.0
* SAML Python Toolkit v1.0.0
4 changes: 2 additions & 2 deletions demo-bottle/templates/base.html
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>A Python SAML Toolkit by OneLogin demo</title>
<title>A Python SAML Toolkit demo</title>

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

Expand All @@ -18,7 +18,7 @@
</head>
<body>
<div class="container">
<h1>A Python SAML Toolkit by OneLogin demo</h1>
<h1>A Python SAML Toolkit demo</h1>

{% block content %}{% endblock %}
</div>
Expand Down
4 changes: 2 additions & 2 deletions demo-django/templates/base.html
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>A Python SAML Toolkit by OneLogin demo</title>
<title>A Python SAML Toolkit demo</title>

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

Expand All @@ -18,7 +18,7 @@
</head>
<body>
<div class="container">
<h1>A Python SAML Toolkit by OneLogin demo</h1>
<h1>A Python SAML Toolkit demo</h1>

{% block content %}{% endblock %}
</div>
Expand Down
4 changes: 2 additions & 2 deletions demo-flask/templates/base.html
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>A Python SAML Toolkit by OneLogin demo</title>
<title>A Python SAML Toolkit demo</title>

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

Expand All @@ -18,7 +18,7 @@
</head>
<body>
<div class="container">
<h1>A Python SAML Toolkit by OneLogin demo</h1>
<h1>A Python SAML Toolkit demo</h1>

{% block content %}{% endblock %}
</div>
Expand Down
8 changes: 5 additions & 3 deletions src/onelogin/__init__.py
@@ -1,14 +1,16 @@
# -*- coding: utf-8 -*-

"""
Copyright (c) 2010-2021 OneLogin, Inc.
Copyright (c) 2010-2022 OneLogin, Inc.
Copyright (c) 2023 IAM DIgital Services, SL
MIT License
Add SAML support to your Python softwares using this library.
Forget those complicated libraries and use that open source
library provided and supported by OneLogin Inc.
library.
OneLogin's SAML Python toolkit let you build a SP (Service Provider)
SAML Python toolkit let you build a SP (Service Provider)
over your Python application and connect it to any IdP (Identity Provider).
Supports:
Expand Down
8 changes: 5 additions & 3 deletions src/onelogin/saml2/__init__.py
@@ -1,14 +1,16 @@
# -*- coding: utf-8 -*-

"""
Copyright (c) 2010-2021 OneLogin, Inc.
Copyright (c) 2010-2022 OneLogin, Inc.
Copyright (c) 2023 IAM Digital Services, SL.
MIT License
Add SAML support to your Python softwares using this library.
Forget those complicated libraries and use that open source
library provided and supported by OneLogin Inc.
library.
OneLogin's SAML Python toolkit let you build a SP (Service Provider)
SAML Python toolkit let you build a SP (Service Provider)
over your Python application and connect it to any IdP (Identity Provider).
Supports:
Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/auth.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Auth class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
Main class of OneLogin's Python Toolkit.
Main class of Python Toolkit.
Initializes the SP SAML instance
Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/authn_request.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Authn_Request class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
AuthNRequest class of OneLogin's Python Toolkit.
AuthNRequest class of Python Toolkit.
"""
from base64 import b64encode
Expand Down
5 changes: 2 additions & 3 deletions src/onelogin/saml2/constants.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Constants class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
Constants class of OneLogin's Python Toolkit.
Constants class of Python Toolkit.
"""

Expand All @@ -14,7 +13,7 @@ class OneLogin_Saml2_Constants(object):
"""
This class defines all the constants that will be used
in the OneLogin's Python Toolkit.
in the Python Toolkit.
"""

Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/errors.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Error class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
Error class of OneLogin's Python Toolkit.
Error class of Python Toolkit.
Defines common Error codes and has a custom initializator.
Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/idp_metadata_parser.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_IdPMetadataParser class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
Metadata class of OneLogin's Python Toolkit.
Metadata class of Python Toolkit.
"""

Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/logout_request.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Logout_Request class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
Logout Request class of OneLogin's Python Toolkit.
Logout Request class of Python Toolkit.
"""

Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/logout_response.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Logout_Response class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
Logout Response class of OneLogin's Python Toolkit.
Logout Response class of Python Toolkit.
"""

Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/metadata.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Metadata class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
Metadata class of OneLogin's Python Toolkit.
Metadata class of Python Toolkit.
"""

Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/response.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Response class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
SAML Response class of OneLogin's Python Toolkit.
SAML Response class of Python Toolkit.
"""

Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/settings.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Settings class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
Setting class of OneLogin's Python Toolkit.
Setting class of Python Toolkit.
"""

Expand Down
3 changes: 1 addition & 2 deletions src/onelogin/saml2/utils.py
Expand Up @@ -2,10 +2,9 @@

""" OneLogin_Saml2_Utils class
Copyright (c) 2010-2021 OneLogin, Inc.
MIT License
Auxiliary class of OneLogin's Python Toolkit.
Auxiliary class of Python Toolkit.
"""

Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/auth_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License

from base64 import b64decode, b64encode
Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/authn_request_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License

from base64 import b64decode
Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/error_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License

import unittest
Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/idp_metadata_parser_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License


Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/logout_request_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License

from base64 import b64encode
Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/logout_response_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License

import json
Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/metadata_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License


Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/response_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License

from base64 import b64decode, b64encode
Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/settings_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License

import json
Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/signed_response_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License

from base64 import b64encode
Expand Down
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/utils_test.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2010-2021 OneLogin, Inc.
# MIT License

from base64 import b64decode
Expand Down

0 comments on commit 1a3b040

Please sign in to comment.