source: waeup/branches/ulif-rewrite/src/waeup/ftesting.zcml @ 4056

Last change on this file since 4056 was 3523, checked in by uli, 16 years ago

Fix package name.

  • Property svn:style set to native
File size: 748 bytes
Line 
1<configure
2   xmlns="http://namespaces.zope.org/zope"
3   i18n_domain="waeup"
4   package="waeup"
5   >
6
7  <include package="grok" />
8  <include package="waeup" />
9
10  <!-- Typical functional testing security setup -->
11  <securityPolicy
12      component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy"
13      />
14
15  <unauthenticatedPrincipal
16      id="zope.anybody"
17      title="Unauthenticated User"
18      />
19  <grant
20      permission="zope.View"
21      principal="zope.anybody"
22      />
23
24  <principal
25      id="zope.mgr"
26      title="Manager"
27      login="mgr"
28      password="mgrpw"
29      />
30
31  <role id="zope.Manager" title="Site Manager" />
32  <grantAll role="zope.Manager" />
33  <grant role="zope.Manager" principal="zope.mgr" />
34
35</configure>
Note: See TracBrowser for help on using the repository browser.