Ticket #9154: templates_optimizations_r9076.2.diff
File templates_optimizations_r9076.2.diff, 4.6 KB (added by , 16 years ago) |
---|
-
django/contrib/admin/templatetags/log.py
15 15 context[self.varname] = LogEntry.objects.all().select_related('content_type', 'user')[:self.limit] 16 16 else: 17 17 if not self.user.isdigit(): 18 self.user= context[self.user].id19 context[self.varname] = LogEntry.objects.filter(user__id__exact= self.user).select_related('content_type', 'user')[:self.limit]18 user_id = context[self.user].id 19 context[self.varname] = LogEntry.objects.filter(user__id__exact=user_id).select_related('content_type', 'user')[:self.limit] 20 20 return '' 21 21 22 22 class DoGetAdminLog: -
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 self.compiled_parent = copy.deepcopy(self.get_parent()) 46 49 47 50 def __repr__(self): 48 51 if self.parent_name_expr: 49 52 return "<ExtendsNode: extends %s>" % self.parent_name_expr.token 50 53 return '<ExtendsNode: extends "%s">' % self.parent_name 51 54 52 def get_parent(self, context): 53 if self.parent_name_expr: 54 self.parent_name = self.parent_name_expr.resolve(context) 55 def get_parent(self): 55 56 parent = self.parent_name 56 57 if not parent: 57 58 error_msg = "Invalid template name in 'extends' tag: %r." % parent … … 61 62 if hasattr(parent, 'render'): 62 63 return parent # parent is a Template object 63 64 try: 64 source, origin = find_template_source(parent, self.template_dirs)65 return get_template(parent, self.template_dirs) 65 66 except TemplateDoesNotExist: 66 67 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 68 70 69 def render(self, context): 71 compiled_parent = self. get_parent(context)70 compiled_parent = self.compiled_parent 72 71 parent_blocks = dict([(n.name, n) for n in compiled_parent.nodelist.get_nodes_by_type(BlockNode)]) 73 72 for block_node in self.nodelist.get_nodes_by_type(BlockNode): 74 73 # Check for a BlockNode with this node's name, and replace it if found. … … 156 155 uses the literal value "base" as the name of the parent template to extend, 157 156 or ``{% extends variable %}`` uses the value of ``variable`` as either the 158 157 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).158 the parent template itself (if it evaluates to a Template object). 160 159 """ 161 160 bits = token.contents.split() 162 161 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, from_child=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) 82 if template_name in _template_cache: 83 return _template_cache[template_name] 84 source, origin = find_template_source(template_name, dirs) 81 85 template = get_template_from_string(source, origin, template_name) 86 _template_cache[template_name] = template 82 87 return template 83 88 84 89 def get_template_from_string(source, origin=None, name=None):