2010-08-28 18:11:58 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Interfaces for plone.app.discussion
|
|
|
|
"""
|
2015-11-05 00:26:49 +01:00
|
|
|
from plone.app.discussion import _
|
2015-05-03 08:16:39 +02:00
|
|
|
from zope import schema
|
|
|
|
from zope.component.interfaces import IObjectEvent
|
2009-05-11 18:52:16 +02:00
|
|
|
from zope.interface import Interface
|
2009-05-18 16:16:48 +02:00
|
|
|
from zope.interface.common.mapping import IIterableMapping
|
2009-05-11 18:52:16 +02:00
|
|
|
|
2010-05-28 17:56:39 +02:00
|
|
|
|
2009-05-18 16:16:48 +02:00
|
|
|
class IConversation(IIterableMapping):
|
2009-05-13 16:54:06 +02:00
|
|
|
"""A conversation about a content object.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
This is a persistent object in its own right and manages all comments.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
The dict interface allows access to all comments. They are stored by
|
2009-05-18 16:16:48 +02:00
|
|
|
long integer key, in the order they were added.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-18 16:16:48 +02:00
|
|
|
Note that __setitem__() is not supported - use addComment() instead.
|
|
|
|
However, comments can be deleted using __delitem__().
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
To get replies at the top level, adapt the conversation to IReplies.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
The conversation can be traversed to via the ++comments++ namespace.
|
|
|
|
For example, path/to/object/++comments++/123 retrieves comment 123.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
The __parent__ of the conversation (and the acquisition parent during
|
|
|
|
traversal) is the content object. The conversation is the __parent__
|
|
|
|
(and acquisition parent) for all comments, regardless of threading.
|
2009-05-11 18:52:16 +02:00
|
|
|
"""
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2010-08-28 18:11:58 +02:00
|
|
|
total_comments = schema.Int(
|
2013-03-28 14:28:22 +01:00
|
|
|
title=_(u"Total number of public comments on this item"),
|
2010-09-10 07:00:47 +02:00
|
|
|
min=0,
|
2010-08-28 18:11:58 +02:00
|
|
|
readonly=True,
|
2013-04-13 22:47:30 +02:00
|
|
|
)
|
2010-09-10 07:00:47 +02:00
|
|
|
|
2010-08-28 18:11:58 +02:00
|
|
|
last_comment_date = schema.Date(
|
2013-03-28 14:28:22 +01:00
|
|
|
title=_(u"Date of the most recent public comment"),
|
2010-08-28 18:11:58 +02:00
|
|
|
readonly=True,
|
2013-04-13 22:47:30 +02:00
|
|
|
)
|
2010-09-10 07:00:47 +02:00
|
|
|
|
2010-08-28 18:11:58 +02:00
|
|
|
commentators = schema.Set(
|
2010-09-10 07:00:47 +02:00
|
|
|
title=_(u"The set of unique commentators (usernames)"),
|
2010-08-28 18:11:58 +02:00
|
|
|
readonly=True,
|
2013-04-13 22:47:30 +02:00
|
|
|
)
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2013-03-28 14:28:22 +01:00
|
|
|
public_commentators = schema.Set(
|
2013-04-18 15:57:01 +02:00
|
|
|
title=_(
|
|
|
|
u"The set of unique commentators (usernames) of"
|
|
|
|
u" published_comments"
|
|
|
|
),
|
2013-03-28 14:28:22 +01:00
|
|
|
readonly=True,
|
2013-04-13 22:47:30 +02:00
|
|
|
)
|
2013-03-28 14:28:22 +01:00
|
|
|
|
2009-05-18 16:16:48 +02:00
|
|
|
def addComment(comment):
|
2009-06-02 23:20:53 +02:00
|
|
|
"""Adds a new comment to the list of comments, and returns the
|
2009-05-18 16:16:48 +02:00
|
|
|
comment id that was assigned. The comment_id property on the comment
|
|
|
|
will be set accordingly.
|
|
|
|
"""
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-18 17:49:48 +02:00
|
|
|
def __delitem__(key):
|
|
|
|
"""Delete the comment with the given key. The key is a long id.
|
|
|
|
"""
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
def getComments(start=0, size=None):
|
2009-05-24 18:04:49 +02:00
|
|
|
"""Return an iterator of comment objects for rendering.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-24 18:04:49 +02:00
|
|
|
The 'start' parameter is the id of the comment from which to start the
|
|
|
|
batch. If no such comment exists, the next higher id will be used.
|
|
|
|
This means that you can use max key from a previous batch + 1 safely.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
The 'size' parameter is the number of comments to return in the
|
|
|
|
batch.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-24 18:04:49 +02:00
|
|
|
The comments are returned in creation date order, in the exact batch
|
2009-05-13 16:54:06 +02:00
|
|
|
size specified.
|
|
|
|
"""
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-24 18:04:49 +02:00
|
|
|
def getThreads(start=0, size=None, root=0, depth=None):
|
|
|
|
"""Return a batch of comment objects for rendering.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-24 18:04:49 +02:00
|
|
|
The 'start' parameter is the id of the comment from which to start
|
|
|
|
the batch. If no such comment exists, the next higher id will be used.
|
|
|
|
This means that you can use max key from a previous batch + 1 safely.
|
|
|
|
This should be a root level comment.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-24 18:04:49 +02:00
|
|
|
The 'size' parameter is the number of threads to return in the
|
|
|
|
batch. Full threads are always returned (although you can stop
|
|
|
|
consuming the iterator if you want to abort).
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-24 18:04:49 +02:00
|
|
|
'root', if given, is the id of the comment to which reply
|
|
|
|
threads will be found. 'root' itself is not included. If not given,
|
|
|
|
all threads are returned.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
If 'depth' is given, it can be used to limit the depth of threads
|
|
|
|
returned. For example, depth=1 will return only direct replies.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-24 18:04:49 +02:00
|
|
|
Comments are returned as an iterator of dicts with keys 'comment',
|
|
|
|
the comment, 'id', the comment id, and 'depth', which is 0 for
|
|
|
|
top-level comments, 1 for their replies, and so on. The list is
|
|
|
|
returned in depth-first order.
|
2009-05-13 16:54:06 +02:00
|
|
|
"""
|
2009-05-11 18:52:16 +02:00
|
|
|
|
2010-05-28 17:56:39 +02:00
|
|
|
|
2009-05-18 16:16:48 +02:00
|
|
|
class IReplies(IIterableMapping):
|
2009-05-13 16:54:06 +02:00
|
|
|
"""A set of related comments in reply to a given content object or
|
|
|
|
another comment.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
Adapt a conversation or another comment to this interface to obtain the
|
|
|
|
direct replies.
|
|
|
|
"""
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-18 16:16:48 +02:00
|
|
|
def addComment(comment):
|
2009-06-02 23:20:53 +02:00
|
|
|
"""Adds a new comment as a child of this comment, and returns the
|
2009-05-18 16:16:48 +02:00
|
|
|
comment id that was assigned. The comment_id property on the comment
|
|
|
|
will be set accordingly.
|
|
|
|
"""
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-18 16:16:48 +02:00
|
|
|
def __delitem__(key):
|
|
|
|
"""Delete the comment with the given key. The key is a long id.
|
|
|
|
"""
|
2009-05-11 18:52:16 +02:00
|
|
|
|
2010-05-28 17:56:39 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
class IComment(Interface):
|
|
|
|
"""A comment.
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-13 16:54:06 +02:00
|
|
|
Comments are indexed in the catalog and subject to workflow and security.
|
2009-05-11 18:52:16 +02:00
|
|
|
"""
|
|
|
|
|
2010-08-28 18:11:58 +02:00
|
|
|
portal_type = schema.ASCIILine(
|
2010-09-10 07:00:47 +02:00
|
|
|
title=_(u"Portal type"),
|
2010-08-28 18:11:58 +02:00
|
|
|
default="Discussion Item",
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2010-08-28 18:11:58 +02:00
|
|
|
__parent__ = schema.Object(
|
|
|
|
title=_(u"Conversation"), schema=Interface)
|
2010-09-10 07:00:47 +02:00
|
|
|
|
2009-08-02 19:32:41 +02:00
|
|
|
__name__ = schema.TextLine(title=_(u"Name"))
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2010-08-28 18:11:58 +02:00
|
|
|
comment_id = schema.Int(
|
|
|
|
title=_(u"A comment id unique to this conversation"))
|
2010-09-10 07:00:47 +02:00
|
|
|
|
2010-08-28 18:11:58 +02:00
|
|
|
in_reply_to = schema.Int(
|
2010-09-10 07:00:47 +02:00
|
|
|
title=_(u"Id of comment this comment is in reply to"),
|
2010-08-28 18:11:58 +02:00
|
|
|
required=False,
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-08-04 22:47:06 +02:00
|
|
|
# for logged in comments - set to None for anonymous
|
2009-08-16 10:38:42 +02:00
|
|
|
author_username = schema.TextLine(title=_(u"Name"), required=False)
|
2009-08-04 22:47:06 +02:00
|
|
|
|
|
|
|
# for anonymous comments only, set to None for logged in comments
|
2009-08-16 10:38:42 +02:00
|
|
|
author_name = schema.TextLine(title=_(u"Name"), required=False)
|
|
|
|
author_email = schema.TextLine(title=_(u"Email"), required=False)
|
2010-09-10 07:00:47 +02:00
|
|
|
|
|
|
|
title = schema.TextLine(title=_(u"label_subject",
|
2010-08-05 20:40:22 +02:00
|
|
|
default=u"Subject"))
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2009-05-11 18:52:16 +02:00
|
|
|
mime_type = schema.ASCIILine(title=_(u"MIME type"), default="text/plain")
|
2013-04-18 15:57:01 +02:00
|
|
|
text = schema.Text(
|
|
|
|
title=_(
|
|
|
|
u"label_comment",
|
|
|
|
default=u"Comment"
|
|
|
|
)
|
|
|
|
)
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2013-04-18 15:57:01 +02:00
|
|
|
user_notification = schema.Bool(
|
|
|
|
title=_(
|
|
|
|
u"Notify me of new comments via email."
|
|
|
|
),
|
|
|
|
required=False
|
|
|
|
)
|
2010-09-10 07:00:47 +02:00
|
|
|
|
2012-01-30 13:30:46 +01:00
|
|
|
creator = schema.TextLine(title=_(u"Username of the commenter"))
|
2009-05-11 18:52:16 +02:00
|
|
|
creation_date = schema.Date(title=_(u"Creation date"))
|
|
|
|
modification_date = schema.Date(title=_(u"Modification date"))
|
2009-06-02 23:20:53 +02:00
|
|
|
|
2010-05-28 17:56:39 +02:00
|
|
|
|
2009-08-12 22:45:47 +02:00
|
|
|
class ICaptcha(Interface):
|
2010-09-10 07:00:47 +02:00
|
|
|
"""Captcha/ReCaptcha text field to extend the existing comment form.
|
2010-05-28 17:56:39 +02:00
|
|
|
"""
|
2015-03-23 09:05:39 +01:00
|
|
|
captcha = schema.TextLine(title=_(u"Captcha"),
|
2009-08-15 12:17:34 +02:00
|
|
|
required=False)
|
2009-08-12 22:45:47 +02:00
|
|
|
|
2010-05-28 17:56:39 +02:00
|
|
|
|
2012-01-25 16:02:00 +01:00
|
|
|
class IDiscussionSettings(Interface):
|
|
|
|
"""Global discussion settings. This describes records stored in the
|
|
|
|
configuration registry and obtainable via plone.registry.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Todo: Write a short hint, that other discussion related options can
|
|
|
|
# be found elsewhere in the Plone control panel:
|
|
|
|
#
|
|
|
|
# - Types control panel: Allow comments on content types
|
|
|
|
# - Search control panel: Show comments in search results
|
|
|
|
|
|
|
|
globally_enabled = schema.Bool(
|
|
|
|
title=_(u"label_globally_enabled",
|
|
|
|
default=u"Globally enable comments"),
|
2013-04-18 15:57:01 +02:00
|
|
|
description=_(
|
|
|
|
u"help_globally_enabled",
|
|
|
|
default=u"If selected, users are able to post comments on the "
|
|
|
|
u"site. Though, you have to enable comments for "
|
|
|
|
u"specific content types, folders or content objects "
|
|
|
|
u"before users will be able to post comments."
|
|
|
|
),
|
2012-01-25 16:02:00 +01:00
|
|
|
required=False,
|
|
|
|
default=False,
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2012-01-25 16:02:00 +01:00
|
|
|
|
|
|
|
anonymous_comments = schema.Bool(
|
|
|
|
title=_(u"label_anonymous_comments",
|
|
|
|
default="Enable anonymous comments"),
|
2013-04-18 15:57:01 +02:00
|
|
|
description=_(
|
|
|
|
u"help_anonymous_comments",
|
|
|
|
default=u"If selected, anonymous users are able to post "
|
|
|
|
u"comments without loggin in. It is highly "
|
|
|
|
u"recommended to use a captcha solution to prevent "
|
|
|
|
u"spam if this setting is enabled."
|
|
|
|
),
|
2012-01-25 16:02:00 +01:00
|
|
|
required=False,
|
|
|
|
default=False,
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2012-01-25 16:02:00 +01:00
|
|
|
|
2015-09-13 15:38:46 +02:00
|
|
|
anonymous_email_enabled = schema.Bool(
|
|
|
|
title=_(u"label_anonymous_email_enabled",
|
|
|
|
default=u"Enable anonymous email field"),
|
|
|
|
description=_(
|
|
|
|
u"help_anonymous_email_enabled",
|
|
|
|
default=u"If selected, anonymous user will have to "
|
|
|
|
u"give their email."),
|
|
|
|
required=False,
|
|
|
|
default=False
|
|
|
|
)
|
|
|
|
|
2012-01-25 16:02:00 +01:00
|
|
|
moderation_enabled = schema.Bool(
|
2013-04-18 15:57:01 +02:00
|
|
|
title=_(
|
|
|
|
u"label_moderation_enabled",
|
|
|
|
default="Enable comment moderation"
|
|
|
|
),
|
|
|
|
description=_(
|
|
|
|
u"help_moderation_enabled",
|
|
|
|
default=u"If selected, comments will enter a 'Pending' state "
|
|
|
|
u"in which they are invisible to the public. A user "
|
|
|
|
u"with the 'Review comments' permission ('Reviewer' "
|
|
|
|
u"or 'Manager') can approve comments to make them "
|
|
|
|
u"visible to the public. If you want to enable a "
|
|
|
|
u"custom comment workflow, you have to go to the "
|
|
|
|
u"types control panel."
|
|
|
|
),
|
2012-01-25 16:02:00 +01:00
|
|
|
required=False,
|
|
|
|
default=False,
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2012-01-25 16:02:00 +01:00
|
|
|
|
2013-09-17 14:03:46 +02:00
|
|
|
edit_comment_enabled = schema.Bool(
|
|
|
|
title=_(u"label_edit_comment_enabled",
|
|
|
|
default="Enable editing of comments"),
|
|
|
|
description=_(u"help_edit_comment_enabled",
|
2014-09-20 16:02:48 +02:00
|
|
|
default=u"If selected, supports editing "
|
2013-09-17 14:03:46 +02:00
|
|
|
"of comments for users with the 'Edit comments' "
|
|
|
|
"permission."),
|
|
|
|
required=False,
|
|
|
|
default=False,
|
|
|
|
)
|
|
|
|
|
2014-09-20 16:02:48 +02:00
|
|
|
delete_own_comment_enabled = schema.Bool(
|
|
|
|
title=_(u"label_delete_own_comment_enabled",
|
|
|
|
default="Enable deleting own comments"),
|
|
|
|
description=_(u"help_delete_own_comment_enabled",
|
|
|
|
default=u"If selected, supports deleting "
|
|
|
|
"of own comments for users with the "
|
|
|
|
"'Delete own comments' permission."),
|
|
|
|
required=False,
|
|
|
|
default=False,
|
|
|
|
)
|
|
|
|
|
2012-01-25 16:02:00 +01:00
|
|
|
text_transform = schema.Choice(
|
|
|
|
title=_(u"label_text_transform",
|
|
|
|
default="Comment text transform"),
|
2013-04-18 15:57:01 +02:00
|
|
|
description=_(
|
|
|
|
u"help_text_transform",
|
|
|
|
default=u"Use this setting to choose if the comment text " +
|
|
|
|
u"should be transformed in any way. You can choose "
|
|
|
|
u"between 'Plain text' and 'Intelligent text'. " +
|
|
|
|
u"'Intelligent text' converts plain text into HTML " +
|
|
|
|
u"where line breaks and indentation is preserved, " +
|
|
|
|
u"and web and email addresses are made into " +
|
|
|
|
u"clickable links."),
|
2012-01-25 16:02:00 +01:00
|
|
|
required=True,
|
|
|
|
default='text/plain',
|
|
|
|
vocabulary='plone.app.discussion.vocabularies.TextTransformVocabulary',
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2012-01-25 16:02:00 +01:00
|
|
|
|
|
|
|
captcha = schema.Choice(
|
|
|
|
title=_(u"label_captcha",
|
|
|
|
default="Captcha"),
|
2013-04-18 15:57:01 +02:00
|
|
|
description=_(
|
|
|
|
u"help_captcha",
|
|
|
|
default=u"Use this setting to enable or disable Captcha "
|
|
|
|
u"validation for comments. Install "
|
|
|
|
u"plone.formwidget.captcha, "
|
|
|
|
u"plone.formwidget.recaptcha, collective.akismet, or "
|
|
|
|
u"collective.z3cform.norobots if there are no options "
|
|
|
|
u"available."),
|
2012-01-25 16:02:00 +01:00
|
|
|
required=True,
|
|
|
|
default='disabled',
|
|
|
|
vocabulary='plone.app.discussion.vocabularies.CaptchaVocabulary',
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2012-01-25 16:02:00 +01:00
|
|
|
|
|
|
|
show_commenter_image = schema.Bool(
|
|
|
|
title=_(u"label_show_commenter_image",
|
|
|
|
default=u"Show commenter image"),
|
2013-04-18 15:57:01 +02:00
|
|
|
description=_(
|
|
|
|
u"help_show_commenter_image",
|
|
|
|
default=u"If selected, an image of the user is shown next to "
|
|
|
|
u"the comment."),
|
2012-01-25 16:02:00 +01:00
|
|
|
required=False,
|
|
|
|
default=True,
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2012-01-25 16:02:00 +01:00
|
|
|
|
|
|
|
moderator_notification_enabled = schema.Bool(
|
|
|
|
title=_(u"label_moderator_notification_enabled",
|
|
|
|
default=u"Enable moderator email notification"),
|
2013-04-18 15:57:01 +02:00
|
|
|
description=_(
|
|
|
|
u"help_moderator_notification_enabled",
|
|
|
|
default=u"If selected, the moderator is notified if a comment "
|
|
|
|
u"needs attention. The moderator email address can " +
|
2014-03-25 18:53:51 +01:00
|
|
|
u"be set below."),
|
2012-01-25 16:02:00 +01:00
|
|
|
required=False,
|
|
|
|
default=False,
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2012-01-25 16:02:00 +01:00
|
|
|
|
|
|
|
moderator_email = schema.ASCIILine(
|
2013-04-18 15:57:01 +02:00
|
|
|
title=_(
|
|
|
|
u'label_moderator_email',
|
|
|
|
default=u'Moderator Email Address'
|
|
|
|
),
|
|
|
|
description=_(
|
|
|
|
u'help_moderator_email',
|
|
|
|
default=u"Address to which moderator notifications "
|
|
|
|
u"will be sent."),
|
2012-01-25 16:02:00 +01:00
|
|
|
required=False,
|
2013-04-18 15:57:01 +02:00
|
|
|
)
|
2012-01-25 16:02:00 +01:00
|
|
|
|
|
|
|
user_notification_enabled = schema.Bool(
|
2013-04-18 15:57:01 +02:00
|
|
|
title=_(
|
|
|
|
u"label_user_notification_enabled",
|
|
|
|
default=u"Enable user email notification"
|
|
|
|
),
|
|
|
|
description=_(
|
|
|
|
u"help_user_notification_enabled",
|
|
|
|
default=u"If selected, users can choose to be notified "
|
|
|
|
u"of new comments by email."),
|
2012-01-25 16:02:00 +01:00
|
|
|
required=False,
|
2013-04-18 15:57:01 +02:00
|
|
|
default=False
|
|
|
|
)
|
2012-01-25 16:02:00 +01:00
|
|
|
|
|
|
|
|
2010-06-04 11:33:48 +02:00
|
|
|
class IDiscussionLayer(Interface):
|
2009-05-23 06:55:06 +02:00
|
|
|
"""Request marker installed via browserlayer.xml.
|
2010-01-22 18:54:30 +01:00
|
|
|
"""
|
2013-10-19 06:40:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
class ICommentingTool(Interface):
|
|
|
|
"""For backwards-compatibility.
|
|
|
|
|
|
|
|
This can be removed once we no longer support upgrading from versions
|
|
|
|
of Plone that had a portal_discussion tool.
|
|
|
|
"""
|
2014-04-16 17:54:19 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Custom events
|
|
|
|
#
|
|
|
|
|
2015-05-03 08:22:51 +02:00
|
|
|
|
2014-04-16 17:54:19 +02:00
|
|
|
class IDiscussionEvent(IObjectEvent):
|
|
|
|
""" Discussion custom event
|
|
|
|
"""
|
|
|
|
|
2015-05-03 08:22:51 +02:00
|
|
|
|
2014-04-16 17:54:19 +02:00
|
|
|
class ICommentAddedEvent(IDiscussionEvent):
|
|
|
|
""" Comment added
|
|
|
|
"""
|
|
|
|
|
2015-05-03 08:22:51 +02:00
|
|
|
|
2014-04-16 17:54:19 +02:00
|
|
|
class ICommentRemovedEvent(IDiscussionEvent):
|
|
|
|
""" Comment removed
|
|
|
|
"""
|
|
|
|
|
2015-05-03 08:22:51 +02:00
|
|
|
|
2014-04-16 17:54:19 +02:00
|
|
|
class IReplyAddedEvent(IDiscussionEvent):
|
|
|
|
""" Comment reply added
|
|
|
|
"""
|
|
|
|
|
2015-05-03 08:22:51 +02:00
|
|
|
|
2014-04-16 17:54:19 +02:00
|
|
|
class IReplyRemovedEvent(IDiscussionEvent):
|
|
|
|
""" Comment reply removed
|
|
|
|
"""
|