##// END OF EJS Templates
Merge pull request #4437 from minrk/etag...
Min RK -
r13326:e9b5d189 merge
parent child Browse files
Show More
@@ -221,6 +221,9 b' class AuthenticatedFileHandler(IPythonHandler, web.StaticFileHandler):'
221
221
222 return web.StaticFileHandler.get(self, path)
222 return web.StaticFileHandler.get(self, path)
223
223
224 def compute_etag(self):
225 return None
226
224 def validate_absolute_path(self, root, absolute_path):
227 def validate_absolute_path(self, root, absolute_path):
225 """Validate and return the absolute path.
228 """Validate and return the absolute path.
226
229
@@ -312,6 +315,9 b' class FileFindHandler(web.StaticFileHandler):'
312 )
315 )
313 self.default_filename = default_filename
316 self.default_filename = default_filename
314
317
318 def compute_etag(self):
319 return None
320
315 @classmethod
321 @classmethod
316 def get_absolute_path(cls, roots, path):
322 def get_absolute_path(cls, roots, path):
317 """locate a file to serve on our static file search path"""
323 """locate a file to serve on our static file search path"""
General Comments 0
You need to be logged in to leave comments. Login now