[Pylets-devel] Re: around and call-next-method
Status: Alpha
Brought to you by:
frobenius
|
From: Doug H. <d.h...@va...> - 2004-03-23 01:21:00
|
> > But when it comes to python web frameworks, what I have been looking for > > is a good secure user login example (with sessions, a persistent > > backend, don't have to worry about cross-site scripting, etc.). There > > are dozens of examples in PHP, but I can't find a good example in Python > > (except for Zope). > > in the example pylets i gave with the distribution (it's on the CVS > stuff) there's an example of a login-page secure site with sessions, > etc. to make it ssl-encrypted just use apache ssl stuff. i believe > it is called "securetest". Right, I guess I was meaning an example of a complete email-based login system. Every python web framework has a basic login example like yours, but I haven't seen an application with a login system like many PHP apps - email notification of forgotten passwords, challenge-response login authentication, flexible authentication methods (mysql, LDAP, etc.), access control lists... There are dozens of open source PHP apps that use login systems like these. Of course they each do it from scratch differently every time though. So maybe this is something I could try to create sometime using modpython. |