From 53d237a4eb609aa330e25b7d8ebbacdfd5eb26db Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 21 Nov 2010 13:41:19 +0100 Subject: Allow configuration whether to allow anonymous comments. --- sphinx/websupport/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sphinx/websupport') diff --git a/sphinx/websupport/__init__.py b/sphinx/websupport/__init__.py index d483a1ff8..35696c22c 100644 --- a/sphinx/websupport/__init__.py +++ b/sphinx/websupport/__init__.py @@ -42,6 +42,7 @@ class WebSupport(object): status=sys.stdout, warning=sys.stderr, moderation_callback=None, + allow_anonymous_comments=True, docroot='', staticroot='static', ): @@ -59,6 +60,7 @@ class WebSupport(object): self.status = status self.warning = warning self.moderation_callback = moderation_callback + self.allow_anonymous_comments = allow_anonymous_comments self._init_templating() self._init_search(search) @@ -314,6 +316,11 @@ class WebSupport(object): :param username: the username of the user making the comment. :param time: the time the comment was created, defaults to now. """ + if username is None: + if self.allow_anonymous_comments: + username = 'Anonymous' + else: + raise errors.UserNotAuthorizedError() text = self._parse_comment_text(text) comment = self.storage.add_comment(text, displayed, username, time, proposal, node_id, -- cgit v1.2.1