<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/newforms/__init__.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>2008-08-10T21:10:47Z</updated>
<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>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>
<entry>
<title>Merged the newforms-admin branch into trunk.</title>
<updated>2008-07-18T23:54:34Z</updated>
<author>
<name>Brian Rosner</name>
<email>brosner@gmail.com</email>
</author>
<published>2008-07-18T23:54:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=a19ed8aea395e8e07164ff7d85bd7dff2f24edca'/>
<id>urn:sha1:a19ed8aea395e8e07164ff7d85bd7dff2f24edca</id>
<content type='text'>
This is a backward incompatible change. The admin contrib app has been
refactored. The newforms module has several improvements including FormSets
and Media definitions.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>newforms: Added BaseForm to django.newforms namespace</title>
<updated>2006-12-17T05:11:48Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2006-12-17T05:11:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=e76e2aaffb407086544b015a81c33e6e5bb3558f'/>
<id>urn:sha1:e76e2aaffb407086544b015a81c33e6e5bb3558f</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4219 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Moved newforms form_for_model and form_for_fields to django/newforms/models.py</title>
<updated>2006-11-25T06:33:59Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2006-11-25T06:33:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=8379785e79c6d92baa02f5705009d38f1601c1e1'/>
<id>urn:sha1:8379785e79c6d92baa02f5705009d38f1601c1e1</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4103 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>django.newforms: Implemented hook for validation not tied to a particular field. Renamed to_python() to clean() -- it's just...cleaner. Added Form.as_table(), Form.as_url(), Form.as_table_with_errors() and Form.as_ul_with_errors(). Added ComboField. Updated all unit tests.</title>
<updated>2006-11-04T20:49:59Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2006-11-04T20:49:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=46b0713315020d63fa8ce7c4ea14d99daf256e47'/>
<id>urn:sha1:46b0713315020d63fa8ce7c4ea14d99daf256e47</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3978 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Added ChoiceField, MultipleChoiceField to django.newforms</title>
<updated>2006-11-02T03:16:12Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2006-11-02T03:16:12Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=6645d1fe48868814e4c73056b68be5c3861ed2d0'/>
<id>urn:sha1:6645d1fe48868814e4c73056b68be5c3861ed2d0</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3959 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Split django.newforms into forms, fields, widgets, util. Also moved unit tests from docstrings to a standalone module in tests/regressiontests/forms, to save docstring memory overhead, keep code readable and fit our exisitng convention</title>
<updated>2006-10-28T20:34:37Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2006-10-28T20:34:37Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=88a2f53b858fedf46ceb84a9fe09558b31038eb7'/>
<id>urn:sha1:88a2f53b858fedf46ceb84a9fe09558b31038eb7</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3945 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Added django.newforms -- work-in-progress of the new framework for forms/validators/manipulators</title>
<updated>2006-10-28T19:02:26Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2006-10-28T19:02:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=4d596a1f6443eaf5d18d70a18aaac25030c7fc81'/>
<id>urn:sha1:4d596a1f6443eaf5d18d70a18aaac25030c7fc81</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3944 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
