<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/tests/regressiontests/admin_views/models.py, branch 1.5.5</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=1.5.5</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=1.5.5'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2012-12-24T21:13:38Z</updated>
<entry>
<title>[1.5.x] Expanded tests added when fixing #14529.</title>
<updated>2012-12-24T21:13:38Z</updated>
<author>
<name>Ramiro Morales</name>
<email>cramm0@gmail.com</email>
</author>
<published>2012-12-24T19:17:16Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3b32e5cc2d4b6db22148cd7e51cdb735aeb25b13'/>
<id>urn:sha1:3b32e5cc2d4b6db22148cd7e51cdb735aeb25b13</id>
<content type='text'>
To make sure changes in 35d1cd0 don't break anything. Refs #19505.

ad769efa85e0296033572315025fed9fa9aefade from master.
</content>
</entry>
<entry>
<title>[1.5.x] Fixed #19391 -- Oracle specific failure in tests</title>
<updated>2012-12-04T21:00:17Z</updated>
<author>
<name>Anssi Kääriäinen</name>
<email>akaariai@gmail.com</email>
</author>
<published>2012-12-04T20:49:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=8c099ec3ec969ceef8de2e7fc90220b59cdf9b71'/>
<id>urn:sha1:8c099ec3ec969ceef8de2e7fc90220b59cdf9b71</id>
<content type='text'>
The failure was caused by using None as a choice for a CharField. To
avoid Oracle's "" &lt;-&gt; NULL handling the field type was changed to
IntegerField.

Backpatch of 632cf32b43609f7d674c81f81f01eb9e4a059f1f
</content>
</entry>
<entry>
<title>[1.5.x] Fixed #17911 -- Ensure that admin readonly fields' display values are shown in change forms when the raw value is None.</title>
<updated>2012-11-25T22:16:44Z</updated>
<author>
<name>Edward Tjörnhammar</name>
<email>e@cube2.se</email>
</author>
<published>2012-11-25T22:13:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=7c91b67cfaf4669df55a715e62d891faea796f20'/>
<id>urn:sha1:7c91b67cfaf4669df55a715e62d891faea796f20</id>
<content type='text'>
Backport of 29d59a879ea5b116</content>
</entry>
<entry>
<title>[1.5.x] Fixed #18658 -- Improved ModelAdmin.message_user API</title>
<updated>2012-11-20T00:03:30Z</updated>
<author>
<name>Preston Holmes</name>
<email>preston@ptone.com</email>
</author>
<published>2012-11-17T21:53:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3a0e0230f76131cf23c0fdd0b18f3dd718c0f62f'/>
<id>urn:sha1:3a0e0230f76131cf23c0fdd0b18f3dd718c0f62f</id>
<content type='text'>
Thanks to Lowe Thiderman for the patch and tests
</content>
</entry>
<entry>
<title>Fixed #18530 -- Fixed a small regression in the admin filters where wrongly formatted dates passed as url parameters caused an unhandled ValidationError. Thanks to david for the report.</title>
<updated>2012-09-15T23:20:56Z</updated>
<author>
<name>Julien Phalip</name>
<email>jphalip@gmail.com</email>
</author>
<published>2012-09-15T23:20:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=c555741aa7840d8ee4b3a191550924cca6f27105'/>
<id>urn:sha1:c555741aa7840d8ee4b3a191550924cca6f27105</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove Admin's swallowing of AttributeError (#16655, #18593, #18747)</title>
<updated>2012-09-08T15:20:05Z</updated>
<author>
<name>Travis Swicegood</name>
<email>development@domain51.com</email>
</author>
<published>2012-09-08T15:18:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ccd1bb0d81381b5611fb5caf2c4ebe5927fe2095'/>
<id>urn:sha1:ccd1bb0d81381b5611fb5caf2c4ebe5927fe2095</id>
<content type='text'>
During the new-admin changes, catching of AttributeError was added to
the admin.  This patch removes that as it's no longer possible to add a
value to a ModelAdmin that is not available.  Adding an attribute that
can not be called causes an ImproperlyConfigured exception to be raised.
</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>Fixed #10057 -- Ensured that the 'show_delete' context variable in the admin's change view actually controls the display of the delete button. Thanks to rajeesh for the report, to patcoll for the patch, and to David Gouldin for the test.</title>
<updated>2012-07-22T01:10:24Z</updated>
<author>
<name>Julien Phalip</name>
<email>jphalip@gmail.com</email>
</author>
<published>2012-07-22T01:10:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=01c392623d988d7486bdaa870886df0ea3da5fa7'/>
<id>urn:sha1:01c392623d988d7486bdaa870886df0ea3da5fa7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Removed unneeded u prefixes</title>
<updated>2012-06-19T15:37:28Z</updated>
<author>
<name>Claude Paroz</name>
<email>claude@2xlibre.net</email>
</author>
<published>2012-06-19T15:37:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f08fa5b5556e6a3e81fdd644f5b7bcc9e795821a'/>
<id>urn:sha1:f08fa5b5556e6a3e81fdd644f5b7bcc9e795821a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #123 from apollo13/ticket18381</title>
<updated>2012-06-08T08:48:41Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2012-06-08T08:48:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=23d230f05833a63e951b8f451ff6c9f570eb3208'/>
<id>urn:sha1:23d230f05833a63e951b8f451ff6c9f570eb3208</id>
<content type='text'>
Fixed #18381 -- Stopped escaping object ids

when passing them to the contenttypes.shortcut view.

Thanks apollo13 for the patch and dhepper for the review.</content>
</entry>
</feed>
