d90c436f8a
- zope.app.container is available in both Plone 3 and Plone 4, so the 'not-installed zope.app.container' condition was always false - zope.lifecycleevent.interfaces does not have an IObjectAddedEvent or IObjectRemovedEvent so even if the condition would have been true, the loading would have failed. svn path=/plone.app.discussion/trunk/; revision=46367
19 lines
509 B
XML
19 lines
509 B
XML
<configure
|
|
xmlns="http://namespaces.zope.org/zope"
|
|
xmlns:zcml="http://namespaces.zope.org/zcml"
|
|
i18n_domain="plone.app.discussion">
|
|
|
|
<subscriber
|
|
for="plone.app.discussion.interfaces.IComment
|
|
zope.app.container.interfaces.IObjectAddedEvent"
|
|
handler=".comment.notify_user"
|
|
/>
|
|
|
|
<subscriber
|
|
for="plone.app.discussion.interfaces.IComment
|
|
zope.app.container.interfaces.IObjectAddedEvent"
|
|
handler=".comment.notify_moderator"
|
|
/>
|
|
|
|
</configure>
|