Skip to content

Allow for multiple attribute statements in response #205

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 65 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
65 commits
Select commit Hold shift + click to select a range
d2ab94c
adding *~ to gitignore; changing version in setup.py; allowing for mu…
pcrownov Jan 7, 2015
39b7cb8
adding *~ to gitignore; changing version in setup.py; allowing for mu…
pcrownov Jan 7, 2015
172fed2
adding trace statements
pcrownov Jan 28, 2015
0185d9f
updating version
pcrownov Jan 28, 2015
26f833d
adding debug statements
pcrownov Apr 27, 2015
333ec7b
adding more debug
pcrownov May 4, 2015
7cda824
adding more debug
pcrownov May 4, 2015
36a5381
adding more debug
pcrownov May 4, 2015
689c267
adding more debug
pcrownov May 4, 2015
834f9f1
debugging to saml response
pcrownov May 6, 2015
90241b8
debugging to saml response
pcrownov May 6, 2015
25f9383
adding in debugging and a null handle statement
pcrownov May 11, 2015
6d8a14b
python != js
pcrownov May 11, 2015
919cad5
debugging
pcrownov May 11, 2015
7f13fee
bug fix
pcrownov May 11, 2015
affe57e
bug fix
pcrownov May 11, 2015
2dbd520
bug fix
pcrownov May 11, 2015
777ebdf
logging
pcrownov May 11, 2015
22e2c49
logging
pcrownov May 11, 2015
d0aa719
logging
pcrownov May 13, 2015
cad5bf9
logging
pcrownov May 13, 2015
699db8d
updating some null checks and debug statements
pcrownov Jun 19, 2015
2f59069
syntax error
pcrownov Jun 19, 2015
f5d1107
debugging
pcrownov Jun 19, 2015
e547b8c
updating debugging
pcrownov Jun 21, 2015
9be5673
playing around with remember and api
pcrownov Jun 22, 2015
3db9652
some syntax errors
pcrownov Jun 22, 2015
b20a7af
syntax error
pcrownov Jun 22, 2015
6fb70dc
syntax error
pcrownov Jun 22, 2015
4ed4092
logic error
pcrownov Jun 22, 2015
ee8233d
debugging
pcrownov Jun 22, 2015
9a69256
debugging
pcrownov Jun 22, 2015
80a673c
debugging
pcrownov Jun 22, 2015
8920a2e
debugging
pcrownov Jun 22, 2015
679287d
debugging
pcrownov Jun 22, 2015
6c56874
trying to uncomment deletion of outstanding queries
pcrownov Jun 22, 2015
d9537b1
debugging
pcrownov Jun 23, 2015
90c1e61
adding del back in, adding debug statements
pcrownov Jun 25, 2015
229d8fc
adding new plugin to saml set
pcrownov Nov 3, 2015
42b74df
renaming class
pcrownov Nov 3, 2015
f59c4d4
removing md provider from generic and adding some debugging
pcrownov Nov 3, 2015
6d2595d
adding more debugging
pcrownov Nov 3, 2015
e382e31
fixing bug with userdata varibale naming
pcrownov Nov 3, 2015
b08ead2
changing out specialized auth_tkt stuff in pysaml for generic
pcrownov Nov 3, 2015
00c6abf
adding debugging
pcrownov Nov 10, 2015
79f9ebd
fix for pysaml2 implementation of repoze.who
pcrownov Nov 10, 2015
3449cdc
adding code for memcache sid store in pysaml2
pcrownov Nov 11, 2015
a00c59a
syntax error
pcrownov Nov 11, 2015
ae38c7c
syntax error
pcrownov Nov 11, 2015
c2027fa
logic error
pcrownov Nov 11, 2015
cb4f2b0
fixing bug with wrong variable names in some sid references
pcrownov Nov 11, 2015
65a3989
forgot some self references and added memcache import
pcrownov Nov 11, 2015
0d22292
missed renaming a variable
pcrownov Nov 11, 2015
295094d
better error handling and null init handling
pcrownov Nov 11, 2015
24dbc75
fixing issue with null store from memcache and adding a bit of debugging
pcrownov Nov 11, 2015
ef4d2de
syntax error
pcrownov Nov 11, 2015
5d8b6aa
adding debugging
pcrownov Nov 11, 2015
932d3cb
adding code to delete completed saml call ids from system
pcrownov Nov 11, 2015
0a632fe
adding debug log to remember get
pcrownov Oct 5, 2016
2921bb9
adding some more logging
pcrownov Dec 13, 2017
b562e5b
rusty on python syntax...
pcrownov Dec 13, 2017
b3af7e8
fixing tab vs space issue
pcrownov Dec 14, 2017
57d0960
changing logging to print dict
pcrownov Dec 14, 2017
ff83900
adding logging to understand endpoints from config file
pcrownov Dec 14, 2017
89c53e1
adding logging to understand endpoints from config file
pcrownov Dec 14, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*.~
\#*
.*~
*~
*.egg-info
example/*/*.log
example/*.db
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def run_tests(self):

setup(
name='pysaml2',
version='2.2.1beta',
version='2.2.1.2-rh',
description='Python implementation of SAML Version 2 to be used in a WSGI environment',
# long_description = read("README"),
author='Roland Hedberg',
Expand Down
Loading