source: waeup/branches/uli-test/src/waeup/ftesting.zcml @ 4468

Last change on this file since 4468 was 3541, checked in by uli, 16 years ago

Use new securitypolicy package.

  • Property svn:style set to native
File size: 744 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.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.