summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-02-14 21:29:50 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-02-14 21:29:50 +0000
commit2000f375cde88358cdc66f775f4de14df1234f72 (patch)
treec524762e8f7a560a68908464976afc49a187d13f /django
parent803de60c088e7a439b5549575e1e3a082ae26d54 (diff)
Fixed #17675 -- Changed the implementation of the {% regroup %} template tag to use the context properly when resolving expressions.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17522 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-rw-r--r--django/template/defaulttags.py22
1 files changed, 17 insertions, 5 deletions
diff --git a/django/template/defaulttags.py b/django/template/defaulttags.py
index fa54f457c8..954c5d6d19 100644
--- a/django/template/defaulttags.py
+++ b/django/template/defaulttags.py
@@ -10,7 +10,7 @@ from django.template.base import (Node, NodeList, Template, Library,
TemplateSyntaxError, VariableDoesNotExist, InvalidTemplateLibrary,
BLOCK_TAG_START, BLOCK_TAG_END, VARIABLE_TAG_START, VARIABLE_TAG_END,
SINGLE_BRACE_START, SINGLE_BRACE_END, COMMENT_TAG_START, COMMENT_TAG_END,
- get_library, token_kwargs, kwarg_re)
+ VARIABLE_ATTRIBUTE_SEPARATOR, get_library, token_kwargs, kwarg_re)
from django.template.smartif import IfParser, Literal
from django.template.defaultfilters import date
from django.utils.encoding import smart_str, smart_unicode
@@ -287,6 +287,12 @@ class RegroupNode(Node):
self.target, self.expression = target, expression
self.var_name = var_name
+ def resolve_expression(self, obj, context):
+ # This method is called for each object in self.target. See regroup()
+ # for the reason why we temporarily put the object in the context.
+ context[self.var_name] = obj
+ return self.expression.resolve(context, True)
+
def render(self, context):
obj_list = self.target.resolve(context, True)
if obj_list == None:
@@ -298,7 +304,7 @@ class RegroupNode(Node):
context[self.var_name] = [
{'grouper': key, 'list': list(val)}
for key, val in
- groupby(obj_list, lambda v, f=self.expression.resolve: f(v, True))
+ groupby(obj_list, lambda obj: self.resolve_expression(obj, context))
]
return ''
@@ -1112,10 +1118,16 @@ def regroup(parser, token):
if lastbits_reversed[1][::-1] != 'as':
raise TemplateSyntaxError("next-to-last argument to 'regroup' tag must"
" be 'as'")
-
- expression = parser.compile_filter(lastbits_reversed[2][::-1])
-
var_name = lastbits_reversed[0][::-1]
+ # RegroupNode will take each item in 'target', put it in the context under
+ # 'var_name', evaluate 'var_name'.'expression' in the current context, and
+ # group by the resulting value. After all items are processed, it will
+ # save the final result in the context under 'var_name', thus clearing the
+ # temporary values. This hack is necessary because the template engine
+ # doesn't provide a context-aware equivalent of Python's getattr.
+ expression = parser.compile_filter(var_name +
+ VARIABLE_ATTRIBUTE_SEPARATOR +
+ lastbits_reversed[2][::-1])
return RegroupNode(target, expression, var_name)
@register.tag