Django

Code

Changeset 9488

Show
Ignore:
Timestamp:
11/18/08 00:37:50 (2 months ago)
Author:
adrian
Message:

[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)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/releases/1.0.X/docs/topics/http/file-uploads.txt

    r9331 r9488  
    99.. versionadded:: 1.0 
    1010 
    11 Most Web sites wouldn't be complete without a way to upload files. When Django 
    12 handles a file upload, the file data ends up placed in ``request.FILES`` (for 
    13 more on the ``request`` object see the documentation for :ref:`request and 
    14 response objects <ref-request-response>`). This document explains how files ar
    15 stored on disk and in memory, and how to customize the default behavior. 
     11When Django handles a file upload, the file data ends up placed in 
     12``request.FILES`` (for more on the ``request`` object see the documentation for 
     13:ref:`request and response objects <ref-request-response>`). This document 
     14explains how files are stored on disk and in memory, and how to customize th
     15default behavior. 
    1616 
    1717Basic file uploads