##// 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 222 return web.StaticFileHandler.get(self, path)
223 223
224 def compute_etag(self):
225 return None
226
224 227 def validate_absolute_path(self, root, absolute_path):
225 228 """Validate and return the absolute path.
226 229
@@ -312,6 +315,9 b' class FileFindHandler(web.StaticFileHandler):'
312 315 )
313 316 self.default_filename = default_filename
314 317
318 def compute_etag(self):
319 return None
320
315 321 @classmethod
316 322 def get_absolute_path(cls, roots, path):
317 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