Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-29 Thread J Kenneth King
excord80 writes: > I need to make a small, relatively low-traffic site that users can > create accounts on and log into. Scripts must run as cgi (no > mod_python or FastCGI is available). Can anyone recommend a small and > simple web framework for Python, maybe similar to Perl's > CGI::Applicatio

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-29 Thread Bruno Desthuilliers
excord80 a écrit : On Jan 28, 4:57 am, Bruno Desthuilliers wrote: What about:http://thraxil.org/code/cgi_app/ (yes, it is a port of CGI::Application, and FWIW it's mentionned on the CGI::Application's wiki). Nice find. Thank you. Interesting project. It seems to be only one fairly short fi

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread Jeroen Ruigrok van der Werven
-On [20090128 20:36], excord80 (excor...@gmail.com) wrote: >If that's correct, it would be great if there were a Werkzeug tutorial >on deploying it for use with CGI. There are some real life frontends for CGI, FCGI and WSGI in Zine[1]. Look in the servers directory in the repository. I'll double

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread excord80
On Jan 28, 3:10 pm, Fred Pacquier wrote: > > That would be something close to Karrigell... You know, I stumbled across Karrigell while looking around but was initially uninterested because of what initially seems like a lack of direction. That is, they tell you that you can use it any way you lik

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread Fred Pacquier
excord80 said : >> What are you looking for in your framework? > > Well, let's see. I don't need a templating library, since -- as you > pointed out -- I can just use Python's own. I don't need a db > interface (can just make my own dbapi calls if needed). Don't need url > mapping (can just use

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread excord80
On Jan 28, 1:33 pm, Jeroen Ruigrok van der Werven wrote: > -On [20090128 19:01], excord80 (excor...@gmail.com) wrote: > > >Again, the solution must work for plain vanilla CGI. I don't have WSGI > >available. But thank you. > > It works for plain CGI. I myself use it for FCGI. Thanks, Jeroen. Afte

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread Jeroen Ruigrok van der Werven
-On [20090128 19:01], excord80 (excor...@gmail.com) wrote: >Again, the solution must work for plain vanilla CGI. I don't have WSGI >available. But thank you. It works for plain CGI. I myself use it for FCGI. -- Jeroen Ruigrok van der Werven / asmodai イェルーン ラウフロック ヴァン デル ウェルヴェン http://www.in-nom

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread excord80
On Jan 28, 5:05 am, Jeroen Ruigrok van der Werven wrote: > > Werkzeug[1] should be in your line, I think. > > [1]http://werkzeug.pocoo.org/ > Again, the solution must work for plain vanilla CGI. I don't have WSGI available. But thank you. -- http://mail.python.org/mailman/listinfo/python-list

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread excord80
On Jan 28, 4:57 am, Bruno Desthuilliers wrote: > > What about:http://thraxil.org/code/cgi_app/ > > (yes, it is a port of CGI::Application, and FWIW it's mentionned on the > CGI::Application's wiki). > Nice find. Thank you. Interesting project. It seems to be only one fairly short file (perhaps t

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread Brian Blais
On Jan 27, 2009, at 16:19 , excord80 wrote: I need to make a small, relatively low-traffic site that users can create accounts on and log into. Scripts must run as cgi (no mod_python or FastCGI is available). Can anyone recommend a small and simple web framework for Python, maybe similar to Perl

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread Jeroen Ruigrok van der Werven
-On [20090127 22:21], excord80 (excor...@gmail.com) wrote: >I need to make a small, relatively low-traffic site that users can >create accounts on and log into. Scripts must run as cgi (no >mod_python or FastCGI is available). Can anyone recommend a small and >simple web framework for Python, maybe

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-28 Thread Bruno Desthuilliers
excord80 a écrit : I need to make a small, relatively low-traffic site that users can create accounts on and log into. Scripts must run as cgi (no mod_python or FastCGI is available). Can anyone recommend a small and simple web framework for Python, maybe similar to Perl's CGI::Application? Wha

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-27 Thread Graham Dumpleton
On Jan 28, 11:28 am, James Mills wrote: > On Wed, Jan 28, 2009 at 10:15 AM, excord80 wrote: > > Well, let's see. I don't need a templating library, since -- as you > > pointed out -- I can just use Python's own. I don't need a db > > interface (can just make my own dbapi calls if needed). Don't n

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-27 Thread excord80
On Jan 27, 7:28 pm, James Mills wrote: > > One option is to configure Apache with mod_wsgi and just > use WSGI. Fairly simple really and much like CGI. This is a shared hosting arrangement, so I don't have the option of adding an apache module. Also, if it's much like CGI, I don't see what benef

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-27 Thread James Mills
On Wed, Jan 28, 2009 at 10:15 AM, excord80 wrote: > Well, let's see. I don't need a templating library, since -- as you > pointed out -- I can just use Python's own. I don't need a db > interface (can just make my own dbapi calls if needed). Don't need url > mapping (can just use mod_rewrite rules

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-27 Thread excord80
On Jan 27, 4:52 pm, Tim Chase wrote: > > I need to make a small, relatively low-traffic site that users can > > create accounts on and log into. Scripts must run as cgi (no > > mod_python or FastCGI is available). Can anyone recommend a small and > > simple web framework for Python, maybe similar

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-27 Thread excord80
On Jan 27, 4:52 pm, Tim Chase wrote: > > I need to make a small, relatively low-traffic site that users can > > create accounts on and log into. Scripts must run as cgi (no > > mod_python or FastCGI is available). Can anyone recommend a small and > > simple web framework for Python, maybe similar

Re: Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-27 Thread Tim Chase
I need to make a small, relatively low-traffic site that users can create accounts on and log into. Scripts must run as cgi (no mod_python or FastCGI is available). Can anyone recommend a small and simple web framework for Python, maybe similar to Perl's CGI::Application? Or would it just be bett

Recommendation for a small web framework like Perl's CGI::Application to run as CGI?

2009-01-27 Thread excord80
I need to make a small, relatively low-traffic site that users can create accounts on and log into. Scripts must run as cgi (no mod_python or FastCGI is available). Can anyone recommend a small and simple web framework for Python, maybe similar to Perl's CGI::Application? Or would it just be bette