[Zope3-checkins] CVS: Products3/demo/messageboard/step5 -
configure.zcml:1.3 interfaces.py:1.2
Stephan Richter
srichter at cosmos.phy.tufts.edu
Thu Aug 21 15:40:52 EDT 2003
Update of /cvs-repository/Products3/demo/messageboard/step5
In directory cvs.zope.org:/tmp/cvs-serv24801/step5
Modified Files:
configure.zcml interfaces.py
Log Message:
Updated Step 5
=== Products3/demo/messageboard/step5/configure.zcml 1.2 => 1.3 ===
--- Products3/demo/messageboard/step5/configure.zcml:1.2 Sun Aug 3 14:34:50 2003
+++ Products3/demo/messageboard/step5/configure.zcml Thu Aug 21 14:40:21 2003
@@ -1,7 +1,5 @@
-<configure
- xmlns="http://namespaces.zope.org/zope"
- i18n_domain="messageboard"
- >
+<configure xmlns="http://namespaces.zope.org/zope">
+
<!-- Security definitions -->
<role
=== Products3/demo/messageboard/step5/interfaces.py 1.1 => 1.2 ===
--- Products3/demo/messageboard/step5/interfaces.py:1.1 Tue Jun 10 17:49:49 2003
+++ Products3/demo/messageboard/step5/interfaces.py Thu Aug 21 14:40:21 2003
@@ -20,7 +20,7 @@
from zope.app.interfaces.container import IContainer
from zope.schema.interfaces import IText
-from zope.interface.implements import implements
+from zope.interface import classImplements
from zope.schema import Text, TextLine, Container
from fields import HTML
@@ -74,4 +74,4 @@
required=False)
# To avoid recursive imports:
-implements(HTML, IHTML)
+classImplements(HTML, IHTML)
More information about the Zope3-Checkins
mailing list