[Zope-Checkins] CVS: Zope3/lib/python/Zope/Configuration/tests/Contact - contact.zcml:1.4 test_include.zcml:1.2

R. David Murray bitz@bitdance.com
Fri, 8 Nov 2002 13:57:57 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/Configuration/tests/Contact
In directory cvs.zope.org:/tmp/cvs-serv2189/Contact

Modified Files:
	contact.zcml test_include.zcml 
Log Message:
Wrap bare directive with a directives directive in prep for eliminating
the former.


=== Zope3/lib/python/Zope/Configuration/tests/Contact/contact.zcml 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/Configuration/tests/Contact/contact.zcml:1.3	Tue Jun 18 09:07:30 2002
+++ Zope3/lib/python/Zope/Configuration/tests/Contact/contact.zcml	Fri Nov  8 13:57:56 2002
@@ -1,7 +1,10 @@
 <zopeConfigure xmlns='http://namespaces.zope.org/zope'>
 
-<directive name="test" namespace="test"
-           handler=".TestHandler." />
+<directives namespace="test">
+  <directive
+      name="test"
+      handler=".TestHandler." />
+</directives>
            
 <!-- test if the included zcml file keeps the package of this file -->
 <include file="test_include.zcml" />


=== Zope3/lib/python/Zope/Configuration/tests/Contact/test_include.zcml 1.1 => 1.2 ===
--- Zope3/lib/python/Zope/Configuration/tests/Contact/test_include.zcml:1.1	Tue Jun 18 09:07:30 2002
+++ Zope3/lib/python/Zope/Configuration/tests/Contact/test_include.zcml	Fri Nov  8 13:57:56 2002
@@ -1,6 +1,9 @@
 <zopeConfigure xmlns='http://namespaces.zope.org/zope'>
 
-<directive name="test_include" namespace="test"
-           handler=".TestIncludeHandler." />
+<directives namespace="test">
+  <directive
+      name="test_include"
+      handler=".TestIncludeHandler." />
+</directives>
 
 </zopeConfigure>