source: main/waeup.sirp/trunk/buildout.cfg @ 5444

Last change on this file since 5444 was 5433, checked in by Henrik Bettermann, 14 years ago

Merge changes from henrik-contactforms back into trunk.

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