adding files and folder in a object during generation
I created an external product using python to creates a folderish object. During object instantiation by manage_addProduct(self, id, ......): I wish to add a couple of empty files and folder. I tried self.manage_addFolder('folderID', , 'folderName') but it just create a folder outside of the object. I tried id.manage_addFolder('folderID', , 'folderName') but id is a str and does not have manage_addFolder I tried self.getitem(id).manage_addFolder('folderID', , 'folderName') _.getitem(id) is a method I frequently used in DTML but it didn't work in python. what expression do I use to replace with self so ZOPE will create folders and files in the newly generated object? ____________________________________________________________________________________ Looking for earth-friendly autos? Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center. http://autos.yahoo.com/green_center/
--On 14. März 2007 22:18:06 -0700 Allen Huang <swapp0@yahoo.com> wrote:
I created an external product using python to creates a folderish object. During object instantiation by manage_addProduct(self, id, ......): I wish to add a couple of empty files and folder.
Such tasks belong into manage_afterAdd() or should be implemented using the lately introduced event-based notification mechanism. -aj
participants (2)
-
Allen Huang -
Andreas Jung