From e4a62a2c0d357e1517f62c7608b514ee5ac8b72a Mon Sep 17 00:00:00 2001 From: Timo Stollenwerk Date: Wed, 3 Jun 2009 15:24:48 +0000 Subject: [PATCH] comment with todo for discussion control panel added. svn path=/plone.app.discussion/trunk/; revision=27288 --- plone/app/discussion/interfaces.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plone/app/discussion/interfaces.py b/plone/app/discussion/interfaces.py index 498652d..f86a43f 100644 --- a/plone/app/discussion/interfaces.py +++ b/plone/app/discussion/interfaces.py @@ -11,6 +11,12 @@ class IDiscussionSettings(Interface): 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"Globally enabled"), description=_(u"Use this setting to enable or disable comments globally."), default=True) @@ -19,6 +25,7 @@ class IDiscussionSettings(Interface): description=_(u"Use this setting to enable or disable posting comments as anonymous visitor."), default=False) + class IConversation(IIterableMapping): """A conversation about a content object.