[Repoze-dev] repoze.who.form usage question

2009-11-04 Thread Roland Hedberg
Hi! I'm working on a project where I need to let people authenticate. So I thought I would use repoze.who.form as a starting point. And it works ok except for one thing and that is this: When users hit my application the URL contains a query part. When they have gone through the login form the

[Repoze-dev] SAML2 in repoze.who

2010-04-29 Thread Roland Hedberg
Hi! I just released PySAML2 on Pypi. It's a SAML2.0 implementation intended for use within a WSGI frameworks. When I developed it I used repoze.who as the WSGI framework. Any comments are appreciated. --Roland ___ Repoze-dev mailing list

Re: [Repoze-dev] SAML2 in repoze.who

2010-04-30 Thread Roland Hedberg
On Apr 30, 2010, at 5:31, Tres Seaver wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Roland Hedberg wrote: I just released PySAML2 on Pypi. It's a SAML2.0 implementation intended for use within a WSGI frameworks. When I developed it I used repoze.who as the WSGI framework. Any

[Repoze-dev] Multiple authentication methods

2010-05-10 Thread Roland Hedberg
Hi! I have a use case where I would like the user to chose which authentication method to use. It's easy to have serveral authentication methods in repoze.who. But the normal case is that they are tried in order until someone succeeds or all are tried. I'd like the user to be presented with a

[Repoze-dev] repoze.who and redirect

2011-04-27 Thread Roland Hedberg
Hi! I have a WSDL application built on repoze.who . One outcome of the challenge() method is: from paste.httpexceptions import HTTPTemporaryRedirect return HTTPTemporaryRedirect(headers=[result]) where result is a tuple of the form (location, redirectURL) I expected this to result in

Re: [Repoze-dev] repoze.who and redirect

2011-04-27 Thread Roland Hedberg
On Apr 27, 2011, at 13:34, Roland Hedberg wrote: Hi! I have a WSDL application built on repoze.who . One outcome of the challenge() method is: from paste.httpexceptions import HTTPTemporaryRedirect return HTTPTemporaryRedirect(headers=[result]) where result is a tuple