source: waeup/branches/ulif-rewrite/buildout.cfg @ 4113

Last change on this file since 4113 was 4103, checked in by uli, 15 years ago

Do not fiddle around with Grok KGS.

File size: 2.2 KB
Line 
1[buildout]
2develop = .
3parts = app data zopectl i18n test
4find-links = http://download.zope.org/distribution/
5newest = false
6extends= http://grok.zope.org/releaseinfo/grok-1.0a3.cfg
7versions = versions
8
9[versions]
10
11[app]
12recipe = zc.zope3recipes>=0.5.3:application
13eggs = waeup
14site.zcml = <include package="waeup" />
15            <include package="zope.app.twisted" />
16
17            <configure i18n_domain="waeup">
18              <unauthenticatedPrincipal id="zope.anybody"
19                                        title="Unauthenticated User" />
20              <unauthenticatedGroup id="zope.Anybody"
21                                    title="Unauthenticated Users" />
22              <authenticatedGroup id="zope.Authenticated"
23                                title="Authenticated Users" />
24              <everybodyGroup id="zope.Everybody"
25                              title="All Users" />
26              <principal id="zope.manager"
27                         title="Manager"
28                         login="grok"
29                         password_manager="Plain Text"
30                         password="grok"
31                         />
32
33              <!-- Replace the following directive if you don't want
34                   public access -->
35              <grant permission="zope.View"
36                     principal="zope.Anybody" />
37              <grant permission="zope.app.dublincore.view"
38                     principal="zope.Anybody" />
39
40              <role id="zope.Manager" title="Site Manager" />
41              <role id="zope.Member" title="Site Member" />
42              <grantAll role="zope.Manager" />
43              <grant role="zope.Manager"
44                     principal="zope.manager" />
45           </configure>
46
47[data]
48recipe = zc.recipe.filestorage
49
50# this section named so that the start/stop script is called bin/zopectl
51[zopectl]
52recipe = zc.zope3recipes:instance
53application = app
54zope.conf = ${data:zconfig}
55
56[test]
57recipe = zc.recipe.testrunner
58eggs = waeup
59defaults = ['--tests-pattern', '^f?tests$', '-v']
60
61# this section named so that the i18n scripts are called bin/i18n...
62[i18n]
63recipe = lovely.recipe:i18n
64package = waeup
65domain = waeup
66location = src/waeup
67output = locales
Note: See TracBrowser for help on using the repository browser.