[Zope3-checkins] CVS: Zope3/src/zope/app/services - auth.zcml:1.2 interface.zcml:1.2 module.zcml:1.4 pagefolder.zcml:1.2 utility.txt:1.3 utility.zcml:1.5

Martijn Faassen m.faassen at vet.uu.nl
Fri Aug 22 17:02:51 EDT 2003


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

Modified Files:
	auth.zcml interface.zcml module.zcml pagefolder.zcml 
	utility.txt utility.zcml 
Log Message:
zopeConfigure renamed to configure everywhere in ZCML, as 
zopeConfigure is deprecated and hampers ZCML schema efforts.


=== Zope3/src/zope/app/services/auth.zcml 1.1 => 1.2 ===
--- Zope3/src/zope/app/services/auth.zcml:1.1	Thu Jun 26 10:51:34 2003
+++ Zope3/src/zope/app/services/auth.zcml	Fri Aug 22 16:02:20 2003
@@ -1,4 +1,4 @@
-<zopeConfigure
+<configure
     xmlns='http://namespaces.zope.org/zope'
     xmlns:fssync='http://namespaces.zope.org/fssync'
     >
@@ -36,4 +36,4 @@
           interface="zope.app.interfaces.annotation.IAttributeAnnotatable" />
     </content>
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/services/interface.zcml 1.1 => 1.2 ===
--- Zope3/src/zope/app/services/interface.zcml:1.1	Sun Jun 22 16:23:26 2003
+++ Zope3/src/zope/app/services/interface.zcml	Fri Aug 22 16:02:20 2003
@@ -1,4 +1,4 @@
-<zopeConfigure xmlns="http://namespaces.zope.org/zope">
+<configure xmlns="http://namespaces.zope.org/zope">
 
 <content class=".interface.LocalInterfaceService">
   <factory
@@ -11,4 +11,4 @@
       />
 </content>
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/services/module.zcml 1.3 => 1.4 ===
--- Zope3/src/zope/app/services/module.zcml:1.3	Thu Jul  3 18:46:15 2003
+++ Zope3/src/zope/app/services/module.zcml	Fri Aug 22 16:02:20 2003
@@ -1,4 +1,4 @@
-<zopeConfigure
+<configure
     xmlns='http://namespaces.zope.org/zope'
     xmlns:event='http://namespaces.zope.org/event'
     xmlns:fssync='http://namespaces.zope.org/fssync'
@@ -31,4 +31,4 @@
   event_types="zope.app.interfaces.event.IProcessStartingEvent"
   />
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/services/pagefolder.zcml 1.1 => 1.2 ===
--- Zope3/src/zope/app/services/pagefolder.zcml:1.1	Wed Jul  2 18:10:50 2003
+++ Zope3/src/zope/app/services/pagefolder.zcml	Fri Aug 22 16:02:20 2003
@@ -1,4 +1,4 @@
-<zopeConfigure
+<configure
     xmlns='http://namespaces.zope.org/zope'
     xmlns:event='http://namespaces.zope.org/event'
     xmlns:fssync='http://namespaces.zope.org/fssync'
@@ -51,4 +51,4 @@
     factory=".pagefolder.PageFolderAdapter"
     />
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/services/utility.txt 1.2 => 1.3 ===
--- Zope3/src/zope/app/services/utility.txt:1.2	Sun Jun 22 21:02:18 2003
+++ Zope3/src/zope/app/services/utility.txt	Fri Aug 22 16:02:20 2003
@@ -71,7 +71,7 @@
 a really large zcml file, I've started giving each service its own
 zcml file.  So I also created an ``utility.zcml`` file::
 
-  <zopeConfigure xmlns="http://namespaces.zope.org/zope">
+  <configure xmlns="http://namespaces.zope.org/zope">
 
   <content class=".utility.LocalUtilityService">
     <factory
@@ -80,7 +80,7 @@
         />
   </content>
 
-  </zopeConfigure>
+  </configure>
 
 and I added an include to the package configuration file::
 
@@ -95,7 +95,7 @@
 package, I put a configuration that defines the needed browser menu
 item::
 
-   <zopeConfigure xmlns="http://namespaces.zope.org/browser">
+   <configure xmlns="http://namespaces.zope.org/browser">
 
    <menuItem
          for="zope.app.interfaces.container.IAdding"
@@ -105,7 +105,7 @@
          permission="zope.ManageServices"
          />
 
-   </zopeConfigure>
+   </configure>
 
 and I added an include to the configuration file in
 zope.app.browser.services::


=== Zope3/src/zope/app/services/utility.zcml 1.4 => 1.5 ===
--- Zope3/src/zope/app/services/utility.zcml:1.4	Sat Jun 21 17:22:12 2003
+++ Zope3/src/zope/app/services/utility.zcml	Fri Aug 22 16:02:20 2003
@@ -1,4 +1,4 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/zope'>
+<configure xmlns='http://namespaces.zope.org/zope'>
 
 <content class=".utility.LocalUtilityService">
   <factory
@@ -21,4 +21,4 @@
     />
  </content>
 
-</zopeConfigure>
+</configure>




More information about the Zope3-Checkins mailing list