[Zope-Checkins] CVS: Zope/lib/python/Products/ZReST -
__init__.py:1.3
Chris McDonough
chrism at zope.com
Fri Aug 15 21:54:40 EDT 2003
Update of /cvs-repository/Zope/lib/python/Products/ZReST
In directory cvs.zope.org:/tmp/cvs-serv22692
Modified Files:
__init__.py
Log Message:
Initialize the class, not the module.
=== Zope/lib/python/Products/ZReST/__init__.py 1.2 => 1.3 ===
--- Zope/lib/python/Products/ZReST/__init__.py:1.2 Sat Feb 1 04:28:30 2003
+++ Zope/lib/python/Products/ZReST/__init__.py Fri Aug 15 20:54:35 2003
@@ -7,7 +7,8 @@
import ZReST
def initialize(context):
context.registerClass(
- ZReST, meta_type = 'ReStructuredText Document',
+ ZReST.ZReST,
+ meta_type = 'ReStructuredText Document',
constructors = (
ZReST.manage_addZReSTForm, ZReST.manage_addZReST
)
@@ -16,6 +17,9 @@
#
# $Log$
+# Revision 1.3 2003/08/16 00:54:35 chrism
+# Initialize the class, not the module.
+#
# Revision 1.2 2003/02/01 09:28:30 andreasjung
# merge from ajung-restructuredtext-integration-branch
#
More information about the Zope-Checkins
mailing list