<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/docs/model-api.txt, branch stable/6.0.x</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=stable%2F6.0.x</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=stable%2F6.0.x'/>
<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 #6765: Changed docs/model-apit.txt to better indicate what's expected of initial SQL files.</title>
<updated>2008-08-15T12:12:29Z</updated>
<author>
<name>James Bennett</name>
<email>ubernostrum@gmail.com</email>
</author>
<published>2008-08-15T12:12:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=57aa1fd351d73feee947837d5dce5cfcb07af48e'/>
<id>urn:sha1:57aa1fd351d73feee947837d5dce5cfcb07af48e</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8373 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #8337 -- Corrected typo introduced in  [8365]. Thanks to julien for the report.</title>
<updated>2008-08-15T08:48:06Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2008-08-15T08:48:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ece6e166e2a53b931d2dad04dab555d2b346a364'/>
<id>urn:sha1:ece6e166e2a53b931d2dad04dab555d2b346a364</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8366 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Refs #8319 -- Added documentation note on the limitations of limit_choices_to.</title>
<updated>2008-08-15T07:55:41Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2008-08-15T07:55:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=7eb44e32dc451f4ba3cad780f7e68d148f8ee661'/>
<id>urn:sha1:7eb44e32dc451f4ba3cad780f7e68d148f8ee661</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8365 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #8189, another use of get_FOO_url() missed in the docs after filestorage.</title>
<updated>2008-08-12T23:34:45Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-08-12T23:34:45Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=cb1368bbc6d487a60986891edbe8cada3778ada3'/>
<id>urn:sha1:cb1368bbc6d487a60986891edbe8cada3778ada3</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8335 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 reST formatting from [8212].</title>
<updated>2008-08-05T16:14:23Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-08-05T16:14:23Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9b4ff7c1ad924de6f633f7c4f4b091b0fad8e7da'/>
<id>urn:sha1:9b4ff7c1ad924de6f633f7c4f4b091b0fad8e7da</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8213 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #7904: added support for a "use_for_related_fields" property on managers. If True, the manager will be used for related object lookups instead of the "bare" QuerySet introduced bu [8107]. Patch from Justin Bronn.</title>
<updated>2008-08-05T16:13:28Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2008-08-05T16:13:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=593810a5014ecaa28215839fb42f03df44a069d0'/>
<id>urn:sha1:593810a5014ecaa28215839fb42f03df44a069d0</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8212 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Removed several deprecated features for 1.0 (refs #7830):</title>
<updated>2008-08-02T04:56:11Z</updated>
<author>
<name>Gary Wilson Jr</name>
<email>gary.wilson@gmail.com</email>
</author>
<published>2008-08-02T04:56:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=351a3ca15494f5061c9656830d2d614ac30dc693'/>
<id>urn:sha1:351a3ca15494f5061c9656830d2d614ac30dc693</id>
<content type='text'>
 * "simple" cache backend
 * `ObjectPaginator`
 * `edit_inline_type` argument for `ForeignKey` fields
 * `QOperator`, `QNot`, `QAnd` and `QOr`
 * `maxlength` argument 


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