Django

Code

Changeset 7827

Show
Ignore:
Timestamp:
07/02/08 15:34:29 (2 months ago)
Author:
jacob
Message:

Fixed a few typos in upload handling docs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/upload_handling.txt

    r7816 r7827  
    7373        larger than 2.5 megabytes, but that's configurable; see below. 
    7474     
    75     ``UploadedFile.chunks()`` 
     75    ``UploadedFile.chunk()`` 
    7676        A generator returning chunks of the file. If ``multiple_chunks()`` is 
    7777        ``True``, you should use this method in a loop instead of ``read()``. 
     
    300300        smallest chunk size defined by any handler. 
    301301 
    302         The default is 64*2\ :sup:`10` bytes, or 64 Kb
     302        The default is 64*2\ :sup:`10` bytes, or 64 KB
    303303 
    304304    ``FileUploadHandler.new_file(self, field_name, file_name, content_type, content_length, charset)`` 
     
    326326        Callback signaling that the entire upload (all files) has completed. 
    327327 
    328     ``FileUploadHandler.``handle_raw_input(self, input_data, META, content_length, boundary, encoding)`` 
     328    ``FileUploadHandler.handle_raw_input(self, input_data, META, content_length, boundary, encoding)`` 
    329329        Allows the handler to completely override the parsing of the raw 
    330330        HTTP input.