source: main/waeup.uniben/branches/uli-autoinclude-less/src/waeup/uniben/ftesting.zcml @ 8880

Last change on this file since 8880 was 8879, checked in by uli, 12 years ago

Get rid of includeOverrides. Also remove explicit include of grok,
which might be the main reason for recent trouble (as grok includes
formlib, etc.).

  • Property svn:style set to native
File size: 1.6 KB
Line 
1<configure
2   xmlns="http://namespaces.zope.org/zope"
3   xmlns:kofa="http://namespaces.waeup.org/kofa"
4   i18n_domain="waeup.custom"
5   package="waeup.uniben"
6   >
7
8  <include package="waeup.uniben" />
9  <include package="waeup.uniben" file="mail.zcml"/>
10
11  <!-- Where should the datacenter reside by default? -->
12  <kofa:datacenter
13      path="../../../parts/test/datacenter" />
14
15  <!-- Typical functional testing security setup -->
16  <securityPolicy
17      component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy"
18      />
19
20  <unauthenticatedPrincipal
21      id="zope.anybody"
22      title="Unauthenticated User"
23      />
24  <unauthenticatedGroup id="zope.Anybody"
25      title="Unauthenticated Users" />
26  <authenticatedGroup id="zope.Authenticated"
27      title="Authenticated Users" />
28  <everybodyGroup id="zope.Everybody"
29      title="All Users" />
30
31  <!-- grant
32      permission="zope.View"
33      principal="zope.Anybody"
34      / -->
35  <grant
36      permission="zope.app.dublincore.view"
37      principal="zope.Anybody" />
38  <grant
39      permission="zope.View"
40      principal="zope.Authenticated"
41      />
42  <grant
43      permission="zope.app.dublincore.view"
44      principal="zope.Authenticated"
45      />
46  <grant
47      permission="waeup.Public"
48      principal="zope.Everybody"
49      />
50  <grant
51      permission="waeup.Anonymous"
52      principal="zope.Anybody"
53      />
54
55
56  <principal
57      id="zope.mgr"
58      title="Manager"
59      login="mgr"
60      password="mgrpw"
61      />
62
63  <role id="zope.Manager" title="Site Manager" />
64  <grantAll role="zope.Manager" />
65  <grant role="zope.Manager" principal="zope.mgr" />
66
67</configure>
Note: See TracBrowser for help on using the repository browser.