<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/docs/custom_model_fields.txt, 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>2008-08-23T22:25:40Z</updated>
<entry>
<title>Massive reorganization of the docs. See the new docs online at http://docs.djangoproject.com/.</title>
<updated>2008-08-23T22:25:40Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-08-23T22:25:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=97cb07c3a10ff0e584a260a7ee1001614691eb1d'/>
<id>urn:sha1:97cb07c3a10ff0e584a260a7ee1001614691eb1d</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506 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>File storage refactoring, adding far more flexibility to Django's file handling. The new files.txt document has details of the new features.</title>
<updated>2008-08-08T20:59:02Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-08-08T20:59:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=7899568e01fc9c68afe995fa71de915dd9fcdd76'/>
<id>urn:sha1:7899568e01fc9c68afe995fa71de915dd9fcdd76</id>
<content type='text'>
This is a backwards-incompatible change; consult BackwardsIncompatibleChanges for details.

Fixes #3567, #3621, #4345, #5361, #5655, #7415.

Many thanks to Marty Alchin who did the vast majority of this work.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8244 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #7998 -- Corrected typo. Thanks to ElliotM for the report.</title>
<updated>2008-07-30T11:11:44Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2008-07-30T11:11:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=a98d12b1b28db77978be6edc132b279357e25011'/>
<id>urn:sha1:a98d12b1b28db77978be6edc132b279357e25011</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8152 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #7560 -- Moved a lot of the value conversion preparation for</title>
<updated>2008-07-29T05:09:29Z</updated>
<author>
<name>Malcolm Tredinnick</name>
<email>malcolm.tredinnick@gmail.com</email>
</author>
<published>2008-07-29T05:09:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=b3b71a0922334c70bbc646a4873010f808196671'/>
<id>urn:sha1:b3b71a0922334c70bbc646a4873010f808196671</id>
<content type='text'>
loading/saving interactions with the databases into django.db.backend. This
helps external db backend writers and removes a bunch of database-specific
if-tests in django.db.models.fields.

Great work from Leo Soto.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8131 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Remove the last remaining references to manipulators outside of oldforms docs</title>
<updated>2008-07-27T23:51:07Z</updated>
<author>
<name>James Bennett</name>
<email>ubernostrum@gmail.com</email>
</author>
<published>2008-07-27T23:51:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=4b6766cd6b54f436980181fc4ab9ce0d67bb6321'/>
<id>urn:sha1:4b6766cd6b54f436980181fc4ab9ce0d67bb6321</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8125 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Refs #7864 -- Updates to documentation for the oldforms/newforms switch.</title>
<updated>2008-07-21T16:38:54Z</updated>
<author>
<name>Gary Wilson Jr</name>
<email>gary.wilson@gmail.com</email>
</author>
<published>2008-07-21T16:38:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=24aa08f486d7fa7fbfc91b35dd41aadeb0c900da'/>
<id>urn:sha1:24aa08f486d7fa7fbfc91b35dd41aadeb0c900da</id>
<content type='text'>
 * Moved forms.txt to oldforms.txt
 * Moved newforms.txt to forms.txt
 * Updated links and most references to "newforms" (there are a few sections that need a more significant rewrite).


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8020 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>Fixed #6759: Corrected example of get_db_prep_save() in docs/custom_model_fields.txt</title>
<updated>2008-03-18T19:13:41Z</updated>
<author>
<name>James Bennett</name>
<email>ubernostrum@gmail.com</email>
</author>
<published>2008-03-18T19:13:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ebf3cdea733c82e2e104cd1417c57a52c54b26e0'/>
<id>urn:sha1:ebf3cdea733c82e2e104cd1417c57a52c54b26e0</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7301 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Small typo fixes. Thanks, jdetaeye, Ionut Ciocirlan, David Reynolds and adamv.</title>
<updated>2007-12-17T06:59:01Z</updated>
<author>
<name>Malcolm Tredinnick</name>
<email>malcolm.tredinnick@gmail.com</email>
</author>
<published>2007-12-17T06:59:01Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5d6f91e415d66251f70ac55960741429b560d204'/>
<id>urn:sha1:5d6f91e415d66251f70ac55960741429b560d204</id>
<content type='text'>
Fixed #6123, #6133, #6179, #6194.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@6923 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
