Opened 16 years ago

Closed 14 years ago

#7501 closed (fixed)

template rendering doesn't reset cycle tag

Reported by: Armin Ronacher Owned by: nobody
Component: Template system Version: dev
Severity: Keywords:
Cc: elsdoerfer@… Triage Stage: Design decision needed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The cycle iter is stored on the node. Unless templates are re-parsed each request that will mean that multiple template renderings share the same cycle iter. As a result of that it is very likely that cycle skips items on renderings.

Proposed fix: store the iter on the context object.

Attachments (1)

fixcyclebehaviour.patch (2.5 KB ) - added by Stephen Kelly 15 years ago.
Fixes cycle reset issue by adding reset feature to node.

Download all attachments as: .zip

Change History (12)

comment:1 by anonymous, 16 years ago

Cc: elsdoerfer@… added

comment:2 by Eric Holscher, 16 years ago

milestone: 1.0post-1.0
Summary: {% cycle %} is not threadsafetemplate rendering doesn't reset cycle tag
Triage Stage: UnreviewedDesign decision needed

comment:3 by Chris Beaven, 15 years ago

In #5908 Malcolm talks about the importance of keeping the state of the internal counter. Currently, the {% for %} tag (and potentially others) sets up a local context for each iteration, so if we put the counter straight on the context, it'll be lost the next iteration.

I think Context needs a way to set a "global" context variable (if you understand the internals, probably just stuffing it at the highest level context).

comment:4 by harryman100, 15 years ago

There's a workaround for this which can be used in templates:

Using the 'cycle as' syntax resets the variable. By outputting the 'cycle as' inside a comment it hides it from the rendering. It's not perfect, but it works in most cases

<!--{% cycle 'rowB' 'rowA' as rowstyle %}-->
{% for post in posts %}
        <tr class="{% cycle rowstyle %}">
        ...
{% endfor %}

in reply to:  4 comment:5 by harryman100, 15 years ago

Replying to harryman100:
Scrap that, it was fluke that it worked with a particular dataset

comment:6 by (none), 15 years ago

milestone: post-1.0

Milestone post-1.0 deleted

comment:7 by Karen Tracey, 15 years ago

#11290 reported this again.

comment:8 by Bas Peschier, 15 years ago

I came across this a few times when rendering multiple tables next to each other with the same cycle (with 2 arguments for colouring) on a row. A double loop. If a table had an even amount of rows, the colours matched, otherwise, a grid appeared. It came out ugly sometimes, but acceptable.

Looking for a quick fix, I suspected there must be a reset of some sort, but there is not.

The {% cycle [] as var %} could be a nice way to fix this. But for starters, the output of {% cycle [] as var %} should go away. "as var" in other tags denotes a variable for later use. If we can reference the cycle-variable on the node, we could make a {% cycle reset var %} of some sort, which would reset the cycle referenced.

comment:9 by Stephen Kelly, 15 years ago

Has patch: set

The attached patch fixes the issue and passes the test attached to #11290.

The test and fix are attached in the same patch here for completeness.

by Stephen Kelly, 15 years ago

Attachment: fixcyclebehaviour.patch added

Fixes cycle reset issue by adding reset feature to node.

comment:10 by Chris Beaven, 15 years ago

This would be fixed by #6262 - and I consider the ticket there to contain the correct fix to this issue.

comment:11 by Russell Keith-Magee, 14 years ago

Resolution: fixed
Status: newclosed

Resolved by [11862]

Note: See TracTickets for help on using tickets.
Back to Top