SubObject view for "folderish" ZClasses
Zopistas, I am using Zope 2.4... I have created a "folderish" ZClass. When I look at it the subObjects view is not there, I looked at an earlier Zope version with a "folderish" ZClass I created and found it was there. It is also mentioned multiple times in the list archives. I want to limit the add list within this folderish object to only the objects I create for it. How do I do this now? TIA, -- Jeffrey D. Peterson Webmaster/Web & Web Applications Engineer Range TV Cable & Broadband 1818 E. 3rd Ave. Hibbing, MN 55746 jpeterso@rangebroadband.com
Just overwrite the "all_meta_types" method with this one:: def all_meta_types(self): """ What types can you add to this objectManager? """ allowedMetaTypes = ('DTML Method', 'DTML Document', 'minimal') result = [] for metaType in Products.meta_types: if metaType['name'] in allowedMetaTypes: result.append(metaType) return result regards Max M Max M. W. Rasmussen, Denmark. New Media Director private: maxmcorp@worldonline.dk work: maxm@normik.dk ----------------------------------------------------- Shipping software is an unnatural act
-----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of Jeff Peterson Sent: Friday, July 27, 2001 10:38 PM To: Zope Mailing List Subject: [Zope] SubObject view for "folderish" ZClasses
Zopistas,
I am using Zope 2.4...
I have created a "folderish" ZClass. When I look at it the subObjects view is not there, I looked at an earlier Zope version with a "folderish" ZClass I created and found it was there. It is also mentioned multiple times in the list archives. I want to limit the add list within this folderish object to only the objects I create for it. How do I do this now?
TIA,
-- Jeffrey D. Peterson Webmaster/Web & Web Applications Engineer Range TV Cable & Broadband 1818 E. 3rd Ave. Hibbing, MN 55746 jpeterso@rangebroadband.com
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (2)
-
Jeff Peterson -
Max M