plone.app.discussion/dev-plone4.cfg

157 lines
4.2 KiB
INI

[buildout]
extensions = mr.developer buildout.dumppickedversions buildout.eggtractor
unzip = true
parts =
instance
zopepy
omelette
ipzope
releaser
test
coverage-test
coverage-report
jscoverage
sphinxbuilder
dump-picked-versions-file = versions.plone4.cfg
overwrite-picked-versions-file = True
tractor-src-directory = src
# Change the number here to change the version of Plone being used
extends =
http://dist.plone.org/release/4.0rc1/versions.cfg
versions = versions
# Add additional egg download sources here. dist.plone.org contains archives
# of Plone packages.
find-links =
http://dist.plone.org/release/4.0rc1
http://dist.plone.org/thirdparty
# Add additional eggs here
eggs =
Sphinx
repoze.sphinx.autointerface
plone.app.discussion
plone.formwidget.captcha
plone.formwidget.recaptcha
collective.akismet
collective.autoresizetextarea
Products.PdbDebugMode
Products.PrintingMailHost
plone.reload
develop =
.
auto-checkout =
Products.PloneTestCase
plone.formwidget.captcha
plone.formwidget.recaptcha
collective.akismet
collective.autoresizetextarea
plone.app.z3cform
plone.z3cform
z3c.form
[versions]
zope.schema = 3.6.0
Sphinx = 0.6.4
Products.TinyMCE = 1.1.1
[instance]
# For more information on this step and configuration options see:
# http://pypi.python.org/pypi/plone.recipe.zope2instance
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
#debug-mode = on
#verbose-security = on
blob-storage = var/blobstorage
# If you want Zope to know about any additional eggs, list them here.
# This should include any development eggs you listed in develop-eggs above,
# e.g. eggs = Plone my.package
eggs =
Zope2
Plone
${buildout:eggs}
# If you want to register ZCML slugs for any packages, list them here.
# e.g. zcml = my.package my.other.package
zcml =
collective.akismet
collective.autoresizetextarea
plone.formwidget.captcha
plone.formwidget.recaptcha
[zopepy]
# For more information on this step and configuration options see:
# http://pypi.python.org/pypi/zc.recipe.egg
recipe = zc.recipe.egg
eggs = ${instance:eggs}
interpreter = zopepy
scripts = zopepy
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
packages = ${instance:location}/lib/python ./
[ipzope]
recipe = zc.recipe.egg
eggs =
ipython
${instance:eggs}
initialization =
import sys, os
os.environ["SOFTWARE_HOME"] = "${instance:location}/lib/python"
os.environ["INSTANCE_HOME"] = "${instance:location}"
sys.argv[1:1] = "-p zope".split()
extra-paths = ${instance:location}/lib/python
scripts = ipython=ipzope
[releaser]
recipe = zc.recipe.egg
eggs = zest.releaser
[test]
recipe = zc.recipe.testrunner
eggs = plone.app.discussion
# other eggs in this list not shown
extra-paths = ${instance:location}/lib/python
defaults = ['--exit-with-status', '--auto-color', '--auto-progress']
[coverage-test]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
defaults = ['--coverage', '../../coverage', '-v', '--auto-progress']
[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coveragereport
arguments = ('coverage', 'report')
[jscoverage]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
jscoverage-server -v --ip-address=0.0.0.0 --port=9999 --encoding=UTF-8 --document-root=plone/app/discussion/ --no-instrument=/tests
output = ${buildout:directory}/bin/jscoverage
mode = 755
[sphinxbuilder]
recipe = collective.recipe.sphinxbuilder
interpreter = ${buildout:directory}/bin/zopepy
[sources]
Products.PloneTestCase = svn http://svn.plone.org/svn/collective/Products.PloneTestCase/trunk/
plone.formwidget.captcha = svn https://svn.plone.org/svn/plone/plone.formwidget.captcha/trunk
plone.formwidget.recaptcha = svn https://svn.plone.org/svn/plone/plone.formwidget.recaptcha/trunk
collective.akismet = svn https://svn.plone.org/svn/collective/collective.akismet/trunk
collective.autoresizetextarea = svn https://svn.plone.org/svn/collective/collective.autoresizetextarea/trunk
plone.app.z3cform = svn http://svn.plone.org/svn/plone/plone.app.z3cform/trunk
plone.z3cform = svn http://svn.zope.org/repos/main/plone.z3cform/trunk/
z3c.form = svn http://svn.zope.org/repos/main/z3c.form/trunk