Django

Code

Changeset 9487

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

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.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/topics/http/file-uploads.txt

    r9330 r9487  
    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