Florian Best

Results 155 issues of Florian Best

I have the following python file [test.py](https://github.com/hhatto/autopep8/files/550545/test.txt): ``` foo = { » 'foo': foo( » » » foo=1, » » » bar=2, » » » baz=3, » ), » 'bar':...

Hello, Is there a documentation about migrating from `djcelery` to `django_celery_results`? It seems there were 6 tables: ``` public | djcelery_crontabschedule | table | public | djcelery_intervalschedule | table |...

Wow, this project is awesome! I have some start-difficulties: I want to implement a protocol like HTTP, which is directly under TCP. What do I have to enter as value...

The example `sp-wsgi/sp.py` stores the `response.name_id` which is a `saml2.saml.NameID`. https://github.com/IdentityPython/pysaml2/blob/master/example/sp-wsgi/sp.py#L404-L405 https://github.com/IdentityPython/pysaml2/blob/master/example/sp-wsgi/sp.py#L335-L339 Holding this in memory between multiple requests bloats up the RAM / RS. For 800 logged in users...

wontfix
weakness

The error handling for invalid SAML messages is broken: ``` Traceback (most recent call last): response = self.sp.parse_authn_request_response(message, binding, self.outstanding_queries) File "/usr/lib/python2.7/dist-packages/saml2/client_base.py", line 711, in parse_authn_request_response binding, **kwargs) File "/usr/lib/python2.7/dist-packages/saml2/entity.py",...

bug

FYI: I did some performance measurement of pysaml2 (4.5-0 on Python 2.7) and python-saml from onelogin. My result are, that pysaml2 performs a little bit better. I would have expected...

examples
performances

Hi, I searched for `state_cache` in the documentation (https://pysaml2.readthedocs.io/en/latest/search.html?q=state_cache&check_keywords=yes&area=default#) without results. I think it would be good to document this feature. I assume `Saml2Client`'s `state_cache` and `identity_cache` are the only...

question
documentation

The function do_requested_attribute() in src/saml2/metadata.py makes it impossible to specify any other name format than "urn:oasis:names:tc:SAML:2.0:attrname-format:uri" for the RequestedAttribute values in the generated metadata. My suggestion is to add CONFIG[service][sp][attribute_name_format]...

feature

The example for a SP implemented the following SAML bindings: - BINDING_HTTP_REDIRECT - BINDING_HTTP_POST - BINDING_HTTP_ARTIFACT - BINDING_SOAP but the configuration in example/sp-wsgi/sp_conf.py.example contains only BINDING_HTTP_POST for the ACS. All...

documentation