Re: [Zope] setting a title to all objects in a folder?

2006-12-27 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - --On 27. Dezember 2006 17:38:21 + siva k <[EMAIL PROTECTED]> wrote: > Hello, > > Absolute newbie to python here. I try to set the SAME title to ALL the > files in a > zope folder using a python script. The code below is not working... no > id

[Zope] setting a title to all objects in a folder?

2006-12-27 Thread siva k
Hello, Absolute newbie to python here. I try to set the SAME title to ALL the files in a zope folder using a python script. The code below is not working... no idea why def setfiletitle(folder,title): myfolder = getFolder(folder) for file in myfolder: setTitle(title) coul