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

Last change on this file since 4272 was 4270, checked in by uli, 15 years ago

Add sphinxdoc support for building documentation automatically.

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