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