Attention

This document was written for an old version of Plone, Plone 3, and was last updated 1133 days ago.

To learn how to upgrade to the current version of Plone, read the upgrade manual.

Choose the right paster template

by John Samuel Anderson last modified Apr 15, 2009 02:50 PM
Review the default output from "paster create" to determine which template you need.

Purpose

Unless you're intimately familiar with paster, sometimes you don't know which template to use. This how-to shows what files are created by paster create, with default values for all the options.

Prerequisities

You should install ZopeSkel. Using zc.buildout helps, too. You might also want to review this first: Create new eggs and packages quickly with paster

This was done with PasteScript 1.7.3. The trees were produced using the linux "tree" command.

Select your template

These templates were included with ZopeSkel and are detailed in this document:

 

archetype: A Plone project that uses Archetypes

archetype/
|-- CHANGES.txt
|-- CONTRIBUTORS.txt
|-- MANIFEST.in
|-- README.txt
|-- archetype.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- paster_plugins.txt
|   |-- requires.txt
|   `-- top_level.txt
|-- docs
|   |-- HISTORY.txt
|   |-- INSTALL.txt
|   |-- LICENSE.GPL
|   `-- LICENSE.txt
|-- plone
|   |-- __init__.py
|   `-- example
|       |-- README.txt
|       |-- __init__.py
|       |-- browser
|       |   |-- __init__.py
|       |   `-- configure.zcml
|       |-- config.py
|       |-- configure.zcml
|       |-- content
|       |   |-- __init__.py
|       |   `-- configure.zcml
|       |-- interfaces
|       |   `-- __init__.py
|       |-- portlets
|       |   |-- __init__.py
|       |   `-- configure.zcml
|       |-- profiles
|       |   `-- default
|       |       |-- factorytool.xml
|       |       |-- metadata.xml
|       |       |-- portlets.xml
|       |       `-- types.xml
|       `-- tests
|           |-- __init__.py
|           |-- base.py
|           `-- test_doctest.py
|-- setup.cfg
`-- setup.py

11 directories, 38 files

 

basic_namespace: A project with a namespace package

basic_namespace/
|-- README.txt
|-- basic_namespace.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- requires.txt
|   `-- top_level.txt
|-- docs
|   `-- HISTORY.txt
|-- plone
|   |-- __init__.py
|   `-- example
|       `-- __init__.py
|-- setup.cfg
`-- setup.py

4 directories, 14 files

basic_package: A basic setuptools-enabled package

basic_package/
|-- basic_package
|   `-- __init__.py
|-- basic_package.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- not-zip-safe
|   `-- top_level.txt
|-- setup.cfg
`-- setup.py

2 directories, 9 files

basic_zope: A Zope project

basic_zope/
|-- README.txt
|-- basic_zope-configure.zcml
|-- basic_zope.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- requires.txt
|   `-- top_level.txt
|-- docs
|   `-- HISTORY.txt
|-- myzopelib
|   |-- __init__.py
|   `-- example
|       |-- README.txt
|       |-- __init__.py
|       |-- configure.zcml
|       |-- tests.py
|       `-- zope2.py
|-- setup.cfg
`-- setup.py

4 directories, 19 files

kss_plugin: A KSS plugin template

kss_plugin/
|-- README.txt
|-- docs
|   `-- HISTORY.txt
|-- kss
|   |-- __init__.py
|   `-- plugin
|       |-- __init__.py
|       `-- example
|           |-- __init__.py
|           |-- configure.zcml
|           |-- demo
|           |   |-- __init__.py
|           |   |-- configure.zcml
|           |   |-- example.kss
|           |   |-- example.pt
|           |   `-- zopeconfig.py
|           |-- javascript
|           |   `-- example.js
|           |-- kss.plugin.example-configure.zcml
|           `-- tests
|               `-- __init__.py
|-- kss_plugin.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- requires.txt
|   `-- top_level.txt
|-- setup.cfg
`-- setup.py

8 directories, 24 files

nested_namespace: A project with two nested namespaces.

nested_namespace/
|-- README.txt
|-- docs
|   `-- HISTORY.txt
|-- nested_namespace.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- requires.txt
|   `-- top_level.txt
|-- plone
|   |-- __init__.py
|   `-- app
|       |-- __init__.py
|       `-- example
|           `-- __init__.py
|-- setup.cfg
`-- setup.py

5 directories, 15 files

paste_deploy: A web application deployed through paste.deploy

paste_deploy/
|-- docs
|   `-- devel_config.ini
|-- paste_deploy
|   |-- __init__.py
|   |-- sampleapp.py
|   `-- wsgiapp.py
|-- paste_deploy.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- not-zip-safe
|   |-- paster_plugins.txt
|   |-- requires.txt
|   `-- top_level.txt
|-- setup.cfg
`-- setup.py

3 directories, 14 files

plone: A Plone project

plone/
|-- README.txt
|-- docs
|   |-- HISTORY.txt
|   |-- INSTALL.txt
|   |-- LICENSE.GPL
|   `-- LICENSE.txt
|-- plone
|   |-- __init__.py
|   `-- example
|       |-- __init__.py
|       |-- configure.zcml
|       `-- tests.py
|-- plone.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- paster_plugins.txt
|   |-- requires.txt
|   `-- top_level.txt
|-- setup.cfg
`-- setup.py

4 directories, 20 files

plone2.5_buildout: A buildout for Plone 2.5 projects

plone2.5_buildout/
|-- README.txt
|-- bootstrap.py
|-- buildout.cfg
|-- products
|   `-- README.txt
|-- src
|   `-- README.txt
`-- var
    `-- README.txt

3 directories, 6 files

plone2.5_theme: A Theme for Plone 2.5

plone2.5_theme/
|-- MANIFEST.in
|-- Products
|   |-- __init__.py
|   `-- example
|       |-- Extensions
|       |   |-- Install.py
|       |   `-- __init__.py
|       |-- __init__.py
|       |-- config.py
|       |-- configure.zcml
|       |-- profiles
|       |   `-- default
|       |       |-- cssregistry.xml
|       |       |-- import_steps.xml
|       |       |-- jsregistry.xml
|       |       `-- skins.xml
|       |-- profiles.zcml
|       |-- setuphandlers.py
|       |-- skins
|       |   |-- example_custom_images
|       |   |   `-- CONTENT.txt
|       |   |-- example_custom_styles
|       |   |   |-- CONTENT.txt
|       |   |   |-- base.css.dtml
|       |   |   |-- base_properties.props
|       |   |   |-- generated.css.dtml
|       |   |   |-- portlets.css.dtml
|       |   |   `-- public.css.dtml
|       |   |-- example_custom_templates
|       |   |   `-- CONTENT.txt
|       |   |-- example_images
|       |   |   `-- CONTENT.txt
|       |   |-- example_styles
|       |   |   |-- CONTENT.txt
|       |   |   `-- example.css.dtml
|       |   `-- example_templates
|       |       `-- CONTENT.txt
|       |-- tests.py
|       `-- version.txt
|-- README.txt
|-- docs
|   |-- HISTORY.txt
|   |-- INSTALL.txt
|   |-- LICENSE.GPL
|   `-- LICENSE.txt
|-- plone2.5_theme.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- paster_plugins.txt
|   |-- requires.txt
|   `-- top_level.txt
|-- setup.cfg
`-- setup.py

14 directories, 43 files

plone2_theme: A Theme Product for Plone 2.1 & Plone 2.5

plone2_theme/
|-- Extensions
|   |-- Install.py
|   |-- __init__.py
|   `-- utils.py
|-- HISTORY.txt
|-- README.txt
|-- __init__.py
|-- config.py
|-- skins
|   `-- plone2_theme_styles
|       |-- base.css.dtml
|       |-- base_properties.props
|       |-- generated.css.dtml
|       |-- plone2_theme.css.dtml
|       |-- portlets.css.dtml
|       `-- public.css.dtml
|-- tests
|   |-- __init__.py
|   |-- framework.py
|   |-- runalltests.py
|   |-- testSkeleton.py
|   `-- testStyleInstallation.py
`-- version.txt

4 directories, 19 files

plone3_buildout: A buildout for Plone 3 projects

plone3_buildout/
|-- README.txt
|-- bootstrap.py
|-- buildout.cfg
|-- products
|   `-- README.txt
|-- src
|   `-- README.txt
`-- var
    `-- README.txt

3 directories, 6 files

plone3_portlet: A Plone 3 portlet

plone3_portlet/
|-- README.txt
|-- collective
|   |-- __init__.py
|   `-- portlet
|       |-- __init__.py
|       `-- example
|           |-- __init__.py
|           |-- configure.zcml
|           |-- exampleportlet.pt
|           |-- exampleportlet.py
|           |-- profiles
|           |   `-- default
|           |       |-- metadata.xml
|           |       `-- portlets.xml
|           |-- tests
|           |   |-- __init__.py
|           |   |-- base.py
|           |   `-- test_portlet.py
|           `-- version.txt
|-- docs
|   |-- HISTORY.txt
|   |-- INSTALL.txt
|   |-- LICENSE.GPL
|   `-- LICENSE.txt
|-- plone3_portlet.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- requires.txt
|   `-- top_level.txt
|-- setup.cfg
`-- setup.py

8 directories, 27 files

plone3_theme: A Theme for Plone 3.0

plone3_theme/
|-- MANIFEST.in
|-- README.txt
|-- docs
|   |-- HISTORY.txt
|   |-- INSTALL.txt
|   |-- LICENSE.GPL
|   `-- LICENSE.txt
|-- plone3_theme-configure.zcml
|-- plone3_theme.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- paster_plugins.txt
|   |-- requires.txt
|   `-- top_level.txt
|-- plonetheme
|   |-- __init__.py
|   `-- example
|       |-- __init__.py
|       |-- browser
|       |   |-- __init__.py
|       |   |-- configure.zcml
|       |   |-- images
|       |   |   `-- README.txt
|       |   |-- interfaces.py
|       |   |-- stylesheets
|       |   |   |-- README.txt
|       |   |   `-- main.css
|       |   |-- viewlet.pt
|       |   `-- viewlets.py
|       |-- configure.zcml
|       |-- profiles
|       |   `-- default
|       |       |-- cssregistry.xml
|       |       |-- import_steps.xml
|       |       |-- jsregistry.xml
|       |       |-- metadata.xml
|       |       |-- plonetheme.example_various.txt
|       |       |-- skins.xml
|       |       `-- viewlets.xml
|       |-- profiles.zcml
|       |-- setuphandlers.py
|       |-- skins
|       |   |-- plonetheme_example_custom_images
|       |   |   `-- CONTENT.txt
|       |   |-- plonetheme_example_custom_templates
|       |   |   `-- CONTENT.txt
|       |   `-- plonetheme_example_styles
|       |       |-- CONTENT.txt
|       |       |-- base.css.dtml
|       |       |-- base_properties.props
|       |       |-- portlets.css.dtml
|       |       `-- public.css.dtml
|       |-- skins.zcml
|       |-- tests.py
|       `-- version.txt
|-- setup.cfg
`-- setup.py

13 directories, 48 files

plone_app: A Plone App project

plone_app/
|-- README.txt
|-- docs
|   |-- HISTORY.txt
|   |-- INSTALL.txt
|   |-- LICENSE.GPL
|   `-- LICENSE.txt
|-- plone
|   |-- __init__.py
|   `-- app
|       |-- __init__.py
|       `-- example
|           |-- __init__.py
|           |-- configure.zcml
|           |-- tests.py
|           `-- version.txt
|-- plone_app.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- requires.txt
|   `-- top_level.txt
|-- setup.cfg
`-- setup.py

5 directories, 21 files

plone_hosting: Plone hosting: buildout with ZEO and any Plone version

Note: This was trimmed down by removing all third-level directories and files.
plone_hosting/
|-- README.txt
|-- base.cfg
|-- bin
|   |-- buildout
|   |-- echo_supervisord_conf
|   |-- instance1
|   |-- memmon
|   |-- pidproxy
|   |-- repozo
|   |-- supervisorctl
|   |-- supervisord
|   |-- zeo
|   |-- zeopack
|   `-- zopepy
|-- bootstrap.py
|-- buildout.cfg
|-- develop-eggs
|   |-- Acquisition.egg-link
|   |-- ClientForm.egg-link
|   |-- DateTime.egg-link
|   |-- ExtensionClass.egg-link
|   |-- Persistence.egg-link
|   |-- RestrictedPython.egg-link
|   |-- ZConfig.egg-link
|   |-- ZODB3.egg-link
|   |-- Zope2.egg-link
|   |-- docutils.egg-link
|   |-- mechanize.egg-link
|   |-- pytz.egg-link
|   |-- tempstorage.egg-link
|   |-- zLOG.egg-link
|   |-- zdaemon.egg-link
|   |-- zodbcode.egg-link
|   |-- zope.annotation.egg-link
|   |-- zope.app.annotation.egg-link
|   |-- zope.app.apidoc.egg-link
|   |-- zope.app.applicationcontrol.egg-link
|   |-- zope.app.appsetup.egg-link
|   |-- zope.app.authentication.egg-link
|   |-- zope.app.basicskin.egg-link
|   |-- zope.app.broken.egg-link
|   |-- zope.app.cache.egg-link
|   |-- zope.app.component.egg-link
|   |-- zope.app.container.egg-link
|   |-- zope.app.content.egg-link
|   |-- zope.app.content_types.egg-link
|   |-- zope.app.copypastemove.egg-link
|   |-- zope.app.datetimeutils.egg-link
|   |-- zope.app.debug.egg-link
|   |-- zope.app.decorator.egg-link
|   |-- zope.app.dependable.egg-link
|   |-- zope.app.dtmlpage.egg-link
|   |-- zope.app.dublincore.egg-link
|   |-- zope.app.egg-link
|   |-- zope.app.error.egg-link
|   |-- zope.app.event.egg-link
|   |-- zope.app.exception.egg-link
|   |-- zope.app.file.egg-link
|   |-- zope.app.filerepresentation.egg-link
|   |-- zope.app.folder.egg-link
|   |-- zope.app.form.egg-link
|   |-- zope.app.ftests.egg-link
|   |-- zope.app.generations.egg-link
|   |-- zope.app.http.egg-link
|   |-- zope.app.i18n.egg-link
|   |-- zope.app.interface.egg-link
|   |-- zope.app.intid.egg-link
|   |-- zope.app.introspector.egg-link
|   |-- zope.app.keyreference.egg-link
|   |-- zope.app.layers.egg-link
|   |-- zope.app.locales.egg-link
|   |-- zope.app.location.egg-link
|   |-- zope.app.mail.egg-link
|   |-- zope.app.onlinehelp.egg-link
|   |-- zope.app.pagetemplate.egg-link
|   |-- zope.app.preference.egg-link
|   |-- zope.app.preview.egg-link
|   |-- zope.app.principalannotation.egg-link
|   |-- zope.app.publication.egg-link
|   |-- zope.app.publisher.egg-link
|   |-- zope.app.rdb.egg-link
|   |-- zope.app.renderer.egg-link
|   |-- zope.app.rotterdam.egg-link
|   |-- zope.app.schema.egg-link
|   |-- zope.app.security.egg-link
|   |-- zope.app.servicenames.egg-link
|   |-- zope.app.session.egg-link
|   |-- zope.app.site.egg-link
|   |-- zope.app.size.egg-link
|   |-- zope.app.skins.egg-link
|   |-- zope.app.sqlscript.egg-link
|   |-- zope.app.testing.egg-link
|   |-- zope.app.tests.egg-link
|   |-- zope.app.timezones.egg-link
|   |-- zope.app.traversing.egg-link
|   |-- zope.app.tree.egg-link
|   |-- zope.app.undo.egg-link
|   |-- zope.app.wfmc.egg-link
|   |-- zope.app.wsgi.egg-link
|   |-- zope.app.zapi.egg-link
|   |-- zope.app.zopeappgenerations.egg-link
|   |-- zope.app.zptpage.egg-link
|   |-- zope.cachedescriptors.egg-link
|   |-- zope.component.egg-link
|   |-- zope.configuration.egg-link
|   |-- zope.contentprovider.egg-link
|   |-- zope.contenttype.egg-link
|   |-- zope.copypastemove.egg-link
|   |-- zope.datetime.egg-link
|   |-- zope.decorator.egg-link
|   |-- zope.deferredimport.egg-link
|   |-- zope.deprecation.egg-link
|   |-- zope.documenttemplate.egg-link
|   |-- zope.dottedname.egg-link
|   |-- zope.dublincore.egg-link
|   |-- zope.event.egg-link
|   |-- zope.exceptions.egg-link
|   |-- zope.filerepresentation.egg-link
|   |-- zope.formlib.egg-link
|   |-- zope.hookable.egg-link
|   |-- zope.i18n.egg-link
|   |-- zope.i18nmessageid.egg-link
|   |-- zope.index.egg-link
|   |-- zope.interface.egg-link
|   |-- zope.lifecycleevent.egg-link
|   |-- zope.location.egg-link
|   |-- zope.modulealias.egg-link
|   |-- zope.pagetemplate.egg-link
|   |-- zope.proxy.egg-link
|   |-- zope.publisher.egg-link
|   |-- zope.rdb.egg-link
|   |-- zope.schema.egg-link
|   |-- zope.security.egg-link
|   |-- zope.sendmail.egg-link
|   |-- zope.server.egg-link
|   |-- zope.size.egg-link
|   |-- zope.structuredtext.egg-link
|   |-- zope.tal.egg-link
|   |-- zope.tales.egg-link
|   |-- zope.testbrowser.egg-link
|   |-- zope.testing.egg-link
|   |-- zope.thread.egg-link
|   |-- zope.traversing.egg-link
|   |-- zope.viewlet.egg-link
|   `-- zope.wfmc.egg-link
|-- downloads
|   |-- ATContentTypes-1.2.5.tgz
|   |-- ATReferenceBrowserWidget-2.0.2.tar.gz
|   |-- AdvancedQuery.tgz
|   |-- Archetypes-1.5.9.tar.gz
|   |-- CMF-2.1.1.tar.gz
|   |-- CMFDiffTool-0.3.6.tgz
|   |-- CMFDynamicViewFTI-3.0.2.tar.gz
|   |-- CMFEditions-1.1.7.tgz
|   |-- CMFFormController-2.1.2.tar.gz
|   |-- CMFQuickInstallerTool-2.1.6.tar.gz
|   |-- CMFTestCase-0.9.7.tar.gz
|   |-- ExtendedPathIndex-2.4.tgz
|   |-- ExternalEditor-0.9.3-src.tgz
|   |-- GenericSetup-1.4.1.tar.gz
|   |-- NuPlone-1.0b2.tar.gz
|   |-- PasswordResetTool-1.1.tar.gz
|   |-- PlacelessTranslationService-1.4.12.tar.gz
|   |-- PloneBase-3.1.4.tar.gz
|   |-- PloneLanguageTool-2.0.3.tar.gz
|   |-- PlonePAS-3.6.tar.gz
|   |-- PloneTestCase-0.9.7.tar.gz
|   |-- PloneTranslations-3.1.3.tar.gz
|   |-- PluggableAuthService-1.5.3.tar.gz
|   |-- PluginRegistry-1.1.2.tar.gz
|   |-- SecureMailHost-1.1.tar.gz
|   |-- Zope-2.10.6-final.tgz
|   |-- ZopeVersionControl-0.3.4.tar.gz
|   |-- cmfplacefulworkflow-1-3-1.tgz
|   |-- groupuserfolder-3-55-1.tgz
|   |-- kupu-1-4-11.tgz
|   |-- resourceregistries-1-4-2.tgz
|   `-- statusmessages-3.0.3-tar.gz
|-- eggs
|   |-- archetypes.kss-1.4-py2.4.egg
|   |-- borg.localrole-2.0.0-py2.4.egg
|   |-- collective.recipe.template-1.2-py2.4.egg
|   |-- elementtree-1.2.6_20050316-py2.4.egg
|   |-- five.customerize-0.3-py2.4.egg
|   |-- five.localsitemanager-0.3-py2.4.egg
|   |-- kss.core-1.4.1-py2.4.egg
|   |-- kss.demo-1.4.1-py2.4.egg
|   |-- medusa-0.5.4-py2.4.egg
|   |-- meld3-0.6.5-py2.4.egg
|   |-- plone.app.content-1.3-py2.4.egg
|   |-- plone.app.contentmenu-1.1.3-py2.4.egg
|   |-- plone.app.contentrules-1.1.0-py2.4.egg
|   |-- plone.app.controlpanel-1.1.1-py2.4.egg
|   |-- plone.app.customerize-1.1.2-py2.4.egg
|   |-- plone.app.form-1.1.0-py2.4.egg
|   |-- plone.app.i18n-1.0.4-py2.4.egg
|   |-- plone.app.iterate-1.1.0-py2.4.egg
|   |-- plone.app.kss-1.4.1-py2.4.egg
|   |-- plone.app.layout-1.1.3-py2.4.egg
|   |-- plone.app.linkintegrity-1.0.10-py2.4.egg
|   |-- plone.app.openid-1.0.3-py2.4.egg
|   |-- plone.app.portlets-1.1.3-py2.4.egg
|   |-- plone.app.redirector-1.0.9-py2.4.egg
|   |-- plone.app.viewletmanager-1.2-py2.4.egg
|   |-- plone.app.vocabularies-1.0.4-py2.4.egg
|   |-- plone.app.workflow-1.1.4-py2.4.egg
|   |-- plone.browserlayer-1.0.0-py2.4.egg
|   |-- plone.contentrules-1.1.0-py2.4.egg
|   |-- plone.fieldsets-1.0.2-py2.4.egg
|   |-- plone.i18n-1.0.5-py2.4.egg
|   |-- plone.intelligenttext-1.0.1-py2.4.egg
|   |-- plone.keyring-1.2-py2.4.egg
|   |-- plone.locking-1.0.5-py2.4.egg
|   |-- plone.memoize-1.0.4-py2.4.egg
|   |-- plone.openid-1.1-py2.4.egg
|   |-- plone.portlet.collection-1.1.3-py2.4.egg
|   |-- plone.portlet.static-1.1.2-py2.4.egg
|   |-- plone.portlets-1.1.0-py2.4.egg
|   |-- plone.protect-1.1-py2.4.egg
|   |-- plone.recipe.distros-1.3-py2.4.egg
|   |-- plone.recipe.plone-3.1.4-py2.4.egg
|   |-- plone.recipe.zope2install-3.0-py2.4.egg
|   |-- plone.recipe.zope2instance-3.0-py2.4.egg
|   |-- plone.recipe.zope2zeoserver-1.2-py2.4.egg
|   |-- plone.session-2.0-py2.4.egg
|   |-- plone.theme-1.0-py2.4.egg
|   |-- python_openid-2.0.1-py2.4.egg
|   |-- setuptools-0.6c9-py2.4.egg
|   |-- supervisor-3.0a6-py2.4.egg
|   |-- wicked-1.1.6-py2.4.egg
|   |-- zc.buildout-1.1.1-py2.4.egg
|   `-- zc.recipe.egg-1.1.0-py2.4.egg
|-- etc
|   |-- logrotate.conf
|   `-- supervisord.conf
|-- fake-eggs
|   |-- Acquisition
|   |-- ClientForm
|   |-- DateTime
|   |-- ExtensionClass
|   |-- Persistence
|   |-- RestrictedPython
|   |-- ZConfig
|   |-- ZODB3
|   |-- Zope2
|   |-- docutils
|   |-- mechanize
|   |-- pytz
|   |-- tempstorage
|   |-- zLOG
|   |-- zdaemon
|   |-- zodbcode
|   |-- zope.annotation
|   |-- zope.app
|   |-- zope.app.annotation
|   |-- zope.app.apidoc
|   |-- zope.app.applicationcontrol
|   |-- zope.app.appsetup
|   |-- zope.app.authentication
|   |-- zope.app.basicskin
|   |-- zope.app.broken
|   |-- zope.app.cache
|   |-- zope.app.component
|   |-- zope.app.container
|   |-- zope.app.content
|   |-- zope.app.content_types
|   |-- zope.app.copypastemove
|   |-- zope.app.datetimeutils
|   |-- zope.app.debug
|   |-- zope.app.decorator
|   |-- zope.app.dependable
|   |-- zope.app.dtmlpage
|   |-- zope.app.dublincore
|   |-- zope.app.error
|   |-- zope.app.event
|   |-- zope.app.exception
|   |-- zope.app.file
|   |-- zope.app.filerepresentation
|   |-- zope.app.folder
|   |-- zope.app.form
|   |-- zope.app.ftests
|   |-- zope.app.generations
|   |-- zope.app.http
|   |-- zope.app.i18n
|   |-- zope.app.interface
|   |-- zope.app.intid
|   |-- zope.app.introspector
|   |-- zope.app.keyreference
|   |-- zope.app.layers
|   |-- zope.app.locales
|   |-- zope.app.location
|   |-- zope.app.mail
|   |-- zope.app.onlinehelp
|   |-- zope.app.pagetemplate
|   |-- zope.app.preference
|   |-- zope.app.preview
|   |-- zope.app.principalannotation
|   |-- zope.app.publication
|   |-- zope.app.publisher
|   |-- zope.app.rdb
|   |-- zope.app.renderer
|   |-- zope.app.rotterdam
|   |-- zope.app.schema
|   |-- zope.app.security
|   |-- zope.app.servicenames
|   |-- zope.app.session
|   |-- zope.app.site
|   |-- zope.app.size
|   |-- zope.app.skins
|   |-- zope.app.sqlscript
|   |-- zope.app.testing
|   |-- zope.app.tests
|   |-- zope.app.timezones
|   |-- zope.app.traversing
|   |-- zope.app.tree
|   |-- zope.app.undo
|   |-- zope.app.wfmc
|   |-- zope.app.wsgi
|   |-- zope.app.zapi
|   |-- zope.app.zopeappgenerations
|   |-- zope.app.zptpage
|   |-- zope.cachedescriptors
|   |-- zope.component
|   |-- zope.configuration
|   |-- zope.contentprovider
|   |-- zope.contenttype
|   |-- zope.copypastemove
|   |-- zope.datetime
|   |-- zope.decorator
|   |-- zope.deferredimport
|   |-- zope.deprecation
|   |-- zope.documenttemplate
|   |-- zope.dottedname
|   |-- zope.dublincore
|   |-- zope.event
|   |-- zope.exceptions
|   |-- zope.filerepresentation
|   |-- zope.formlib
|   |-- zope.hookable
|   |-- zope.i18n
|   |-- zope.i18nmessageid
|   |-- zope.index
|   |-- zope.interface
|   |-- zope.lifecycleevent
|   |-- zope.location
|   |-- zope.modulealias
|   |-- zope.pagetemplate
|   |-- zope.proxy
|   |-- zope.publisher
|   |-- zope.rdb
|   |-- zope.schema
|   |-- zope.security
|   |-- zope.sendmail
|   |-- zope.server
|   |-- zope.size
|   |-- zope.structuredtext
|   |-- zope.tal
|   |-- zope.tales
|   |-- zope.testbrowser
|   |-- zope.testing
|   |-- zope.thread
|   |-- zope.traversing
|   `-- zope.viewlet
|-- parts
|   |-- instance1
|   |-- plone
|   |-- productdistros
|   |-- zeo
|   `-- zope2
|-- products
|   `-- README.txt
|-- src
|   `-- README.txt
|-- templates
|   `-- logrotate.conf
`-- var
    |-- README.txt
    |-- filestorage
    |-- instance1
    `-- log

1997 directories, 18875 files

plone_pas: A Plone PAS project

plone_pas/
|-- README.txt
|-- docs
|   |-- CHANGES.txt
|   |-- CONTRIBUTORS.txt
|   |-- HISTORY.txt
|   |-- INSTALL.txt
|   |-- LICENSE.GPL
|   |-- LICENSE.txt
|   `-- README.txt
|-- plone
|   |-- __init__.py
|   `-- pas
|       |-- __init__.py
|       `-- example
|           |-- README.txt
|           |-- __init__.py
|           |-- browser
|           |   |-- __init__.py
|           |   |-- add_plugin.zpt
|           |   |-- configure.zcml
|           |   `-- icon.gif
|           |-- configure.zcml
|           |-- install.py
|           |-- interface.py
|           |-- plugin.py
|           |-- plugins
|           |   `-- __init__.py
|           `-- tests.py
|-- plone_pas.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- paster_plugins.txt
|   |-- requires.txt
|   `-- top_level.txt
|-- setup.cfg
`-- setup.py

7 directories, 33 files

recipe: A recipe project for zc.buildout

recipe/
|-- CHANGES.txt
|-- CONTRIBUTORS.txt
|-- README.txt
|-- bootstrap.py
|-- buildout.cfg
|-- plone
|   |-- __init__.py
|   `-- recipe
|       |-- __init__.py
|       `-- example
|           |-- README.txt
|           |-- __init__.py
|           `-- tests
|               |-- __init__.py
|               `-- test_docs.py
|-- recipe.egg-info
|   |-- PKG-INFO
|   |-- SOURCES.txt
|   |-- dependency_links.txt
|   |-- entry_points.txt
|   |-- namespace_packages.txt
|   |-- not-zip-safe
|   |-- requires.txt
|   `-- top_level.txt
|-- setup.cfg
`-- setup.py

5 directories, 21 files

silva_buildout: A buildout for Silva projects

silva_buildout/
|-- README.txt
|-- bootstrap.py
|-- buildout.cfg
|-- products
|   `-- README.txt
|-- src
|   `-- README.txt
`-- var
    `-- README.txt

3 directories, 6 files

zope2_buildout: A buildout to create a blank Zope 2 instance

zope2_buildout/
|-- README.txt
|-- bootstrap.py
|-- buildout.cfg
|-- products
|   `-- README.txt
|-- src
|   `-- README.txt
`-- var
    `-- README.txt

3 directories, 6 files

Contribute

Something wrong or out of date? Anybody can edit or create a new article in the knowledge base. Simply create an account on this site, log in, and click the Edit button to contribute.