<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/tests/regressiontests/urlpatterns_reverse/included_namespace_urls.py, branch 1.5b2</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=1.5b2</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=1.5b2'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2011-11-07T01:09:13Z</updated>
<entry>
<title>Fixes #17173 -- Added some extra regression tests for reversing namespaced urls with special characters</title>
<updated>2011-11-07T01:09:13Z</updated>
<author>
<name>Chris Beaven</name>
<email>smileychris@gmail.com</email>
</author>
<published>2011-11-07T01:09:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=b745fc0f4b43280e5c5e10a52b3f3feaf3b58c2b'/>
<id>urn:sha1:b745fc0f4b43280e5c5e10a52b3f3feaf3b58c2b</id>
<content type='text'>
The actual code was already fixed between 1.3.1 and trunk, but more thorough tests are always a good thing. Thanks for the patch, Yann Kaiser.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17075 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Convert the remainder of the relative imports in the tests to be absolute imports.</title>
<updated>2011-10-13T21:34:56Z</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2011-10-13T21:34:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=8c0eefd066aa0e5bfe8c1006d055be8e2ad69a2b'/>
<id>urn:sha1:8c0eefd066aa0e5bfe8c1006d055be8e2ad69a2b</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16981 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #14675 -- Completed removal of `from django.conf.urls.default import *` usage.</title>
<updated>2011-09-11T22:36:16Z</updated>
<author>
<name>Ramiro Morales</name>
<email>cramm0@gmail.com</email>
</author>
<published>2011-09-11T22:36:16Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=26b812208751edf87b4df0aee00996c5c7bcd4c9'/>
<id>urn:sha1:26b812208751edf87b4df0aee00996c5c7bcd4c9</id>
<content type='text'>
This applies to both our own [test] code and documentation examples. Also:
 * Moved the functions and handlers from `django.conf.urls.defaults` up to
   `django.conf.urls` deprecating the former module.
 * Added documentation for `handler403`.
 * Tweaked the URLs topic document a bit.

Thanks to pupeno and cdestigter for their great work contributing patches.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Corrected [13479], accounting for unnamed urls that are instances of classes.</title>
<updated>2010-08-06T13:47:56Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2010-08-06T13:47:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=69d1e71fad3046792f737b26c7da75e8f373eb44'/>
<id>urn:sha1:69d1e71fad3046792f737b26c7da75e8f373eb44</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13497 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #13922 -- Updated resolve() to support namespaces. Thanks to Nowell Strite for the report and patch.</title>
<updated>2010-08-05T07:09:47Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2010-08-05T07:09:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=e0fb90b2f3b16300426851790b0ef3e50f3d67b3'/>
<id>urn:sha1:e0fb90b2f3b16300426851790b0ef3e50f3d67b3</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13479 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #10061 -- Added namespacing for named URLs - most importantly, for the admin site, where the absence of this facility was causing problems. Thanks to the many people who contributed to and helped review this patch.</title>
<updated>2009-07-16T16:16:13Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2009-07-16T16:16:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=8d48eaa064c88533be5082e3f45638fbd48491d8'/>
<id>urn:sha1:8d48eaa064c88533be5082e3f45638fbd48491d8</id>
<content type='text'>
This change is backwards incompatible for anyone that is using the named URLs
introduced in [9739]. Any usage of the old admin_XXX names need to be modified
to use the new namespaced format; in many cases this will be as simple as a
search &amp; replace for "admin_" -&gt; "admin:". See the docs for more details on
the new URL names, and the namespace resolution strategy.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11250 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
