Re: Django REST and FILEFIELD field

2010-03-01 Thread manu.polline
ar 1, 2:49 pm, Malcolm Box <malcolm@gmail.com> wrote: > I've got this working in the past, but only by writing custom create() > methods on the Collection and Entry classes. > > In the custom create() method you can process the POST/PUT data directly > into the FileField just li

Re: Django REST and FILEFIELD field

2010-02-25 Thread manu.polline
Hi everyone, anyone help me?? On 22 Feb, 19:19, "manu.polline" <manuel.coli...@gmail.com> wrote: > Hi everyone, > my name is Manuel. I'm tryng to upload a file directly in a filefield > of Django model exposed by django-rest-interface. > It'is possible? > th

Django REST and FILEFIELD field

2010-02-22 Thread manu.polline
Hi everyone, my name is Manuel. I'm tryng to upload a file directly in a filefield of Django model exposed by django-rest-interface. It'is possible? this is my model : class File(models.Model): file = models.FileField(upload_to='files', help_text=_("file itself")) page =