Hi,

I have a story writing application. Users click a creat story button and it creates a file like so...

the_folder.manage_addFile(the_id, file="<html></html>", title="", precondition="", content_type="text/html")

This works fine the file is created and is of the content type   text/html

However when the user edits the story using epoz and saves it the file content type changes to application/octet-stream here is the update script called from a dtml method called 'edit' with the url being http://websiteaddress.com/storyid/edit

def changeFileContent(ht):

    ''' this function updates the object contents on which it is called '''

htPlus = "<html><head><title>" + title1 + "</title></head><body>" + ht + "</body></html>"

    context.manage_upload(htPlus)



any ideas?

thanks

_________________________________________________________________
More photos; more messages; more storage—get 5GB with Windows Live Hotmail. http://imagine-windowslive.com/hotmail/?locale=en-us&ocid=TXT_TAGHM_migration_HM_mini_2G_0507

_______________________________________________
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope-dev )

Reply via email to