This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
glasnost/shared/common/CommentsCommon.py

127 lines
4.2 KiB
Python

# -*- coding: iso-8859-15 -*-
# Glasnost
# By: Odile Bénassy <obenassy@entrouvert.com>
# Romain Chantereau <rchantereau@entrouvert.com>
# Nicolas Clapiès <nclapies@easter-eggs.org>
# Pierre-Antoine Dejace <padejace@entrouvert.be>
# Thierry Dulieu <tdulieu@easter-eggs.com>
# Florent Monnier <monnier@codelutin.com>
# Cédric Musso <cmusso@easter-eggs.org>
# Frédéric Péters <fpeters@entrouvert.be>
# Benjamin Poussin <poussin@codelutin.com>
# Emmanuel Raviart <eraviart@entrouvert.com>
# Sébastien Régnier <regnier@codelutin.com>
# Emmanuel Saracco <esaracco@easter-eggs.com>
#
# Copyright (C) 2000, 2001 Easter-eggs & Emmanuel Raviart
# Copyright (C) 2002 Odile Bénassy, Code Lutin, Thierry Dulieu, Easter-eggs,
# Entr'ouvert, Frédéric Péters, Benjamin Poussin, Emmanuel Raviart,
# Emmanuel Saracco & Théridion
# Copyright (C) 2003 Odile Bénassy, Romain Chantereau, Nicolas Clapiès,
# Code Lutin, Pierre-Antoine Dejace, Thierry Dulieu, Easter-eggs,
# Entr'ouvert, Florent Monnier, Cédric Musso, Ouvaton, Frédéric Péters,
# Benjamin Poussin, Rodolphe Quiédeville, Emmanuel Raviart, Sébastien
# Régnier, Emmanuel Saracco, Théridion & Vecam
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
__doc__ = """Glasnost Comments Common Models"""
__version__ = '$Revision$'[11:-2]
from ObjectsCommon import AdminCommon, ObjectCommon, ObjectsCommonMixin
class AdminCommentsCommon(AdminCommon):
allowAnonymousComments = 0
allowAnonymousComments_kind_isRequired = 1
allowAnonymousComments_kindName = 'Boolean'
serverRole = 'comments'
def getOrderedLayoutSlotNames(self, parentSlot = None):
slotNames = AdminCommon.getOrderedLayoutSlotNames(
self, parentSlot = parentSlot)
slotNames += ['allowAnonymousComments']
return slotNames
class CommentCommon(ObjectCommon):
authorId = None
authorId_kind_importExport = 'from-server-only'
authorId_kind_serverRoles = ['people']
authorId_kindName = 'Id'
body = None
body_kind_balloonHelp = N_('Enter the text of your comment.')
body_kind_isTranslatable = 0
body_kind_isRequired = 1
body_kindName = 'String'
creationTime = None
creationTime_kindName = 'CreationTime'
serverRole = 'comments'
replyToId = None
replyToId_kind_importExport = 'from-server-only'
replyToId_kindName = 'Id'
name = None
name_kind_balloonHelp = N_('Enter your name (if you want).')
name_kind_isRequired = 0
name_kindName = 'String'
title = None
title_kind_balloonHelp = N_('Enter the title of your comment.')
title_kind_isRequired = 1
title_kindName = 'String'
nbReplies = 0
nbReplies_kind_importExport = 'from-server-only'
nbReplies_kindName = 'Integer'
nbReplies_kind_defaultValue = 0
def canCache(self):
return 1
def getLabel(self):
if self.title:
return self.title
return 'some comment'
def getOrderedLayoutSlotNames(self, parentSlot = None):
slotNames = ObjectCommon.getOrderedLayoutSlotNames(
self, parentSlot = parentSlot)
slotNames += ['title', 'body', 'name', 'sourceId', 'authorId']
return slotNames
class CommentsCommonMixin(ObjectsCommonMixin):
adminClassName = 'AdminComments'
newObjectNameCapitalized = N_('New Comment')
objectClassName = 'Comment'
objectName = N_('comment')
objectNameCapitalized = N_('Comment')
objectsName = N_('comments')
objectsNameCapitalized = N_('Comments')
serverRole = 'comments'