[Checkins] SVN: zopetoolkit/ Merged the ccomb branch into trunk

Hanno Schlichting hannosch at hannosch.eu
Sat Jun 26 05:57:56 EDT 2010


Log message for revision 113868:
  Merged the ccomb branch into trunk
  

Changed:
  D   zopetoolkit/branches/ccomb/
  U   zopetoolkit/trunk/README.txt
  U   zopetoolkit/trunk/buildout.cfg
  D   zopetoolkit/trunk/checknew.cfg
  D   zopetoolkit/trunk/checknew.py.in
  U   zopetoolkit/trunk/index.rst
  A   zopetoolkit/trunk/zopeapp-versions.cfg
  U   zopetoolkit/trunk/zopeapp.cfg
  A   zopetoolkit/trunk/ztk-versions.cfg
  U   zopetoolkit/trunk/ztk.cfg

-=-
Modified: zopetoolkit/trunk/README.txt
===================================================================
--- zopetoolkit/trunk/README.txt	2010-06-26 09:41:47 UTC (rev 113867)
+++ zopetoolkit/trunk/README.txt	2010-06-26 09:57:56 UTC (rev 113868)
@@ -10,8 +10,8 @@
 packages which are under review for inclusion.
 
 Also, specific versions have been tested together (including their
-dependencies) and can directly be used with a buildout by specifying this file
-via the ``extends`` mechanism.
+dependencies) and can directly be used with a buildout by specifying the
+``ztk-versions.cfg`` file via the ``extends`` mechanism.
 
 To test the ZTK, run ``bin/test-ztk``.
 
@@ -23,43 +23,11 @@
 Transition support
 ------------------
 
-The libraries now maintained in the Zope Toolkit were previously
-organized differently. Much code now maintained as part of the Zope
-Toolkit was originally part of a set of packages in the ``zope.app.``
-namespace. This code could in the past only be used by importing from
-``zope.app.*`` packages, but has since been extracted into ``zope.*``
-libraries to make it more reusable, and to leave old largely unused
-code behind in ``zope.app.*``.
+For a limited period of time, we maintain a second set of versions in the
+``zopeapp.cfg`` set. This transition support should help existing applications
+to move to the Zope Toolkit. You can extend from the ``zopeapp-versions.cfg``
+via the buildout extends mechanism.
 
-If you are a developer of an application or a framework that makes use
-of the libraries now maintained within the Zope Toolkit, you need a
-way to transition your code to the Zope Toolkit. The first step would
-be to use ``ztk.cfg``, but you likely still have imports to
-``zope.app.*`` that you need to update. The ``zopeapp.cfg`` file allows
-you to build and test your application during this conversion process.
+To test the Zope App set, run ``bin/test-zopeapp``.
 
-The ``zopeapp.cfg`` package set is equivalent to the core ``ztk.cfg`` set,
-in that it offers a controlled set of ZTK compatible ``zope.app.*`` packages.
-To help you transition your code, you can update your ``buildout.cfg`` to
-extend both ``ztk.cfg`` and ``zopeapp.cfg``.
-
-After doing this, we highly recommend you to change your code's
-imports from from ``zope.app.*`` to the new places in ``zope.*``
-wherever possible. The package's changelogs should contain information
-as to where things are moved.  If not, try inspecting the module you
-are importing from - the equivalent imports to ``zope.*`` are likely
-there.
-
-It may be that you are not able to change all your imports to ``zope.*``.
-We would like to hear from you where this is not possible. We are
-deliberately leaving old UI code behind in ``zope.app.*``, but it may be
-we need to extract some more code into a more reusable form.
-
-The transition support and ``zope.app.*`` support is limited: the zopeapp
-legacy support will be officially retired from the ZTK after january
-1, 2011.
-
-Unless maintainers step up for some of these packages, compatibility updates
-for most of these packages will also likely end. You are of course still
-free to use older versions, but we highly recommend you upgrade your code to
-the ZTK to receive the benefits of our continued maintenance efforts.
+For more details read the ZTK 1.0 release notes.

Modified: zopetoolkit/trunk/buildout.cfg
===================================================================
--- zopetoolkit/trunk/buildout.cfg	2010-06-26 09:41:47 UTC (rev 113867)
+++ zopetoolkit/trunk/buildout.cfg	2010-06-26 09:57:56 UTC (rev 113868)
@@ -1,37 +1,52 @@
 [buildout]
+extends =
+    ztk.cfg
+    zopeapp.cfg
+
 parts =
     test-ztk
     test-zopeapp
     depgraph
+    checkversions
+
 extensions = mr.developer
-extends =
-    ztk.cfg
-    zopeapp.cfg
+
+allow-picked-versions = false
 versions = versions
-allow-picked-versions = false
 
 [versions]
+# versions for additional tools
+argparse = 1.1
 infrae.subversion = 1.4.5
 tl.eggdeps = 0.4
 z3c.recipe.compattest = 0.12.1
 z3c.recipe.depgraph = 0.5
-mr.developer = 1.10
+z3c.checkversions = 0.2
+mr.developer = 1.14
 # needed by mr.developer with python 2.4:
 # we can upgrade to 1.2.7 as soon as it is released
 elementtree = 1.2.6-20050316
 
 [test-ztk]
+# individual test runners for the ztk
 recipe = z3c.recipe.compattest
 include = ${ztk:packages}
 
 [test-zopeapp]
+# individual test runners for zopeapp
 recipe = z3c.recipe.compattest
 include = ${zopeapp:packages}
 
 [depgraph]
+# script to check dependencies
 recipe = z3c.recipe.depgraph
 eggs = ${ztk:packages}
        ${zopeapp:packages}
 extras = True
 variants = base 
            scc
+
+[checkversions]
+# script to find newer versions
+recipe = zc.recipe.egg
+eggs = z3c.checkversions [buildout]

Deleted: zopetoolkit/trunk/checknew.cfg
===================================================================
--- zopetoolkit/trunk/checknew.cfg	2010-06-26 09:41:47 UTC (rev 113867)
+++ zopetoolkit/trunk/checknew.cfg	2010-06-26 09:57:56 UTC (rev 113868)
@@ -1,23 +0,0 @@
-# to use it:
-# bin/buildout -c checknew.cfg
-# bin/python checknew.py
-
-[buildout]
-extends = buildout.cfg
-parts += check interpreter
-
-[check]
-recipe = collective.recipe.template
-input = checknew.py.in
-output = checknew.py
-
-[interpreter]
-recipe = zc.recipe.egg
-eggs =
-    ${ztk:packages}
-    ${ztk:unresolved-dependencies}
-    ${zopeapp:packages}
-interpreter = python
-
-[versions]
-collective.recipe.template = 1.4

Deleted: zopetoolkit/trunk/checknew.py.in
===================================================================
--- zopetoolkit/trunk/checknew.py.in	2010-06-26 09:41:47 UTC (rev 113867)
+++ zopetoolkit/trunk/checknew.py.in	2010-06-26 09:57:56 UTC (rev 113868)
@@ -1,58 +0,0 @@
-import sys
-
-
-def main():
-    import pkg_resources
-    from pkg_resources import parse_requirements
-    from setuptools.package_index import PackageIndex
-
-    import socket
-    print 'Setting socket time out to %d seconds' % 3
-    socket.setdefaulttimeout(3)
-
-    eggs = """${interpreter:eggs}"""
-    ws = pkg_resources.require(eggs.split())
-    pi = PackageIndex()
-
-    names = []
-    installed = []
-    for dist in ws:
-        name = dist.project_name
-        if name not in names:
-            names.append(name)
-            installed.append(dict(
-                dist=dist,
-                name=name,
-                req=parse_requirements(name).next(),
-                ))
-
-    def _key(value):
-        return value['name']
-    installed.sort(key=_key)
-
-    upgrade = False
-    for info in installed:
-        print("Checking for new version of %s." % info['name'])
-        new_dist = pi.obtain(info['req'])
-        if new_dist.parsed_version > info['dist'].parsed_version:
-            upgrade = True
-            print()
-            print("Newer version for %s found. Installed: %s - found: %s" %
-                (info['name'], info['dist'].version, new_dist.version))
-            print("Newer version available at: %s" % new_dist.location)
-            print()
-
-    if not upgrade:
-        print("No updates have been found. All packages use current versions.")
-
-
-def help():
-    print("Use this script via ./bin/instance-py checknew.py")
-
-
-if __name__ == '__main__':
-    args = sys.argv[1:]
-    if '--help' in args:
-        help()
-    else:
-        main()

Modified: zopetoolkit/trunk/index.rst
===================================================================
--- zopetoolkit/trunk/index.rst	2010-06-26 09:41:47 UTC (rev 113867)
+++ zopetoolkit/trunk/index.rst	2010-06-26 09:57:56 UTC (rev 113868)
@@ -33,9 +33,12 @@
 indirect dependencies; if you see an import error this is probably the
 case.
 
-We recommend you update your existing code to import from the new
-packages if possible. We list major changes below.
+We recommend you update your existing code to import from the new packages if
+possible. The transition support and ``zope.app.*`` support is limited: the
+legacy support will be officially retired from the ZTK after January 1,
+2011.
 
+
 Migration issues
 ----------------
 

Copied: zopetoolkit/trunk/zopeapp-versions.cfg (from rev 113867, zopetoolkit/branches/ccomb/zopeapp-versions.cfg)
===================================================================
--- zopetoolkit/trunk/zopeapp-versions.cfg	                        (rev 0)
+++ zopetoolkit/trunk/zopeapp-versions.cfg	2010-06-26 09:57:56 UTC (rev 113868)
@@ -0,0 +1,67 @@
+[versions]
+# ZOPEAPP
+zope.app.apidoc = 3.7.2
+zope.app.applicationcontrol = 3.5.5
+zope.app.appsetup = 3.14.0
+zope.app.authentication = 3.7.1
+zope.app.basicskin = 3.5.0
+zope.app.broken = 3.5.0
+zope.app.cache = 3.7.0
+zope.app.catalog = 3.8.1
+zope.app.component = 3.8.4
+zope.app.container = 3.8.2
+zope.app.content = 3.4.0
+zope.app.dav = 3.5.3
+zope.app.debug = 3.4.1
+zope.app.dependable = 3.5.1
+zope.app.error = 3.5.2
+zope.app.exception = 3.6.1
+zope.app.file = 3.5.1
+zope.app.folder = 3.5.1
+zope.app.form = 4.0.2
+zope.app.ftp = 3.5.0
+zope.app.generations = 3.5.1
+zope.app.http = 3.8.0
+zope.app.i18n = 3.6.2
+zope.app.interface = 3.5.0
+zope.app.interpreter = 3.4.0
+zope.app.intid = 3.7.1
+zope.app.keyreference = 3.6.1
+zope.app.locales = 3.6.1
+zope.app.localpermission = 3.7.2
+zope.app.locking = 3.5.0
+zope.app.onlinehelp = 3.5.2
+zope.app.pagetemplate = 3.11.0
+zope.app.preference = 3.8.1
+zope.app.preview = 3.4.0
+zope.app.principalannotation = 3.7.0
+zope.app.publication = 3.11.1
+zope.app.publisher = 3.10.1
+zope.app.renderer = 3.5.1
+zope.app.rotterdam = 3.5.1
+zope.app.schema = 3.5.0
+zope.app.security = 3.7.5
+zope.app.securitypolicy = 3.5.2
+zope.app.server = 3.5.0
+zope.app.session = 3.6.1
+zope.app.skins = 3.4.0
+zope.app.testing = 3.7.5
+zope.app.tree = 3.6.0
+zope.app.twisted = 3.5.0
+zope.app.undo = 3.5.0
+zope.app.wsgi = 3.9.2
+zope.app.zcmlfiles = 3.7.0
+zope.app.zopeappgenerations = 3.5.0
+zope.app.zptpage = 3.5.1
+roman = 1.4.0
+zc.sourcefactory = 0.6.0
+zodbcode = 3.4.0
+zope.file = 0.5.0
+zope.html = 2.1.0
+zope.modulealias = 3.4.0
+zope.preference = 3.8.0
+zope.testbrowser = 3.9.0
+zope.thread = 3.4
+zope.xmlpickle = 3.4.0
+wsgi-intercept = 0.4
+zope.rdb = 3.5.0

Modified: zopetoolkit/trunk/zopeapp.cfg
===================================================================
--- zopetoolkit/trunk/zopeapp.cfg	2010-06-26 09:41:47 UTC (rev 113867)
+++ zopetoolkit/trunk/zopeapp.cfg	2010-06-26 09:57:56 UTC (rev 113868)
@@ -1,4 +1,4 @@
-# Copyright (c) 2009 Zope Foundation and Contributors.
+# Copyright (c) 2010 Zope Foundation and Contributors.
 #
 # This is the specification file for the transitional zope.app.* packages
 
@@ -48,7 +48,7 @@
   zope.app.securitypolicy
   zope.app.server
   zope.app.session
-#  zope.app.skins
+  zope.app.skins
   zope.app.testing
   zope.app.tree
   zope.app.twisted
@@ -57,80 +57,20 @@
   zope.app.zcmlfiles
   zope.app.zopeappgenerations
   zope.app.zptpage
+  # zope.testbrowser - test fail under Python 2.4
 
+# These packages will be removed in the next version
+deprecating =
+
 packages = ${zopeapp:included}
+           ${zopeapp:deprecating}
 
+
 [buildout]
+extends = zopeapp-versions.cfg
 versions = versions
 
-[versions]
-zope.app.apidoc = 3.7.2
-zope.app.applicationcontrol = 3.5.5
-zope.app.appsetup = 3.14.0
-zope.app.authentication = 3.7.1
-zope.app.basicskin = 3.5.0
-zope.app.broken = 3.5.0
-zope.app.cache = 3.7.0
-zope.app.catalog = 3.8.1
-zope.app.component = 3.8.4
-zope.app.container = 3.8.2
-zope.app.content = 3.4.0
-zope.app.dav = 3.5.3
-zope.app.debug = 3.4.1
-zope.app.dependable = 3.5.1
-zope.app.error = 3.5.2
-zope.app.exception = 3.6.1
-zope.app.file = 3.5.1
-zope.app.folder = 3.5.1
-zope.app.form = 4.0.2
-zope.app.ftp = 3.5.0
-zope.app.generations = 3.5.1
-zope.app.http = 3.8.0
-zope.app.i18n = 3.6.2
-zope.app.interface = 3.5.0
-zope.app.interpreter = 3.4.0
-zope.app.intid = 3.7.1
-zope.app.keyreference = 3.6.1
-zope.app.locales = 3.6.1
-zope.app.localpermission = 3.7.2
-zope.app.locking = 3.5.0
-zope.app.onlinehelp = 3.5.2
-zope.app.pagetemplate = 3.11.0
-zope.app.preference = 3.8.1
-zope.app.preview = 3.4.0
-zope.app.principalannotation = 3.7.0
-zope.app.publication = 3.11.1
-zope.app.publisher = 3.10.1
-zope.app.renderer = 3.5.1
-zope.app.rotterdam = 3.5.1
-zope.app.schema = 3.5.0
-zope.app.security = 3.7.5
-zope.app.securitypolicy = 3.5.2
-zope.app.server = 3.5.0
-zope.app.session = 3.6.1
-zope.app.skins = 3.4.0
-zope.app.testing = 3.7.4
-zope.app.tree = 3.6.0
-zope.app.twisted = 3.5.0
-zope.app.undo = 3.5.0
-zope.app.wsgi = 3.9.2
-zope.app.zcmlfiles = 3.7.0
-zope.app.zopeappgenerations = 3.5.0
-zope.app.zptpage = 3.5.1
 
-# Dependencies:
-
-roman = 1.4.0
-zc.sourcefactory = 0.6.0
-zodbcode = 3.4.0
-zope.preference = 3.8.0
-zope.thread = 3.4
-wsgi-intercept = 0.4
-
-# Not a dependency:
-
-zope.rdb = 3.5.0
-
 [sources]
 # Development branches of packages of *this* ZTK version.
 # (currently trunks, but should evolve to maintenance branches)
@@ -188,3 +128,4 @@
 zope.app.zcmlfiles = svn svn+ssh://svn.zope.org/repos/main/zope.app.zcmlfiles/trunk
 zope.app.zopeappgenerations = svn svn+ssh://svn.zope.org/repos/main/zope.app.zopeappgenerations/trunk
 zope.app.zptpage = svn svn+ssh://svn.zope.org/repos/main/zope.app.zptpage/trunk
+zope.testbrowser = svn svn+ssh://svn.zope.org/repos/main/zope.testbrowser/trunk

Copied: zopetoolkit/trunk/ztk-versions.cfg (from rev 113867, zopetoolkit/branches/ccomb/ztk-versions.cfg)
===================================================================
--- zopetoolkit/trunk/ztk-versions.cfg	                        (rev 0)
+++ zopetoolkit/trunk/ztk-versions.cfg	2010-06-26 09:57:56 UTC (rev 113868)
@@ -0,0 +1,102 @@
+[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.1
+zope.component = 3.9.4
+zope.componentvocabulary = 1.0
+zope.configuration = 3.7.2
+zope.container = 3.11.1
+zope.contentprovider = 3.7.2
+zope.contenttype = 3.5.1
+zope.copy = 3.5.0
+zope.copypastemove = 3.6.0
+zope.datetime = 3.4.0
+zope.deferredimport = 3.5.2
+zope.deprecation = 3.4.0
+zope.documenttemplate = 3.4.2
+zope.dottedname = 3.4.6
+zope.dublincore = 3.6.0
+zope.error = 3.7.0
+zope.event = 3.5.0-1
+zope.exceptions = 3.6.0
+zope.filerepresentation = 3.6.0
+zope.formlib = 4.0.3
+zope.hookable = 3.4.1
+zope.i18n = 3.7.3
+zope.i18nmessageid = 3.5.2
+zope.index = 3.6.0
+zope.interface = 3.6.1
+zope.intid = 3.7.2
+zope.keyreference = 3.6.2
+zope.lifecycleevent = 3.6.1
+zope.location = 3.9.0
+zope.login = 1.0.0
+zope.mimetype = 1.3.0
+zope.minmax = 1.1.2
+zope.pagetemplate = 3.5.1
+zope.password = 3.6.1
+zope.pluggableauth = 1.0.1
+zope.principalannotation = 3.6.1
+zope.principalregistry = 3.7.0
+zope.processlifetime = 1.0
+zope.proxy = 3.6.0
+zope.ptresource = 3.9.0
+zope.publisher = 3.12.3
+zope.ramcache = 1.0
+zope.schema = 3.6.4
+zope.security = 3.7.3
+zope.securitypolicy = 3.6.1
+zope.sendmail = 3.7.2
+zope.sequencesort = 3.4.0
+zope.server = 3.6.2
+zope.session = 3.9.2
+zope.site = 3.9.1
+zope.size = 3.4.1
+zope.structuredtext = 3.5.0
+zope.tal = 3.5.2
+zope.tales = 3.5.1
+zope.testing = 3.9.4
+zope.traversing = 3.12.1
+zope.viewlet = 3.7.2
+
+# Dependencies:
+
+distribute = 0.6.13
+docutils = 0.6
+Jinja2 = 2.5
+mechanize = 0.2.1
+py = 1.3.1
+Pygments = 1.3.1
+python-gettext = 1.0
+pytz = 2010h
+RestrictedPython = 3.5.1
+setuptools = 0.6c11
+Sphinx = 1.0b2
+transaction = 1.1.0
+z3c.recipe.sphinxdoc = 0.0.8
+zc.buildout = 1.4.3
+zc.lockfile = 1.0.0
+ZConfig = 2.8.0
+zc.recipe.egg = 1.2.2
+zc.recipe.testrunner = 1.2.0
+zc.resourcelibrary = 1.3.1
+zdaemon = 2.0.4
+ZODB3 = 3.9.5
+zope.mkzeoinstance = 3.9.4
+
+# Not a dependency:
+
+lxml = 2.2.6
+
+# Other:
+
+zope.kgs = 1.2.0
+

Modified: zopetoolkit/trunk/ztk.cfg
===================================================================
--- zopetoolkit/trunk/ztk.cfg	2010-06-26 09:41:47 UTC (rev 113867)
+++ zopetoolkit/trunk/ztk.cfg	2010-06-26 09:57:56 UTC (rev 113868)
@@ -1,10 +1,11 @@
-# Copyright (c) 2009 Zope Foundation and Contributors.
+# Copyright (c) 2010 Zope Foundation and Contributors.
 #
 # This is the specification file for the Zope Toolkit.
 
 [ztk]
 version = 1.0dev
 
+# The core ZTK packages
 included =
   zope.annotation
   zope.applicationcontrol
@@ -45,6 +46,7 @@
   zope.lifecycleevent
   zope.location
   zope.login
+  zope.mimetype
   zope.minmax
   zope.pagetemplate
   zope.password
@@ -72,133 +74,19 @@
   zope.traversing
   zope.viewlet
 
-under-review =
-  zope.modulealias
-  zope.xmlpickle
+# These packages will be removed in the next version
+deprecating =
 
-# These packages have dependencies outside the ZTK itself, most notably
-# on zope.app packages. Once their dependencies are cleaned up, they can
-# become part of the ZTK again.
-unresolved-dependencies =
-  zope.file
-  zope.html
-  zope.mimetype
-  zope.testbrowser
 
-packages = ${ztk:included} ${ztk:under-review}
+packages = ${ztk:included}
+           ${ztk:deprecating}
 
+
 [buildout]
+extends = ztk-versions.cfg
 versions = versions
 
-[versions]
-zope.annotation = 3.5.0
-zope.applicationcontrol = 3.5.5
-zope.authentication = 3.7.0
-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.0
-zope.catalog = 3.8.1
-zope.component = 3.9.4
-zope.componentvocabulary = 1.0
-zope.configuration = 3.7.2
-zope.container = 3.11.1
-zope.contentprovider = 3.7.2
-zope.contenttype = 3.5.1
-zope.copy = 3.5.0
-zope.copypastemove = 3.6.0
-zope.datetime = 3.4.0
-zope.deferredimport = 3.5.2
-zope.deprecation = 3.4.0
-zope.documenttemplate = 3.4.2
-zope.dottedname = 3.4.6
-zope.dublincore = 3.6.0
-zope.error = 3.7.0
-zope.event = 3.4.1
-zope.exceptions = 3.6.0
-zope.file = 0.5.0
-zope.filerepresentation = 3.6.0
-zope.formlib = 4.0.3
-zope.hookable = 3.4.1
-zope.html = 2.0.0
-zope.i18n = 3.7.3
-zope.i18nmessageid = 3.5.2
-zope.index = 3.6.0
-zope.interface = 3.6.1
-zope.intid = 3.7.2
-zope.keyreference = 3.6.2
-zope.lifecycleevent = 3.6.1
-zope.location = 3.9.0
-zope.login = 1.0.0
-zope.mimetype = 1.2.0
-zope.minmax = 1.1.2
-zope.pagetemplate = 3.5.1
-zope.password = 3.6.1
-zope.pluggableauth = 1.0.1
-zope.principalannotation = 3.6.1
-zope.principalregistry = 3.7.0
-zope.processlifetime = 1.0
-zope.proxy = 3.6.0
-zope.ptresource = 3.9.0
-zope.publisher = 3.12.3
-zope.ramcache = 1.0
-zope.schema = 3.6.3
-zope.security = 3.7.3
-zope.securitypolicy = 3.6.1
-zope.sendmail = 3.7.2
-zope.sequencesort = 3.4.0
-zope.server = 3.6.1
-zope.session = 3.9.2
-zope.site = 3.9.1
-zope.size = 3.4.1
-zope.structuredtext = 3.5.0
-zope.tal = 3.5.2
-zope.tales = 3.5.1
-zope.testbrowser = 3.9.0
-zope.testing = 3.9.4
-zope.traversing = 3.12.1
-zope.viewlet = 3.7.2
 
-# Under review:
-
-zope.modulealias = 3.4.0
-zope.xmlpickle = 3.4.0
-
-# Dependencies:
-
-distribute = 0.6.10
-docutils = 0.6
-Jinja2 = 2.4.1
-mechanize = 0.2.1
-py = 1.0.0
-Pygments = 1.3.1
-python-gettext = 1.0
-pytz = 2010h
-RestrictedPython = 3.5.1
-setuptools = 0.6c11
-Sphinx = 0.6.5
-transaction = 1.0.1
-z3c.recipe.sphinxdoc = 0.0.8
-zc.buildout = 1.4.3
-zc.lockfile = 1.0.0
-ZConfig = 2.8.0
-zc.recipe.egg = 1.2.2
-zc.recipe.testrunner = 1.2.0
-zc.resourcelibrary = 1.3.1
-zdaemon = 2.0.4
-ZODB3 = 3.9.5
-zope.mkzeoinstance = 3.9.4
-
-# Not a dependency:
-
-lxml = 2.2.4
-
-# Other:
-
-zope.kgs = 1.2.0
-
 [sources]
 # Development branches of packages of *this* ZTK version.
 # (currently trunks, but should evolve to maintenance branches)
@@ -230,11 +118,9 @@
 zope.error = svn svn+ssh://svn.zope.org/repos/main/zope.error/trunk
 zope.event = svn svn+ssh://svn.zope.org/repos/main/zope.event/trunk
 zope.exceptions = svn svn+ssh://svn.zope.org/repos/main/zope.exceptions/trunk
-zope.file = svn svn+ssh://svn.zope.org/repos/main/zope.file/trunk
 zope.filerepresentation = svn svn+ssh://svn.zope.org/repos/main/zope.filerepresentation/trunk
 zope.formlib = svn svn+ssh://svn.zope.org/repos/main/zope.formlib/trunk
 zope.hookable = svn svn+ssh://svn.zope.org/repos/main/zope.hookable/trunk
-zope.html = svn svn+ssh://svn.zope.org/repos/main/zope.html/trunk
 zope.i18n = svn svn+ssh://svn.zope.org/repos/main/zope.i18n/trunk
 zope.i18nmessageid = svn svn+ssh://svn.zope.org/repos/main/zope.i18nmessageid/trunk
 zope.index = svn svn+ssh://svn.zope.org/repos/main/zope.index/trunk
@@ -246,7 +132,6 @@
 zope.login = svn svn+ssh://svn.zope.org/repos/main/zope.login/trunk
 zope.mimetype = svn svn+ssh://svn.zope.org/repos/main/zope.mimetype/trunk
 zope.minmax = svn svn+ssh://svn.zope.org/repos/main/zope.minmax/trunk
-zope.modulealias = svn svn+ssh://svn.zope.org/repos/main/zope.modulealias/trunk
 zope.pagetemplate = svn svn+ssh://svn.zope.org/repos/main/zope.pagetemplate/trunk
 zope.password = svn svn+ssh://svn.zope.org/repos/main/zope.password/trunk
 zope.pluggableauth = svn svn+ssh://svn.zope.org/repos/main/zope.pluggableauth/trunk
@@ -273,4 +158,3 @@
 zope.testbrowser = svn svn+ssh://svn.zope.org/repos/main/zope.testbrowser/trunk
 zope.traversing = svn svn+ssh://svn.zope.org/repos/main/zope.traversing/trunk
 zope.viewlet = svn svn+ssh://svn.zope.org/repos/main/zope.viewlet/trunk
-zope.xmlpickle = svn svn+ssh://svn.zope.org/repos/main/zope.xmlpickle/trunk



More information about the checkins mailing list