Opened 16 years ago
Closed 13 years ago
#10912 closed Bug (fixed)
Autoescaping variable input in template tags
Reported by: | Andrew Badr | Owned by: | |
---|---|---|---|
Component: | Template system | Version: | 1.0 |
Severity: | Release blocker | Keywords: | |
Cc: | Malcolm Tredinnick | Triage Stage: | Design decision needed |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | yes |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
(revised description)
When variables are used as input to template tags, we should handle autoescaping a bit better.
Original description was even shorter:
I'd expect firstof to escape variables.
Attachments (1)
Change History (14)
by , 16 years ago
Attachment: | firstof_autoescape_t10912_r10630.diff added |
---|
comment:1 by , 16 years ago
My expected behavior for Django is: The results of all template tags should be escaped unless marked safe. For builtin templatetags that return safe strings, this should include escaping any variables involved in rendering that template tag.
The included patch solves locally what I see as part of a bigger problem.
comment:2 by , 16 years ago
Cc: | added |
---|---|
Description: | modified (diff) |
Patch needs improvement: | set |
Summary: | firstof template tag should autoescape variables → Autoescaping variable input in template tags |
Triage Stage: | Unreviewed → Accepted |
Hmm. This is a bit of a slight change in policy, but not necessarily a bad one (right now, intentionally, only filters autoescape). However,
- Import
_render_change_in_context()
smells and not of roses. Needs to be renamed or not imported or something. That leading underscore is a big clue. - We need something similar to the
autoescape
parameter that is passed to filters, so that template tags do not autoescape results when they are being used inside a block that does not do auto-escaping.
I guess template tags know whether they're putting the results into the context -- which means the output shouldn't be autoescaped, since it will be autoescaped on output and you don't know at template tag usage time whether output will involve auto-escaping or not, so it must be delayed until rendering -- or directly displaying the results? I suspect so, but that's something to think about and confirm.
What are the backwards compatibility issues here? In particular, right now, a template tag doesn't have to care about calling mark_safe()
on the result, since it just inserts it into the template. If you add the auto-escaping behaviour at the wrong place, you'll undo that and a lot of existing template tags will break. That's going to be a little fiddly to work around.
I'm unenthusiastic about fixing just this single tag, since it does change the currently consistent behaviour across all template tags. I'm more enthusiastic about addressing the general issue, but it's a lot more tricky. I'm really enthusiastic about you doing it, Andrew, since I know you guys work in the template space a lot, so the results will have some validity and it means I don't have to work on this (that latter point is important to me; maybe less so to you).
comment:3 by , 15 years ago
Just to mention that I just discovered a flaw on my website due to this non-escaping-feature when using firstof tags ; It should really be at least explicitly documented so people get aware of this while reading the firstof (or cycle) doc.
A little paragraph with a one line example should be nice until a good way to do is found.
comment:4 by , 15 years ago
milestone: | → 1.1 |
---|
I move this to milestone 1.1 so the big-boss-team give his opinion ; default django security is involved and the doc clearly say that "firstof" is equivalent to {%if bla %}{{varx}} for now, it's very missleading.
I can wrote a patch for the documentation if needed, just tell me if I have to open a new ticket.
comment:5 by , 15 years ago
milestone: | 1.1 |
---|
I'm not big-boss-team, but this feature is definitely not making it into 1.1, so I'm removing the milestone. I think your concern about documentation is valid, but I would make a new ticket.
comment:6 by , 15 years ago
Owner: | changed from | to
---|
comment:8 by , 14 years ago
milestone: | 1.3 |
---|---|
Severity: | → Release blocker |
Triage Stage: | Accepted → Design decision needed |
Type: | → Bug |
Guess it didn't get looked at in 1.3... I'm going to bump severity.
Since the accepted was 2 years ago, I'm also going to push back to a design decision.
comment:9 by , 13 years ago
Easy pickings: | unset |
---|---|
Owner: | changed from | to
Status: | new → assigned |
UI/UX: | unset |
comment:10 by , 13 years ago
Owner: | removed |
---|---|
Status: | assigned → new |
There are two template tags which generate output that is not autoescaped: firstof & cycle. This behavior might be unexpected, but it appears to be well documented even back in the version 1.0 documents. There is a policy statement in the documentation stating output is not escaped "... because template tags do not escape their content."
The code appears to work as documented & the documentation appears to be clear. As to if the behavior is as it should be, that's clearly a design decision...
comment:13 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
OK, I'm marking this as fixed because the documentation is clear about the fact that firstof and cycle don't auto-escape. I also added a test for firstof (we already had one for cycle).
Just for future reference, we added some original docs in [11163].
Fix, with test