[Zope3-checkins] CVS: Zope3/src/zope/app/container -
configure.zcml:1.26 directory.py:1.6
Stephan Richter
srichter at cosmos.phy.tufts.edu
Mon Mar 15 08:11:15 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/container
In directory cvs.zope.org:/tmp/cvs-serv12586/src/zope/app/container
Modified Files:
configure.zcml directory.py
Log Message:
Adjust package paths to new location of file representation interfaces.
=== Zope3/src/zope/app/container/configure.zcml 1.25 => 1.26 ===
--- Zope3/src/zope/app/container/configure.zcml:1.25 Sat Mar 13 17:02:15 2004
+++ Zope3/src/zope/app/container/configure.zcml Mon Mar 15 08:10:44 2004
@@ -15,13 +15,13 @@
<adapter
for=".interfaces.IReadContainer"
- provides="zope.app.interfaces.file.IReadDirectory"
+ provides="zope.app.filerepresentation.interfaces.IReadDirectory"
factory=".directory.noop"
/>
<adapter
for=".interfaces.IWriteContainer"
- provides="zope.app.interfaces.file.IWriteDirectory"
+ provides="zope.app.filerepresentation.interfaces.IWriteDirectory"
factory=".directory.noop"
/>
=== Zope3/src/zope/app/container/directory.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/container/directory.py:1.5 Sat Jun 7 02:37:22 2003
+++ Zope3/src/zope/app/container/directory.py Mon Mar 15 08:10:44 2004
@@ -25,7 +25,7 @@
"""
__metaclass__ = type
-import zope.app.interfaces.file
+import zope.app.filerepresentation.interfaces
from zope.proxy import removeAllProxies
from zope.interface import implements
@@ -44,7 +44,7 @@
of the same class as it's context.
"""
- implements(zope.app.interfaces.file.IDirectoryFactory)
+ implements(zope.app.filerepresentation.interfaces.IDirectoryFactory)
def __init__(self, context):
self.context = context
More information about the Zope3-Checkins
mailing list