1
0
mirror of https://github.com/django/django.git synced 2025-07-19 09:09:13 +00:00

[1.0.X] Removed 'Most Web sites wouldn't be complete without a way to upload files' sentence from file-uploads.txt in docs. I beg to differ. (Same as [9487] on trunk)

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9488 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2008-11-18 06:37:50 +00:00
parent 857e3aa548
commit cc0e00ebbe

View File

@ -8,11 +8,11 @@ File Uploads
.. versionadded:: 1.0 .. versionadded:: 1.0
Most Web sites wouldn't be complete without a way to upload files. When Django When Django handles a file upload, the file data ends up placed in
handles a file upload, the file data ends up placed in ``request.FILES`` (for ``request.FILES`` (for more on the ``request`` object see the documentation for
more on the ``request`` object see the documentation for :ref:`request and :ref:`request and response objects <ref-request-response>`). This document
response objects <ref-request-response>`). This document explains how files are explains how files are stored on disk and in memory, and how to customize the
stored on disk and in memory, and how to customize the default behavior. default behavior.
Basic file uploads Basic file uploads
================== ==================