Skip to content

Instantly share code, notes, and snippets.

@fulv
Created May 21, 2014 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fulv/003dfab04dcbfcc2caf8 to your computer and use it in GitHub Desktop.
Save fulv/003dfab04dcbfcc2caf8 to your computer and use it in GitHub Desktop.
buildout for mockup issue #374
############################################
#
# Buildout Configuration File for Plone
# -------------------------------------
#
# ALWAYS back up all Plone/Zope data and components
# before changing configuration.
#
# Running "bin/buildout" will update your installation,
# installing missing components as necessary.
#
# This will update the add-on products you've added in the eggs= lines.
# This will not, however, upgrade Plone itself (or anything else you've
# pinned with a version specification). To upgrade Plone itself, see the
# comments in "Plone Component Versions".
#
# Tutorial instructions for using zc.buildout for
# configuration management are available at:
# http://plone.org/documentation/tutorial/buildout
# Full details at http://pypi.python.org/pypi/zc.buildout
#
############################################
[buildout]
############################################
# Plone Component Versions
# ------------------------
# This version of the Unified Installer has the components of Plone 4
# preloaded so that it can install without an Internet connection.
# If you want to update, uncomment the "http://..." line below,
# edit it to point to the current version URL, comment out the
# "versions.cfg" line and run "bin/buildout" while attached to the
# Internet. Generally, you only want to do that as part of a planned migration.
# Note that if you are updating components, you should also check the versions
# section at the end of this file, since recipes or components other than
# those of Zope and Plone may need updating at the same time.
#
extends =
base.cfg
versions.cfg
# http://dist.plone.org/release/4.3.3-pending/versions.cfg
# If you change your Plone version, you'll also need to update
# the repository link below.
find-links +=
http://dist.plone.org/release/4.3.3-pending
# If you try to start Zope as root, it will change user id to run as
# the effective user specified here. This user id must own the var directory
# of your buildout.
effective-user = fulvio
# This user will own the rest of the installation, and should be used to
# run buildout.
buildout-user = fulvio
# A flag to tell the Unified Installer whether or not to document sudo use.
need-sudo = no
############################################
# Eggs
# ----
# Add an indented line to the eggs section for any Python
# eggs or packages you wish to include in your Plone instance.
#
# Note that versions may be specified here or in the [versions]
# section below. You should always specify versions that you know
# are compatible with the Plone release and at an acceptable
# development level.
#
# If you update to a later version of Plone, remove the hotfix.
#
eggs =
Plone
Pillow
plone.app.contenttypes
############################################
# ZCML Slugs
# ----------
# Some eggs need ZCML slugs to tell Zope to
# use them. This is increasingly rare.
zcml =
# plone.reload
############################################
# Development Eggs
# ----------------
# You can use paster to create "development eggs" to
# develop new products/themes. Put these in the src/
# directory.
# You will also need to add the egg names in the
# eggs section above, and may also need to add them
# to the zcml section.
#
# Provide the *paths* to the eggs you are developing here:
develop =
# src/my.package
############################################
# var Directory
# -------------
# Sets the target directory for the "var" components of the install such as
# database and log files.
#
var-dir=${buildout:directory}/var
############################################
# Backup Directory
# ----------------
# Sets the target directory for the bin/backup and bin/snapshotbackup
# commands. Default is inside this project's var directory, but ideally
# this should be on a separate volume or backup server.
#
backups-dir=${buildout:var-dir}
############################################
# Initial User
# ------------
# This is the user id and password that will be used to create the initial
# user id that will allow you to log in and create a Plone site. This only
# sets the initial password; it will not allow you to change an already
# existing password. If you change the admin password via the web interface,
# the one below will no longer be valid.
# If you find yourself locked out of your Zope/Python installation, you may
# add an emergency user via "bin/plonectl adduser".
user=admin:admin
############################################
# Debug Options
# -------------
# Start Zope/Plone instances in "fg" mode to turn on debug mode;
# this will dramatically slow Plone.
#
# Add-on developers should turn deprecation warnings on
deprecation-warnings = off
# change verbose-security to "on" for useful security errors while developing
verbose-security = off
############################################
# Parts Specification
#--------------------
# Specifies the components that should be included in the buildout.
# Most are defined in the base.cfg extension; you may add your
# own if you need them at the end of this file.
parts =
instance
repozo
backup
zopepy
unifiedinstaller
############################################
# Major Parts
# ----------------------
# These common parts make use of sane base settings from
# base.cfg. To customize a part, just add whatever options
# you need. Read base.cfg for common settings.
[instance]
<= instance_base
recipe = plone.recipe.zope2instance
http-address = 8080
############################################
# Versions Specification
# ----------------------
# Version information supplied here will "pin" Python packages to a particular
# version number, even when you use the "newest" flag running buildout.
# Specifying versions for all packages is a good idea and can prevent
# accidental changes when you add new packages to your buildout.
# Note that versions specified here will override those specified earlier
# in the configuration, including those from the Plone and Zope version
# config files.
#
[versions]
setuptools = 0.7.2
zc.buildout = 2.2.1
ZopeSkel = 2.21.2
Cheetah = 2.2.1
Products.DocFinderTab = 1.0.5
buildout.sanitycheck = 1.0b1
collective.recipe.backup = 2.17
plone.recipe.unifiedinstaller = 4.3.1
zopeskel.dexterity = 1.5.4.1
zopeskel.diazotheme = 1.1
# versions from https://github.com/plone/plone.app.event/blob/1.2.x/versions.cfg
icalendar = 3.6.2
plone.app.contenttypes = 1.2a2
plone.app.event = 1.2.5
plone.app.jquery = 1.8.3
plone.app.portlets = 2.5.1
plone.app.widgets = 1.5.0
plone.event = 1.1
plone.formwidget.recurrence = 1.2.3
Products.DateRecurringIndex = 2.1
#!/Users/fulvio/python/plone/Plone-4.3.3/Python-2.7/bin/python
import sys
sys.path[0:0] = [
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Plone-4.3.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Pillow-2.3.0-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.contenttypes-1.2a2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.recipe.zope2instance-4.2.14-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/ZODB3-3.10.5-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Zope2-2.13.22-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zc.recipe.egg-1.3.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/mailinglogger-3.7.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/setuptools-0.7.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zc.buildout-2.2.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.versioningbehavior-1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.namedfile-2.0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.relationfield-1.2.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.dexterity-2.2.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.dexterity-2.0.11-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.event-1.2.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.contentmenu-2.0.10-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFPlone-4.3.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/wicked-1.1.10-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.theming-1.1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.openid-2.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.iterate-2.1.12-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.caching-1.1.8-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFPlacefulWorkflow-1.5.10-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.interface-3.6.7-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.event-3.5.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zdaemon-2.0.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/ZConfig-2.9.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zc.lockfile-1.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/transaction-1.1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.StandardCacheManagers-2.13.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.PythonScripts-2.13.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.MIMETools-2.13.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.MailHost-2.13.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ExternalMethod-2.13.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.BTreeFolder2-2.13.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.viewlet-3.7.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.traversing-3.13.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.testing-3.9.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.testbrowser-3.11.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.tales-3.5.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.tal-3.5.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.structuredtext-3.5.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.size-3.4.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.site-3.9.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.sequencesort-3.4.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.sendmail-3.7.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.security-3.7.4-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.schema-4.2.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.publisher-3.12.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.ptresource-3.9.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.proxy-3.6.1-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.processlifetime-1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.pagetemplate-3.6.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.location-3.9.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.lifecycleevent-3.6.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.i18nmessageid-3.5.3-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.i18n-3.7.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.exceptions-3.6.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.deferredimport-3.5.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.contenttype-3.5.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.contentprovider-3.7.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.container-3.11.2-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.configuration-3.7.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.component-3.9.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.browserresource-3.10.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.browserpage-3.12.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.browsermenu-3.9.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.browser-1.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zLOG-2.11.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zExceptions-2.13.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/tempstorage-2.12.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/pytz-2013b-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/initgroups-2.13.0-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/docutils-0.9.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/ZopeUndo-2.12.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/RestrictedPython-3.6.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Record-2.13.0-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ZCTextIndex-2.13.5-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ZCatalog-2.13.27-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.OFSP-2.13.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Persistence-2.13.2-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/MultiMapping-2.13.0-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Missing-2.13.1-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/ExtensionClass-2.13.2-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/DocumentTemplate-2.13.2-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/DateTime-3.0.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Acquisition-2.13.8-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/AccessControl-3.0.8-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.app.container-3.9.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/rwproperty-1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFEditions-2.2.9-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.directives.form-2.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.autoform-1.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.rfc822-1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFCore-2.2.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.supermodel-1.2.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.formwidget.contenttree-1.0.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/z3c.formwidget.query-0.10-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/z3c.relationfield-0.6.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/z3c.form-3.1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.intid-1.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/five.intid-1.0.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.intid-3.7.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.filerepresentation-3.6.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.dottedname-3.4.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.annotation-3.5.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.statusmessages-4.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFDynamicViewFTI-4.0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.z3cform-0.8.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.uuid-1.0.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.synchronize-1.0.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.memoize-1.1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.folder-1.0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.behavior-1.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.alterego-1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.GenericSetup-1.7.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.portlets-2.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.contentrules-2.0.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.z3cform-0.7.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.uuid-1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.layout-2.3.11-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.content-2.1.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/lxml-2.3.6-py2.7-macosx-10.9-intel.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.schemaeditor-1.3.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.formwidget.namedfile-1.0.9-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.textfield-1.2.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/collective.z3cform.datetimewidget-1.2.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.indexer-1.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.formwidget.recurrence-1.2.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.widgets-1.5.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.globalrequest-1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.formlib-4.0.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.registry-1.0.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.event-1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.browserlayer-2.1.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.vocabularies-2.1.14-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.registry-1.2.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.querystring-1.1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.portlets-2.5.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.form-2.2.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.contentlisting-1.0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/icalendar-3.6.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/collective.elephantvocabulary-0.2.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.DateRecurringIndex-2.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.locking-2.0.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.deprecation-3.4.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.app.locales-3.6.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/z3c.autoinclude-0.3.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plonetheme.sunburst-1.4.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plonetheme.classic-1.3.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.theme-2.1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.session-3.5.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.protect-2.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.portlet.static-2.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.portlet.collection-2.1.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.intelligenttext-2.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.i18n-2.0.9-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.fieldsets-2.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.batching-1.0.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.workflow-2.1.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.viewletmanager-2.0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.users-1.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.upgrade-1.3.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.search-1.1.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.redirector-1.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.locales-4.3.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.linkintegrity-1.5.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.jquerytools-1.5.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.jquery-1.8.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.i18n-2.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.folder-1.0.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.discussion-2.2.12-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.customerize-1.2.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.controlpanel-2.3.8-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.contentrules-3.0.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.collection-1.0.11-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.blob-1.5.9-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/five.localsitemanager-2.0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/five.customerize-1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/borg.localrole-3.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/archetypes.referencebrowserwidget-2.4.20-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/archetypes.querywidget-1.0.10-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.TinyMCE-1.3.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ResourceRegistries-2.2.10-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.PortalTransforms-2.1.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.PluginRegistry-1.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.PluggableAuthService-1.10.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.PlonePAS-4.1.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.PloneLanguageTool-3.2.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.PlacelessTranslationService-2.0.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.PasswordResetTool-2.0.16-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.MimetypesRegistry-2.0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ExternalEditor-1.1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ExtendedPathIndex-3.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.DCWorkflow-2.2.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFUid-2.2.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFQuickInstallerTool-3.0.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFFormController-3.0.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFDiffTool-2.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFDefault-2.2.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFCalendar-2.2.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.CMFActionIcons-2.1.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.Archetypes-1.9.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ATContentTypes-2.1.14-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/five.globalrequest-1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/repoze.xmliter-0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.resourceeditor-1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.resource-1.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.transformchain-1.0.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.subrequest-1.6.8-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/roman-1.4.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/diazo-1.0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.openid-2.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/z3c.zcmlhook-1.0b1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.cachepurging-1.0.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.caching-1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/python_dateutil-1.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/mechanize-0.2.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.broken-3.6.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.dublincore-3.7.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.copypastemove-3.7.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ZopeVersionControl-1.1.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.copy-3.5.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/grokcore.view-2.8-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/five.grok-1.3.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.app.publication-3.12.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ZSQLMethods-2.13.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.formwidget.autocomplete-1.2.6-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zc.relation-1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/z3c.objpath-1.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.app.intid-3.7.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/grokcore.component-2.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/six-1.2.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.keyreference-3.6.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.ramcache-1.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.componentvocabulary-1.0.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.scale-1.3.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.datetime-3.4.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/feedparser-5.0.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/five.formlib-1.0.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.keyring-2.0.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Unidecode-0.04.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.SecureMailHost-1.1.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.contentmigration-2.1.7-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/collective.monkeypatcher-1.0.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.cachedescriptors-3.5.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.stringinterp-1.0.11-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.validation-2.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.app.imaging-1.0.10-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/archetypes.schemaextender-2.1.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.app.content-3.5.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/plone.outputfilters-1.12-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Markdown-2.0.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/python_gettext-1.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.app.form-4.0.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.Marshall-2.1.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/Products.ATReferenceBrowserWidget-3.0-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/z3c.caching-2.0a1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/experimental.cssselect-0.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/python_openid-2.2.5-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/martian-0.14-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/grokcore.security-1.6.2-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/grokcore.viewlet-1.11-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/grokcore.site-1.6.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/grokcore.annotation-1.3-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.error-3.7.4-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/zope.authentication-3.7.1-py2.7.egg',
'/Users/fulvio/python/plone/Plone-4.3.3/buildout-cache/eggs/unittest2-0.5.1-py2.7.egg',
]
import plone.recipe.zope2instance.ctl
if __name__ == '__main__':
sys.exit(plone.recipe.zope2instance.ctl.main(
['-C', '/Users/fulvio/python/plone/Plone-4.3.3/zinstance/parts/instance/etc/zope.conf']
+ sys.argv[1:]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment