[Zope3-checkins] CVS: Zope3 - ftesting.zcml:1.3
Stephan Richter
srichter@cosmos.phy.tufts.edu
Sat, 2 Aug 2003 07:20:40 -0400
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv12713
Modified Files:
ftesting.zcml
Log Message:
converted to new style.
=== Zope3/ftesting.zcml 1.2 => 1.3 ===
--- Zope3/ftesting.zcml:1.2 Mon Jul 28 18:19:57 2003
+++ Zope3/ftesting.zcml Sat Aug 2 07:20:35 2003
@@ -1,35 +1,37 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/zope'>
+<configure xmlns="http://namespaces.zope.org/zope">
-<!-- This file is the equivalent of site.zcml used for functional testing -->
+ <!-- This file is the equivalent of site.zcml used for functional testing -->
-<include package="zope.app" />
+ <include package="zope.app" />
-<role id="Manager" title="Site Manager" />
-<role id="Member" title="Site Member" />
+ <role id="Manager" title="Site Manager" />
+ <role id="Member" title="Site Member" />
-<!-- Remove the following directive if you don't want public access -->
-<grant permission="zope.View" role="Anonymous" />
+ <!-- Remove the following directive if you don't want public access -->
+ <grant permission="zope.View" role="Anonymous" />
-<grant permission="zope.View" role="Manager" />
-<grant permission="zope.ManageContent" role="Manager" />
-<grant permission="zope.Security" role="Manager" />
-<grant permission="zope.ManageCode" role="Manager" />
-<grant permission="zope.ManageServices" role="Manager" />
-<grant permission="zope.ManageApplication" role="Manager" />
-<grant permission="zope.ManageBindings" role="Manager" />
+ <grant permission="zope.View" role="Manager" />
+ <grant permission="zope.ManageContent" role="Manager" />
+ <grant permission="zope.Security" role="Manager" />
+ <grant permission="zope.ManageCode" role="Manager" />
+ <grant permission="zope.ManageServices" role="Manager" />
+ <grant permission="zope.ManageApplication" role="Manager" />
+ <grant permission="zope.ManageBindings" role="Manager" />
-<include file="products.zcml" />
+ <include file="products.zcml" />
-<!-- Principals -->
+ <!-- Principals -->
-<unauthenticatedPrincipal id="anybody"
- title="Unauthenticated User" />
+ <unauthenticatedPrincipal
+ id="anybody"
+ title="Unauthenticated User" />
-<principal id='mgr'
- title="Manager"
- login='mgr'
- password='mgrpw' />
+ <principal
+ id="mgr"
+ title="Manager"
+ login="mgr"
+ password="mgrpw" />
-<grant role="Manager" principal="mgr" />
+ <grant role="Manager" principal="mgr" />
-</zopeConfigure>
+</configure>