How in the world do you get the file content?

I have a manipulator that looks like this:
 class AddManipulator(formfields.Manipulator):
        def __init__(self):
            self.fields = (
                formfields.TextField(field_name="title", length=30, 
                                             maxlength=200, is_required=True),
                formfields.LargeTextField(field_name="description"),
                formfields.FileUploadField(field_name="file", is_required=True)
            )

When I try to process it, the file field is entirely blank.  I looked
at the request.FILES and that's blank as well.  Finally I hacked the
render of FileUploadField to add enctype="multipart/form-data" to the
INPUT field, but still nothing...

Any ideas?

Reply via email to