<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/tests/regressiontests/forms/models.py, branch archive/soc2010/query-refactor</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=archive%2Fsoc2010%2Fquery-refactor</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=archive%2Fsoc2010%2Fquery-refactor'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2010-03-08T15:03:30Z</updated>
<entry>
<title>Fixed #11940 - ModelForm evaluates callable default values on form class creation</title>
<updated>2010-03-08T15:03:30Z</updated>
<author>
<name>Luke Plant</name>
<email>L.Plant.98@cantab.net</email>
</author>
<published>2010-03-08T15:03:30Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=bae921dcff699b827cd423f01ed125221b32fc9a'/>
<id>urn:sha1:bae921dcff699b827cd423f01ed125221b32fc9a</id>
<content type='text'>
Thanks to Harm Geerts for the report and initial patch.



git-svn-id: http://code.djangoproject.com/svn/django/trunk@12721 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed a form test from [12211] that didn't clean up after itself. Thanks, Alex Gaynor.</title>
<updated>2010-01-16T22:45:39Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2010-01-16T22:45:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5bc344cecaec2bf9fb027048226a41127d49add1'/>
<id>urn:sha1:5bc344cecaec2bf9fb027048226a41127d49add1</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12232 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #12510. Changed ModelChoiceField to stop using some of its superclasses implementation. This could cause more than one query when generating choices. Thanks, Petr Marhoun and Honza Kral.</title>
<updated>2010-01-12T14:58:24Z</updated>
<author>
<name>Joseph Kocherhans</name>
<email>joseph@jkocherhans.com</email>
</author>
<published>2010-01-12T14:58:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=223b2721aa501a0603502d9dae499b7f21ae788f'/>
<id>urn:sha1:223b2721aa501a0603502d9dae499b7f21ae788f</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12211 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #10792 -- Ensured that ModelChoiceFields don't provide an empty option when the underlying field has blank=False and there is a default value available. Thanks to carljm for the report and patch.</title>
<updated>2009-05-10T07:44:27Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2009-05-10T07:44:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5663258de13975e28406233328a9e51c8bc1b768'/>
<id>urn:sha1:5663258de13975e28406233328a9e51c8bc1b768</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10729 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Make sure that all uses of max_length in the test suite use values smaller than 255. If we use max_length &gt; 255 the test suite can't be run on MySQL 4.</title>
<updated>2009-05-07T18:06:22Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2009-05-07T18:06:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=7caf21aa2ebfa5f696fde1fb7e5c11fafb2ef050'/>
<id>urn:sha1:7caf21aa2ebfa5f696fde1fb7e5c11fafb2ef050</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10697 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #10363 -- Modified ModelForm handling to ensure that excluded fields can't be saved onto the model. Thanks to jgoldberg for the report, an Alex Gaynor for the fix.</title>
<updated>2009-04-16T14:26:08Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2009-04-16T14:26:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=419ed444360cd9b843253f3901a96d41b003251e'/>
<id>urn:sha1:419ed444360cd9b843253f3901a96d41b003251e</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10575 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Made a set of small test changes to avoid leaving temp files hanging around after running the test suite. First, fixed a couple of places where temp dirs were (or could be) created without later being deleted. Second, added a missing close() before unlink() since Windows raises an error on an attempt to remove an open file.  Finally, in the file_uploads tests, avoided opening-by-name temporary files that we already have a descriptor for.  Doing additional opens seems to run afoul of the Windows issue with deleting open files, so it generally works better to just seek back to 0 instead of calling open multiple times. </title>
<updated>2009-04-05T20:59:20Z</updated>
<author>
<name>Karen Tracey</name>
<email>kmtracey@gmail.com</email>
</author>
<published>2009-04-05T20:59:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d0c897d6605a95c3e7826ee7f01ef20979977ebb'/>
<id>urn:sha1:d0c897d6605a95c3e7826ee7f01ef20979977ebb</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10406 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #10041: use a tempdir for files in the forms test. Thanks, Marty Alchin.</title>
<updated>2009-01-16T21:31:58Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2009-01-16T21:31:58Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=79138a61065bf0c789d9f3f34c55de2e26fda422'/>
<id>urn:sha1:79138a61065bf0c789d9f3f34c55de2e26fda422</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9765 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:</title>
<updated>2008-08-10T21:10:47Z</updated>
<author>
<name>Gary Wilson Jr</name>
<email>gary.wilson@gmail.com</email>
</author>
<published>2008-08-10T21:10:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ef48a3e69c02438db32f20531f5c679e8315d528'/>
<id>urn:sha1:ef48a3e69c02438db32f20531f5c679e8315d528</id>
<content type='text'>
 * Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
 * Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
 * The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
 * The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
 * The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
 * The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
 * The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
 * Support for importing `django.newforms` was removed. Use `django.forms` instead.
 * Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
 * Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Corrected typo.</title>
<updated>2008-07-21T03:50:40Z</updated>
<author>
<name>Gary Wilson Jr</name>
<email>gary.wilson@gmail.com</email>
</author>
<published>2008-07-21T03:50:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=80ac41e2f789ab656867c88d3aa1b23118fada38'/>
<id>urn:sha1:80ac41e2f789ab656867c88d3aa1b23118fada38</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8013 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
