<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/tests/regressiontests/forms/formsets.py, branch archive/soc2010/app-loading</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=archive%2Fsoc2010%2Fapp-loading</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=archive%2Fsoc2010%2Fapp-loading'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2010-05-12T11:56:42Z</updated>
<entry>
<title>Fixed #13524 -- Added backwards compatibility and feature notes regarding admin inlines and formsets. Thanks to Ramiro Morales and Gabriel Hurley.</title>
<updated>2010-05-12T11:56:42Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2010-05-12T11:56:42Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d0d3e6792da9e716e547f23dfd44706d2bab3c8e'/>
<id>urn:sha1:d0d3e6792da9e716e547f23dfd44706d2bab3c8e</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #13023 - Removed ambiguity with regard to the max_num option of formsets and as a result of admin inlines. Thanks to Gabriel Hurley for the patch.</title>
<updated>2010-03-27T23:03:56Z</updated>
<author>
<name>Jannis Leidel</name>
<email>jannis@leidel.info</email>
</author>
<published>2010-03-27T23:03:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=aba95dcc0b5370ffac3d3b701c3ca7782ee999c1'/>
<id>urn:sha1:aba95dcc0b5370ffac3d3b701c3ca7782ee999c1</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12872 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #11801 -- Corrected form validation to ensure you can still get deleted_forms and ordered_forms when a form that is being deleted doesn't validate. Thanks to dantallis for the report and patch.</title>
<updated>2010-03-12T15:51:00Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2010-03-12T15:51:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=4120a181e9109383ab35df52dbb3621302a75a72'/>
<id>urn:sha1:4120a181e9109383ab35df52dbb3621302a75a72</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12771 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #12878. Formset-wide errors are now rendered properly as html.</title>
<updated>2010-02-23T20:55:42Z</updated>
<author>
<name>Joseph Kocherhans</name>
<email>joseph@jkocherhans.com</email>
</author>
<published>2010-02-23T20:55:42Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ea3853e8d294deebe47d7845b332bef5dbe5f03e'/>
<id>urn:sha1:ea3853e8d294deebe47d7845b332bef5dbe5f03e</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12548 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #12692 - Properly handle the extra clause of admin inline formsets. Also fixes #12703, second error.</title>
<updated>2010-02-01T14:14:56Z</updated>
<author>
<name>Jannis Leidel</name>
<email>jannis@leidel.info</email>
</author>
<published>2010-02-01T14:14:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9555f2be9dc7c5cc1aeb3f4a047550ccd9b0cb2c'/>
<id>urn:sha1:9555f2be9dc7c5cc1aeb3f4a047550ccd9b0cb2c</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12369 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #12508 - Added ability to dynamically add inlines in the admin app.</title>
<updated>2010-01-26T15:02:53Z</updated>
<author>
<name>Jannis Leidel</name>
<email>jannis@leidel.info</email>
</author>
<published>2010-01-26T15:02:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=c14937cf7a1e8c25702e89485cc2dd33aa0d3a16'/>
<id>urn:sha1:c14937cf7a1e8c25702e89485cc2dd33aa0d3a16</id>
<content type='text'>
Refs #13. Also introduces an ``empty_form`` attribute on formsets to make it easier to implement dynamic forms.

Many thanks to Zain Memon for the initial patch from his Summer of Code 2009 project, Stanislaus Madueke for his django-dynamic-formset app and all the other people helping out.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12297 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #10082 -- Modified BaseFormSet so that ordering checks work when the formset is empty. Thanks to Petr Marhoun for the report and test case, and bmathieu for the fix.</title>
<updated>2009-04-28T14:17:18Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2009-04-28T14:17:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=2ba9df2f41cd649b42f5d7452aa2393aa6131f32'/>
<id>urn:sha1:2ba9df2f41cd649b42f5d7452aa2393aa6131f32</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10643 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #9587. Formset.is_valid() now returns True if an invalid form is marked for deletion. Thanks for the test and intial patch, kratorius.</title>
<updated>2009-03-30T19:36:19Z</updated>
<author>
<name>Joseph Kocherhans</name>
<email>joseph@jkocherhans.com</email>
</author>
<published>2009-03-30T19:36:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=08056572e89a9ac1c958ef7d47efe576c76116da'/>
<id>urn:sha1:08056572e89a9ac1c958ef7d47efe576c76116da</id>
<content type='text'>
Note that this leaves the form and formset errors alone. Those forms still have errors, it's just that it doesn't matter that they're invalid in the context of the formset and deletion.
Also fixed #9665 while I was in there. Thanks, mark_hildreth.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10206 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Made the semi-private _max_form_count live on the public API of formsets by renaming it to max_num. This also removes the ManagementForm use of MAX_COUNT since that usage should just be referenced to the formset's max_num property. Refs #7899. Thanks Peter of the Norse for straightening me out.</title>
<updated>2008-07-23T04:28:52Z</updated>
<author>
<name>Brian Rosner</name>
<email>brosner@gmail.com</email>
</author>
<published>2008-07-23T04:28:52Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9d8f41baac6b3ca56c7732a2f93e15cda494a1ea'/>
<id>urn:sha1:9d8f41baac6b3ca56c7732a2f93e15cda494a1ea</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8058 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #7741: django.newforms is now django.forms. This is obviously a backwards-incompatible change. There's a warning upon import of django.newforms itself, but deeper imports will raise errors.</title>
<updated>2008-07-19T01:22:26Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-07-19T01:22:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=46786b4193e04d398532bbfc3dcf63c03c1793cb'/>
<id>urn:sha1:46786b4193e04d398532bbfc3dcf63c03c1793cb</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7971 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
