[Zope3-checkins] CVS: Zope3/src/zope/app - configure.zcml:1.36

Jim Fulton jim at zope.com
Sun Sep 21 13:30:05 EDT 2003


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

Modified Files:
	configure.zcml 
Log Message:
Changed the include order so that backward-compatability fixups are
done before normal database initialization.


=== Zope3/src/zope/app/configure.zcml 1.35 => 1.36 ===
--- Zope3/src/zope/app/configure.zcml:1.35	Tue Sep  2 16:45:32 2003
+++ Zope3/src/zope/app/configure.zcml	Sun Sep 21 13:30:04 2003
@@ -77,16 +77,16 @@
       for="*" />
 
   <adapter
-      factory="zope.app.copypastemove.NoChildrenObjectCopier"
-      provides="zope.app.interfaces.copypastemove.INoChildrenObjectCopier"
-      permission="zope.ManageContent"
-      for="zope.app.interfaces.content.folder.IFolder" />
-
-  <adapter
       factory="zope.app.copypastemove.PrincipalClipboard"
       provides="zope.app.interfaces.copypastemove.IPrincipalClipboard"
       for="zope.app.interfaces.annotation.IAnnotations" />
 
+  <adapter 
+      for=".interfaces.location.ILocation"
+      provides=".interfaces.traversing.IPhysicallyLocatable"
+      factory=".location.LocationPhysicallyLocatable" 
+      />
+
   <include package="zope.app.container" />
   <include package="zope.app.content" />
   <include package="zope.app.services" />
@@ -100,7 +100,6 @@
   <include package="zope.app.form" />
   <include package="zope.app.cache" />
   <include package="zope.app.dublincore" />
-  <include package="zope.app.process" />
   <include package="zope.app.index" />
   <include package="zope.app.pagetemplate" />
   <include package="zope.app.interpreter" />
@@ -142,5 +141,9 @@
   <!-- Backward compatability fixups -->
   <include file="backward.zcml" />
 
+  <!-- Process-configuration support -->
+  <!-- Do this after backward compatability to get fixups before
+       trying to do bootstrapping tasks --> 
+  <include package="zope.app.process" />
 
 </configure>




More information about the Zope3-Checkins mailing list