﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
5971	django.template.TokenParser inconsistent with parsing filters	Dmitri Fedortchenko <zeraien@…>	nobody	"django.template.TokenParser is inconsistent
when parsing filters that follow constant strings or variables.

Meaning that:
{% tag thevar|filter sometag %} will produce:
self.value() = ""thevar|filter""
self.tag() = ""sometag""

However:
{% tag ""a value""|filter sometag %} will produce:
self.value() = ""a value""
self.tag() = ""|filter""
self.tag() = ""sometag""

This does not seem like correct behaviour...
I made a very simple patch for this, thus the outcome of the above:

{% tag ""a value""|filter sometag %} will produce:
value = ""a value""|filter
tag = sometag

So now we can simply pass the ""value"" into a FilterExpression to parse
the filters...

PS: I had trouble naming an internal method, feel free to complain about the name ;)"		new	Template system	dev			template filter		Unreviewed	1	0	0	0	0	0
