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

Last change on this file since 4252 was 4123, checked in by uli, 15 years ago

Require zc.sourcefactory.

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