class TemporaryFileUploadHandler(FileUploadHandler):
Method | file_complete |
Signal that a file has completed. File size corresponds to the actual size accumulated by all the chunks. |
Method | new_file |
Create the file object to append to as data is coming in. |
Method | receive_data_chunk |
Receive data from the streamed upload parser. start is the position in the file of the chunk. |
Method | upload_interrupted |
Signal that the upload was interrupted. Subclasses should perform cleanup that is necessary for this handler. |
Instance Variable | file |
Undocumented |
Inherited from FileUploadHandler
:
Method | handle_raw_input |
Handle the raw input from the client. |
Method | upload_complete |
Signal that the upload is complete. Subclasses should perform cleanup that is necessary for this handler. |
Class Variable | chunk_size |
Undocumented |
Method | __init__ |
Undocumented |
Instance Variable | charset |
Undocumented |
Instance Variable | content_length |
Undocumented |
Instance Variable | content_type |
Undocumented |
Instance Variable | content_type_extra |
Undocumented |
Instance Variable | field_name |
Undocumented |
Instance Variable | file_name |
Undocumented |
Instance Variable | request |
Undocumented |
Signal that a file has completed. File size corresponds to the actual size accumulated by all the chunks.
Subclasses should return a valid UploadedFile object.