﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
20034	Upload handlers provide no way to retrieve previously parsed POST variables	rfkrocktk@…		"In a custom Django upload handler like the one here, it is impossible to get other POST variables sent along with the multipart request until the handler has completed the upload entirely. Often, it'd be nice to be able to grab the variables as they're parsed to do something with them. Essentially, a method should be added to django.core.files.uploadhandler.FileUploadHandler called something like ""variable_complete"" which would provide the name and content type of each non-file variable passed with the multipart request:

{{{
class FileUploadHandler:

    # ...
    def variable_complete(self, variable_name, variable_value):
        """"""
        Called after a POST variable has been successfully parsed from the multipart request.
        """"""
        pass
}}}

This would save me the trouble of manually having to parse the multipart request myself in ""handle_raw_input""."	New feature	new	HTTP handling	dev	Normal			tadeck Ülgen Sarıkavak	Accepted	1	0	0	1	0	0
