Re: [Zope-dev] Wrox Book

2000-10-16 Thread Chris Withers
Brad Clements wrote: Yeah, that project has just been pulled, I think ;-) Pulled as in cancelled? yup... Chris ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! **

[Zope-dev] ZMYSALDA - Ports

2000-10-16 Thread Andy Dawkins
People Has anyone managed to patch the MYSQLDA so that you can access a MySQL server on a different port? i.e. port 3307 instead of the default 3306 If so would you care to share the breakthrough with me please? Andy Dawkins ___ Zope-Dev maillist

[Zope-dev] Writelocking Proposal rev 3.1

2000-10-16 Thread Jeffrey P Shell
http://dev.zope.org/Wikis/DevSite/Proposals/WriteLocking The proposal has been updated with a new deliverable discussing documentation as noted and requested by Brian. Jeffrey P Shell, [EMAIL PROTECTED] http://www.digicool.com/ | http://www.zope.org

[Zope-dev] SQL user source, how is this?

2000-10-16 Thread Harry Henry Gebel
I am writing a UserSource that gets it's information from an SQL database, here it is: ''' CCUserSource, a LoginManager user source for the # project. ''' from sha import sha from Products.LoginManager.UserSources import BasicUserSource class CCUserSource(BasicUserSource): """

[Zope-dev] Recursive folders from Python

2000-10-16 Thread Jason Spisak
Zopists, Yesterday I was trying to create recursive folders from DTML. I'd like to do the same from Python. Does anyonw know why this code won't create a folder within a folder. It's tells me the id is already in use, so that means it's not descending into the newly created folder to make

Re: [Zope-dev] Recursive folders from Python

2000-10-16 Thread Andy McKay
Try using getattr to get the object... heres a python script to do it a little more cleanly: import string def create_folders(self): path = '/a/b/c' # create a folder for each part of the string, nested. for p in string.split(path, '/'): if p != '': self = create_folder(self, p)