Skip to content

Commit 1a3b040

Browse files
committed
Remove references to onelogin provided support.
1 parent bdae8cb commit 1a3b040

28 files changed

+29
-47
lines changed

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,4 +230,4 @@ Implement a more specific exception class for handling some validation errors. I
230230
* Security improved, added more checks at the SAMLResponse validation
231231

232232
### 1.0.0 (Jun 26, 2014)
233-
* OneLogin's SAML Python Toolkit v1.0.0
233+
* SAML Python Toolkit v1.0.0

demo-bottle/templates/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77

8-
<title>A Python SAML Toolkit by OneLogin demo</title>
8+
<title>A Python SAML Toolkit demo</title>
99

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

@@ -18,7 +18,7 @@
1818
</head>
1919
<body>
2020
<div class="container">
21-
<h1>A Python SAML Toolkit by OneLogin demo</h1>
21+
<h1>A Python SAML Toolkit demo</h1>
2222

2323
{% block content %}{% endblock %}
2424
</div>

demo-django/templates/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77

8-
<title>A Python SAML Toolkit by OneLogin demo</title>
8+
<title>A Python SAML Toolkit demo</title>
99

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

@@ -18,7 +18,7 @@
1818
</head>
1919
<body>
2020
<div class="container">
21-
<h1>A Python SAML Toolkit by OneLogin demo</h1>
21+
<h1>A Python SAML Toolkit demo</h1>
2222

2323
{% block content %}{% endblock %}
2424
</div>

demo-flask/templates/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77

8-
<title>A Python SAML Toolkit by OneLogin demo</title>
8+
<title>A Python SAML Toolkit demo</title>
99

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

@@ -18,7 +18,7 @@
1818
</head>
1919
<body>
2020
<div class="container">
21-
<h1>A Python SAML Toolkit by OneLogin demo</h1>
21+
<h1>A Python SAML Toolkit demo</h1>
2222

2323
{% block content %}{% endblock %}
2424
</div>

src/onelogin/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
# -*- coding: utf-8 -*-
22

33
"""
4-
Copyright (c) 2010-2021 OneLogin, Inc.
4+
Copyright (c) 2010-2022 OneLogin, Inc.
5+
Copyright (c) 2023 IAM DIgital Services, SL
6+
57
MIT License
68
79
Add SAML support to your Python softwares using this library.
810
Forget those complicated libraries and use that open source
9-
library provided and supported by OneLogin Inc.
11+
library.
1012
11-
OneLogin's SAML Python toolkit let you build a SP (Service Provider)
13+
SAML Python toolkit let you build a SP (Service Provider)
1214
over your Python application and connect it to any IdP (Identity Provider).
1315
1416
Supports:

src/onelogin/saml2/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
# -*- coding: utf-8 -*-
22

33
"""
4-
Copyright (c) 2010-2021 OneLogin, Inc.
4+
Copyright (c) 2010-2022 OneLogin, Inc.
5+
Copyright (c) 2023 IAM Digital Services, SL.
6+
57
MIT License
68
79
Add SAML support to your Python softwares using this library.
810
Forget those complicated libraries and use that open source
9-
library provided and supported by OneLogin Inc.
11+
library.
1012
11-
OneLogin's SAML Python toolkit let you build a SP (Service Provider)
13+
SAML Python toolkit let you build a SP (Service Provider)
1214
over your Python application and connect it to any IdP (Identity Provider).
1315
1416
Supports:

src/onelogin/saml2/auth.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
""" OneLogin_Saml2_Auth class
44
5-
Copyright (c) 2010-2021 OneLogin, Inc.
65
MIT License
76
8-
Main class of OneLogin's Python Toolkit.
7+
Main class of Python Toolkit.
98
109
Initializes the SP SAML instance
1110

src/onelogin/saml2/authn_request.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
""" OneLogin_Saml2_Authn_Request class
44
5-
Copyright (c) 2010-2021 OneLogin, Inc.
65
MIT License
76
8-
AuthNRequest class of OneLogin's Python Toolkit.
7+
AuthNRequest class of Python Toolkit.
98
109
"""
1110
from base64 import b64encode

src/onelogin/saml2/constants.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
""" OneLogin_Saml2_Constants class
44
5-
Copyright (c) 2010-2021 OneLogin, Inc.
65
MIT License
76
8-
Constants class of OneLogin's Python Toolkit.
7+
Constants class of Python Toolkit.
98
109
"""
1110

@@ -14,7 +13,7 @@ class OneLogin_Saml2_Constants(object):
1413
"""
1514
1615
This class defines all the constants that will be used
17-
in the OneLogin's Python Toolkit.
16+
in the Python Toolkit.
1817
1918
"""
2019

src/onelogin/saml2/errors.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
""" OneLogin_Saml2_Error class
44
5-
Copyright (c) 2010-2021 OneLogin, Inc.
65
MIT License
76
8-
Error class of OneLogin's Python Toolkit.
7+
Error class of Python Toolkit.
98
109
Defines common Error codes and has a custom initializator.
1110

0 commit comments

Comments
 (0)