Re: [Zope] using formlib for nonclasic content types

2010-01-28 Thread Jim Pharis
I went through the same motions as you in Zope2.12 trying to use Phillkon's book as a guide. I think I ran into the same problem as you. The key is in the package five.localsitemanager. My Site Interface is nothing. class IMySite(Interface): My Site In my site.py I have the following. ...

[Zope] using formlib for nonclasic content types

2010-01-27 Thread Roberto Allende
Hello Following example 18.3.1 and 18.3.2 from phillkon's book, i'm trying to define a MySite class in Zope 2.12, which look like this: class IMySite(IPossibleSite, IContainer): id = ASCIILine( ... name = TextLine( ... class MySite(SiteManagerContainer,