On May 3, 12:17 am, gert <gert.cuyk...@gmail.com> wrote: > On May 2, 10:58 pm, gert <gert.cuyk...@gmail.com> wrote: > > > > > On May 2, 10:44 pm, gert <gert.cuyk...@gmail.com> wrote: > > > > Aldo i like the cerrypy wsgi server very much, i do not like the tools > > > that go with it > > > so i am stuck with a configuration file that looks like this > > > >http://pastebin.com/m4d8184bc > > > > After 152 line I finally arrived to a point where i was thinkig "thats > > > it, this is like going to work on a uni cycle and is just plain > > > ridicules" > > > > So how can i generate some functions something like > > > > def generate(url,type): # where type could be htm js css or wsgi > > > I was thinking something like this ? > > > def static(url, mime): > > def application(environ, response): > > f=open(os.path.join(os.path.dirname(__file__), url),'rb') > > l=os.fstat(f.fileno()).st_size > > response('200 OK', [('Content-type', mime+';charset=utf-8'), > > ('Content-Length', str(l))]) > > return FileWrapper(f, 8192) > > return application > > it works, i reduced it to this :-) > > http://code.google.com/p/appwsgi/source/browse/trunk/server.py > > any other suggestions to make it smaller and more automatic ?
Wait a minute why am i not using this ? http://docs.python.org/3.0/library/wsgiref.html#wsgiref.util.request_uri And just make my own server ? -- http://mail.python.org/mailman/listinfo/python-list