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

Stephan Richter srichter@cosmos.phy.tufts.edu
Sat, 2 Aug 2003 13:26:43 -0400


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

Modified Files:
	configure.zcml 
Log Message:
Implemented the 'dav' namepsace in the new ZCML style and added a directive
test.

Also converted zope/app/configure.zcml to new style.


=== Zope3/src/zope/app/configure.zcml 1.28 => 1.29 ===
--- Zope3/src/zope/app/configure.zcml:1.28	Thu Jul 31 13:59:29 2003
+++ Zope3/src/zope/app/configure.zcml	Sat Aug  2 13:26:08 2003
@@ -1,13 +1,11 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/zope'
-               xmlns:global_translation="http://namespaces.zope.org/gts"
-               >
-
-<!-- Meta configuration (new directives) -->
+<configure 
+    xmlns="http://namespaces.zope.org/zope"
+    xmlns:global_translation="http://namespaces.zope.org/gts">
 
+  <!-- Meta configuration (new directives) -->
   <include file="meta.zcml" />
 
-<!-- Ordinary Application (non-view) configuration) -->
-
+  <!-- Ordinary Application (non-view) configuration) -->
   <include package="zope.app.component" />
   <include package="zope.app.security" />
   <include package="zope.app.event" />
@@ -110,28 +108,23 @@
 
   <include package="zope.app.interfaces" />
 
-<!-- Views -->
-
+  <!-- Views -->
   <include package="zope.app.browser" />
   <include package="zope.app.ftp" />
   <include package="zope.app.xmlrpc" />
   <include package="zope.app.http" />
 
-<!-- Translations -->
+  <!-- Translations -->
   <global_translation:registerTranslations directory="translation_files" />
 
-<!-- Filesystem synchronization -->
-
+  <!-- Filesystem synchronization -->
   <include package="zope.app.fssync" />
 
-<!-- WebDAV Support -->
-
+  <!-- WebDAV Support -->
   <include package="zope.app.dav" />
 
-<!-- Services -->
-
+   <!-- Services -->
   <include package="zope.app.rdb" file="service.zcml" />
-
   <include package="zope.app.catalog"/>
 
-</zopeConfigure>
+</configure>