Precondition on images saved in a localfs folder
Hello, if i upload an image in the ZOBD as a file i have the precondition if i do the same in the localfs folder no. Do you know why? It seems LocalFs will always recognise the file uploaded as an image... Thanks, Bruno
if i upload an image in the ZOBD as a file i have the precondition if i do the same in the localfs folder no. Do you know why? It seems LocalFs will always recognise the file uploaded as an image...
Zope will set the uploaded file type unless you do it explicity before you save the object: eg. folder.manage_addFile(id=thisId, file=filedata, title=afile, content_type=contentType) set contentType to what you want. hth Jonathan
Bruno Grampa wrote at 2006-1-10 23:42 +0100:
if i upload an image in the ZOBD as a file i have the precondition if i do the same in the localfs folder no. Do you know why?
The files in an "localfs" folder are only temporarily wrapped as Zope objects. The wrapper is destroyed at the request end. You cannot store persistent data on them (e.g. a precondition). -- Dieter
participants (3)
-
Bruno Grampa -
Dieter Maurer -
Jonathan