Hi *, I have several comma delimetered text files on the local file system, which I can render via Zope using the LocalFS product. Question - Is it at all possible to update these files via some DTML calls? eg. Once a user submits a form, I call some ZSQL Methods and this data is used to update the text files - without them accessing the ZMI? Regards, Michael Fox
Michael Fox writes:
... I have several comma delimetered text files on the local file system, which I can render via Zope using the LocalFS product.
Question - Is it at all possible to update these files via some DTML calls? DTML calls are not too adequate:
Use "DocFinder" <http://www.dieter.handshake.de/pyprojects/zope> or look at the sources to learn what methods the objects support. Use the one that is able to change the file object. You can call the method from DTML (when you like, but a Python Script would be more natural). Dieter
participants (2)
-
Dieter Maurer -
Michael Fox