#10061: incorrect logout link in admin
-------------------------------------------+--------------------------------
Reporter: lashni | Owner: Alex
Status: reopened | Milestone: 1.1
Component: django.contrib.admin | Version: SVN
Resolution: | Keywords:
Stage: Accepted | Has_patch: 1
Needs_docs: 1 | Needs_tests: 1
Needs_better_patch: 1 |
-------------------------------------------+--------------------------------
Changes (by dc):
* needs_better_patch: 0 => 1
* stage: Ready for checkin => Accepted
* needs_tests: 0 => 1
* needs_docs: 0 => 1
Comment:
admin-urls.12.diff has lost all documentation.
Changes in core/urlresolvers.py and url template tag are not documented
and do not have tests.
{{{
viewname = ''.join(viewname.split(':'))
}}}
is especially ugly. Whole thing looks like dirty hack and this line can be
replaced by
{{{
viewname = viewname.replace(':', '')
}}}
anyway.
Is this ticket really so complicated that it needs special infrastructure
in resolvers?
--
Ticket URL: <http://code.djangoproject.com/ticket/10061#comment:25>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---