[google-appengine] Re: Expires header for zipserve files?

2008-11-19 Thread Adam Fisk
Ahhh perfect -- thanks Hector. -Adam On Nov 19, 2:20 am, Hector Zhao <[EMAIL PROTECTED]> wrote: > change this: > - url: /images/.* > script: $PYTHON_LIB/google/appengine/ext/zipserve > to > - url: /images/.* > script: main.py # this could be other script, e.g. zipserve.py > > then

[google-appengine] Re: Expires header for zipserve files?

2008-11-19 Thread Hector Zhao
change this: - url: /images/.* script: $PYTHON_LIB/google/appengine/ext/zipserve to - url: /images/.* script: main.py # this could be other script, e.g. zipserve.py then have a look at: http://code.google.com/p/googleappengine/source/browse/trunk/google/appengine/ext/zipserve/__init_