Ticket #9154: templates_optimizations_r9285.diff
File templates_optimizations_r9285.diff, 4.5 KB (added by , 16 years ago) |
---|
-
django/template/loader_tags.py
1 import copy 2 1 3 from django.template import TemplateSyntaxError, TemplateDoesNotExist, Variable 2 4 from django.template import Library, Node, TextNode 3 from django.template.loader import get_template , get_template_from_string, find_template_source5 from django.template.loader import get_template 4 6 from django.conf import settings 5 7 from django.utils.safestring import mark_safe 6 8 … … 43 45 self.nodelist = nodelist 44 46 self.parent_name, self.parent_name_expr = parent_name, parent_name_expr 45 47 self.template_dirs = template_dirs 48 if self.parent_name_expr is None: 49 self.compiled_parent = copy.deepcopy(self.get_parent(context=None)) 50 else: 51 self.compiled_parent = None 46 52 47 53 def __repr__(self): 48 54 if self.parent_name_expr: … … 61 67 if hasattr(parent, 'render'): 62 68 return parent # parent is a Template object 63 69 try: 64 source, origin = find_template_source(parent, self.template_dirs)70 return get_template(parent, self.template_dirs) 65 71 except TemplateDoesNotExist: 66 72 raise TemplateSyntaxError, "Template %r cannot be extended, because it doesn't exist" % parent 67 else:68 return get_template_from_string(source, origin, parent)69 73 70 74 def render(self, context): 71 compiled_parent = self.get_parent(context) 75 if self.compiled_parent is not None: 76 compiled_parent = self.compiled_parent 77 else: 78 compiled_parent = self.get_parent(context) 72 79 parent_blocks = dict([(n.name, n) for n in compiled_parent.nodelist.get_nodes_by_type(BlockNode)]) 80 old_parent_nodelists = dict() 73 81 for block_node in self.nodelist.get_nodes_by_type(BlockNode): 74 82 # Check for a BlockNode with this node's name, and replace it if found. 75 83 try: … … 93 101 # Keep any existing parents and add a new one. Used by BlockNode. 94 102 parent_block.parent = block_node.parent 95 103 parent_block.add_parent(parent_block.nodelist) 104 old_parent_nodelists[block_node.name] = parent_block.nodelist 96 105 parent_block.nodelist = block_node.nodelist 97 return compiled_parent.render(context) 106 rendered_string = compiled_parent.render(context) 107 # Restore every original parent nodelist 108 for node_name, nodelist in old_parent_nodelists.items(): 109 parent_blocks[node_name].nodelist = nodelist 110 return rendered_string 98 111 99 112 class ConstantIncludeNode(Node): 100 113 def __init__(self, template_path): … … 156 169 uses the literal value "base" as the name of the parent template to extend, 157 170 or ``{% extends variable %}`` uses the value of ``variable`` as either the 158 171 name of the parent template to extend (if it evaluates to a string) or as 159 the parent temp ate itelf (if it evaluates to a Template object).172 the parent template itself (if it evaluates to a Template object). 160 173 """ 161 174 bits = token.contents.split() 162 175 if len(bits) != 2: -
django/template/loader.py
26 26 27 27 template_source_loaders = None 28 28 29 _template_cache = {} 30 29 31 class LoaderOrigin(Origin): 30 32 def __init__(self, display_name, loader, name, dirs): 31 33 super(LoaderOrigin, self).__init__(display_name) … … 72 74 pass 73 75 raise TemplateDoesNotExist, name 74 76 75 def get_template(template_name ):77 def get_template(template_name, dirs=None): 76 78 """ 77 79 Returns a compiled Template object for the given template name, 78 80 handling template inheritance recursively. 79 81 """ 80 source, origin = find_template_source(template_name) 81 template = get_template_from_string(source, origin, template_name) 82 if not settings.TEMPLATE_DEBUG and template_name in _template_cache: 83 template = _template_cache[template_name] 84 else: 85 source, origin = find_template_source(template_name, dirs) 86 template = get_template_from_string(source, origin, template_name) 87 _template_cache[template_name] = template 82 88 return template 83 89 84 90 def get_template_from_string(source, origin=None, name=None):