def acceleratedGet(self, file_name): import codecs from os.path import join,isdir from distutils.dep_util import newer_group src = join(structure.JS_DIR,file_name) if not isdir(src): raise tornado.web.HTTPError(404) target = join(self.application.site["target_path"],"js",file_name) if newer_assets(src,target) or self.request.headers.get("force",False): lines = combine_asset_sources(src,structure.JS_DIR,source_node=JsSourceNode) with codecs.open(target,"w", encoding="utf-8") as f: text = u''.join(lines) f.write(text) f.flush() self.set_header("Content-Type","text/javascript") self.set_header('X-Accel-Redirect',"/root/target/%s/js/%s" % (self.application.site["dirname"], file_name))
def getSource(self, file_name): import codecs from os.path import join,isdir from distutils.dep_util import newer_group src = join(structure.JS_DIR,file_name) if not isdir(src): raise tornado.web.HTTPError(404) target = join(self.application.site["target_path"],"js",file_name) text = None if newer_assets(src,target) or self.request.headers.get("force",False): lines = combine_asset_sources(src,structure.JS_DIR,source_node=JsSourceNode) with codecs.open(target,"w",encoding="utf-8") as f: text = u''.join(lines) f.write(text) f.flush() if not text: with open(target,"r") as f: text = f.read() return text