Static files? In the end it is the browser that caches them. web2py
does not ask the browser to cache them.
You can try serve them using a custom controller. In this case web2py
would do (under the hood):
response.headers['Content-Type'] =
contenttype('.'+request.extension)
response.headers['Cache-Control'] = \
'no-store, no-cache, must-revalidate, post-check=0,
pre-check=0'
response.headers['Expires'] = \
time.strftime('%a, %d %b %Y %H:%M:%S GMT',
time.gmtime())
response.headers['Pragma'] = 'no-cache'
The browser may still ignore it.
On Mar 15, 10:23 am, "mr.freeze" <[email protected]> wrote:
> What is the best way to prevent caching of all files in a subfolder of
> static from being cached. The files are served by web2py. Any help is
> appreciated.
>
> Thanks,
> Nathan
--
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en.