Changeset 7768 for django/branches/gis/django/template/loader_tags.py
- Timestamp:
- 06/26/08 10:11:55 (7 months ago)
- Files:
-
- django/branches/gis (modified) (1 prop)
- django/branches/gis/django/template/loader_tags.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis
- Property svnmerge-integrated changed from /django/trunk:1-7641 to /django/trunk:1-7767
django/branches/gis/django/template/loader_tags.py
r7103 r7768 70 70 def render(self, context): 71 71 compiled_parent = self.get_parent(context) 72 pos = 073 while isinstance(compiled_parent.nodelist[pos], TextNode):74 pos += 175 parent_is_child = isinstance(compiled_parent.nodelist[pos], ExtendsNode)76 72 parent_blocks = dict([(n.name, n) for n in compiled_parent.nodelist.get_nodes_by_type(BlockNode)]) 77 73 for block_node in self.nodelist.get_nodes_by_type(BlockNode): … … 84 80 # add this BlockNode to the parent's ExtendsNode nodelist, so 85 81 # it'll be checked when the parent node's render() is called. 86 if parent_is_child: 87 compiled_parent.nodelist[pos].nodelist.append(block_node) 82 83 # Find out if the parent template has a parent itself 84 for node in compiled_parent.nodelist: 85 if not isinstance(node, TextNode): 86 # If the first non-text node is an extends, handle it. 87 if isinstance(node, ExtendsNode): 88 node.nodelist.append(block_node) 89 # Extends must be the first non-text node, so once you find 90 # the first non-text node you can stop looking. 91 break 88 92 else: 89 93 # Keep any existing parents and add a new one. Used by BlockNode.
