Changeset 7827
- Timestamp:
- 07/02/08 15:34:29 (2 months ago)
- Files:
-
- django/trunk/docs/upload_handling.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/upload_handling.txt
r7816 r7827 73 73 larger than 2.5 megabytes, but that's configurable; see below. 74 74 75 ``UploadedFile.chunk s()``75 ``UploadedFile.chunk()`` 76 76 A generator returning chunks of the file. If ``multiple_chunks()`` is 77 77 ``True``, you should use this method in a loop instead of ``read()``. … … 300 300 smallest chunk size defined by any handler. 301 301 302 The default is 64*2\ :sup:`10` bytes, or 64 K b.302 The default is 64*2\ :sup:`10` bytes, or 64 KB. 303 303 304 304 ``FileUploadHandler.new_file(self, field_name, file_name, content_type, content_length, charset)`` … … 326 326 Callback signaling that the entire upload (all files) has completed. 327 327 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)`` 329 329 Allows the handler to completely override the parsing of the raw 330 330 HTTP input.
