Re: Manipulating request.FILES

2008-04-02 Thread Dmitriy Sodrianov
Yes, that helped, thanks! On 1 апр, 09:55, Cephire <[EMAIL PROTECTED]> wrote: > Dimitri: I assume that you want to modify the name of the file that is > submitted. It can be done in _save_FIELD_file of the model. Here is a > snippet that i use to change the name of the uploaded avatar icon for >

Re: Manipulating request.FILES

2008-03-31 Thread Cephire
1, 9:22 pm, Dmitriy Sodrianov <[EMAIL PROTECTED]> wrote: > Hi to all! > > I'm stuck with the problem of manipulating request.FILES. I need to do > the following thing - there is a form with the FileField in it, After > the submit file that is send with the form must be renamed and st

Manipulating request.FILES

2008-03-31 Thread Dmitriy Sodrianov
Hi to all! I'm stuck with the problem of manipulating request.FILES. I need to do the following thing - there is a form with the FileField in it, After the submit file that is send with the form must be renamed and stored in particular way, let's say md5 of client ID. I have no idea of how