Changes between Version 101 and Version 102 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Jun 23, 2007, 4:16:40 AM (17 years ago)
Author:
Nathaniel Whiteinge
Comment:

fixed broken anchor

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v101 v102  
    231231This change is unlikely to affect most code. However, if you have a custom template tag that uses !NodeList and does not populate it with Nodes, you should change your code to use normal lists instead. Django's own !ForNode class (for implementing "for loops" in templates) was the only internal code affected by this change. Consult the current implementation of {{{ForNode.iter_render}}} to see how the !NodeList usage has been replaced.
    232232
    233 == Urlpatterns now caches ==
     233== Urlpatterns now cached ==
    234234
    235235In [5516] a speed improvement was made for reverse URL lookups, particularly. Part of this involved caching information that was unlikely to change: the {{{urlpatterns()}}} contents.
Back to Top