[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - content.py:1.2

Philipp von Weitershausen philikon at philikon.de
Tue Feb 24 11:50:19 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv26878/src/zope/app/interfaces

Added Files:
	content.py 
Log Message:


Since zope.app.interfaces.content does not contain modules anymore,
there is no reason for it to be a package. It is a simple Python
module now.




=== Zope3/src/zope/app/interfaces/content.py 1.1 => 1.2 ===
--- /dev/null	Tue Feb 24 11:50:19 2004
+++ Zope3/src/zope/app/interfaces/content.py	Tue Feb 24 11:50:18 2004
@@ -0,0 +1,28 @@
+##############################################################################
+#
+# Copyright (c) 2002 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.
+#
+##############################################################################
+"""Content-related interfaces.
+
+$Id$
+"""
+from zope.interface.interfaces import IInterface
+
+class IContentType(IInterface):
+    """This interface represents a content type.
+
+    If an **interface** implements this interface type, then all object
+    implementing the interface are considered content objects.
+    """
+    
+
+




More information about the Zope3-Checkins mailing list