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