Re: wsgi with separate css file

2009-11-13 Thread Aaron Watters
RE: serving static CSS files using WSGI > ...However, this method is fragile and very inefficient. If you want to   > eventually deploy this application somewhere, I would suggest starting   > with a different method. The WHIFF WSGI tools are meant to make this kind of thing easy. In fact the qu

Re: wsgi with separate css file

2009-11-13 Thread Rami Chowdhury
On Fri, 13 Nov 2009 08:55:33 -0800, Alena Bacova wrote: Hi, I'm using: from wsgiref import simple_server httpd = simple_server.make_server(HOST, PORT, Test) try: httpd.serve_forever() except KeyboardInterrupt: pass But I can use something else if needed. Application and htmk, css

Re: wsgi with separate css file

2009-11-13 Thread Rami Chowdhury
On Fri, 13 Nov 2009 08:34:57 -0800, Alena Bacova wrote: Hi all, I just wanted to know if anybody tried using wsgi as a web server that would be serving html file with separate css file. I managed to make my wsgi server display only on html file ( it has got the form tag, and I'm serving

wsgi with separate css file

2009-11-13 Thread Alena Bacova
Hi all, I just wanted to know if anybody tried using wsgi as a web server that would be serving html file with separate css file. I managed to make my wsgi server display only on html file ( it has got the form tag, and I'm serving do_get and do_post call to) but I would like to have formatting st