2010-01-27 13:28:47 +01:00
|
|
|
<configure
|
|
|
|
xmlns="http://namespaces.zope.org/zope"
|
2010-02-06 16:48:23 +01:00
|
|
|
xmlns:zcml="http://namespaces.zope.org/zcml"
|
2010-01-27 13:28:47 +01:00
|
|
|
i18n_domain="plone.app.discussion">
|
|
|
|
|
2010-03-16 16:06:43 +01:00
|
|
|
<!-- Plone 3 Event Subscribers -->
|
2010-01-27 13:28:47 +01:00
|
|
|
|
2010-02-06 16:48:23 +01:00
|
|
|
<configure zcml:condition="not-installed zope.app.container">
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.lifecycleevent.interfaces.IObjectAddedEvent"
|
|
|
|
handler=".comment.notify_workflow"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.lifecycleevent.interfaces.IObjectAddedEvent"
|
|
|
|
handler=".comment.notify_content_object"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.lifecycleevent.interfaces.IObjectRemovedEvent"
|
|
|
|
handler=".comment.notify_content_object"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.lifecycleevent.interfaces.IObjectAddedEvent"
|
|
|
|
handler=".tool.index_object"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.lifecycleevent.interfaces.IObjectRemovedEvent"
|
|
|
|
handler=".tool.unindex_object"
|
|
|
|
/>
|
2010-02-11 22:05:28 +01:00
|
|
|
|
2010-03-16 16:06:43 +01:00
|
|
|
<subscriber
|
|
|
|
for="Products.CMFCore.interfaces.IContentish
|
|
|
|
zope.lifecycleevent.interfaces.IObjectAddedEvent"
|
|
|
|
handler=".comment.notify_content_object_deleted"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</configure>
|
2010-02-06 16:48:23 +01:00
|
|
|
|
2010-03-16 16:06:43 +01:00
|
|
|
|
|
|
|
<!-- Plone 4 Event Subscribers -->
|
|
|
|
|
2010-02-06 16:48:23 +01:00
|
|
|
<configure zcml:condition="installed zope.app.container">
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.app.container.interfaces.IObjectAddedEvent"
|
|
|
|
handler=".comment.notify_workflow"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.app.container.interfaces.IObjectAddedEvent"
|
|
|
|
handler=".comment.notify_content_object"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.app.container.interfaces.IObjectRemovedEvent"
|
|
|
|
handler=".comment.notify_content_object"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.app.container.interfaces.IObjectAddedEvent"
|
|
|
|
handler=".tool.index_object"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<subscriber
|
|
|
|
for="plone.app.discussion.interfaces.IComment
|
|
|
|
zope.app.container.interfaces.IObjectRemovedEvent"
|
|
|
|
handler=".tool.unindex_object"
|
|
|
|
/>
|
|
|
|
|
2010-03-16 16:06:43 +01:00
|
|
|
<subscriber
|
|
|
|
for="Products.CMFCore.interfaces.IContentish
|
|
|
|
zope.app.container.interfaces.IObjectRemovedEvent"
|
|
|
|
handler=".comment.notify_content_object_deleted"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</configure>
|
2010-01-27 13:28:47 +01:00
|
|
|
|
|
|
|
</configure>
|