<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/django/newforms/fields.py, branch devmain</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=devmain</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=devmain'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2008-07-19T01:22:26Z</updated>
<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/chango.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>
<entry>
<title>Fixed #7816 -- Fixed error in a few DeprecationWarnings. Thanks, leahculver</title>
<updated>2008-07-18T21:45:25Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2008-07-18T21:45:25Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=13643a7f5ded088b870b878712f0f4f39f213e52'/>
<id>urn:sha1:13643a7f5ded088b870b878712f0f4f39f213e52</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7955 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #7673: make sure to rewind uploaded image data when validating ImageFields. Thanks, Mike Axiak.</title>
<updated>2008-07-12T20:43:38Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-07-12T20:43:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=e63f8bf65571d07c02725a4c86036be11e949916'/>
<id>urn:sha1:e63f8bf65571d07c02725a4c86036be11e949916</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7907 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #7614: the quickening has come, and there now is only one UploadedFile. On top of that, UploadedFile's interface has been improved:</title>
<updated>2008-07-07T23:16:00Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-07-07T23:16:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=a28b75b0ba9650ae3bd46e38d12d95d48f5c5664'/>
<id>urn:sha1:a28b75b0ba9650ae3bd46e38d12d95d48f5c5664</id>
<content type='text'>
  * The API now more closely matches a proper file API. This unfortunately means a few backwards-incompatible renamings; see BackwardsIncompatibleChanges. This refs #7593.
  * While we were at it, renamed chunk() to chunks() to clarify that it's an iterator.
  * Temporary uploaded files now property use the tempfile library behind the scenes which should ensure better cleanup of tempfiles (refs #7593 again).

Thanks to Mike Axiak for the bulk of this patch.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7859 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #2070: refactored Django's file upload capabilities.</title>
<updated>2008-07-01T15:10:51Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-07-01T15:10:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=d725cc9734272f867d41f7236235c28b3931a1b2'/>
<id>urn:sha1:d725cc9734272f867d41f7236235c28b3931a1b2</id>
<content type='text'>
A description of the new features can be found in the new [http://www.djangoproject.com/documentation/upload_handing/ upload handling documentation]; the executive summary is that Django will now happily handle uploads of large files without issues.

This changes the representation of uploaded files from dictionaries to bona fide objects; see BackwardsIncompatibleChanges for details.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7814 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #5957 -- Enforce the "required" attribute on BooleanField in newforms.</title>
<updated>2008-06-30T10:44:56Z</updated>
<author>
<name>Malcolm Tredinnick</name>
<email>malcolm.tredinnick@gmail.com</email>
</author>
<published>2008-06-30T10:44:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=abcf1cb36d0bf22d5f2efa4dd85183a0341b33f8'/>
<id>urn:sha1:abcf1cb36d0bf22d5f2efa4dd85183a0341b33f8</id>
<content type='text'>
This has been the documented behaviour for ages, but it wasn't correctly
implemented. A required BooleanField must be True/checked, since False values
aren't submitted. Ideal for things like "terms of service" agreements.

Backwards incompatible (since required=True is the default for all fields).

Unclear who the original patch was from, but Tai Lee and Alex have kept it up
to date recently.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7799 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #7454 -- Removed unnecessary import in newforms/fields.py. Thanks, lorien</title>
<updated>2008-06-16T03:26:15Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2008-06-16T03:26:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=fa1cc23df339729af8c66bc42ee0ce717630f77e'/>
<id>urn:sha1:fa1cc23df339729af8c66bc42ee0ce717630f77e</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7645 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #5894: added FilePathField to newforms. Thanks, Alex Gaynor.</title>
<updated>2008-03-19T22:29:11Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-03-19T22:29:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=4457ba002d64d4a991b0561c5be69a8c61b2b828'/>
<id>urn:sha1:4457ba002d64d4a991b0561c5be69a8c61b2b828</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7323 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #6302 for ImageFields.</title>
<updated>2008-01-18T15:53:19Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-01-18T15:53:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=755278253ee792fc8a7589081261c6f0a66e1423'/>
<id>urn:sha1:755278253ee792fc8a7589081261c6f0a66e1423</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7025 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #6302. FileField no longer requires a value if one already exists. Thanks Brian Rosner and Øyvind Saltvik.</title>
<updated>2008-01-17T18:03:21Z</updated>
<author>
<name>Joseph Kocherhans</name>
<email>joseph@jkocherhans.com</email>
</author>
<published>2008-01-17T18:03:21Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=fd20365b277bf48dbdbd82afa1346eadb96d9574'/>
<id>urn:sha1:fd20365b277bf48dbdbd82afa1346eadb96d9574</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7021 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
