[Zope] update_data()

Dieter Maurer dieter@handshake.de
Thu, 14 Feb 2002 22:21:49 +0100


Bryan C. Andregg writes:
 > I'm writing a python Script that handles user uploaded files (among other
 > things). I'd like users to be able to overwrite files and looking at the API
 > update_data() appears to be what I want. I did notice the caveat that it was
 > callable by Python only, but no good explaination as to whether this meant
 > just External Methods or Scripts or something else.
The distinction is not Python versus something else but rather
file system based versus TTW (Through The Web editable) code.

When the API says, "Python only", it means "file system based Python only"
(or a XXPythonScript). You can use an External Method or a Python implemented
product.


Dieter