added fields to message and message manager interfaces
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2033 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
c5de793e2c
commit
d698ecd9e9
1 changed files with 37 additions and 2 deletions
|
@ -35,6 +35,11 @@ class IMessageManager(Interface):
|
||||||
""" A manager (or container) for complex messages.
|
""" A manager (or container) for complex messages.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
title = schema.TextLine(
|
||||||
|
title=_(u'Title'),
|
||||||
|
description=_(u'The title of the object.'),
|
||||||
|
required=True,)
|
||||||
|
|
||||||
messages = Attribute('A collection of message objects managed.')
|
messages = Attribute('A collection of message objects managed.')
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,7 +47,37 @@ class IMessage(ITemplate):
|
||||||
""" A complex message that may be expanded using instance data.
|
""" A complex message that may be expanded using instance data.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
name = schema.ASCII(
|
||||||
|
title=_(u'Name'),
|
||||||
|
description=_(u'The internal name of the message.'),
|
||||||
|
required=True,)
|
||||||
|
title = schema.TextLine(
|
||||||
|
title=_(u'Title'),
|
||||||
|
description=_(u'The title or label of the message.'),
|
||||||
|
required=True,)
|
||||||
|
description = schema.Text(
|
||||||
|
title=_(u'Description'),
|
||||||
|
description=_(u'A brief description of the message.'),
|
||||||
|
required=False,)
|
||||||
|
text = schema.Text(
|
||||||
|
title=_(u'Text'),
|
||||||
|
description=_(u"The message text; may contain placeholders "
|
||||||
|
"i.e. words beginning with a '$' that will "
|
||||||
|
"be replaced when the message is rendered."),
|
||||||
|
required=False,)
|
||||||
|
format = schema.Choice(
|
||||||
|
title=_(u'Text format'),
|
||||||
|
description=_(u'The format of the message.'),
|
||||||
|
required=True,
|
||||||
|
default='text/plain',
|
||||||
|
values=('text/plain', 'text/html',))
|
||||||
|
media = schema.Choice(
|
||||||
|
title=_(u'Output media'),
|
||||||
|
description=_(u'The media type on which the message will '
|
||||||
|
'be rendered.'),
|
||||||
|
required=True,
|
||||||
|
default='mail',
|
||||||
|
values=('mail', 'browser',))
|
||||||
|
|
||||||
manager = Attribute('The manager of this message object')
|
manager = Attribute('The manager of this message object')
|
||||||
|
|
||||||
text = schema.Text()
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue