[Zope] Now it's a "Folder" class question :-)

Chris Withers chrisw@nipltd.com
Sun, 9 Sep 2001 09:22:22 +0100


> from OFS import Folder

d'oh!

I believe you meant:

from OFS.Folder import Folder

> class minimal(Implicit, Folder):

...and it's whinging here 'cos you're trying to subclass a module not a
class ;-)

Other than that, you don't need that Implicit there.

>     meta_types=()
>     index_html=DTMLFile('www/index_html', globals())
>     manage_options=(
>     def __init__(self, id):

BTW, for a _really_ minimal product, none of the above are necessary ;-)

cheers,

Chris