I started removing junk from my template until it started responding
normally, and I isolated it down to a {% url %} tag. Well, I don't
think it was just one, maybe a few of them combined was adding up to a
minute.
<a href="{% url news.views.category category=story.category.id,page=1
%}">
Anyone else seeing this? Thoughts?
Maybe unrelated, but I also noticed that after I updated, I had to
change this:
{% url bio-members_full type="user",page="1" %}
to this:
{% url bio-members_full type='user',page=1 %}"
(switch to single quotes in the kwargs to pass a string literal) or I
got a template syntax error.
Thanks,
BN
Are you running on SVN trunk? If so, it's possible that you're seeing
the effects of #13275 [1].
This is a major regression that was introduced recently to solve a
different problem (#12945, which was in turn a fix for #12072). This
problem is on the 1.2 critical list, so it needs to be fixed before
1.2 is released.
[1] http://code.djangoproject.com/ticket/13275
> Maybe unrelated, but I also noticed that after I updated, I had to
> change this:
>
> {% url bio-members_full type="user",page="1" %}
>
> to this:
>
> {% url bio-members_full type='user',page=1 %}"
>
> (switch to single quotes in the kwargs to pass a string literal) or I
> got a template syntax error.
This sounds like you may have found an additional regression case
caused by the same chain of tickets.
Yours,
Russ Magee %-)
Yes, I'm on SVN trunk.
>
> This is a major regression that was introduced recently to solve a
> different problem (#12945, which was in turn a fix for #12072). This
> problem is on the 1.2 critical list, so it needs to be fixed before
> 1.2 is released.
>
> [1]http://code.djangoproject.com/ticket/13275
Thanks for the confirmation. If there is anything I can help with let
me know. My laptop's CPU fan really kicks on when I hit that code. =:-
O
>
> > Maybe unrelated, but I also noticed that after I updated, I had to
> > change this:
>
> > {% url bio-members_full type="user",page="1" %}
>
> > to this:
>
> > {% url bio-members_full type='user',page=1 %}"
>
> > (switch to single quotes in the kwargs to pass a string literal) or I
> > got a template syntax error.
>
> This sounds like you may have found an additional regression case
> caused by the same chain of tickets.
>
> Yours,
> Russ Magee %-)
Regards,
BN