[Zope-CVS] SVN: messageboard/trunk/ Delete accidentally added files
Stephan Richter
srichter at cosmos.phy.tufts.edu
Fri May 14 12:01:19 EDT 2004
Log message for revision 24661:
Delete accidentally added files
-=-
Deleted: messageboard/trunk/__init__.py
===================================================================
--- messageboard/trunk/__init__.py 2004-05-14 16:00:47 UTC (rev 24660)
+++ messageboard/trunk/__init__.py 2004-05-14 16:01:18 UTC (rev 24661)
@@ -1 +0,0 @@
-# Make it a Python package
Deleted: messageboard/trunk/configure.zcml
===================================================================
--- messageboard/trunk/configure.zcml 2004-05-14 16:00:47 UTC (rev 24660)
+++ messageboard/trunk/configure.zcml 2004-05-14 16:01:18 UTC (rev 24661)
@@ -1,54 +0,0 @@
-<configure
- xmlns="http://namespaces.zope.org/zope">
-
- <interface
- interface=".interfaces.IMessageBoard"
- type="zope.app.content.interfaces.IContentType"
- />
-
- <content class=".messageboard.MessageBoard">
- <implements
- interface="zope.app.annotation.interfaces.IAttributeAnnotatable"
- />
- <implements
- interface="zope.app.container.interfaces.IContentContainer"
- />
- <factory
- id="book.messageboard.MessageBoard"
- description="Message Board"
- />
- <require
- permission="zope.ManageContent"
- interface=".interfaces.IMessageBoard"
- />
- <require
- permission="zope.ManageContent"
- set_schema=".interfaces.IMessageBoard"
- />
- </content>
-
- <interface
- interface=".interfaces.IMessage"
- type="zope.app.content.interfaces.IContentType"
- />
-
- <content class=".message.Message">
- <implements
- interface="zope.app.annotation.interfaces.IAttributeAnnotatable"
- />
- <implements
- interface="zope.app.container.interfaces.IContentContainer"
- />
- <require
- permission="zope.ManageContent"
- interface=".interfaces.IMessage"
- />
- <require
- permission="zope.ManageContent"
- set_schema=".interfaces.IMessage"
- />
- </content>
-
- <include package=".browser" />
-
-</configure>
Deleted: messageboard/trunk/interfaces.py
===================================================================
--- messageboard/trunk/interfaces.py 2004-05-14 16:00:47 UTC (rev 24660)
+++ messageboard/trunk/interfaces.py 2004-05-14 16:01:18 UTC (rev 24661)
@@ -1,62 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2003 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Message Board Interfaces
-
-Interfaces for the Zope 3 based Message Board Package
-
-$Id$
-"""
-from zope.schema import Text, TextLine, Field
-
-from zope.app.container.constraints import ContainerTypesConstraint
-from zope.app.container.constraints import ItemTypePrecondition
-from zope.app.container.interfaces import IContainer
-
-
-class IMessage(IContainer):
- """A message object. It can contain its own responses."""
-
- title = TextLine(
- title=u"Title/Subject",
- description=u"Title and/or subject of the message.",
- default=u"",
- required=True)
-
- body = Text(
- title=u"Message Body",
- description=u"This is the actual message. Type whatever you wish.",
- default=u"",
- required=False)
-
-
-class IMessageBoard(IContainer):
- """The message board is the base object for our package. It can only
- contain IMessage objects."""
-
- def __setitem__(name, object):
- """Add a IMessage object."""
-
- __setitem__.precondition = ItemTypePrecondition(IMessage)
-
- description = Text(
- title=u"Description",
- description=u"A detailed description of the content of the board.",
- default=u"",
- required=False)
-
-
-IMessage['__setitem__'].setTaggedValue('precondition',
- ItemTypePrecondition(IMessage))
-IMessage.setTaggedValue('__parent__', Field(
- constraint=ContainerTypesConstraint(IMessageBoard, IMessage)))
Deleted: messageboard/trunk/message.py
===================================================================
--- messageboard/trunk/message.py 2004-05-14 16:00:47 UTC (rev 24660)
+++ messageboard/trunk/message.py 2004-05-14 16:01:18 UTC (rev 24661)
@@ -1,54 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2003 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Message Implementation
-
-An implementation of the Message using BTreeContainers as base.
-
-$Id: message.py,v 1.1 2003/06/07 11:24:48 srichter Exp $
-"""
-from zope.interface import implements
-from zope.app.container.btree import BTreeContainer
-
-from book.messageboard.interfaces import IMessage
-
-class Message(BTreeContainer):
- """A simple implementation of a message.
-
- Make sure that the ``Message`` implements the ``IMessage`` interface:
-
- >>> from zope.interface.verify import verifyClass
- >>> verifyClass(IMessage, Message)
- True
-
- Here is an example of changing the title and description of the message:
-
- >>> message = Message()
- >>> message.title
- u''
- >>> message.body
- u''
- >>> message.title = u'Message Title'
- >>> message.body = u'Message Body'
- >>> message.title
- u'Message Title'
- >>> message.body
- u'Message Body'
- """
- implements(IMessage)
-
- # See book.messageboard.interfaces.IMessage
- title = u''
-
- # See book.messageboard.interfaces.IMessage
- body = u''
Deleted: messageboard/trunk/messageboard.py
===================================================================
--- messageboard/trunk/messageboard.py 2004-05-14 16:00:47 UTC (rev 24660)
+++ messageboard/trunk/messageboard.py 2004-05-14 16:01:18 UTC (rev 24661)
@@ -1,47 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2003 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Message Board Implementation
-
-An implementation of the Message Board using BTreeContainers as base.
-
-$Id$
-"""
-from zope.interface import implements
-from zope.app.container.btree import BTreeContainer
-
-from book.messageboard.interfaces import IMessageBoard
-
-class MessageBoard(BTreeContainer):
- """A very simple implementation of a message board using B-Tree Containers
-
- Make sure that the ``MessageBoard`` implements the ``IMessageBoard``
- interface:
-
- >>> from zope.interface.verify import verifyClass
- >>> verifyClass(IMessageBoard, MessageBoard)
- True
-
- Here is an example of changing the description of the board:
-
- >>> board = MessageBoard()
- >>> board.description
- u''
- >>> board.description = u'Message Board Description'
- >>> board.description
- u'Message Board Description'
- """
- implements(IMessageBoard)
-
- # See book.messageboard.interfaces.IMessageBoard
- description = u''
More information about the Zope-CVS
mailing list