The easiest way to install the eCampaigning Tool for Plone is to use the buildout script below. Note the current version of the eCampaigning Tool only works in Plone 2.5.x (not Plone 3.x).
To use Buildout you first need to have installed:
- Python 2.4 (also required for Plone 2.5)
- Easy Install
- ZopeSkel? (including Pastor)
Follow and/or adapt these instructions for getting through steps 1-3 for your own hosting environment. Then replace the buildscript with this one or add the productdistros from below to your buildout.cfg script.
Buildout Script:
[buildout]
parts =
plone
zope2
productdistros
instance
zopepy
# Add additional egg download sources here. dist.plone.org contains archives
# of Plone packages.
find-links =
http://dist.plone.org
http://download.zope.org/ppix/
http://download.zope.org/distribution/
http://effbot.org/downloads
# Add additional eggs here
# elementtree is required by Plone
eggs =
elementtree
# Reference any eggs you are developing here, one per line
# e.g.: develop = src/my.package
develop =
[plone]
recipe = plone.recipe.distros
urls = http://launchpad.net/plone/2.5/2.5.5/+download/Plone-2.5.5.tar.gz
nested-packages = Plone-2.5.5.tar.gz
version-suffix-packages = Plone-2.5.5.tar.gz
[zope2]
recipe = plone.recipe.zope2install
url = http://www.zope.org/Products/Zope/2.9.8/Zope-2.9.8-final.tgz
# Use this section to download additional old-style products.
# List any number of URLs for product tarballs under URLs (separate
# with whitespace, or break over several lines, with subsequent lines
# indented). If any archives contain several products inside a top-level
# directory, list the archive file name (i.e. the last part of the URL,
# normally with a .tar.gz suffix or similar) under 'nested-packages'.
# If any archives extract to a product directory with a version suffix, list
# the archive name under 'version-suffix-packages'.
[productdistros]
recipe = plone.recipe.distros
urls =
http://plone.org/products/ecampaigning-tool/releases/0.2/ecampaigning-0-2-rc-bundle-tar.gz
http://plone.org/products/scriptablefields/releases/1.1.3/scriptablefields-1-1-3.tgz
http://plone.org/products/atseng/releases/0.4.4/atschemaeditorng-0.4.4.tar.gz
http://www.dataflake.org/software/maildrophost/maildrophost_1.22/MaildropHost-1.22.tgz/download
nested-packages =
ecampaigning-0-2-rc-bundle-tar.gz
version-suffix-packages =
[instance]
recipe = plone.recipe.zope2instance
zope2-location = ${zope2:location}
user = admin:admin
http-address = 80
#debug-mode = on
#verbose-security = on
# 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 = ${buildout:eggs} my.package
eggs =
${buildout:eggs}
# If you want to register ZCML slugs for any packages, list them here.
# e.g. zcml = my.package my.other.package
zcml =
products =
${buildout:directory}/products
${productdistros:location}
${plone:location}
[zopepy]
recipe = zc.recipe.egg
eggs = ${instance:eggs}
interpreter = zopepy
extra-paths = ${zope2:location}/lib/python
scripts = zopepy

