#14389: Future url replacement
-----------------------------+----------------------------------------------
Reporter: seanbrant | Owner: nobody
Status: new | Milestone: 1.3
Component: Template system | Version: 1.2
Keywords: | Stage: Unreviewed
Has_patch: 1 |
-----------------------------+----------------------------------------------
As previously discussed in #7917 context variables inside {% url %} do not
work. Ticket #7917 purposed fiddling with the current {% url %} trying to
make it support quoted/un-quoted view names as well as view names defined
in the context. This ticket was closed by core as invalid, however this
feature is still needed imho. In this thread[1] Malcolm suggested creating
a new tag that depreciated the use of unquoted "string based" view names.
I raised the issue recently[2] on django-dev and Russ recommend creating a
new tag living in a future_url module that once loaded {% load future_url
%} it would replace the old url tag. This allows us the ability to switch
over the tags in a couple of releases giving developers time to upgrade
code.
So the upgrade path would look something like this.
1.3: adds the new behavior only if you {% load future_url %} also if you
are using the old url we throw a PendingDeprecationWarning
1.4: upgrades the warning to DeprecationWarning
1.5: replaces the old style url with the new on in
template_tags/future_url.py the url tag defined in
emplate_tags/future_url.py would now throw a DeprecationWarning
1.6: remove template_tags/future_url.py
Since we are moving to a new tag in stages I also figured we can
officially remove support for comma separated url arguments in favor of
the new style.
My patch does all of above with some docs and tests. This is my first time
writing docs so I suspect those will need some tweaking.
Thanks,
Sean
[1]
http://groups.google.com/group/django-
developers/browse_thread/thread/ac2b1ea4555c0a62/21cf9b1aed6d11e0?lnk=gst&q=url+tag+viewname#21cf9b1aed6d11e0
[2]
http://groups.google.com/group/django-
developers/browse_thread/thread/98a9c0d2a3e2d43d
--
Ticket URL: <
http://code.djangoproject.com/ticket/14389>
Django <
http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.