<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/tests/regressiontests/admin_custom_urls/models.py, branch main</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=main</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2013-02-26T13:36:57Z</updated>
<entry>
<title>Merged regressiontests and modeltests into the test root.</title>
<updated>2013-02-26T13:36:57Z</updated>
<author>
<name>Florian Apolloner</name>
<email>florian@apolloner.eu</email>
</author>
<published>2013-02-26T08:53:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=89f40e36246100df6a11316c31a76712ebc6c501'/>
<id>urn:sha1:89f40e36246100df6a11316c31a76712ebc6c501</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`.</title>
<updated>2013-02-05T09:16:07Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2013-02-05T09:16:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ec469ade2b04b94bfeb59fb0fc7d9300470be615'/>
<id>urn:sha1:ec469ade2b04b94bfeb59fb0fc7d9300470be615</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Added further flexibility to ModelAdmin for controlling post-save redirections.</title>
<updated>2012-12-31T05:33:21Z</updated>
<author>
<name>Julien Phalip</name>
<email>jphalip@gmail.com</email>
</author>
<published>2012-12-31T05:33:21Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=cee40c7d79930ff42bde4730f43e68a624e47b0f'/>
<id>urn:sha1:cee40c7d79930ff42bde4730f43e68a624e47b0f</id>
<content type='text'>
Refs #19505.</content>
</entry>
<entry>
<title>Removed interpolation of post_url_continue in the admin.</title>
<updated>2012-12-29T20:58:12Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2012-12-24T21:43:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=02f3daadd6c4f4ae2ab4f37c6e4c523f438c205e'/>
<id>urn:sha1:02f3daadd6c4f4ae2ab4f37c6e4c523f438c205e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #19505 -- A more flexible implementation for customizable admin redirect urls.</title>
<updated>2012-12-24T18:44:19Z</updated>
<author>
<name>Julien Phalip</name>
<email>jphalip@gmail.com</email>
</author>
<published>2012-12-22T19:00:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=35d1cd0b28d1d9cd7bffbfbc6cc2e02b58404415'/>
<id>urn:sha1:35d1cd0b28d1d9cd7bffbfbc6cc2e02b58404415</id>
<content type='text'>
Work by Julien Phalip.

Refs #8001, #18310, #19505. See also 0b908b92a2ca4fb74a103e96bb75c53c05d0a428.
</content>
</entry>
<entry>
<title>Fixed #8001 -- Made redirections after add/edit in admin customizable.</title>
<updated>2012-10-18T23:58:52Z</updated>
<author>
<name>Ramiro Morales</name>
<email>cramm0@gmail.com</email>
</author>
<published>2012-10-18T23:58:52Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=0b908b92a2ca4fb74a103e96bb75c53c05d0a428'/>
<id>urn:sha1:0b908b92a2ca4fb74a103e96bb75c53c05d0a428</id>
<content type='text'>
Also fixes #18310.
</content>
</entry>
<entry>
<title>[py3] Fixed admin_custom_urls tests.</title>
<updated>2012-08-14T12:38:23Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2012-08-14T12:38:23Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d6b8b125fbd370bb575c43ba66270e22de919a51'/>
<id>urn:sha1:d6b8b125fbd370bb575c43ba66270e22de919a51</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[py3] Refactored __unicode__ to __str__.</title>
<updated>2012-08-12T12:44:40Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2012-08-12T10:32:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d4a0b27838c815af87698920cc4db7d2afd6f05b'/>
<id>urn:sha1:d4a0b27838c815af87698920cc4db7d2afd6f05b</id>
<content type='text'>
* Renamed the __unicode__ methods
* Applied the python_2_unicode_compatible decorator
* Removed the StrAndUnicode mix-in that is superseded by
  python_2_unicode_compatible
* Kept the __unicode__ methods in classes that specifically
  test it under Python 2
</content>
</entry>
<entry>
<title>More django.conf.urls.defaults removals. Refs #17132</title>
<updated>2011-10-29T12:24:44Z</updated>
<author>
<name>Ramiro Morales</name>
<email>cramm0@gmail.com</email>
</author>
<published>2011-10-29T12:24:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=24f3c06e4aaee3370098d454dab61c175ccf8319'/>
<id>urn:sha1:24f3c06e4aaee3370098d454dab61c175ccf8319</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17049 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Converted internal link generation in the admin and admin document generator to use named URLs.</title>
<updated>2011-09-20T18:30:06Z</updated>
<author>
<name>Ramiro Morales</name>
<email>cramm0@gmail.com</email>
</author>
<published>2011-09-20T18:30:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=aaf77c1676e44019abe544911ff7a06eb2690295'/>
<id>urn:sha1:aaf77c1676e44019abe544911ff7a06eb2690295</id>
<content type='text'>
Thanks to Florian Apolloner for both the initial patch and his final push to get
this fixed, to Dario Ocles for his great work on the admin templates and
switching the admin_doc application to also use named URLs, to Mikko Hellsing
for his comments and to Jannis and Julien for their review and design guidance.

Fixes #15294.

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