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

Suresh Babu Eddala sbabu at zeomega.com
Thu Dec 18 11:34:17 EST 2003


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

Modified Files:
	__init__.py 
Log Message:
Interface type IContentType added


=== Zope3/src/zope/app/interfaces/content/__init__.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/interfaces/content/__init__.py:1.2	Wed Dec 25 09:12:59 2002
+++ Zope3/src/zope/app/interfaces/content/__init__.py	Thu Dec 18 11:34:17 2003
@@ -1,2 +1,24 @@
+##############################################################################
 #
-# This file is necessary to make this directory a package.
+# 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.
+#
+##############################################################################
+"""
+$Id$
+"""
+
+from zope.interface.interfaces import IInterface
+
+class IContentType(IInterface):
+    """This interface represents a content type"""
+    
+
+




More information about the Zope3-Checkins mailing list