Commit 82a942a2 authored by Jean-Paul Smets's avatar Jean-Paul Smets

Made BaseDomain a subclass of Domain


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@4486 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 8d424e7d
......@@ -30,9 +30,9 @@ from Globals import InitializeClass
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.ERP5Type.Document.Folder import Folder
from Products.ERP5Type.Document.Domain import Domain
class BaseDomain(Folder):
class BaseDomain(Domain):
"""
Base Domain is the root of a tree of domains which can be used
as nodes in a report tree of ListBox
......@@ -51,9 +51,4 @@ class BaseDomain(Folder):
security = ClassSecurityInfo()
security.declareObjectProtected(Permissions.View)
# Declarative properties
property_sheets = ( PropertySheet.Base
, PropertySheet.DublinCore
, PropertySheet.CategoryCore
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment