source: waeup/branches/ulif-layout/buildout.cfg @ 4627

Last change on this file since 4627 was 4586, checked in by uli, 15 years ago

Set adequate zope.View permissions.

File size: 3.2 KB
Line 
1[buildout]
2develop = .
3parts = app data zopectl i18n test waeupdocs coverage-detect coverage-report
4find-links = http://download.zope.org/distribution/
5newest = false
6extends= http://grok.zope.org/releaseinfo/grok-1.0.cfg
7versions = versions
8
9[versions]
10zc.sourcefactory = 0.3.5
11zope.testing = 3.7.0
12z3c.testsetup = 0.4.0
13hurry.workflow = 0.10
14hurry.query = 0.9.2
15zope.xmlpickle = 3.4.0
16hurry.yui = 2.7.0
17hurry.zoperesource = 0.4
18megrok.layout = 0.9
19
20
21[app]
22recipe = zc.zope3recipes>=0.5.3:application
23eggs = waeup
24site.zcml = <include package="waeup" />
25            <include package="zope.app.twisted" />
26
27            <configure i18n_domain="waeup">
28              <unauthenticatedPrincipal id="zope.anybody"
29                                        title="Unauthenticated User" />
30              <unauthenticatedGroup id="zope.Anybody"
31                                    title="Unauthenticated Users" />
32              <authenticatedGroup id="zope.Authenticated"
33                                title="Authenticated Users" />
34              <everybodyGroup id="zope.Everybody"
35                              title="All Users" />
36              <principal id="zope.manager"
37                         title="Manager"
38                         login="grok"
39                         password_manager="Plain Text"
40                         password="grok"
41                         />
42
43              <grant permission="zope.View"
44                     principal="zope.Authenticated" />
45              <grant permission="zope.app.dublincore.view"
46                     principal="zope.Authenticated" />
47
48              <!-- Replace the following directive if you don't want
49                   public access -->
50              <grant permission="zope.View"
51                     principal="zope.Anybody" />
52              <grant permission="zope.app.dublincore.view"
53                     principal="zope.Anybody" />
54
55              <role id="zope.Manager" title="Site Manager" />
56              <role id="zope.Member" title="Site Member" />
57              <grantAll role="zope.Manager" />
58              <grant role="zope.Manager"
59                     principal="zope.manager" />
60           </configure>
61
62[data]
63recipe = zc.recipe.filestorage
64
65# this section named so that the start/stop script is called bin/zopectl
66[zopectl]
67recipe = zc.zope3recipes:instance
68application = app
69zope.conf = ${data:zconfig}
70
71[test]
72recipe = zc.recipe.testrunner
73eggs = waeup
74defaults = ['--tests-pattern', '^f?tests$', '-v']
75
76# Collect test coverage data.
77[coverage-detect]
78recipe = zc.recipe.testrunner
79eggs = waeup
80defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage']
81
82# Create a coverage report.
83# Make sure to run bin/coverage-detect to collect the data for the report
84# first!
85[coverage-report]
86recipe = zc.recipe.egg
87eggs = z3c.coverage
88scripts = coverage
89arguments = ('${buildout:parts-directory}/coverage-detect/coverage', '${buildout:parts-directory}/coverage-detect/coverage/report')
90
91
92
93# this section named so that the i18n scripts are called bin/i18n...
94[i18n]
95recipe = lovely.recipe:i18n
96package = waeup
97domain = waeup
98location = src/waeup
99output = locales
100
101[waeupdocs]
102recipe = z3c.recipe.sphinxdoc
103eggs = waeup [docs]
104default.css =
105layout.html =
106
Note: See TracBrowser for help on using the repository browser.