loops/organize/configure.zcml
helmutm 60111065e7 loops.organize: handling of concept deletion, error checking
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1210 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-05-14 09:33:11 +00:00

28 lines
822 B
XML

<!-- $Id$ -->
<configure
xmlns:zope="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
i18n_domain="zope"
>
<!-- adapters -->
<zope:adapter factory="loops.organize.party.Person"
provides="loops.organize.interfaces.IPerson"
trusted="True" />
<zope:class class="loops.organize.party.Person">
<require permission="zope.View"
interface="loops.organize.interfaces.IPerson" />
<require permission="zope.ManageContent"
set_schema="loops.organize.interfaces.IPerson" />
</zope:class>
<zope:subscriber
for="loops.interfaces.IConcept
zope.app.container.interfaces.IObjectRemovedEvent"
handler="loops.organize.party.removePersonReferenceFromPrincipal"
/>
</configure>