[3516] | 1 | [buildout] |
---|
| 2 | develop = . |
---|
| 3 | parts = app data zopectl i18n test |
---|
| 4 | find-links = http://download.zope.org/distribution/ |
---|
| 5 | newest = false |
---|
[4076] | 6 | extends= http://grok.zope.org/releaseinfo/grok-1.0a3.cfg |
---|
[3516] | 7 | versions = versions |
---|
| 8 | |
---|
[3834] | 9 | [versions] |
---|
[4123] | 10 | zc.sourcefactory = 0.3.5 |
---|
[3834] | 11 | |
---|
[3516] | 12 | [app] |
---|
| 13 | recipe = zc.zope3recipes>=0.5.3:application |
---|
| 14 | eggs = waeup |
---|
| 15 | site.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] |
---|
| 49 | recipe = zc.recipe.filestorage |
---|
| 50 | |
---|
| 51 | # this section named so that the start/stop script is called bin/zopectl |
---|
| 52 | [zopectl] |
---|
| 53 | recipe = zc.zope3recipes:instance |
---|
| 54 | application = app |
---|
| 55 | zope.conf = ${data:zconfig} |
---|
| 56 | |
---|
| 57 | [test] |
---|
| 58 | recipe = zc.recipe.testrunner |
---|
| 59 | eggs = waeup |
---|
| 60 | defaults = ['--tests-pattern', '^f?tests$', '-v'] |
---|
| 61 | |
---|
| 62 | # this section named so that the i18n scripts are called bin/i18n... |
---|
| 63 | [i18n] |
---|
| 64 | recipe = lovely.recipe:i18n |
---|
| 65 | package = waeup |
---|
| 66 | domain = waeup |
---|
| 67 | location = src/waeup |
---|
| 68 | output = locales |
---|