Skip to content

Commit

Permalink
Added note that FileField and ImageField are only in development vers…
Browse files Browse the repository at this point in the history
…ion. There are also some minor backwards compatibility issues with the changes introduced in [5819] - see the wiki for details.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5820 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Aug 6, 2007
1 parent fbd1a62 commit 16cf243
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/newforms.txt
Expand Up @@ -713,6 +713,8 @@ For example::
Binding uploaded files to a form
--------------------------------

**New in Django development version**

Dealing with forms that have ``FileField`` and ``ImageField`` fields
is a little more complicated than a normal form.

Expand Down Expand Up @@ -1143,6 +1145,8 @@ given length.
``FileField``
~~~~~~~~~~~~~

**New in Django development version**

* Default widget: ``FileInput``
* Empty value: ``None``
* Normalizes to: An ``UploadedFile`` object that wraps the file content
Expand Down Expand Up @@ -1170,6 +1174,8 @@ When you use a ``FileField`` on a form, you must also remember to
``ImageField``
~~~~~~~~~~~~~~

**New in Django development version**

* Default widget: ``FileInput``
* Empty value: ``None``
* Normalizes to: An ``UploadedFile`` object that wraps the file content
Expand Down

0 comments on commit 16cf243

Please sign in to comment.