def render(self, context): js_name = template.Variable(self.name).resolve(context) try: js = settings.COMPRESS_JS[js_name] except KeyError: return '' # fail silently, do not return anything if an invalid group is specified if 'external_urls' in js: r = '' for url in js['external_urls']: r += render_js(js, url) return r if settings.COMPRESS: version = None if settings.COMPRESS_AUTO: u, version = needs_update(js['output_filename'], js['source_filenames']) if u: filter_js(js) else: filename_base, filename = os.path.split(js['output_filename']) path_name = media_root(filename_base) version = get_version_from_file(path_name, filename) return render_js(js, js['output_filename'], version) else: # output source files r = '' for source_file in js['source_filenames']: r += render_js(js, source_file) return r
def render(self, context): css_name = template.Variable(self.name).resolve(context) try: css = settings.COMPRESS_CSS[css_name] except KeyError: return '' # fail silently, do not return anything if an invalid group is specified if settings.COMPRESS: version = None if settings.COMPRESS_AUTO: u, version = needs_update(css['output_filename'], css['source_filenames']) css = compile_css(css,u) # Get the correct version number version = get_version(css['source_filenames']) if u: filter_css(css,0) else: filename_base, filename = os.path.split(css['output_filename']) path_name = media_root(filename_base) version = get_version_from_file(path_name, filename) return render_css(css, css['output_filename'], version) else: # output source files r = '' u, version = needs_update(css['output_filename'], css['source_filenames']) css = compile_css(css,u) for source_file in css['source_filenames']: r += render_css(css, source_file) return r