Best Regards,Ross--
You received this message because you are subscribed to the Google Groups "cherrypy-users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/cherrypy-users/-/_v-W79ey1oEJ.
To post to this group, send email to cherryp...@googlegroups.com.
To unsubscribe from this group, send email to cherrypy-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/cherrypy-users?hl=en.
First, try caching as Eric suggested. But to make a Tool that overrides
the normal handler, just remove it. Try this instead:
if cherrypy.request.method.upper() == 'HEAD':
cherrypy.response.headers['Content-Length'] = 3182
...other headers as needed to reproduce the GET headers...
cherrypy.request.handler = None
Robert Brewer
fuma...@aminus.org