Skip to content

Instantly share code, notes, and snippets.

@l34marr
Created October 29, 2012 10:15
Show Gist options
  • Save l34marr/3972751 to your computer and use it in GitHub Desktop.
Save l34marr/3972751 to your computer and use it in GitHub Desktop.
Plone Config Files
######################################################
# Base Configuration; this provides sane defaults
# for commonly used parts.
# ---------------------------------------------------
#
# Buildout instructions in this file are
# usually only changed by experienced developers.
#
# Beyond here there be dragons!
[buildout]
eggs-directory=../buildout-cache/eggs
download-cache=../buildout-cache/downloads
# Don't download new things unless needed to satisfy dependencies.
# Override this on the command line with the "-n" flag.
newest = false
# pick final releases over newer development releases
prefer-final = true
versions = versions
# 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
# unzip all eggs for easier debugging
unzip = true
# buildout.DumpPickedVersions notifies
# you of versions picked by buildout that were not specifically
# pinned.
# buildout.sanitycheck makes sure you're not running buildout
# as root.
extensions =
buildout.dumppickedversions
buildout.sanitycheck
############################################
# Environment Variables
# ---------------------
# Some of the behavior of your Zope/Plone instances are controlled with OS
# environment variables. You may set those here in a key / value format.
# Some common settings:
# * TZ allows you to set a time zone for systems where it's not
# automatically available.
# * zope_i18n_compile_mo_files allows for automatic compilation of
# missing translation files (may slow startup).
# * zope_i18n_allowed_languages allows you to limit the available
# translations.
# * PYTHON_EGG_CACHE determines where zipped python packages are unpacked
# for use.
# * PYTHONHASHSEED determines initial seed for hashes. "random" causes a
# pseudo-random value is used to seed the hashes of str, bytes and datetime
# objects.
environment-vars =
zope_i18n_compile_mo_files true
PYTHON_EGG_CACHE ${buildout:directory}/var/.python-eggs
PYTHONHASHSEED random
# TZ US/Eastern
# zope_i18n_allowed_languages en es de fr
[instance_base]
# Use this section to install and configure a Zope operating
# instance.
# For options see http://pypi.python.org/pypi/plone.recipe.zope2instance
# The line below sets only the initial password. It will not change an
# existing password.
user = ${buildout:user}
# if we try to start as root, Zope will switch to the user below
effective-user = ${buildout:effective-user}
# change debug-mode to "on" to run in development mode
debug-mode = off
# change verbose-security to "on" for detailed security
# errors while developing
verbose-security = ${buildout:verbose-security}
# change deprecation-warnings to "on" to get log warnings
# for deprecated usages.
deprecation-warnings = ${buildout:deprecation-warnings}
# storage locations
var = ${buildout:var-dir}
blob-storage = ${:var}/blobstorage
# Comment the next four lines out if you don't need
# automatic log rotation for event and access logs.
event-log-max-size = 5 MB
event-log-old-files = 5
access-log-max-size = 20 MB
access-log-old-files = 5
# If you want Zope to know about any additional eggs, list them here.
# 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 = ${buildout:zcml}
products = ${buildout:directory}/products
# You may also control the environment variables for the instance.
environment-vars = ${buildout:environment-vars}
[zeoserver_base]
# Use this section to install and configure a Zope
# Enterprise Objects server.
# For options see http://pypi.python.org/pypi/plone.recipe.zeoserver
#
# If we try to start as root, Zope will switch to the user below
effective-user = ${buildout:effective-user}
# Set storage
var = ${buildout:var-dir}
blob-storage = ${buildout:var-dir}/blobstorage
# Put the log, pid and socket files in var/zeoserver
zeo-log = ${buildout:var-dir}/zeoserver/zeoserver.log
pid-file = ${buildout:var-dir}/zeoserver/zeoserver.pid
socket-name = ${buildout:var-dir}/zeoserver/zeo.zdsock
[client_base]
# Use this section to install and configure a ZEO client
# instance.
# For options see http://pypi.python.org/pypi/plone.recipe.zope2instance
# The line below sets only the initial password. It will not change an
# existing password.
user = ${buildout:user}
# if we try to start as root, Zope will switch to the user below
effective-user = ${buildout:effective-user}
# change debug-mode to "on" to run in development mode
debug-mode = off
# change verbose-security to "on" for detailed security
# errors while developing
verbose-security = ${buildout:verbose-security}
# change deprecation-warnings to "on" to get log warnings
# for deprecated usages.
deprecation-warnings = ${buildout:deprecation-warnings}
# base locations
var = ${buildout:var-dir}
blob-storage = ${:var}/blobstorage
# Comment the next four lines out if you don't need
# automatic log rotation for event and access logs.
event-log-max-size = 5 MB
event-log-old-files = 5
access-log-max-size = 20 MB
access-log-old-files = 5
# If you want Zope to know about any additional eggs, list them here.
# 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 = ${buildout:zcml}
products = ${buildout:directory}/products
# You may also control the environment variables for the instance.
environment-vars = ${buildout:environment-vars}
zeo-client = true
# shared blobs are much faster if we're on the same server.
# if not, turn it off.
shared-blob = on
# defer binding to port; may improve load balancer behavior on restarts
http-fast-listen = off
# Put the log, pid, lock files in var/client1
event-log = ${buildout:var-dir}/${:_buildout_section_name_}/event.log
z2-log = ${buildout:var-dir}/${:_buildout_section_name_}/Z2.log
pid-file = ${buildout:var-dir}/${:_buildout_section_name_}/${:_buildout_section_name_}.pid
lock-file = ${buildout:var-dir}/${:_buildout_section_name_}/${:_buildout_section_name_}.lock
[repozo]
# This recipe builds the repozo script for non-zeo installations.
recipe = zc.recipe.egg
eggs = ZODB3
scripts = repozo
[backup]
# This recipe builds the backup, restore and snapshotbackup commands.
# For options see http://pypi.python.org/pypi/collective.recipe.backup
recipe = collective.recipe.backup
location = ${buildout:backups-dir}/backups
blobbackuplocation = ${buildout:backups-dir}/blobstoragebackups
snapshotlocation = ${buildout:backups-dir}/snapshotbackups
blobsnapshotlocation = ${buildout:backups-dir}/blobstoragesnapshots
datafs = ${buildout:var-dir}/filestorage/Data.fs
blob-storage = ${buildout:var-dir}/blobstorage
[setpermissions]
# This recipe is used to set permissions for root mode installs
# For options see http://pypi.python.org/pypi/plone.recipe.command
recipe = plone.recipe.command
command =
# Dummy references to force this to execute after referenced parts
echo ${backup:location} ${unifiedinstaller:need-sudo} > /dev/null
chmod 600 .installed.cfg
# Make sure anything we've created in var is r/w by our group
find ${buildout:var-dir} -type d -exec chmod 770 {} \; 2> /dev/null
find ${buildout:var-dir} -type f -exec chmod 660 {} \; 2> /dev/null
find ${buildout:backups-dir} -type d -exec chmod 770 {} \; 2> /dev/null
find ${buildout:backups-dir} -type f -exec chmod 660 {} \; 2> /dev/null
chmod 754 ${buildout:directory}/bin/*
update-command = ${:command}
[zopepy]
# installs a zopepy python interpreter that runs with your
# full Zope environment
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
interpreter = zopepy
scripts = zopepy
[unifiedinstaller]
# This recipe installs the plonectl script and a few other convenience
# items.
# For options see http://pypi.python.org/pypi/plone.recipe.unifiedinstaller
recipe = plone.recipe.unifiedinstaller
user = ${buildout:user}
effective-user = ${buildout:effective-user}
buildout-user = ${buildout:buildout-user}
need-sudo = ${buildout:need-sudo}
[precompiler]
# This recipe is used in production installs to compile
# .py and .po files so that the daemon doesn't try to do it.
# For options see http://pypi.python.org/pypi/plone.recipe.precompiler
recipe = plone.recipe.precompiler
eggs = ${buildout:eggs}
compile-mo-files = true
extra-paths = ${buildout:directory}/products
############################################
#
# Buildout Configuration File for Standalone Plone
# ------------------------------------------------
#
# After making changes in this configuration file,
# you should stop Plone and run bin/buildout to update the components.
#
# ALWAYS back up all Plone/Zope data and components
# before changing configuration.
#
# Running "bin/buildout" will update your installation,
# installing missing components as necessary.
#
# Use "bin/buildout -n" to update many components here to the newest
# available releases.
# 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/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
# 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 = marr
# This user will own the rest of the installation, and should be used to
# run buildout.
buildout-user = marr
# 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.
#
eggs =
Plone
Pillow
############################################
# 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:only4plone
############################################
# 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]
Cheetah = 2.2.1
Products.DocFinderTab = 1.0.5
ZopeSkel = 2.21.2
collective.recipe.backup = 2.10
plone.recipe.unifiedinstaller = 4.3.1
plone.recipe.command = 1.1
plone.recipe.precompiler = 0.6
zopeskel.dexterity = 1.5.0
zopeskel.diazotheme = 1.0
#################################################################
#
# Development Configuration
# =========================
#
# This is a buildout configuration that sets up a development
# environment for Plone. It extends buildout.cfg.
#
# To use this configuration, run buildout via:
#
# bin/buildout -c develop.cfg
#
# This specifies develop.cfg as buildout's configuration file. This configuration
# file extends buildout.cfg, so that all the options from that file are
# automatically included.
#
# Included in the development configuration
#
# Common development tools:
#
# * zopeskel, a Python package skeleton generator with support
# for common Plone development packages like content-type
# and theme packages.
#
# * mr.developer, a tool that automatically checks out source for
# add ons from a versioning system, then adds them to your
# development package list.
#
# * testrunner, which provides a command-line option to run
# test suites.
#
# * Diazo command-line tools: diazocompile and diazorun. Useful
# for debugging and understanding Diazo and plone.app.theming.
# See http://docs.diazo.org/en/latest/compiler.html
#
# * zest.releaser, a kit for managing the release cycle for Python
# packages. See https://pypi.python.org/pypi/zest.releaser.
#
# Common Customizations
# =====================
#
# Add packages to the sources managed by mr.developer by adding them to the
# [sources] section below.
#
# Add packages to the test suite by adding them to the "test-packages" option
# in the [buildout] section below.
############################################
# Sources
# -------
# Specify packages under development here.
#
# See http://pypi.python.org/pypi/mr.developer for mr.developer source specifications.
# <name> = <kind> [key=value] <url> [path] [key=value]
# kind = The kind of repository. Currently supported are one of svn (>= 1.5), hg, git, cvs or fs.
#
[sources]
# Examples: to check out plonetheme.sunburst from Plone's svn, use:
# plonetheme.sunburst = svn https://svn.plone.org/svn/plone/plonetheme.sunburst/trunk
#
# To use a python package that is being developed in your src subdirectory, use:
# myproduct.betterplone = fs myproduct.betterplone
[buildout]
############################################
# Test Packages
# ----------
# Specify a list of packages that you wish to explicity include in your test suite.
# Base eggs are automatically included
#
test-packages =
# plonetheme.sunburst
############################################
# Debug Mode
# ----------
# Most development work is done with Zope/Plone started
# in foreground mode (bin/plonectl fg), which automatically
# turns on debug mode and causes Zope/Plone to stop on
# package loading errors.
#
# Note that debug mode makes Plone run *very* slowly due to
# extra filesystem checks and granular transmission of browser resources.
#
# If you have a need to run in debug mode outside foreground
# operation, turn on debug mode below.
debug-mode = off
#
# If you're developing Plone add-ons, you should want to see
# deprecation warnings that let you know if you're using outmoded
# methods or modules.
deprecation-warnings = on
#
# Turning on verbose security may help diagnose security bugs.
# You'll also need to disable the intercepting of "unauthorized"
# errors in the error_log via the ZMI.
verbose-security = off
############################################
# Less Commonly Changed Options
# -----------------------------
# The remainder of the buildout mainly sets up the development
# environment based on the settings above.
# we're extending buildout.cfg
extends =
buildout.cfg
extensions +=
mr.developer
eggs +=
Products.DocFinderTab
plone.reload
plone.app.dexterity [grok, relations]
parts +=
test
diazotools
zopeskel
i18ndude
# mr.developer settings:
always-checkout = force
sources = sources
auto-checkout = *
[test]
recipe = zc.recipe.testrunner
defaults = ['--auto-color', '--auto-progress']
eggs =
${buildout:eggs}
${buildout:test-packages}
# Add diazo compile/run tools to bin; useful for debugging understanding
# diazo. See http://docs.diazo.org/en/latest/compiler.html
[diazotools]
recipe = zc.recipe.egg
eggs = diazo
[zopeskel]
# installs paster and Zopeskel
recipe = zc.recipe.egg
eggs =
ZopeSkel
Paste
PasteDeploy
PasteScript
zopeskel.diazotheme
zopeskel.dexterity
zest.releaser
${buildout:eggs}
[i18ndude]
recipe = zc.recipe.egg
eggs = i18ndude
# Use this buildout to build an lxml egg that contains usable
# static libraries for libxml2 and libxslt.
#
# bin/buildout -c lxml_static.cfg
#
# Before running, remove any existing lxml egg from buildout_cache/eggs.
[buildout]
eggs-directory=../buildout-cache/eggs
download-cache=../buildout-cache/downloads
newest = false
versions = versions
unzip = true
parts = lxml lxmlpy
develop = src/z3c.recipe.staticlxml
extensions = buildout.dumppickedversions
[lxml]
recipe = z3c.recipe.staticlxml
egg = lxml
libxml2-url = ftp://xmlsoft.org/libxml2/libxml2-2.8.0.tar.gz
libxslt-url = ftp://xmlsoft.org/libxml2/libxslt-1.1.28.tar.gz
static-build = true
[lxmlpy]
recipe = zc.recipe.egg
eggs = lxml
interpreter = lxmlpy
scripts = lxmlpy
[versions]
lxml = 2.3.6
zc.recipe.cmmi = 1.3.5
# z3c.recipe.staticlxml = 0.8
# http://dist.plone.org/release/4.3/versions.cfg
[buildout]
extends =
zopeapp-versions.cfg
zope-versions.cfg
[versions]
# Zope overrides
docutils = 0.9.1
# Get support for @security decorators
AccessControl = 3.0.6
# More memory efficient version, Trac #13101
DateTime = 3.0.3
# Products.BTreeFolder2 2.13.4 causes a regression
Products.BTreeFolder2 = 2.13.3
# Override until ztk is updated
Sphinx = 1.1.3
# required for recent z3c.form and chameleon
zope.pagetemplate = 3.6.3
zc.buildout = 1.7.1
zc.recipe.egg = 1.3.2
# Build tools
buildout.dumppickedversions = 0.5
collective.recipe.omelette = 0.15
collective.recipe.template = 1.9
collective.xmltestreport = 1.2.8
decorator = 3.4.0
distribute = 0.6.28
mr.developer = 1.21
plone.recipe.alltests = 1.2
plone.recipe.zope2instance = 4.2.10
plone.recipe.zeoserver = 1.2.4
robotframework = 2.7.6
robotframework-selenium2library = 1.1.0
robotsuite = 1.2.1
selenium = 2.31.0
setuptools = 0.6c11
z3c.coverage = 1.2.0
z3c.ptcompat = 1.0.1
z3c.template = 1.4.1
zest.releaser = 3.43
zope.testrunner = 4.1.1
# External dependencies
Markdown = 2.0.3
PIL = 1.1.7
Pillow = 1.7.8
# Unidecode 0.04.{2-9} break tests
Unidecode = 0.04.1
elementtree = 1.2.7-20070827-preview
experimental.cssselect = 0.3
feedparser = 5.0.1
lxml = 2.3.6
mailinglogger = 3.7.0
ordereddict = 1.1
python-dateutil = 1.5
python-openid = 2.2.5
repoze.xmliter = 0.5
simplejson = 2.5.2
six = 1.2.0
WebOb = 1.0.8
# Plone release
Plone = 4.3
Products.ATContentTypes = 2.1.12
Products.ATReferenceBrowserWidget = 3.0
Products.Archetypes = 1.8.7
Products.CMFActionIcons = 2.1.3
Products.CMFCalendar = 2.2.2
Products.CMFCore = 2.2.7
Products.CMFDefault = 2.2.3
Products.CMFDiffTool = 2.0.2
Products.CMFDynamicViewFTI = 4.0.4
Products.CMFEditions = 2.2.8
Products.CMFFormController = 3.0.3
Products.CMFPlacefulWorkflow = 1.5.9
Products.CMFPlone = 4.3
Products.CMFQuickInstallerTool = 3.0.6
Products.CMFTestCase = 0.9.12
Products.CMFTopic = 2.2.1
Products.CMFUid = 2.2.1
Products.contentmigration = 2.1.4
Products.DCWorkflow = 2.2.4
Products.ExtendedPathIndex = 3.1
Products.ExternalEditor = 1.1.0
Products.GenericSetup = 1.7.3
Products.Marshall = 2.1.2
Products.MimetypesRegistry = 2.0.4
Products.PasswordResetTool = 2.0.13
Products.PlacelessTranslationService = 2.0.3
Products.PloneLanguageTool = 3.2.7
Products.PlonePAS = 4.1.1
Products.PloneTestCase = 0.9.16
Products.PluggableAuthService = 1.10.0
Products.PluginRegistry = 1.3
Products.PortalTransforms = 2.1.2
Products.ResourceRegistries = 2.2.7
Products.SecureMailHost = 1.1.2
Products.TinyMCE = 1.3.3
Products.ZopeVersionControl = 1.1.3
Products.ZSQLMethods = 2.13.4
Products.i18ntestcase = 1.3
Products.statusmessages = 4.0
Products.validation = 2.0
archetypes.querywidget = 1.0.8
archetypes.referencebrowserwidget = 2.4.17
archetypes.schemaextender = 2.1.2
borg.localrole = 3.0.2
collective.monkeypatcher = 1.0.1
collective.testcaselayer = 1.6
collective.z3cform.datetimewidget = 1.2.3
diazo = 1.0.3
five.customerize = 1.1
five.formlib = 1.0.4
five.globalrequest = 1.0
five.localsitemanager = 2.0.5
plone.app.blob = 1.5.8
plone.app.caching = 1.1.3
plone.app.collection = 1.0.9
plone.app.content = 2.1.1
plone.app.contentlisting = 1.0.4
plone.app.contentmenu = 2.0.8
plone.app.contentrules = 3.0.1
plone.app.controlpanel = 2.3.4
plone.app.customerize = 1.2.2
plone.app.dexterity = 2.0.7
plone.app.discussion = 2.2.5
plone.app.folder = 1.0.5
plone.app.form = 2.2.2
plone.app.i18n = 2.0.2
plone.app.imaging = 1.0.7
plone.app.iterate = 2.1.10
plone.app.jquery = 1.7.2
plone.app.jquerytools = 1.5.5
plone.app.layout = 2.3.4
plone.app.linkintegrity = 1.5.1
plone.app.locales = 4.3
plone.app.openid = 2.0.2
plone.app.portlets = 2.4.3
plone.app.querystring = 1.0.8
plone.app.redirector = 1.2a1
plone.app.registry = 1.2.2
plone.app.search = 1.1.3
plone.app.testing = 4.2.2
plone.app.textfield = 1.2.2
plone.app.theming = 1.1
plone.app.upgrade = 1.3.1
plone.app.users = 1.2a2
plone.app.uuid = 1.0
plone.app.viewletmanager = 2.0.3
plone.app.vocabularies = 2.1.10
plone.app.workflow = 2.1.2
plone.app.z3cform = 0.7.2
plone.alterego = 1.0
plone.autoform = 1.3
plone.batching = 1.0b1
plone.behavior = 1.0.2
plone.browserlayer = 2.1.2
plone.cachepurging = 1.0.4
plone.caching = 1.0
plone.contentrules = 2.0.2
plone.dexterity = 2.1.2
plone.fieldsets = 2.0.2
plone.folder = 1.0.4
plone.formwidget.namedfile = 1.0.5
plone.i18n = 2.0.6
plone.indexer = 1.0.2
plone.intelligenttext = 2.0.2
plone.keyring = 2.0.1
plone.locking = 2.0.4
plone.memoize = 1.1.1
plone.namedfile = 2.0.1
plone.openid = 2.0.1
plone.outputfilters = 1.9
plone.portlet.collection = 2.1.4
plone.portlet.static = 2.0.2
plone.portlets = 2.2
plone.protect = 2.0.2
plone.registry = 1.0.1
plone.reload = 2.0
plone.resource = 1.0.2
plone.resourceeditor = 1.0b4
plone.rfc822 = 1.0.1
plone.scale = 1.3.1
plone.schemaeditor = 1.3.2
plone.session = 3.5.3
plone.stringinterp = 1.0.7
plone.subrequest = 1.6.7
plone.supermodel = 1.2.1
plone.synchronize = 1.0.1
plone.testing = 4.0.8
plone.theme = 2.1
plone.transformchain = 1.0.3
plone.uuid = 1.0.3
plone.z3cform = 0.8.0
plonetheme.classic = 1.3.1
plonetheme.sunburst = 1.4.1
rwproperty = 1.0
wicked = 1.1.10
z3c.autoinclude = 0.3.4
z3c.batching = 1.1.0
z3c.blobfile = 0.1.5
z3c.caching = 2.0a1
z3c.form = 3.0.0a3
z3c.formwidget.query = 0.9
z3c.zcmlhook = 1.0b1
zope.globalrequest = 1.0
zope.schema = 4.2.2
# Ecosystem (not officially part of core)
collective.js.jqueryui = 1.10.1.2
collective.z3cform.datagridfield = 0.11
collective.z3cform.datagridfield-demo = 0.5
five.grok = 1.3.2
five.intid = 1.0.3
grokcore.annotation = 1.3
grokcore.component = 2.5
grokcore.formlib = 1.9
grokcore.security = 1.6.2
grokcore.site = 1.6.1
grokcore.view = 2.7
grokcore.viewlet = 1.10.1
martian = 0.14
mocker = 1.1.1
plone.app.intid = 1.0.2
plone.app.lockingbehavior = 1.0.1
plone.app.referenceablebehavior = 0.5
plone.app.relationfield = 1.2.1
plone.app.stagingbehavior = 0.1b4
plone.app.versioningbehavior = 1.1
plone.directives.dexterity = 1.0.2
plone.directives.form = 2.0
plone.formwidget.autocomplete = 1.2.4
plone.formwidget.contenttree = 1.0.6
plone.mocktestcase = 1.0b3
z3c.objpath = 1.1
z3c.relationfield = 0.6.2
zc.relation = 1.0
# http://download.zope.org/Zope2/index/2.13.19/versions.cfg
[buildout]
extends =
ztk-versions.cfg
# http://download.zope.org/zopetoolkit/index/1.0.7/ztk-versions.cfg
versions = versions
[versions]
# Zope2-specific
Zope2 = 2.13.19
AccessControl = 2.13.11
Acquisition = 2.13.8
DateTime = 2.12.7
DocumentTemplate = 2.13.2
ExtensionClass = 2.13.2
initgroups = 2.13.0
Missing = 2.13.1
MultiMapping = 2.13.0
nt-svcutils = 2.13.0
Persistence = 2.13.2
Products.BTreeFolder2 = 2.13.4
Products.ExternalMethod = 2.13.0
Products.MailHost = 2.13.1
Products.MIMETools = 2.13.0
Products.OFSP = 2.13.2
Products.PythonScripts = 2.13.2
Products.StandardCacheManagers = 2.13.0
Products.ZCatalog = 2.13.23
Products.ZCTextIndex = 2.13.3
Record = 2.13.0
tempstorage = 2.12.2
zExceptions = 2.13.0
zLOG = 2.11.1
ZopeUndo = 2.12.0
# ZTK KGS overrides
manuel = 1.1.1
mechanize = 0.2.5
python-gettext = 1.2
ZConfig = 2.9.0
ZODB3 = 3.10.5
# ZTK 1.0.8 backports
distribute = 0.6.29
mr.developer = 1.22
zdaemon = 2.0.7
pytz = 2012g
# Zope2 dependencies
repoze.retry = 1.2
repoze.tm2 = 1.0
repoze.who = 2.0
zope.testbrowser = 3.11.1
# http://download.zope.org/zopetoolkit/index/1.0.7/zopeapp-versions.cfg
[versions]
# ZopeApp
zope.app.applicationcontrol = 3.5.10
zope.app.appsetup = 3.14.0
zope.app.authentication = 3.8.0
zope.app.basicskin = 3.5.1
zope.app.broken = 3.6.0
zope.app.component = 3.9.3
zope.app.container = 3.9.2
zope.app.content = 3.5.1
zope.app.debug = 3.4.1
zope.app.dependable = 3.5.1
zope.app.error = 3.5.3
zope.app.exception = 3.6.3
zope.app.folder = 3.5.2
zope.app.form = 4.0.2
zope.app.generations = 3.6.1
zope.app.http = 3.9.0
zope.app.i18n = 3.6.3
zope.app.locales = 3.6.2
zope.app.localpermission = 3.7.2
zope.app.pagetemplate = 3.11.2
zope.app.principalannotation = 3.7.0
zope.app.publication = 3.12.0
zope.app.publisher = 3.10.2
zope.app.renderer = 3.5.1
zope.app.rotterdam = 3.5.3
zope.app.schema = 3.5.0
zope.app.security = 3.7.5
# zope.app.testing branch which is compatible with zope.testbrowser 3.8.
zope.app.testing = 3.7.8
zope.app.wsgi = 3.9.3
zope.app.zcmlfiles = 3.7.1
zope.app.zopeappgenerations = 3.5.1
roman = 1.4.0
wsgi-intercept = 0.4
zc.sourcefactory = 0.7.0
# Next major version of zope.testbrowser fails on py24.
zope.testbrowser = 3.8.2
# Deprecating
zodbcode = 3.4.0
zope.app.apidoc = 3.7.5
zope.app.cache = 3.7.0
zope.app.catalog = 3.8.1
zope.app.dav = 3.5.3
zope.app.debugskin = 3.4.1
zope.app.file = 3.6.1
zope.app.ftp = 3.5.0
zope.app.interface = 3.5.2
zope.app.interpreter = 3.4.0
zope.app.intid = 3.7.1
zope.app.keyreference = 3.6.1
zope.app.locking = 3.5.0
zope.app.onlinehelp = 3.5.2
zope.app.preference = 3.8.1
zope.app.preview = 3.4.0
zope.app.securitypolicy = 3.6.1
zope.app.server = 3.6.0
zope.app.session = 3.6.2
zope.app.skins = 3.4.0
zope.app.tree = 3.6.0
zope.app.twisted = 3.5.0
zope.app.undo = 3.5.0
zope.app.zptpage = 3.5.1
zope.file = 0.6.1
zope.html = 2.1.0
zope.modulealias = 3.4.0
zope.preference = 3.8.0
zope.thread = 3.4
zope.xmlpickle = 3.4.0
zope.rdb = 3.5.0
# http://download.zope.org/zopetoolkit/index/1.0.7/ztk-versions.cfg
[versions]
# ZTK
zope.annotation = 3.5.0
zope.applicationcontrol = 3.5.5
zope.authentication = 3.7.1
zope.broken = 3.6.0
zope.browser = 1.3
zope.browsermenu = 3.9.1
zope.browserpage = 3.12.2
zope.browserresource = 3.10.3
zope.cachedescriptors = 3.5.1
zope.catalog = 3.8.2
zope.component = 3.9.5
zope.componentvocabulary = 1.0.1
zope.configuration = 3.7.4
zope.container = 3.11.2
zope.contentprovider = 3.7.2
zope.contenttype = 3.5.5
zope.copy = 3.5.0
zope.copypastemove = 3.7.0
zope.datetime = 3.4.1
zope.deferredimport = 3.5.3
zope.deprecation = 3.4.1
zope.dottedname = 3.4.6
zope.dublincore = 3.7.0
zope.error = 3.7.4
zope.event = 3.5.2
zope.exceptions = 3.6.2
zope.filerepresentation = 3.6.1
zope.formlib = 4.0.6
zope.hookable = 3.4.1
zope.i18n = 3.7.4
zope.i18nmessageid = 3.5.3
zope.index = 3.6.4
zope.interface = 3.6.7
zope.intid = 3.7.2
zope.keyreference = 3.6.4
zope.lifecycleevent = 3.6.2
zope.location = 3.9.1
zope.login = 1.0.0
zope.mimetype = 1.3.1
zope.minmax = 1.1.2
zope.pagetemplate = 3.5.2
zope.password = 3.6.1
zope.pluggableauth = 1.0.3
zope.principalannotation = 3.6.1
zope.principalregistry = 3.7.1
zope.processlifetime = 1.0
zope.proxy = 3.6.1
zope.ptresource = 3.9.0
zope.publisher = 3.12.6
zope.ramcache = 1.0
zope.schema = 3.7.1
zope.security = 3.7.4
zope.securitypolicy = 3.7.0
zope.sendmail = 3.7.5
zope.sequencesort = 3.4.0
zope.server = 3.6.3
zope.session = 3.9.5
zope.site = 3.9.2
zope.size = 3.4.1
zope.structuredtext = 3.5.1
zope.tal = 3.5.2
zope.tales = 3.5.2
zope.testing = 3.9.7
zope.traversing = 3.13.2
zope.viewlet = 3.7.2
# Deprecating
zope.documenttemplate = 3.4.3
# Dependencies
# Needed for the mechanize 0.1.x.
ClientForm = 0.2.10
distribute = 0.6.27
docutils = 0.7
Jinja2 = 2.5.5
# Newer versions of mechanize are not fully py24 compatible.
mechanize = 0.1.11
Paste = 1.7.5.1
PasteDeploy = 1.3.4
PasteScript = 1.7.5
py = 1.3.4
Pygments = 1.3.1
python-gettext = 1.0
pytz = 2012c
RestrictedPython = 3.6.0
setuptools = 0.6c11
Sphinx = 1.0.8
transaction = 1.1.1
unittest2 = 0.5.1
z3c.recipe.sphinxdoc = 0.0.8
zc.buildout = 1.4.4
zc.lockfile = 1.0.0
ZConfig = 2.8.0
zc.recipe.egg = 1.2.2
zc.recipe.testrunner = 1.2.1
zc.resourcelibrary = 1.3.4
zdaemon = 2.0.4
ZODB3 = 3.9.7
zope.mkzeoinstance = 3.9.5
# toolchain
argparse = 1.1
coverage = 3.5.2
lxml = 2.2.8
mr.developer = 1.18
tl.eggdeps = 0.4
nose = 1.1.2
z3c.checkversions = 0.4.1
z3c.recipe.compattest = 0.12.2
z3c.recipe.depgraph = 0.5
zope.kgs = 1.2.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment