Re: Persistent Session in CGI

2006-08-30 Thread Damjan
> But.. WSGI is the new CGI Let me give you a minimal example using RhubarbTart (it depends on Paste) from rhubarbtart import request, response, expose from rhubarbtart import TartRootController class Root(TartRootController): @expose def index(self, msg="Hello world!"): response

Re: Persistent Session in CGI

2006-08-30 Thread Damjan
> I have started a new small web project, and was wondering if there are > any good guides on how to do Persistent Sessions and Authentication > using python and CGI. I don't really want too use Zope, because It's > probably overkill for my tiny project. Since you only mention Zope... Why not use

Re: Persistent Session in CGI

2006-08-27 Thread Fuzzyman
[EMAIL PROTECTED] wrote: > Hi, > > I have started a new small web project, and was wondering if there are > any good guides on how to do Persistent Sessions and Authentication > using python and CGI. I don't really want too use Zope, because It's > probably overkill for my tiny project. You could

Re: Persistent Session in CGI

2006-08-27 Thread Paul Rubin
[EMAIL PROTECTED] writes: > I have started a new small web project, and was wondering if there are > any good guides on how to do Persistent Sessions and Authentication > using python and CGI. I don't really want too use Zope, because It's > probably overkill for my tiny project. The simplest thin

Re: Persistent Session in CGI

2006-08-27 Thread Andre Meyer
Karrigell is a very easy-to-use pure-Python web framework. It has examples of session management.http://karrigell.sourceforge.net/regardsAndre On 27 Aug 2006 14:48:05 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote:Hi,I have started a new small web project, and was wondering if there are any go

Persistent Session in CGI

2006-08-27 Thread keegan . csmith
Hi, I have started a new small web project, and was wondering if there are any good guides on how to do Persistent Sessions and Authentication using python and CGI. I don't really want too use Zope, because It's probably overkill for my tiny project. -- http://mail.python.org/mailman/listinfo/py