Jay Parlar wrote: >Ahh, very cool. How should I build the new_data object though? Is >this the *right* way? > >new_data = request.POST.copy() >new_data.update(request.FILES.copy()) > > Well... In general it's a bit tricky. Doing it like this and feeding this new_data to manipulator will validate and save everything including uploaded files. But since Django doesn't automatically remove associated files on update you'll get lost files sitting forever in your upload dir whenever you upload new file. This should be resolved manually depending on what your app is supposed to do in this case.
>I tried doing it this way, but now the 'creation_time' field in my >model is causing a problem. ie., my model is actually: > >class FirmwareUpload(models.Model): > firmware = models.FileField(upload_to="uploads/%A-%B-%Y") > creation_time = models.DateTimeField(auto_now_add=True) > class Admin: ... > > >When I try to upload the file, the new 'obj = >manipulator.save(new_data)' is causing the following error: > >OperationalError at /firmware/ >firmware_firmwareupload.creation_time may not be NULL > > >Shouldn't the AddManipulator have prepopulated that field, because of >the 'auto_now_add=True'? I wasn't seeing that error before the change. > > No, auto_now_add is supposed to be filled when object is first saved. However due to a bug (http://code.djangoproject.com/ticket/555) auto_now_add fields are saved successfully but not populated with the new time after save. This causes your bug because manipulator actualy saves the object twice: first time for the object itself and second time doing save_*_file which calls object's save(). Ad this second save() tries to update auto_now_add field with empty value that still lives in it. To work this around you can write override object's save() and select new saved time explicitely into the field as described in first comment in the ticket. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---