[Zope3-checkins] CVS: Zope3/src/zope/app - configure.zcml:1.57
copypastemove.py:NONE
Philipp von Weitershausen
philikon at philikon.de
Wed Mar 3 05:52:32 EST 2004
Update of /cvs-repository/Zope3/src/zope/app
In directory cvs.zope.org:/tmp/cvs-serv11424
Modified Files:
configure.zcml
Removed Files:
copypastemove.py
Log Message:
Copied, pasted and moved copypastemove interfaces to the new
zope.app.copypastemove package.
=== Zope3/src/zope/app/configure.zcml 1.56 => 1.57 ===
--- Zope3/src/zope/app/configure.zcml:1.56 Tue Mar 2 13:12:38 2004
+++ Zope3/src/zope/app/configure.zcml Wed Mar 3 05:52:00 2004
@@ -31,20 +31,23 @@
<adapter
factory="zope.app.copypastemove.ObjectMover"
- provides="zope.app.interfaces.copypastemove.IObjectMover"
+ provides="zope.app.copypastemove.interfaces.IObjectMover"
permission="zope.ManageContent"
- for="*" />
+ for="*"
+ />
<adapter
factory="zope.app.copypastemove.ObjectCopier"
- provides="zope.app.interfaces.copypastemove.IObjectCopier"
+ provides="zope.app.copypastemove.interfaces.IObjectCopier"
permission="zope.ManageContent"
- for="*" />
+ for="*"
+ />
<adapter
factory="zope.app.copypastemove.PrincipalClipboard"
- provides="zope.app.interfaces.copypastemove.IPrincipalClipboard"
- for="zope.app.interfaces.annotation.IAnnotations" />
+ provides="zope.app.copypastemove.interfaces.IPrincipalClipboard"
+ for="zope.app.interfaces.annotation.IAnnotations"
+ />
<include package="zope.app.location" />
<include package="zope.app.container" />
=== Removed File Zope3/src/zope/app/copypastemove.py ===
More information about the Zope3-Checkins
mailing list