<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/tests/modeltests/generic_relations/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>Added test to demonstrate issue 11263 isn't there anymore.</title>
<updated>2013-02-02T02:30:50Z</updated>
<author>
<name>Ramiro Morales</name>
<email>cramm0@gmail.com</email>
</author>
<published>2013-02-02T00:56:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=c4b6659269260e0a9d75859bbe430b0971b1c15d'/>
<id>urn:sha1:c4b6659269260e0a9d75859bbe430b0971b1c15d</id>
<content type='text'>
Thanks veena for the report and jaklaassen for the patch. Fixes #11263.
</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 #18269 -- Applied unicode_literals for Python 3 compatibility.</title>
<updated>2012-06-07T16:08:47Z</updated>
<author>
<name>Claude Paroz</name>
<email>claude@2xlibre.net</email>
</author>
<published>2012-06-07T16:08:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=4a103086d5c67fa4fcc53c106c9fdf644c742dd8'/>
<id>urn:sha1:4a103086d5c67fa4fcc53c106c9fdf644c742dd8</id>
<content type='text'>
Thanks Vinay Sajip for the support of his django3 branch and
Jannis Leidel for the review.
</content>
</entry>
<entry>
<title>Fixed #16048 -- Use the base manager instead of the default manager to retrieve a related object of a GenericForeignKey similar to ForeignKeys. Thanks, adurdin.</title>
<updated>2011-05-22T15:21:03Z</updated>
<author>
<name>Jannis Leidel</name>
<email>jannis@leidel.info</email>
</author>
<published>2011-05-22T15:21:03Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d95355b6db0a457130bce22bb1dbf1a48731dfc6'/>
<id>urn:sha1:d95355b6db0a457130bce22bb1dbf1a48731dfc6</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16261 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Corrected a suite of test failures when running under postgres.</title>
<updated>2010-10-17T01:49:36Z</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2010-10-17T01:49:36Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=cd63ce077df6568a4c4420f1f28d27c93aae236f'/>
<id>urn:sha1:cd63ce077df6568a4c4420f1f28d27c93aae236f</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #14472 -- converted generic_relations tests from doctests to unitests.  We have always been at war with doctests.  Thanks to Gabriel Hurley for the patch.</title>
<updated>2010-10-15T06:52:35Z</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2010-10-15T06:52:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=056659c1cf77d7760db955057c9bf1d9a7e7b20d'/>
<id>urn:sha1:056659c1cf77d7760db955057c9bf1d9a7e7b20d</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14225 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #10271, #10281 --  Fixed the handling multiple inline models that share a common base class and have the link to the inline parent on the base class. Includes modifications that allow the equivalent handling for GenericFields. Thanks to Idan Gazit, Antti Kaihola (akaihola), and Alex Gaynor for their work on this patch.</title>
<updated>2009-03-10T11:19:26Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2009-03-10T11:19:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3c8568a7dcb38aaa5aceec4f20c3ec3f0217a50d'/>
<id>urn:sha1:3c8568a7dcb38aaa5aceec4f20c3ec3f0217a50d</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10017 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #10274 -- Fixed an embarrassing mistake in BaseGenericInlineFormSet.get_queryset. Thanks Zak Johnson for the report and akaihola for the patch.</title>
<updated>2009-02-23T04:30:38Z</updated>
<author>
<name>Brian Rosner</name>
<email>brosner@gmail.com</email>
</author>
<published>2009-02-23T04:30:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=4bd24474c02a6f3c70e8111ac262fabf2fc5f454'/>
<id>urn:sha1:4bd24474c02a6f3c70e8111ac262fabf2fc5f454</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9886 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #8309: subclasses now inherit `GenericForeignKey` correctly. There's also now an internal API so that other "virtual fields" like GFK can be inherited as well. Thanks, msaelices.</title>
<updated>2008-09-02T15:26:00Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-09-02T15:26:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=79d2ee3b6d405674a2a49f0884312a8cdc82d809'/>
<id>urn:sha1:79d2ee3b6d405674a2a49f0884312a8cdc82d809</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8855 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
