[Twisted-Python] request getUser()/getPassword() in Woven and resources...
Hi all, I've had a twisted web application running for a while that uses request.getUser() and request.getPassword() in a resource subclass render() method to make the web browser prompt for a username/password. I've been refactoring this application to use Woven page subclasses and the same request.getFoo() calls now return empty strings rather than None, and no prompting from the browser is done. Is there some gotcha in using request.getUser() and request.getPassword() from Woven page subclasses? Cheers, Stu -- :: Stuart Hungerford (stuart.hungerford@anu.edu.au) :: ANU Internet Futures Group
My question goes along the previous one in this thread. How do you get the browser to prompt for a username and password? My code is not woking and goes something like this: On every page request a certain function is called, say genpage()... def genpage(request) request.getUser() request.getPassword() return "hello world" -> Browser does not prompt though. (And this does not even involve woven) _stephan On Thu, 30 Oct 2003 15:52:32 +1100, Stuart Hungerford <stuart.hungerford@anu.edu.au> wrote:
Hi all,
I've had a twisted web application running for a while that uses request.getUser() and request.getPassword() in a resource subclass render() method to make the web browser prompt for a username/password.
I've been refactoring this application to use Woven page subclasses and the same request.getFoo() calls now return empty strings rather than None, and no prompting from the browser is done.
Is there some gotcha in using request.getUser() and request.getPassword() from Woven page subclasses?
Cheers,
Stu
-- :: Stuart Hungerford (stuart.hungerford@anu.edu.au) :: ANU Internet Futures Group
_______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
participants (2)
-
stephan
-
Stuart Hungerford