Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#7651 closed (fixed)

Bug when uploading lists of files

Reported by: Julien Phalip Owned by: Michael Axiak
Component: HTTP handling Version: dev
Severity: Keywords: upload, 2070-fix
Cc: Michael Axiak Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi,

I'm using the jquery plugin MultiFile [1], which allows to dynamically create file fields in the form and then upload all the files when submitting the form.
It used to work totally fine before #2070 was merged. In my view I could do this:

file_dicts = []
for file_input_name in request.FILES:
    file_dicts += request.FILES.getlist(file_input_name)

However, since #2070's merge, the last file selected with MultiFile is duplicated.

uploaded_files = []
for file_input_name in request.FILES:
    uploaded_files += request.FILES.getlist(file_input_name)

uploaded_files returns:

list: [<TemporaryUploadedFile: test1.gif (image/gif)>, <TemporaryUploadedFile: test2.jpg (image/jpeg)>, <TemporaryUploadedFile: test2.jpg (image/jpeg)>]

The duplicate file to have an empty content. The problems happens both with TemporaryUploadedFile and InMemoryUploadedFile.

The MultiFile plugin is used by a lot of people on different platforms and with different web frameworks, and it used to work fine before #2070's merge, so to me this looks like a bug.

My first assumption is that the problem is in django.http.multipartparser.py. The code must enter the loop one time too much in the end somehow.

[1] http://www.fyneworks.com/jquery/multiple-file-upload/

Attachments (1)

7651-fixes.diff (5.5 KB ) - added by Michael Axiak 16 years ago.
Fixes with test for multiple files.

Download all attachments as: .zip

Change History (4)

comment:1 by Michael Axiak, 16 years ago

Cc: Michael Axiak added
Component: Core frameworkHTTP handling
Has patch: set
Keywords: 2070-fix added
Owner: changed from nobody to Michael Axiak
Status: newassigned
Triage Stage: UnreviewedAccepted

Thanks for the bug report.

I'm attaching a patch with tests to fix this bug. Leaving it accepted until someone other than me verifies this patch.

by Michael Axiak, 16 years ago

Attachment: 7651-fixes.diff added

Fixes with test for multiple files.

comment:2 by Jacob, 16 years ago

Resolution: fixed
Status: assignedclosed

(In [7858]) Fixed #7651: uploading multiple files with the same name now work. Also, in order to test the problem the test client now handles uploading multiple files at once. Patch from Mike Axiak.

comment:3 by Jacob, 13 years ago

milestone: 1.0 beta

Milestone 1.0 beta deleted

Note: See TracTickets for help on using tickets.
Back to Top