summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-11-18 06:37:50 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-11-18 06:37:50 +0000
commitcc0e00ebbe4fcf4a333215239063dc753abc5aeb (patch)
tree36fa32d6b47fcf696e1cd780a4e9aa892f260639 /docs/topics/http
parent857e3aa5483f86d1a10e0f6e52ade8199f5a895d (diff)
[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
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/file-uploads.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt
index 18abeaa087..aebdc32a31 100644
--- a/docs/topics/http/file-uploads.txt
+++ b/docs/topics/http/file-uploads.txt
@@ -8,11 +8,11 @@ File Uploads
.. versionadded:: 1.0
-Most Web sites wouldn't be complete without a way to upload files. When Django
-handles a file upload, the file data ends up placed in ``request.FILES`` (for
-more on the ``request`` object see the documentation for :ref:`request and
-response objects <ref-request-response>`). This document explains how files are
-stored on disk and in memory, and how to customize the default behavior.
+When Django handles a file upload, the file data ends up placed in
+``request.FILES`` (for more on the ``request`` object see the documentation for
+:ref:`request and response objects <ref-request-response>`). This document
+explains how files are stored on disk and in memory, and how to customize the
+default behavior.
Basic file uploads
==================