summaryrefslogtreecommitdiff
path: root/www/zope3
diff options
context:
space:
mode:
authorwiz <wiz>2006-01-07 13:13:28 +0000
committerwiz <wiz>2006-01-07 13:13:28 +0000
commit124d48f10265a35ca223c4a42d481e95c195418b (patch)
treea817f13adb2791cd7359e5becb1d144d02c854ad /www/zope3
parent4a54a4519fe699dccbc87400b7f4dce812de4704 (diff)
downloadpkgsrc-124d48f10265a35ca223c4a42d481e95c195418b.tar.gz
Update to 3.2.0, from wip/zope3-unstable, provided by Yoshito Komatsu.
Closes PR 32465. Most Important Changes Since 3.1 * The ZServer has been replaced with the Twisted server. The Twisted server supports all that the ZServer supporting has well has HTTP over SSL natively and SFTP (disabled for now because of error handling problems). Also in the future it brings a better chance of other non-HTTP related protocols from being implemented for Zope3, like SMTP-in and IMAP. ZServer is still supported and will be used if you use the --zserver when you run mkzopeinstance. * Added a test browser. The test browser simulates a real Web browser as much as possible as a Python object. This allows us to write functional tests the same way the site would be experienced by the user. This greatly simplifies functional tests, makes documentation better and even helps analyzing usability. And of course, it can be used in functional doctests. * Changed the way returning large results is handled. The response.write method is no longer supported. Applications can now simply return files to the publisher. * Implemented the password managers proposal. Main idea beside the proposal is a standard way to implement password encoders/checkers, see zope.app.authentication.interfaces.IPasswordManager for details. + Added basic password managers: Plain Text, MD5, SHA1. + Support for password managers added for ZCML principals and principals saved in local PrincipalFolers. + Added bin/zpasswd command line script which helps to create ZCML principals. + Password managers support integrated into bin/mkzopeinstance. + New database generation created for convert local principals to new format. * Implemented the language namespace proposal. Now you can override the browser preferred language through the URL, like this: http://site.org/++lang++ru/path Note: If you want to use a custom IUserPreferredLanguages adapter and the ++lang++ feature together you should use zope.app.publisher.browser.CacheableBrowserLanguages adapter as a base class or at least as example. * Implemented a new object introspector. Instead of just providing information of the object's class, the new introspector focuses on providing information that is specific to the instance, such as directly provided interfaces and data, for example attribute values and annotation values. * Implemented the `devmode` switch for `zope.conf`. When turned on a ZCML feature called `devmode` is provided. Packages can then register functionality based on this feature. In Zope 3 itself, the devmode is used to only load the API doc is devmode; turning off the devmode thus closes a potential security hole and increases the start time by more than a second. * addMenuItem directive supports a `layer` attribute. * Added a re-implementation of i18n message IDs (now simply called ``Message``) that is immutable and thus can be treated like unicode strings with respect to security proxying. This implementation will replace the old one in upcoming versions. * Added "test" message catalog for testing i18n. If you specify ++lang++test in a URL, then all translated strings will be translated to [[domain][message_id], as in "[[zope][Preview]]". Text without the domain marker isn't translated. For a complete list of changes see the CHANGES.txt file.
Diffstat (limited to 'www/zope3')
-rw-r--r--www/zope3/MESSAGE11
-rw-r--r--www/zope3/Makefile38
-rw-r--r--www/zope3/Makefile.common12
-rw-r--r--www/zope3/PLIST3198
-rw-r--r--www/zope3/distinfo16
-rw-r--r--www/zope3/files/zope3.sh2
-rw-r--r--www/zope3/files/zss3.sh2
-rw-r--r--www/zope3/package.mk13
-rw-r--r--www/zope3/patches/patch-aa18
-rw-r--r--www/zope3/patches/patch-ab18
-rw-r--r--www/zope3/patches/patch-ac11
-rw-r--r--www/zope3/patches/patch-ad11
12 files changed, 3245 insertions, 105 deletions
diff --git a/www/zope3/MESSAGE b/www/zope3/MESSAGE
index 70168f88348..86001ade57c 100644
--- a/www/zope3/MESSAGE
+++ b/www/zope3/MESSAGE
@@ -1,5 +1,5 @@
===========================================================================
-$NetBSD: MESSAGE,v 1.1.1.1 2005/10/24 02:25:20 minskim Exp $
+$NetBSD: MESSAGE,v 1.2 2006/01/07 13:13:28 wiz Exp $
To run Zope, you need to make a new Zope instance home.
@@ -8,6 +8,9 @@ To run Zope, you need to make a new Zope instance home.
${PREFIX}/bin/mkzopeinstance --dir=${VARBASE}/zope3
+ Additionally, you need to edit ${VARBASE}/zope3/etc/zope.conf
+ if you want to run ZEO client.
+
2) If you want to run ZEO storage server,
please run the following command:
@@ -29,4 +32,10 @@ and edit /etc/rc.conf.
chown -R ${ZOPE3_USER}:${ZOPE3_GROUP} ${VARBASE}/zss3
echo 'zss3_user="${ZOPE3_USER}"' >> /etc/rc.conf
+If you want to run Zope with following protocols, you need to
+install corresponding packages.
+
+ HTTPS: security/py-OpsnSSL
+ SFTP: security/py-amkCrypto
+
===========================================================================
diff --git a/www/zope3/Makefile b/www/zope3/Makefile
index c7327dda4fc..3a74090a7e5 100644
--- a/www/zope3/Makefile
+++ b/www/zope3/Makefile
@@ -1,56 +1,52 @@
-# $NetBSD: Makefile,v 1.5 2005/12/29 06:22:25 jlam Exp $
+# $NetBSD: Makefile,v 1.6 2006/01/07 13:13:28 wiz Exp $
#
-DISTNAME= Zope-3.1.0
-PKGNAME= zope3-3.1.0
+DISTNAME= Zope-3.2.0
+PKGNAME= zope3-3.2.0
CATEGORIES= www
-MASTER_SITES= http://www.zope.org/Products/Zope3/3.1.0final/
+MASTER_SITES= http://www.zope.org/Products/Zope3/3.2.0final/
EXTRACT_SUFX= .tgz
MAINTAINER= ykomatsu@akaumigame.org
HOMEPAGE= http://dev.zope.org/Zope3/
COMMENT= Zope 3 Application Server
-DEPENDS+= ${PYPKGPREFIX}-xml>=0.8.3nb1:../../textproc/py-xml
+DEPENDS+= ${PYPKGPREFIX}-xml>=0.8.4:../../textproc/py-xml
+
+.include "Makefile.common"
+.include "../../mk/bsd.prefs.mk"
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --with-python ${PYTHONBIN} \
- --prefix ${PREFIX}/share/zope3 \
+ --prefix ${ZOPE3_DIR} \
--force
-.include "../../mk/bsd.prefs.mk"
-
.if !empty(MACHINE_PLATFORM:MNetBSD-1.[0-6]*)
EXTRACT_USING= gtar
.endif
BUILD_TARGET= build
+#USE_PKGINSTALL= yes
RCD_SCRIPTS= zope3 zss3
-ZOPE3_GROUP?= zope3
-ZOPE3_USER?= zope3
PKG_GROUPS= ${ZOPE3_GROUP}
PKG_USERS= ${ZOPE3_USER}:${ZOPE3_GROUP}::Zope3\ user
-PYTHON_VERSIONS_ACCEPTED= 24 23
-
-MESSAGE_SUBST+= ZOPE3_USER=${ZOPE3_USER} ZOPE3_GROUP=${ZOPE3_GROUP} \
- VARBASE=${VARBASE}
-
-ZOPE3_DOCDIR= ${PREFIX}/share/doc/zope3
-
-.include "../../lang/python/application.mk"
+MESSAGE_SUBST+= ZOPE3_USER=${ZOPE3_USER:Q} \
+ ZOPE3_GROUP=${ZOPE3_GROUP:Q} \
+ VARBASE=${VARBASE:Q}
pre-install:
${FIND} ${WRKSRC} -name "*.orig" -type f -print | ${XARGS} ${RM} -f
post-install:
- ${LN} -s ${PREFIX}/share/zope3/bin/mkzeoinstance ${PREFIX}/bin
- ${LN} -s ${PREFIX}/share/zope3/bin/mkzopeinstance ${PREFIX}/bin
- ${LN} -s ${PREFIX}/share/zope3/bin/zopetest ${PREFIX}/bin
+ ${LN} -s ${ZOPE3_DIR}/bin/mkzeoinstance ${PREFIX}/bin
+ ${LN} -s ${ZOPE3_DIR}/bin/mkzopeinstance ${PREFIX}/bin
+ ${LN} -s ${ZOPE3_DIR}/bin/zopetest ${PREFIX}/bin
${INSTALL_DATA_DIR} ${ZOPE3_DOCDIR}
${INSTALL_DATA} ${WRKSRC}/Zope/LICENSES.txt ${ZOPE3_DOCDIR}
${INSTALL_DATA} ${WRKSRC}/Zope/ZopePublicLicense.txt ${ZOPE3_DOCDIR}
${INSTALL_DATA} ${WRKSRC}/Zope/doc/*.txt ${ZOPE3_DOCDIR}
+.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/www/zope3/Makefile.common b/www/zope3/Makefile.common
new file mode 100644
index 00000000000..192fc934d55
--- /dev/null
+++ b/www/zope3/Makefile.common
@@ -0,0 +1,12 @@
+# $NetBSD: Makefile.common,v 1.1 2006/01/07 13:13:28 wiz Exp $
+#
+
+PYTHON_VERSIONS_ACCEPTED= 24
+
+ZOPE3_DIR= ${PREFIX}/share/zope3
+ZOPE3_DOCDIR= ${PREFIX}/share/doc/zope3
+
+ZOPE3_GROUP?= zope3
+ZOPE3_USER?= zope3
+
+.include "../../lang/python/application.mk"
diff --git a/www/zope3/PLIST b/www/zope3/PLIST
index 53e55c06ece..a4c88117be5 100644
--- a/www/zope3/PLIST
+++ b/www/zope3/PLIST
@@ -1,8 +1,7 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+@comment $NetBSD: PLIST,v 1.2 2006/01/07 13:13:28 wiz Exp $
bin/mkzeoinstance
bin/mkzopeinstance
bin/zopetest
-share/doc/zope3/ANNOUNCEMENT.txt
share/doc/zope3/CHANGES.txt
share/doc/zope3/CREDITS.txt
share/doc/zope3/DEBUG.txt
@@ -31,6 +30,7 @@ share/zope3/include/python/persistent/cPersistence.h
share/zope3/include/python/persistent/ring.h
share/zope3/include/python/zope.proxy/proxy.h
share/zope3/lib/python/BTrees/DEPENDENCIES.cfg
+share/zope3/lib/python/BTrees/Development.txt
share/zope3/lib/python/BTrees/IFBTree.py
share/zope3/lib/python/BTrees/IFBTree.pyc
share/zope3/lib/python/BTrees/IFBTree.pyo
@@ -46,7 +46,6 @@ share/zope3/lib/python/BTrees/Interfaces.pyo
share/zope3/lib/python/BTrees/Length.py
share/zope3/lib/python/BTrees/Length.pyc
share/zope3/lib/python/BTrees/Length.pyo
-share/zope3/lib/python/BTrees/Maintainer.txt
share/zope3/lib/python/BTrees/OIBTree.py
share/zope3/lib/python/BTrees/OIBTree.pyc
share/zope3/lib/python/BTrees/OIBTree.pyo
@@ -90,6 +89,48 @@ share/zope3/lib/python/BTrees/tests/test_check.pyo
share/zope3/lib/python/BTrees/tests/test_compare.py
share/zope3/lib/python/BTrees/tests/test_compare.pyc
share/zope3/lib/python/BTrees/tests/test_compare.pyo
+share/zope3/lib/python/ClientCookie/_BSDDBCookieJar.py
+share/zope3/lib/python/ClientCookie/_BSDDBCookieJar.pyc
+share/zope3/lib/python/ClientCookie/_BSDDBCookieJar.pyo
+share/zope3/lib/python/ClientCookie/_ClientCookie.py
+share/zope3/lib/python/ClientCookie/_ClientCookie.pyc
+share/zope3/lib/python/ClientCookie/_ClientCookie.pyo
+share/zope3/lib/python/ClientCookie/_ConnCache.py
+share/zope3/lib/python/ClientCookie/_ConnCache.pyc
+share/zope3/lib/python/ClientCookie/_ConnCache.pyo
+share/zope3/lib/python/ClientCookie/_Debug.py
+share/zope3/lib/python/ClientCookie/_Debug.pyc
+share/zope3/lib/python/ClientCookie/_Debug.pyo
+share/zope3/lib/python/ClientCookie/_HeadersUtil.py
+share/zope3/lib/python/ClientCookie/_HeadersUtil.pyc
+share/zope3/lib/python/ClientCookie/_HeadersUtil.pyo
+share/zope3/lib/python/ClientCookie/_LWPCookieJar.py
+share/zope3/lib/python/ClientCookie/_LWPCookieJar.pyc
+share/zope3/lib/python/ClientCookie/_LWPCookieJar.pyo
+share/zope3/lib/python/ClientCookie/_MSIECookieJar.py
+share/zope3/lib/python/ClientCookie/_MSIECookieJar.pyc
+share/zope3/lib/python/ClientCookie/_MSIECookieJar.pyo
+share/zope3/lib/python/ClientCookie/_MSIEDBCookieJar.py
+share/zope3/lib/python/ClientCookie/_MSIEDBCookieJar.pyc
+share/zope3/lib/python/ClientCookie/_MSIEDBCookieJar.pyo
+share/zope3/lib/python/ClientCookie/_MozillaCookieJar.py
+share/zope3/lib/python/ClientCookie/_MozillaCookieJar.pyc
+share/zope3/lib/python/ClientCookie/_MozillaCookieJar.pyo
+share/zope3/lib/python/ClientCookie/_Opener.py
+share/zope3/lib/python/ClientCookie/_Opener.pyc
+share/zope3/lib/python/ClientCookie/_Opener.pyo
+share/zope3/lib/python/ClientCookie/_Request.py
+share/zope3/lib/python/ClientCookie/_Request.pyc
+share/zope3/lib/python/ClientCookie/_Request.pyo
+share/zope3/lib/python/ClientCookie/_Util.py
+share/zope3/lib/python/ClientCookie/_Util.pyc
+share/zope3/lib/python/ClientCookie/_Util.pyo
+share/zope3/lib/python/ClientCookie/__init__.py
+share/zope3/lib/python/ClientCookie/__init__.pyc
+share/zope3/lib/python/ClientCookie/__init__.pyo
+share/zope3/lib/python/ClientCookie/_urllib2_support.py
+share/zope3/lib/python/ClientCookie/_urllib2_support.pyc
+share/zope3/lib/python/ClientCookie/_urllib2_support.pyo
share/zope3/lib/python/RestrictedPython/Eval.py
share/zope3/lib/python/RestrictedPython/Eval.pyc
share/zope3/lib/python/RestrictedPython/Eval.pyo
@@ -961,6 +1002,15 @@ share/zope3/lib/python/docutils/writers/pep_html.pyo
share/zope3/lib/python/docutils/writers/pseudoxml.py
share/zope3/lib/python/docutils/writers/pseudoxml.pyc
share/zope3/lib/python/docutils/writers/pseudoxml.pyo
+share/zope3/lib/python/mechanize/__init__.py
+share/zope3/lib/python/mechanize/__init__.pyc
+share/zope3/lib/python/mechanize/__init__.pyo
+share/zope3/lib/python/mechanize/_mechanize.py
+share/zope3/lib/python/mechanize/_mechanize.pyc
+share/zope3/lib/python/mechanize/_mechanize.pyo
+share/zope3/lib/python/mechanize/_useragent.py
+share/zope3/lib/python/mechanize/_useragent.pyc
+share/zope3/lib/python/mechanize/_useragent.pyo
share/zope3/lib/python/persistent/DEPENDENCIES.cfg
share/zope3/lib/python/persistent/README.txt
share/zope3/lib/python/persistent/SETUP.cfg
@@ -998,6 +1048,9 @@ share/zope3/lib/python/persistent/tests/test_PickleCache.pyo
share/zope3/lib/python/persistent/tests/test_list.py
share/zope3/lib/python/persistent/tests/test_list.pyc
share/zope3/lib/python/persistent/tests/test_list.pyo
+share/zope3/lib/python/persistent/tests/test_mapping.py
+share/zope3/lib/python/persistent/tests/test_mapping.pyc
+share/zope3/lib/python/persistent/tests/test_mapping.pyo
share/zope3/lib/python/persistent/tests/test_overriding_attrs.py
share/zope3/lib/python/persistent/tests/test_overriding_attrs.pyc
share/zope3/lib/python/persistent/tests/test_overriding_attrs.pyo
@@ -2783,6 +2836,2303 @@ share/zope3/lib/python/transaction/tests/test_savepoint.pyo
share/zope3/lib/python/transaction/tests/test_transaction.py
share/zope3/lib/python/transaction/tests/test_transaction.pyc
share/zope3/lib/python/transaction/tests/test_transaction.pyo
+share/zope3/lib/python/twisted/__init__.py
+share/zope3/lib/python/twisted/__init__.pyc
+share/zope3/lib/python/twisted/__init__.pyo
+share/zope3/lib/python/twisted/application/__init__.py
+share/zope3/lib/python/twisted/application/__init__.pyc
+share/zope3/lib/python/twisted/application/__init__.pyo
+share/zope3/lib/python/twisted/application/app.py
+share/zope3/lib/python/twisted/application/app.pyc
+share/zope3/lib/python/twisted/application/app.pyo
+share/zope3/lib/python/twisted/application/compat.py
+share/zope3/lib/python/twisted/application/compat.pyc
+share/zope3/lib/python/twisted/application/compat.pyo
+share/zope3/lib/python/twisted/application/internet.py
+share/zope3/lib/python/twisted/application/internet.pyc
+share/zope3/lib/python/twisted/application/internet.pyo
+share/zope3/lib/python/twisted/application/service.py
+share/zope3/lib/python/twisted/application/service.pyc
+share/zope3/lib/python/twisted/application/service.pyo
+share/zope3/lib/python/twisted/application/strports.py
+share/zope3/lib/python/twisted/application/strports.pyc
+share/zope3/lib/python/twisted/application/strports.pyo
+share/zope3/lib/python/twisted/conch/__init__.py
+share/zope3/lib/python/twisted/conch/__init__.pyc
+share/zope3/lib/python/twisted/conch/__init__.pyo
+share/zope3/lib/python/twisted/conch/authorizer.py
+share/zope3/lib/python/twisted/conch/authorizer.pyc
+share/zope3/lib/python/twisted/conch/authorizer.pyo
+share/zope3/lib/python/twisted/conch/avatar.py
+share/zope3/lib/python/twisted/conch/avatar.pyc
+share/zope3/lib/python/twisted/conch/avatar.pyo
+share/zope3/lib/python/twisted/conch/checkers.py
+share/zope3/lib/python/twisted/conch/checkers.pyc
+share/zope3/lib/python/twisted/conch/checkers.pyo
+share/zope3/lib/python/twisted/conch/client/__init__.py
+share/zope3/lib/python/twisted/conch/client/__init__.pyc
+share/zope3/lib/python/twisted/conch/client/__init__.pyo
+share/zope3/lib/python/twisted/conch/client/agent.py
+share/zope3/lib/python/twisted/conch/client/agent.pyc
+share/zope3/lib/python/twisted/conch/client/agent.pyo
+share/zope3/lib/python/twisted/conch/client/connect.py
+share/zope3/lib/python/twisted/conch/client/connect.pyc
+share/zope3/lib/python/twisted/conch/client/connect.pyo
+share/zope3/lib/python/twisted/conch/client/default.py
+share/zope3/lib/python/twisted/conch/client/default.pyc
+share/zope3/lib/python/twisted/conch/client/default.pyo
+share/zope3/lib/python/twisted/conch/client/direct.py
+share/zope3/lib/python/twisted/conch/client/direct.pyc
+share/zope3/lib/python/twisted/conch/client/direct.pyo
+share/zope3/lib/python/twisted/conch/client/options.py
+share/zope3/lib/python/twisted/conch/client/options.pyc
+share/zope3/lib/python/twisted/conch/client/options.pyo
+share/zope3/lib/python/twisted/conch/client/unix.py
+share/zope3/lib/python/twisted/conch/client/unix.pyc
+share/zope3/lib/python/twisted/conch/client/unix.pyo
+share/zope3/lib/python/twisted/conch/error.py
+share/zope3/lib/python/twisted/conch/error.pyc
+share/zope3/lib/python/twisted/conch/error.pyo
+share/zope3/lib/python/twisted/conch/identity.py
+share/zope3/lib/python/twisted/conch/identity.pyc
+share/zope3/lib/python/twisted/conch/identity.pyo
+share/zope3/lib/python/twisted/conch/insults/__init__.py
+share/zope3/lib/python/twisted/conch/insults/__init__.pyc
+share/zope3/lib/python/twisted/conch/insults/__init__.pyo
+share/zope3/lib/python/twisted/conch/insults/client.py
+share/zope3/lib/python/twisted/conch/insults/client.pyc
+share/zope3/lib/python/twisted/conch/insults/client.pyo
+share/zope3/lib/python/twisted/conch/insults/colors.py
+share/zope3/lib/python/twisted/conch/insults/colors.pyc
+share/zope3/lib/python/twisted/conch/insults/colors.pyo
+share/zope3/lib/python/twisted/conch/insults/helper.py
+share/zope3/lib/python/twisted/conch/insults/helper.pyc
+share/zope3/lib/python/twisted/conch/insults/helper.pyo
+share/zope3/lib/python/twisted/conch/insults/insults.py
+share/zope3/lib/python/twisted/conch/insults/insults.pyc
+share/zope3/lib/python/twisted/conch/insults/insults.pyo
+share/zope3/lib/python/twisted/conch/insults/text.py
+share/zope3/lib/python/twisted/conch/insults/text.pyc
+share/zope3/lib/python/twisted/conch/insults/text.pyo
+share/zope3/lib/python/twisted/conch/insults/window.py
+share/zope3/lib/python/twisted/conch/insults/window.pyc
+share/zope3/lib/python/twisted/conch/insults/window.pyo
+share/zope3/lib/python/twisted/conch/interfaces.py
+share/zope3/lib/python/twisted/conch/interfaces.pyc
+share/zope3/lib/python/twisted/conch/interfaces.pyo
+share/zope3/lib/python/twisted/conch/ls.py
+share/zope3/lib/python/twisted/conch/ls.pyc
+share/zope3/lib/python/twisted/conch/ls.pyo
+share/zope3/lib/python/twisted/conch/manhole.py
+share/zope3/lib/python/twisted/conch/manhole.pyc
+share/zope3/lib/python/twisted/conch/manhole.pyo
+share/zope3/lib/python/twisted/conch/manhole_ssh.py
+share/zope3/lib/python/twisted/conch/manhole_ssh.pyc
+share/zope3/lib/python/twisted/conch/manhole_ssh.pyo
+share/zope3/lib/python/twisted/conch/manhole_tap.py
+share/zope3/lib/python/twisted/conch/manhole_tap.pyc
+share/zope3/lib/python/twisted/conch/manhole_tap.pyo
+share/zope3/lib/python/twisted/conch/mixin.py
+share/zope3/lib/python/twisted/conch/mixin.pyc
+share/zope3/lib/python/twisted/conch/mixin.pyo
+share/zope3/lib/python/twisted/conch/openssh_compat/__init__.py
+share/zope3/lib/python/twisted/conch/openssh_compat/__init__.pyc
+share/zope3/lib/python/twisted/conch/openssh_compat/__init__.pyo
+share/zope3/lib/python/twisted/conch/openssh_compat/factory.py
+share/zope3/lib/python/twisted/conch/openssh_compat/factory.pyc
+share/zope3/lib/python/twisted/conch/openssh_compat/factory.pyo
+share/zope3/lib/python/twisted/conch/openssh_compat/primes.py
+share/zope3/lib/python/twisted/conch/openssh_compat/primes.pyc
+share/zope3/lib/python/twisted/conch/openssh_compat/primes.pyo
+share/zope3/lib/python/twisted/conch/recvline.py
+share/zope3/lib/python/twisted/conch/recvline.pyc
+share/zope3/lib/python/twisted/conch/recvline.pyo
+share/zope3/lib/python/twisted/conch/scripts/__init__.py
+share/zope3/lib/python/twisted/conch/scripts/__init__.pyc
+share/zope3/lib/python/twisted/conch/scripts/__init__.pyo
+share/zope3/lib/python/twisted/conch/scripts/cftp.py
+share/zope3/lib/python/twisted/conch/scripts/cftp.pyc
+share/zope3/lib/python/twisted/conch/scripts/cftp.pyo
+share/zope3/lib/python/twisted/conch/scripts/ckeygen.py
+share/zope3/lib/python/twisted/conch/scripts/ckeygen.pyc
+share/zope3/lib/python/twisted/conch/scripts/ckeygen.pyo
+share/zope3/lib/python/twisted/conch/scripts/conch.py
+share/zope3/lib/python/twisted/conch/scripts/conch.pyc
+share/zope3/lib/python/twisted/conch/scripts/conch.pyo
+share/zope3/lib/python/twisted/conch/scripts/tkconch.py
+share/zope3/lib/python/twisted/conch/scripts/tkconch.pyc
+share/zope3/lib/python/twisted/conch/scripts/tkconch.pyo
+share/zope3/lib/python/twisted/conch/ssh/__init__.py
+share/zope3/lib/python/twisted/conch/ssh/__init__.pyc
+share/zope3/lib/python/twisted/conch/ssh/__init__.pyo
+share/zope3/lib/python/twisted/conch/ssh/agent.py
+share/zope3/lib/python/twisted/conch/ssh/agent.pyc
+share/zope3/lib/python/twisted/conch/ssh/agent.pyo
+share/zope3/lib/python/twisted/conch/ssh/asn1.py
+share/zope3/lib/python/twisted/conch/ssh/asn1.pyc
+share/zope3/lib/python/twisted/conch/ssh/asn1.pyo
+share/zope3/lib/python/twisted/conch/ssh/channel.py
+share/zope3/lib/python/twisted/conch/ssh/channel.pyc
+share/zope3/lib/python/twisted/conch/ssh/channel.pyo
+share/zope3/lib/python/twisted/conch/ssh/common.py
+share/zope3/lib/python/twisted/conch/ssh/common.pyc
+share/zope3/lib/python/twisted/conch/ssh/common.pyo
+share/zope3/lib/python/twisted/conch/ssh/connection.py
+share/zope3/lib/python/twisted/conch/ssh/connection.pyc
+share/zope3/lib/python/twisted/conch/ssh/connection.pyo
+share/zope3/lib/python/twisted/conch/ssh/factory.py
+share/zope3/lib/python/twisted/conch/ssh/factory.pyc
+share/zope3/lib/python/twisted/conch/ssh/factory.pyo
+share/zope3/lib/python/twisted/conch/ssh/filetransfer.py
+share/zope3/lib/python/twisted/conch/ssh/filetransfer.pyc
+share/zope3/lib/python/twisted/conch/ssh/filetransfer.pyo
+share/zope3/lib/python/twisted/conch/ssh/forwarding.py
+share/zope3/lib/python/twisted/conch/ssh/forwarding.pyc
+share/zope3/lib/python/twisted/conch/ssh/forwarding.pyo
+share/zope3/lib/python/twisted/conch/ssh/keys.py
+share/zope3/lib/python/twisted/conch/ssh/keys.pyc
+share/zope3/lib/python/twisted/conch/ssh/keys.pyo
+share/zope3/lib/python/twisted/conch/ssh/service.py
+share/zope3/lib/python/twisted/conch/ssh/service.pyc
+share/zope3/lib/python/twisted/conch/ssh/service.pyo
+share/zope3/lib/python/twisted/conch/ssh/session.py
+share/zope3/lib/python/twisted/conch/ssh/session.pyc
+share/zope3/lib/python/twisted/conch/ssh/session.pyo
+share/zope3/lib/python/twisted/conch/ssh/sexpy.py
+share/zope3/lib/python/twisted/conch/ssh/sexpy.pyc
+share/zope3/lib/python/twisted/conch/ssh/sexpy.pyo
+share/zope3/lib/python/twisted/conch/ssh/transport.py
+share/zope3/lib/python/twisted/conch/ssh/transport.pyc
+share/zope3/lib/python/twisted/conch/ssh/transport.pyo
+share/zope3/lib/python/twisted/conch/ssh/userauth.py
+share/zope3/lib/python/twisted/conch/ssh/userauth.pyc
+share/zope3/lib/python/twisted/conch/ssh/userauth.pyo
+share/zope3/lib/python/twisted/conch/stdio.py
+share/zope3/lib/python/twisted/conch/stdio.pyc
+share/zope3/lib/python/twisted/conch/stdio.pyo
+share/zope3/lib/python/twisted/conch/tap.py
+share/zope3/lib/python/twisted/conch/tap.pyc
+share/zope3/lib/python/twisted/conch/tap.pyo
+share/zope3/lib/python/twisted/conch/telnet.py
+share/zope3/lib/python/twisted/conch/telnet.pyc
+share/zope3/lib/python/twisted/conch/telnet.pyo
+share/zope3/lib/python/twisted/conch/test/__init__.py
+share/zope3/lib/python/twisted/conch/test/__init__.pyc
+share/zope3/lib/python/twisted/conch/test/__init__.pyo
+share/zope3/lib/python/twisted/conch/test/test_cftp.py
+share/zope3/lib/python/twisted/conch/test/test_cftp.pyc
+share/zope3/lib/python/twisted/conch/test/test_cftp.pyo
+share/zope3/lib/python/twisted/conch/test/test_conch.py
+share/zope3/lib/python/twisted/conch/test/test_conch.pyc
+share/zope3/lib/python/twisted/conch/test/test_conch.pyo
+share/zope3/lib/python/twisted/conch/test/test_filetransfer.py
+share/zope3/lib/python/twisted/conch/test/test_filetransfer.pyc
+share/zope3/lib/python/twisted/conch/test/test_filetransfer.pyo
+share/zope3/lib/python/twisted/conch/test/test_helper.py
+share/zope3/lib/python/twisted/conch/test/test_helper.pyc
+share/zope3/lib/python/twisted/conch/test/test_helper.pyo
+share/zope3/lib/python/twisted/conch/test/test_insults.py
+share/zope3/lib/python/twisted/conch/test/test_insults.pyc
+share/zope3/lib/python/twisted/conch/test/test_insults.pyo
+share/zope3/lib/python/twisted/conch/test/test_keys.py
+share/zope3/lib/python/twisted/conch/test/test_keys.pyc
+share/zope3/lib/python/twisted/conch/test/test_keys.pyo
+share/zope3/lib/python/twisted/conch/test/test_manhole.py
+share/zope3/lib/python/twisted/conch/test/test_manhole.pyc
+share/zope3/lib/python/twisted/conch/test/test_manhole.pyo
+share/zope3/lib/python/twisted/conch/test/test_mixin.py
+share/zope3/lib/python/twisted/conch/test/test_mixin.pyc
+share/zope3/lib/python/twisted/conch/test/test_mixin.pyo
+share/zope3/lib/python/twisted/conch/test/test_recvline.py
+share/zope3/lib/python/twisted/conch/test/test_recvline.pyc
+share/zope3/lib/python/twisted/conch/test/test_recvline.pyo
+share/zope3/lib/python/twisted/conch/test/test_ssh.py
+share/zope3/lib/python/twisted/conch/test/test_ssh.pyc
+share/zope3/lib/python/twisted/conch/test/test_ssh.pyo
+share/zope3/lib/python/twisted/conch/test/test_telnet.py
+share/zope3/lib/python/twisted/conch/test/test_telnet.pyc
+share/zope3/lib/python/twisted/conch/test/test_telnet.pyo
+share/zope3/lib/python/twisted/conch/test/test_text.py
+share/zope3/lib/python/twisted/conch/test/test_text.pyc
+share/zope3/lib/python/twisted/conch/test/test_text.pyo
+share/zope3/lib/python/twisted/conch/topfiles/NEWS
+share/zope3/lib/python/twisted/conch/topfiles/README
+share/zope3/lib/python/twisted/conch/topfiles/setup.py
+share/zope3/lib/python/twisted/conch/topfiles/setup.pyc
+share/zope3/lib/python/twisted/conch/topfiles/setup.pyo
+share/zope3/lib/python/twisted/conch/ttymodes.py
+share/zope3/lib/python/twisted/conch/ttymodes.pyc
+share/zope3/lib/python/twisted/conch/ttymodes.pyo
+share/zope3/lib/python/twisted/conch/ui/__init__.py
+share/zope3/lib/python/twisted/conch/ui/__init__.pyc
+share/zope3/lib/python/twisted/conch/ui/__init__.pyo
+share/zope3/lib/python/twisted/conch/ui/ansi.py
+share/zope3/lib/python/twisted/conch/ui/ansi.pyc
+share/zope3/lib/python/twisted/conch/ui/ansi.pyo
+share/zope3/lib/python/twisted/conch/ui/tkvt100.py
+share/zope3/lib/python/twisted/conch/ui/tkvt100.pyc
+share/zope3/lib/python/twisted/conch/ui/tkvt100.pyo
+share/zope3/lib/python/twisted/conch/unix.py
+share/zope3/lib/python/twisted/conch/unix.pyc
+share/zope3/lib/python/twisted/conch/unix.pyo
+share/zope3/lib/python/twisted/copyright.py
+share/zope3/lib/python/twisted/copyright.pyc
+share/zope3/lib/python/twisted/copyright.pyo
+share/zope3/lib/python/twisted/cred/__init__.py
+share/zope3/lib/python/twisted/cred/__init__.pyc
+share/zope3/lib/python/twisted/cred/__init__.pyo
+share/zope3/lib/python/twisted/cred/authorizer.py
+share/zope3/lib/python/twisted/cred/authorizer.pyc
+share/zope3/lib/python/twisted/cred/authorizer.pyo
+share/zope3/lib/python/twisted/cred/checkers.py
+share/zope3/lib/python/twisted/cred/checkers.pyc
+share/zope3/lib/python/twisted/cred/checkers.pyo
+share/zope3/lib/python/twisted/cred/credentials.py
+share/zope3/lib/python/twisted/cred/credentials.pyc
+share/zope3/lib/python/twisted/cred/credentials.pyo
+share/zope3/lib/python/twisted/cred/error.py
+share/zope3/lib/python/twisted/cred/error.pyc
+share/zope3/lib/python/twisted/cred/error.pyo
+share/zope3/lib/python/twisted/cred/identity.py
+share/zope3/lib/python/twisted/cred/identity.pyc
+share/zope3/lib/python/twisted/cred/identity.pyo
+share/zope3/lib/python/twisted/cred/pamauth.py
+share/zope3/lib/python/twisted/cred/pamauth.pyc
+share/zope3/lib/python/twisted/cred/pamauth.pyo
+share/zope3/lib/python/twisted/cred/perspective.py
+share/zope3/lib/python/twisted/cred/perspective.pyc
+share/zope3/lib/python/twisted/cred/perspective.pyo
+share/zope3/lib/python/twisted/cred/portal.py
+share/zope3/lib/python/twisted/cred/portal.pyc
+share/zope3/lib/python/twisted/cred/portal.pyo
+share/zope3/lib/python/twisted/cred/service.py
+share/zope3/lib/python/twisted/cred/service.pyc
+share/zope3/lib/python/twisted/cred/service.pyo
+share/zope3/lib/python/twisted/cred/util.py
+share/zope3/lib/python/twisted/cred/util.pyc
+share/zope3/lib/python/twisted/cred/util.pyo
+share/zope3/lib/python/twisted/enterprise/__init__.py
+share/zope3/lib/python/twisted/enterprise/__init__.pyc
+share/zope3/lib/python/twisted/enterprise/__init__.pyo
+share/zope3/lib/python/twisted/enterprise/adbapi.py
+share/zope3/lib/python/twisted/enterprise/adbapi.pyc
+share/zope3/lib/python/twisted/enterprise/adbapi.pyo
+share/zope3/lib/python/twisted/enterprise/reflector.py
+share/zope3/lib/python/twisted/enterprise/reflector.pyc
+share/zope3/lib/python/twisted/enterprise/reflector.pyo
+share/zope3/lib/python/twisted/enterprise/row.py
+share/zope3/lib/python/twisted/enterprise/row.pyc
+share/zope3/lib/python/twisted/enterprise/row.pyo
+share/zope3/lib/python/twisted/enterprise/sqlreflector.py
+share/zope3/lib/python/twisted/enterprise/sqlreflector.pyc
+share/zope3/lib/python/twisted/enterprise/sqlreflector.pyo
+share/zope3/lib/python/twisted/enterprise/util.py
+share/zope3/lib/python/twisted/enterprise/util.pyc
+share/zope3/lib/python/twisted/enterprise/util.pyo
+share/zope3/lib/python/twisted/enterprise/xmlreflector.py
+share/zope3/lib/python/twisted/enterprise/xmlreflector.pyc
+share/zope3/lib/python/twisted/enterprise/xmlreflector.pyo
+share/zope3/lib/python/twisted/flow/__init__.py
+share/zope3/lib/python/twisted/flow/__init__.pyc
+share/zope3/lib/python/twisted/flow/__init__.pyo
+share/zope3/lib/python/twisted/flow/base.py
+share/zope3/lib/python/twisted/flow/base.pyc
+share/zope3/lib/python/twisted/flow/base.pyo
+share/zope3/lib/python/twisted/flow/controller.py
+share/zope3/lib/python/twisted/flow/controller.pyc
+share/zope3/lib/python/twisted/flow/controller.pyo
+share/zope3/lib/python/twisted/flow/flow.py
+share/zope3/lib/python/twisted/flow/flow.pyc
+share/zope3/lib/python/twisted/flow/flow.pyo
+share/zope3/lib/python/twisted/flow/pipe.py
+share/zope3/lib/python/twisted/flow/pipe.pyc
+share/zope3/lib/python/twisted/flow/pipe.pyo
+share/zope3/lib/python/twisted/flow/protocol.py
+share/zope3/lib/python/twisted/flow/protocol.pyc
+share/zope3/lib/python/twisted/flow/protocol.pyo
+share/zope3/lib/python/twisted/flow/stage.py
+share/zope3/lib/python/twisted/flow/stage.pyc
+share/zope3/lib/python/twisted/flow/stage.pyo
+share/zope3/lib/python/twisted/flow/test/__init__.py
+share/zope3/lib/python/twisted/flow/test/__init__.pyc
+share/zope3/lib/python/twisted/flow/test/__init__.pyo
+share/zope3/lib/python/twisted/flow/test/test_flow.py
+share/zope3/lib/python/twisted/flow/test/test_flow.pyc
+share/zope3/lib/python/twisted/flow/test/test_flow.pyo
+share/zope3/lib/python/twisted/flow/threads.py
+share/zope3/lib/python/twisted/flow/threads.pyc
+share/zope3/lib/python/twisted/flow/threads.pyo
+share/zope3/lib/python/twisted/flow/topfiles/README
+share/zope3/lib/python/twisted/flow/topfiles/setup.py
+share/zope3/lib/python/twisted/flow/topfiles/setup.pyc
+share/zope3/lib/python/twisted/flow/topfiles/setup.pyo
+share/zope3/lib/python/twisted/flow/web.py
+share/zope3/lib/python/twisted/flow/web.pyc
+share/zope3/lib/python/twisted/flow/web.pyo
+share/zope3/lib/python/twisted/flow/wrap.py
+share/zope3/lib/python/twisted/flow/wrap.pyc
+share/zope3/lib/python/twisted/flow/wrap.pyo
+share/zope3/lib/python/twisted/im.py
+share/zope3/lib/python/twisted/im.pyc
+share/zope3/lib/python/twisted/im.pyo
+share/zope3/lib/python/twisted/internet/__init__.py
+share/zope3/lib/python/twisted/internet/__init__.pyc
+share/zope3/lib/python/twisted/internet/__init__.pyo
+share/zope3/lib/python/twisted/internet/abstract.py
+share/zope3/lib/python/twisted/internet/abstract.pyc
+share/zope3/lib/python/twisted/internet/abstract.pyo
+share/zope3/lib/python/twisted/internet/address.py
+share/zope3/lib/python/twisted/internet/address.pyc
+share/zope3/lib/python/twisted/internet/address.pyo
+share/zope3/lib/python/twisted/internet/app.py
+share/zope3/lib/python/twisted/internet/app.pyc
+share/zope3/lib/python/twisted/internet/app.pyo
+share/zope3/lib/python/twisted/internet/base.py
+share/zope3/lib/python/twisted/internet/base.pyc
+share/zope3/lib/python/twisted/internet/base.pyo
+share/zope3/lib/python/twisted/internet/cfreactor.py
+share/zope3/lib/python/twisted/internet/cfreactor.pyc
+share/zope3/lib/python/twisted/internet/cfreactor.pyo
+share/zope3/lib/python/twisted/internet/cfsupport/cfdate.pxi
+share/zope3/lib/python/twisted/internet/cfsupport/cfdecl.pxi
+share/zope3/lib/python/twisted/internet/cfsupport/cfrunloop.pxi
+share/zope3/lib/python/twisted/internet/cfsupport/cfsocket.pxi
+share/zope3/lib/python/twisted/internet/cfsupport/cfsupport.c
+share/zope3/lib/python/twisted/internet/cfsupport/cfsupport.pyx
+share/zope3/lib/python/twisted/internet/cfsupport/python.pxi
+share/zope3/lib/python/twisted/internet/cfsupport/setup.py
+share/zope3/lib/python/twisted/internet/cfsupport/setup.pyc
+share/zope3/lib/python/twisted/internet/cfsupport/setup.pyo
+share/zope3/lib/python/twisted/internet/default.py
+share/zope3/lib/python/twisted/internet/default.pyc
+share/zope3/lib/python/twisted/internet/default.pyo
+share/zope3/lib/python/twisted/internet/defer.py
+share/zope3/lib/python/twisted/internet/defer.pyc
+share/zope3/lib/python/twisted/internet/defer.pyo
+share/zope3/lib/python/twisted/internet/error.py
+share/zope3/lib/python/twisted/internet/error.pyc
+share/zope3/lib/python/twisted/internet/error.pyo
+share/zope3/lib/python/twisted/internet/fdesc.py
+share/zope3/lib/python/twisted/internet/fdesc.pyc
+share/zope3/lib/python/twisted/internet/fdesc.pyo
+share/zope3/lib/python/twisted/internet/glib2reactor.py
+share/zope3/lib/python/twisted/internet/glib2reactor.pyc
+share/zope3/lib/python/twisted/internet/glib2reactor.pyo
+share/zope3/lib/python/twisted/internet/gtk2reactor.py
+share/zope3/lib/python/twisted/internet/gtk2reactor.pyc
+share/zope3/lib/python/twisted/internet/gtk2reactor.pyo
+share/zope3/lib/python/twisted/internet/gtkreactor.py
+share/zope3/lib/python/twisted/internet/gtkreactor.pyc
+share/zope3/lib/python/twisted/internet/gtkreactor.pyo
+share/zope3/lib/python/twisted/internet/interfaces.py
+share/zope3/lib/python/twisted/internet/interfaces.pyc
+share/zope3/lib/python/twisted/internet/interfaces.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/__init__.py
+share/zope3/lib/python/twisted/internet/iocpreactor/__init__.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/__init__.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/_iocp.c
+share/zope3/lib/python/twisted/internet/iocpreactor/abstract.py
+share/zope3/lib/python/twisted/internet/iocpreactor/abstract.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/abstract.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/client.py
+share/zope3/lib/python/twisted/internet/iocpreactor/client.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/client.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/iocpdebug.py
+share/zope3/lib/python/twisted/internet/iocpreactor/iocpdebug.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/iocpdebug.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/ops.py
+share/zope3/lib/python/twisted/internet/iocpreactor/ops.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/ops.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/proactor.py
+share/zope3/lib/python/twisted/internet/iocpreactor/proactor.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/proactor.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/server.py
+share/zope3/lib/python/twisted/internet/iocpreactor/server.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/server.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/tcp.py
+share/zope3/lib/python/twisted/internet/iocpreactor/tcp.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/tcp.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/udp.py
+share/zope3/lib/python/twisted/internet/iocpreactor/udp.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/udp.pyo
+share/zope3/lib/python/twisted/internet/iocpreactor/util.py
+share/zope3/lib/python/twisted/internet/iocpreactor/util.pyc
+share/zope3/lib/python/twisted/internet/iocpreactor/util.pyo
+share/zope3/lib/python/twisted/internet/kqreactor.py
+share/zope3/lib/python/twisted/internet/kqreactor.pyc
+share/zope3/lib/python/twisted/internet/kqreactor.pyo
+share/zope3/lib/python/twisted/internet/main.py
+share/zope3/lib/python/twisted/internet/main.pyc
+share/zope3/lib/python/twisted/internet/main.pyo
+share/zope3/lib/python/twisted/internet/pollreactor.py
+share/zope3/lib/python/twisted/internet/pollreactor.pyc
+share/zope3/lib/python/twisted/internet/pollreactor.pyo
+share/zope3/lib/python/twisted/internet/posixbase.py
+share/zope3/lib/python/twisted/internet/posixbase.pyc
+share/zope3/lib/python/twisted/internet/posixbase.pyo
+share/zope3/lib/python/twisted/internet/process.py
+share/zope3/lib/python/twisted/internet/process.pyc
+share/zope3/lib/python/twisted/internet/process.pyo
+share/zope3/lib/python/twisted/internet/protocol.py
+share/zope3/lib/python/twisted/internet/protocol.pyc
+share/zope3/lib/python/twisted/internet/protocol.pyo
+share/zope3/lib/python/twisted/internet/pyuisupport.py
+share/zope3/lib/python/twisted/internet/pyuisupport.pyc
+share/zope3/lib/python/twisted/internet/pyuisupport.pyo
+share/zope3/lib/python/twisted/internet/qtreactor.py
+share/zope3/lib/python/twisted/internet/qtreactor.pyc
+share/zope3/lib/python/twisted/internet/qtreactor.pyo
+share/zope3/lib/python/twisted/internet/reactor.py
+share/zope3/lib/python/twisted/internet/reactor.pyc
+share/zope3/lib/python/twisted/internet/reactor.pyo
+share/zope3/lib/python/twisted/internet/selectreactor.py
+share/zope3/lib/python/twisted/internet/selectreactor.pyc
+share/zope3/lib/python/twisted/internet/selectreactor.pyo
+share/zope3/lib/python/twisted/internet/serialport/__init__.py
+share/zope3/lib/python/twisted/internet/serialport/__init__.pyc
+share/zope3/lib/python/twisted/internet/serialport/__init__.pyo
+share/zope3/lib/python/twisted/internet/serialport/javaserialport.py
+share/zope3/lib/python/twisted/internet/serialport/javaserialport.pyc
+share/zope3/lib/python/twisted/internet/serialport/javaserialport.pyo
+share/zope3/lib/python/twisted/internet/serialport/posixserialport.py
+share/zope3/lib/python/twisted/internet/serialport/posixserialport.pyc
+share/zope3/lib/python/twisted/internet/serialport/posixserialport.pyo
+share/zope3/lib/python/twisted/internet/serialport/serialport.py
+share/zope3/lib/python/twisted/internet/serialport/serialport.pyc
+share/zope3/lib/python/twisted/internet/serialport/serialport.pyo
+share/zope3/lib/python/twisted/internet/serialport/win32serialport.py
+share/zope3/lib/python/twisted/internet/serialport/win32serialport.pyc
+share/zope3/lib/python/twisted/internet/serialport/win32serialport.pyo
+share/zope3/lib/python/twisted/internet/ssl.py
+share/zope3/lib/python/twisted/internet/ssl.pyc
+share/zope3/lib/python/twisted/internet/ssl.pyo
+share/zope3/lib/python/twisted/internet/stdio.py
+share/zope3/lib/python/twisted/internet/stdio.pyc
+share/zope3/lib/python/twisted/internet/stdio.pyo
+share/zope3/lib/python/twisted/internet/task.py
+share/zope3/lib/python/twisted/internet/task.pyc
+share/zope3/lib/python/twisted/internet/task.pyo
+share/zope3/lib/python/twisted/internet/tcp.py
+share/zope3/lib/python/twisted/internet/tcp.pyc
+share/zope3/lib/python/twisted/internet/tcp.pyo
+share/zope3/lib/python/twisted/internet/threadedselectreactor.py
+share/zope3/lib/python/twisted/internet/threadedselectreactor.pyc
+share/zope3/lib/python/twisted/internet/threadedselectreactor.pyo
+share/zope3/lib/python/twisted/internet/threads.py
+share/zope3/lib/python/twisted/internet/threads.pyc
+share/zope3/lib/python/twisted/internet/threads.pyo
+share/zope3/lib/python/twisted/internet/tksupport.py
+share/zope3/lib/python/twisted/internet/tksupport.pyc
+share/zope3/lib/python/twisted/internet/tksupport.pyo
+share/zope3/lib/python/twisted/internet/udp.py
+share/zope3/lib/python/twisted/internet/udp.pyc
+share/zope3/lib/python/twisted/internet/udp.pyo
+share/zope3/lib/python/twisted/internet/unix.py
+share/zope3/lib/python/twisted/internet/unix.pyc
+share/zope3/lib/python/twisted/internet/unix.pyo
+share/zope3/lib/python/twisted/internet/utils.py
+share/zope3/lib/python/twisted/internet/utils.pyc
+share/zope3/lib/python/twisted/internet/utils.pyo
+share/zope3/lib/python/twisted/internet/win32eventreactor.py
+share/zope3/lib/python/twisted/internet/win32eventreactor.pyc
+share/zope3/lib/python/twisted/internet/win32eventreactor.pyo
+share/zope3/lib/python/twisted/internet/wxreactor.py
+share/zope3/lib/python/twisted/internet/wxreactor.pyc
+share/zope3/lib/python/twisted/internet/wxreactor.pyo
+share/zope3/lib/python/twisted/internet/wxsupport.py
+share/zope3/lib/python/twisted/internet/wxsupport.pyc
+share/zope3/lib/python/twisted/internet/wxsupport.pyo
+share/zope3/lib/python/twisted/lore/__init__.py
+share/zope3/lib/python/twisted/lore/__init__.pyc
+share/zope3/lib/python/twisted/lore/__init__.pyo
+share/zope3/lib/python/twisted/lore/default.py
+share/zope3/lib/python/twisted/lore/default.pyc
+share/zope3/lib/python/twisted/lore/default.pyo
+share/zope3/lib/python/twisted/lore/docbook.py
+share/zope3/lib/python/twisted/lore/docbook.pyc
+share/zope3/lib/python/twisted/lore/docbook.pyo
+share/zope3/lib/python/twisted/lore/htmlbook.py
+share/zope3/lib/python/twisted/lore/htmlbook.pyc
+share/zope3/lib/python/twisted/lore/htmlbook.pyo
+share/zope3/lib/python/twisted/lore/indexer.py
+share/zope3/lib/python/twisted/lore/indexer.pyc
+share/zope3/lib/python/twisted/lore/indexer.pyo
+share/zope3/lib/python/twisted/lore/latex.py
+share/zope3/lib/python/twisted/lore/latex.pyc
+share/zope3/lib/python/twisted/lore/latex.pyo
+share/zope3/lib/python/twisted/lore/lint.py
+share/zope3/lib/python/twisted/lore/lint.pyc
+share/zope3/lib/python/twisted/lore/lint.pyo
+share/zope3/lib/python/twisted/lore/lmath.py
+share/zope3/lib/python/twisted/lore/lmath.pyc
+share/zope3/lib/python/twisted/lore/lmath.pyo
+share/zope3/lib/python/twisted/lore/man2lore.py
+share/zope3/lib/python/twisted/lore/man2lore.pyc
+share/zope3/lib/python/twisted/lore/man2lore.pyo
+share/zope3/lib/python/twisted/lore/nevowlore.py
+share/zope3/lib/python/twisted/lore/nevowlore.pyc
+share/zope3/lib/python/twisted/lore/nevowlore.pyo
+share/zope3/lib/python/twisted/lore/numberer.py
+share/zope3/lib/python/twisted/lore/numberer.pyc
+share/zope3/lib/python/twisted/lore/numberer.pyo
+share/zope3/lib/python/twisted/lore/process.py
+share/zope3/lib/python/twisted/lore/process.pyc
+share/zope3/lib/python/twisted/lore/process.pyo
+share/zope3/lib/python/twisted/lore/scripts/__init__.py
+share/zope3/lib/python/twisted/lore/scripts/__init__.pyc
+share/zope3/lib/python/twisted/lore/scripts/__init__.pyo
+share/zope3/lib/python/twisted/lore/scripts/lore.py
+share/zope3/lib/python/twisted/lore/scripts/lore.pyc
+share/zope3/lib/python/twisted/lore/scripts/lore.pyo
+share/zope3/lib/python/twisted/lore/slides.py
+share/zope3/lib/python/twisted/lore/slides.pyc
+share/zope3/lib/python/twisted/lore/slides.pyo
+share/zope3/lib/python/twisted/lore/template.mgp
+share/zope3/lib/python/twisted/lore/test/__init__.py
+share/zope3/lib/python/twisted/lore/test/__init__.pyc
+share/zope3/lib/python/twisted/lore/test/__init__.pyo
+share/zope3/lib/python/twisted/lore/test/good_internal.xhtml
+share/zope3/lib/python/twisted/lore/test/good_simple.xhtml
+share/zope3/lib/python/twisted/lore/test/lore_index_file_out.html
+share/zope3/lib/python/twisted/lore/test/lore_index_file_out_multiple.html
+share/zope3/lib/python/twisted/lore/test/lore_index_file_unnumbered_multiple_out.html
+share/zope3/lib/python/twisted/lore/test/lore_index_file_unnumbered_out.html
+share/zope3/lib/python/twisted/lore/test/lore_index_test.xhtml
+share/zope3/lib/python/twisted/lore/test/lore_index_test2.xhtml
+share/zope3/lib/python/twisted/lore/test/lore_index_test3.xhtml
+share/zope3/lib/python/twisted/lore/test/lore_index_test_out.html
+share/zope3/lib/python/twisted/lore/test/lore_index_test_out2.html
+share/zope3/lib/python/twisted/lore/test/lore_numbering_test.xhtml
+share/zope3/lib/python/twisted/lore/test/lore_numbering_test_out.html
+share/zope3/lib/python/twisted/lore/test/lore_numbering_test_out2.html
+share/zope3/lib/python/twisted/lore/test/simple.html
+share/zope3/lib/python/twisted/lore/test/simple.xhtml
+share/zope3/lib/python/twisted/lore/test/simple1.xhtml
+share/zope3/lib/python/twisted/lore/test/simple2.xhtml
+share/zope3/lib/python/twisted/lore/test/simple3.html
+share/zope3/lib/python/twisted/lore/test/simple3.xhtml
+share/zope3/lib/python/twisted/lore/test/simple4.html
+share/zope3/lib/python/twisted/lore/test/simple4.xhtml
+share/zope3/lib/python/twisted/lore/test/simple4foo.xhtml
+share/zope3/lib/python/twisted/lore/test/template.tpl
+share/zope3/lib/python/twisted/lore/test/test_lore.py
+share/zope3/lib/python/twisted/lore/test/test_lore.pyc
+share/zope3/lib/python/twisted/lore/test/test_lore.pyo
+share/zope3/lib/python/twisted/lore/texi.py
+share/zope3/lib/python/twisted/lore/texi.pyc
+share/zope3/lib/python/twisted/lore/texi.pyo
+share/zope3/lib/python/twisted/lore/topfiles/NEWS
+share/zope3/lib/python/twisted/lore/topfiles/README
+share/zope3/lib/python/twisted/lore/topfiles/setup.py
+share/zope3/lib/python/twisted/lore/topfiles/setup.pyc
+share/zope3/lib/python/twisted/lore/topfiles/setup.pyo
+share/zope3/lib/python/twisted/lore/tree.py
+share/zope3/lib/python/twisted/lore/tree.pyc
+share/zope3/lib/python/twisted/lore/tree.pyo
+share/zope3/lib/python/twisted/mail/__init__.py
+share/zope3/lib/python/twisted/mail/__init__.pyc
+share/zope3/lib/python/twisted/mail/__init__.pyo
+share/zope3/lib/python/twisted/mail/alias.py
+share/zope3/lib/python/twisted/mail/alias.pyc
+share/zope3/lib/python/twisted/mail/alias.pyo
+share/zope3/lib/python/twisted/mail/bounce.py
+share/zope3/lib/python/twisted/mail/bounce.pyc
+share/zope3/lib/python/twisted/mail/bounce.pyo
+share/zope3/lib/python/twisted/mail/imap4.py
+share/zope3/lib/python/twisted/mail/imap4.pyc
+share/zope3/lib/python/twisted/mail/imap4.pyo
+share/zope3/lib/python/twisted/mail/mail.py
+share/zope3/lib/python/twisted/mail/mail.pyc
+share/zope3/lib/python/twisted/mail/mail.pyo
+share/zope3/lib/python/twisted/mail/maildir.py
+share/zope3/lib/python/twisted/mail/maildir.pyc
+share/zope3/lib/python/twisted/mail/maildir.pyo
+share/zope3/lib/python/twisted/mail/pb.py
+share/zope3/lib/python/twisted/mail/pb.pyc
+share/zope3/lib/python/twisted/mail/pb.pyo
+share/zope3/lib/python/twisted/mail/pop3.py
+share/zope3/lib/python/twisted/mail/pop3.pyc
+share/zope3/lib/python/twisted/mail/pop3.pyo
+share/zope3/lib/python/twisted/mail/pop3client.py
+share/zope3/lib/python/twisted/mail/pop3client.pyc
+share/zope3/lib/python/twisted/mail/pop3client.pyo
+share/zope3/lib/python/twisted/mail/protocols.py
+share/zope3/lib/python/twisted/mail/protocols.pyc
+share/zope3/lib/python/twisted/mail/protocols.pyo
+share/zope3/lib/python/twisted/mail/relay.py
+share/zope3/lib/python/twisted/mail/relay.pyc
+share/zope3/lib/python/twisted/mail/relay.pyo
+share/zope3/lib/python/twisted/mail/relaymanager.py
+share/zope3/lib/python/twisted/mail/relaymanager.pyc
+share/zope3/lib/python/twisted/mail/relaymanager.pyo
+share/zope3/lib/python/twisted/mail/scripts/__init__.py
+share/zope3/lib/python/twisted/mail/scripts/__init__.pyc
+share/zope3/lib/python/twisted/mail/scripts/__init__.pyo
+share/zope3/lib/python/twisted/mail/scripts/mailmail.py
+share/zope3/lib/python/twisted/mail/scripts/mailmail.pyc
+share/zope3/lib/python/twisted/mail/scripts/mailmail.pyo
+share/zope3/lib/python/twisted/mail/smtp.py
+share/zope3/lib/python/twisted/mail/smtp.pyc
+share/zope3/lib/python/twisted/mail/smtp.pyo
+share/zope3/lib/python/twisted/mail/tap.py
+share/zope3/lib/python/twisted/mail/tap.pyc
+share/zope3/lib/python/twisted/mail/tap.pyo
+share/zope3/lib/python/twisted/mail/test/__init__.py
+share/zope3/lib/python/twisted/mail/test/__init__.pyc
+share/zope3/lib/python/twisted/mail/test/__init__.pyo
+share/zope3/lib/python/twisted/mail/test/pop3testserver.py
+share/zope3/lib/python/twisted/mail/test/pop3testserver.pyc
+share/zope3/lib/python/twisted/mail/test/pop3testserver.pyo
+share/zope3/lib/python/twisted/mail/test/process.alias.sh
+share/zope3/lib/python/twisted/mail/test/rfc822.message
+share/zope3/lib/python/twisted/mail/test/test_bounce.py
+share/zope3/lib/python/twisted/mail/test/test_bounce.pyc
+share/zope3/lib/python/twisted/mail/test/test_bounce.pyo
+share/zope3/lib/python/twisted/mail/test/test_imap.py
+share/zope3/lib/python/twisted/mail/test/test_imap.pyc
+share/zope3/lib/python/twisted/mail/test/test_imap.pyo
+share/zope3/lib/python/twisted/mail/test/test_mail.py
+share/zope3/lib/python/twisted/mail/test/test_mail.pyc
+share/zope3/lib/python/twisted/mail/test/test_mail.pyo
+share/zope3/lib/python/twisted/mail/test/test_pop3.py
+share/zope3/lib/python/twisted/mail/test/test_pop3.pyc
+share/zope3/lib/python/twisted/mail/test/test_pop3.pyo
+share/zope3/lib/python/twisted/mail/test/test_pop3client.py
+share/zope3/lib/python/twisted/mail/test/test_pop3client.pyc
+share/zope3/lib/python/twisted/mail/test/test_pop3client.pyo
+share/zope3/lib/python/twisted/mail/test/test_smtp.py
+share/zope3/lib/python/twisted/mail/test/test_smtp.pyc
+share/zope3/lib/python/twisted/mail/test/test_smtp.pyo
+share/zope3/lib/python/twisted/mail/topfiles/NEWS
+share/zope3/lib/python/twisted/mail/topfiles/README
+share/zope3/lib/python/twisted/mail/topfiles/setup.py
+share/zope3/lib/python/twisted/mail/topfiles/setup.pyc
+share/zope3/lib/python/twisted/mail/topfiles/setup.pyo
+share/zope3/lib/python/twisted/manhole/__init__.py
+share/zope3/lib/python/twisted/manhole/__init__.pyc
+share/zope3/lib/python/twisted/manhole/__init__.pyo
+share/zope3/lib/python/twisted/manhole/_inspectro.py
+share/zope3/lib/python/twisted/manhole/_inspectro.pyc
+share/zope3/lib/python/twisted/manhole/_inspectro.pyo
+share/zope3/lib/python/twisted/manhole/explorer.py
+share/zope3/lib/python/twisted/manhole/explorer.pyc
+share/zope3/lib/python/twisted/manhole/explorer.pyo
+share/zope3/lib/python/twisted/manhole/gladereactor.glade
+share/zope3/lib/python/twisted/manhole/gladereactor.py
+share/zope3/lib/python/twisted/manhole/gladereactor.pyc
+share/zope3/lib/python/twisted/manhole/gladereactor.pyo
+share/zope3/lib/python/twisted/manhole/inspectro.glade
+share/zope3/lib/python/twisted/manhole/logview.glade
+share/zope3/lib/python/twisted/manhole/service.py
+share/zope3/lib/python/twisted/manhole/service.pyc
+share/zope3/lib/python/twisted/manhole/service.pyo
+share/zope3/lib/python/twisted/manhole/telnet.py
+share/zope3/lib/python/twisted/manhole/telnet.pyc
+share/zope3/lib/python/twisted/manhole/telnet.pyo
+share/zope3/lib/python/twisted/manhole/ui/__init__.py
+share/zope3/lib/python/twisted/manhole/ui/__init__.pyc
+share/zope3/lib/python/twisted/manhole/ui/__init__.pyo
+share/zope3/lib/python/twisted/manhole/ui/gtk2manhole.glade
+share/zope3/lib/python/twisted/manhole/ui/gtk2manhole.py
+share/zope3/lib/python/twisted/manhole/ui/gtk2manhole.pyc
+share/zope3/lib/python/twisted/manhole/ui/gtk2manhole.pyo
+share/zope3/lib/python/twisted/manhole/ui/gtkmanhole.py
+share/zope3/lib/python/twisted/manhole/ui/gtkmanhole.pyc
+share/zope3/lib/python/twisted/manhole/ui/gtkmanhole.pyo
+share/zope3/lib/python/twisted/manhole/ui/gtkrc
+share/zope3/lib/python/twisted/manhole/ui/pywidgets.py
+share/zope3/lib/python/twisted/manhole/ui/pywidgets.pyc
+share/zope3/lib/python/twisted/manhole/ui/pywidgets.pyo
+share/zope3/lib/python/twisted/manhole/ui/spelunk_gnome.py
+share/zope3/lib/python/twisted/manhole/ui/spelunk_gnome.pyc
+share/zope3/lib/python/twisted/manhole/ui/spelunk_gnome.pyo
+share/zope3/lib/python/twisted/names/__init__.py
+share/zope3/lib/python/twisted/names/__init__.pyc
+share/zope3/lib/python/twisted/names/__init__.pyo
+share/zope3/lib/python/twisted/names/authority.py
+share/zope3/lib/python/twisted/names/authority.pyc
+share/zope3/lib/python/twisted/names/authority.pyo
+share/zope3/lib/python/twisted/names/cache.py
+share/zope3/lib/python/twisted/names/cache.pyc
+share/zope3/lib/python/twisted/names/cache.pyo
+share/zope3/lib/python/twisted/names/client.py
+share/zope3/lib/python/twisted/names/client.pyc
+share/zope3/lib/python/twisted/names/client.pyo
+share/zope3/lib/python/twisted/names/common.py
+share/zope3/lib/python/twisted/names/common.pyc
+share/zope3/lib/python/twisted/names/common.pyo
+share/zope3/lib/python/twisted/names/dns.py
+share/zope3/lib/python/twisted/names/dns.pyc
+share/zope3/lib/python/twisted/names/dns.pyo
+share/zope3/lib/python/twisted/names/hosts.py
+share/zope3/lib/python/twisted/names/hosts.pyc
+share/zope3/lib/python/twisted/names/hosts.pyo
+share/zope3/lib/python/twisted/names/resolve.py
+share/zope3/lib/python/twisted/names/resolve.pyc
+share/zope3/lib/python/twisted/names/resolve.pyo
+share/zope3/lib/python/twisted/names/root.py
+share/zope3/lib/python/twisted/names/root.pyc
+share/zope3/lib/python/twisted/names/root.pyo
+share/zope3/lib/python/twisted/names/secondary.py
+share/zope3/lib/python/twisted/names/secondary.pyc
+share/zope3/lib/python/twisted/names/secondary.pyo
+share/zope3/lib/python/twisted/names/server.py
+share/zope3/lib/python/twisted/names/server.pyc
+share/zope3/lib/python/twisted/names/server.pyo
+share/zope3/lib/python/twisted/names/srvconnect.py
+share/zope3/lib/python/twisted/names/srvconnect.pyc
+share/zope3/lib/python/twisted/names/srvconnect.pyo
+share/zope3/lib/python/twisted/names/tap.py
+share/zope3/lib/python/twisted/names/tap.pyc
+share/zope3/lib/python/twisted/names/tap.pyo
+share/zope3/lib/python/twisted/names/test/__init__.py
+share/zope3/lib/python/twisted/names/test/__init__.pyc
+share/zope3/lib/python/twisted/names/test/__init__.pyo
+share/zope3/lib/python/twisted/names/test/test_dns.py
+share/zope3/lib/python/twisted/names/test/test_dns.pyc
+share/zope3/lib/python/twisted/names/test/test_dns.pyo
+share/zope3/lib/python/twisted/names/test/test_names.py
+share/zope3/lib/python/twisted/names/test/test_names.pyc
+share/zope3/lib/python/twisted/names/test/test_names.pyo
+share/zope3/lib/python/twisted/names/test/test_rootresolve.py
+share/zope3/lib/python/twisted/names/test/test_rootresolve.pyc
+share/zope3/lib/python/twisted/names/test/test_rootresolve.pyo
+share/zope3/lib/python/twisted/names/topfiles/NEWS
+share/zope3/lib/python/twisted/names/topfiles/README
+share/zope3/lib/python/twisted/names/topfiles/setup.py
+share/zope3/lib/python/twisted/names/topfiles/setup.pyc
+share/zope3/lib/python/twisted/names/topfiles/setup.pyo
+share/zope3/lib/python/twisted/news/__init__.py
+share/zope3/lib/python/twisted/news/__init__.pyc
+share/zope3/lib/python/twisted/news/__init__.pyo
+share/zope3/lib/python/twisted/news/database.py
+share/zope3/lib/python/twisted/news/database.pyc
+share/zope3/lib/python/twisted/news/database.pyo
+share/zope3/lib/python/twisted/news/news.py
+share/zope3/lib/python/twisted/news/news.pyc
+share/zope3/lib/python/twisted/news/news.pyo
+share/zope3/lib/python/twisted/news/nntp.py
+share/zope3/lib/python/twisted/news/nntp.pyc
+share/zope3/lib/python/twisted/news/nntp.pyo
+share/zope3/lib/python/twisted/news/tap.py
+share/zope3/lib/python/twisted/news/tap.pyc
+share/zope3/lib/python/twisted/news/tap.pyo
+share/zope3/lib/python/twisted/news/test/__init__.py
+share/zope3/lib/python/twisted/news/test/__init__.pyc
+share/zope3/lib/python/twisted/news/test/__init__.pyo
+share/zope3/lib/python/twisted/news/test/test_news.py
+share/zope3/lib/python/twisted/news/test/test_news.pyc
+share/zope3/lib/python/twisted/news/test/test_news.pyo
+share/zope3/lib/python/twisted/news/test/test_nntp.py
+share/zope3/lib/python/twisted/news/test/test_nntp.pyc
+share/zope3/lib/python/twisted/news/test/test_nntp.pyo
+share/zope3/lib/python/twisted/news/topfiles/README
+share/zope3/lib/python/twisted/news/topfiles/setup.py
+share/zope3/lib/python/twisted/news/topfiles/setup.pyc
+share/zope3/lib/python/twisted/news/topfiles/setup.pyo
+share/zope3/lib/python/twisted/pair/__init__.py
+share/zope3/lib/python/twisted/pair/__init__.pyc
+share/zope3/lib/python/twisted/pair/__init__.pyo
+share/zope3/lib/python/twisted/pair/ethernet.py
+share/zope3/lib/python/twisted/pair/ethernet.pyc
+share/zope3/lib/python/twisted/pair/ethernet.pyo
+share/zope3/lib/python/twisted/pair/ip.py
+share/zope3/lib/python/twisted/pair/ip.pyc
+share/zope3/lib/python/twisted/pair/ip.pyo
+share/zope3/lib/python/twisted/pair/raw.py
+share/zope3/lib/python/twisted/pair/raw.pyc
+share/zope3/lib/python/twisted/pair/raw.pyo
+share/zope3/lib/python/twisted/pair/rawudp.py
+share/zope3/lib/python/twisted/pair/rawudp.pyc
+share/zope3/lib/python/twisted/pair/rawudp.pyo
+share/zope3/lib/python/twisted/pair/test/__init__.py
+share/zope3/lib/python/twisted/pair/test/__init__.pyc
+share/zope3/lib/python/twisted/pair/test/__init__.pyo
+share/zope3/lib/python/twisted/pair/test/test_ethernet.py
+share/zope3/lib/python/twisted/pair/test/test_ethernet.pyc
+share/zope3/lib/python/twisted/pair/test/test_ethernet.pyo
+share/zope3/lib/python/twisted/pair/test/test_ip.py
+share/zope3/lib/python/twisted/pair/test/test_ip.pyc
+share/zope3/lib/python/twisted/pair/test/test_ip.pyo
+share/zope3/lib/python/twisted/pair/test/test_rawudp.py
+share/zope3/lib/python/twisted/pair/test/test_rawudp.pyc
+share/zope3/lib/python/twisted/pair/test/test_rawudp.pyo
+share/zope3/lib/python/twisted/pair/topfiles/README
+share/zope3/lib/python/twisted/pair/topfiles/setup.py
+share/zope3/lib/python/twisted/pair/topfiles/setup.pyc
+share/zope3/lib/python/twisted/pair/topfiles/setup.pyo
+share/zope3/lib/python/twisted/pair/tuntap.py
+share/zope3/lib/python/twisted/pair/tuntap.pyc
+share/zope3/lib/python/twisted/pair/tuntap.pyo
+share/zope3/lib/python/twisted/persisted/__init__.py
+share/zope3/lib/python/twisted/persisted/__init__.pyc
+share/zope3/lib/python/twisted/persisted/__init__.pyo
+share/zope3/lib/python/twisted/persisted/aot.py
+share/zope3/lib/python/twisted/persisted/aot.pyc
+share/zope3/lib/python/twisted/persisted/aot.pyo
+share/zope3/lib/python/twisted/persisted/crefutil.py
+share/zope3/lib/python/twisted/persisted/crefutil.pyc
+share/zope3/lib/python/twisted/persisted/crefutil.pyo
+share/zope3/lib/python/twisted/persisted/dirdbm.py
+share/zope3/lib/python/twisted/persisted/dirdbm.pyc
+share/zope3/lib/python/twisted/persisted/dirdbm.pyo
+share/zope3/lib/python/twisted/persisted/journal/__init__.py
+share/zope3/lib/python/twisted/persisted/journal/__init__.pyc
+share/zope3/lib/python/twisted/persisted/journal/__init__.pyo
+share/zope3/lib/python/twisted/persisted/journal/base.py
+share/zope3/lib/python/twisted/persisted/journal/base.pyc
+share/zope3/lib/python/twisted/persisted/journal/base.pyo
+share/zope3/lib/python/twisted/persisted/journal/picklelog.py
+share/zope3/lib/python/twisted/persisted/journal/picklelog.pyc
+share/zope3/lib/python/twisted/persisted/journal/picklelog.pyo
+share/zope3/lib/python/twisted/persisted/journal/rowjournal.py
+share/zope3/lib/python/twisted/persisted/journal/rowjournal.pyc
+share/zope3/lib/python/twisted/persisted/journal/rowjournal.pyo
+share/zope3/lib/python/twisted/persisted/marmalade.py
+share/zope3/lib/python/twisted/persisted/marmalade.pyc
+share/zope3/lib/python/twisted/persisted/marmalade.pyo
+share/zope3/lib/python/twisted/persisted/sob.py
+share/zope3/lib/python/twisted/persisted/sob.pyc
+share/zope3/lib/python/twisted/persisted/sob.pyo
+share/zope3/lib/python/twisted/persisted/styles.py
+share/zope3/lib/python/twisted/persisted/styles.pyc
+share/zope3/lib/python/twisted/persisted/styles.pyo
+share/zope3/lib/python/twisted/plugin.py
+share/zope3/lib/python/twisted/plugin.pyc
+share/zope3/lib/python/twisted/plugin.pyo
+share/zope3/lib/python/twisted/plugins/__init__.py
+share/zope3/lib/python/twisted/plugins/__init__.pyc
+share/zope3/lib/python/twisted/plugins/__init__.pyo
+share/zope3/lib/python/twisted/plugins/notestplugin.py
+share/zope3/lib/python/twisted/plugins/notestplugin.pyc
+share/zope3/lib/python/twisted/plugins/notestplugin.pyo
+share/zope3/lib/python/twisted/plugins/testplugin.py
+share/zope3/lib/python/twisted/plugins/testplugin.pyc
+share/zope3/lib/python/twisted/plugins/testplugin.pyo
+share/zope3/lib/python/twisted/plugins/twisted_conch.py
+share/zope3/lib/python/twisted/plugins/twisted_conch.pyc
+share/zope3/lib/python/twisted/plugins/twisted_conch.pyo
+share/zope3/lib/python/twisted/plugins/twisted_ftp.py
+share/zope3/lib/python/twisted/plugins/twisted_ftp.pyc
+share/zope3/lib/python/twisted/plugins/twisted_ftp.pyo
+share/zope3/lib/python/twisted/plugins/twisted_inet.py
+share/zope3/lib/python/twisted/plugins/twisted_inet.pyc
+share/zope3/lib/python/twisted/plugins/twisted_inet.pyo
+share/zope3/lib/python/twisted/plugins/twisted_lore.py
+share/zope3/lib/python/twisted/plugins/twisted_lore.pyc
+share/zope3/lib/python/twisted/plugins/twisted_lore.pyo
+share/zope3/lib/python/twisted/plugins/twisted_mail.py
+share/zope3/lib/python/twisted/plugins/twisted_mail.pyc
+share/zope3/lib/python/twisted/plugins/twisted_mail.pyo
+share/zope3/lib/python/twisted/plugins/twisted_manhole.py
+share/zope3/lib/python/twisted/plugins/twisted_manhole.pyc
+share/zope3/lib/python/twisted/plugins/twisted_manhole.pyo
+share/zope3/lib/python/twisted/plugins/twisted_names.py
+share/zope3/lib/python/twisted/plugins/twisted_names.pyc
+share/zope3/lib/python/twisted/plugins/twisted_names.pyo
+share/zope3/lib/python/twisted/plugins/twisted_news.py
+share/zope3/lib/python/twisted/plugins/twisted_news.pyc
+share/zope3/lib/python/twisted/plugins/twisted_news.pyo
+share/zope3/lib/python/twisted/plugins/twisted_portforward.py
+share/zope3/lib/python/twisted/plugins/twisted_portforward.pyc
+share/zope3/lib/python/twisted/plugins/twisted_portforward.pyo
+share/zope3/lib/python/twisted/plugins/twisted_socks.py
+share/zope3/lib/python/twisted/plugins/twisted_socks.pyc
+share/zope3/lib/python/twisted/plugins/twisted_socks.pyo
+share/zope3/lib/python/twisted/plugins/twisted_telnet.py
+share/zope3/lib/python/twisted/plugins/twisted_telnet.pyc
+share/zope3/lib/python/twisted/plugins/twisted_telnet.pyo
+share/zope3/lib/python/twisted/plugins/twisted_trial.py
+share/zope3/lib/python/twisted/plugins/twisted_trial.pyc
+share/zope3/lib/python/twisted/plugins/twisted_trial.pyo
+share/zope3/lib/python/twisted/plugins/twisted_web.py
+share/zope3/lib/python/twisted/plugins/twisted_web.pyc
+share/zope3/lib/python/twisted/plugins/twisted_web.pyo
+share/zope3/lib/python/twisted/plugins/twisted_web2.py
+share/zope3/lib/python/twisted/plugins/twisted_web2.pyc
+share/zope3/lib/python/twisted/plugins/twisted_web2.pyo
+share/zope3/lib/python/twisted/plugins/twisted_words.py
+share/zope3/lib/python/twisted/plugins/twisted_words.pyc
+share/zope3/lib/python/twisted/plugins/twisted_words.pyo
+share/zope3/lib/python/twisted/protocols/__init__.py
+share/zope3/lib/python/twisted/protocols/__init__.pyc
+share/zope3/lib/python/twisted/protocols/__init__.pyo
+share/zope3/lib/python/twisted/protocols/_c_urlarg.c
+share/zope3/lib/python/twisted/protocols/basic.py
+share/zope3/lib/python/twisted/protocols/basic.pyc
+share/zope3/lib/python/twisted/protocols/basic.pyo
+share/zope3/lib/python/twisted/protocols/dict.py
+share/zope3/lib/python/twisted/protocols/dict.pyc
+share/zope3/lib/python/twisted/protocols/dict.pyo
+share/zope3/lib/python/twisted/protocols/dns.py
+share/zope3/lib/python/twisted/protocols/dns.pyc
+share/zope3/lib/python/twisted/protocols/dns.pyo
+share/zope3/lib/python/twisted/protocols/ethernet.py
+share/zope3/lib/python/twisted/protocols/ethernet.pyc
+share/zope3/lib/python/twisted/protocols/ethernet.pyo
+share/zope3/lib/python/twisted/protocols/finger.py
+share/zope3/lib/python/twisted/protocols/finger.pyc
+share/zope3/lib/python/twisted/protocols/finger.pyo
+share/zope3/lib/python/twisted/protocols/ftp.py
+share/zope3/lib/python/twisted/protocols/ftp.pyc
+share/zope3/lib/python/twisted/protocols/ftp.pyo
+share/zope3/lib/python/twisted/protocols/gps/__init__.py
+share/zope3/lib/python/twisted/protocols/gps/__init__.pyc
+share/zope3/lib/python/twisted/protocols/gps/__init__.pyo
+share/zope3/lib/python/twisted/protocols/gps/nmea.py
+share/zope3/lib/python/twisted/protocols/gps/nmea.pyc
+share/zope3/lib/python/twisted/protocols/gps/nmea.pyo
+share/zope3/lib/python/twisted/protocols/gps/rockwell.py
+share/zope3/lib/python/twisted/protocols/gps/rockwell.pyc
+share/zope3/lib/python/twisted/protocols/gps/rockwell.pyo
+share/zope3/lib/python/twisted/protocols/htb.py
+share/zope3/lib/python/twisted/protocols/htb.pyc
+share/zope3/lib/python/twisted/protocols/htb.pyo
+share/zope3/lib/python/twisted/protocols/http.py
+share/zope3/lib/python/twisted/protocols/http.pyc
+share/zope3/lib/python/twisted/protocols/http.pyo
+share/zope3/lib/python/twisted/protocols/ident.py
+share/zope3/lib/python/twisted/protocols/ident.pyc
+share/zope3/lib/python/twisted/protocols/ident.pyo
+share/zope3/lib/python/twisted/protocols/imap4.py
+share/zope3/lib/python/twisted/protocols/imap4.pyc
+share/zope3/lib/python/twisted/protocols/imap4.pyo
+share/zope3/lib/python/twisted/protocols/ip.py
+share/zope3/lib/python/twisted/protocols/ip.pyc
+share/zope3/lib/python/twisted/protocols/ip.pyo
+share/zope3/lib/python/twisted/protocols/irc.py
+share/zope3/lib/python/twisted/protocols/irc.pyc
+share/zope3/lib/python/twisted/protocols/irc.pyo
+share/zope3/lib/python/twisted/protocols/jabber.py
+share/zope3/lib/python/twisted/protocols/jabber.pyc
+share/zope3/lib/python/twisted/protocols/jabber.pyo
+share/zope3/lib/python/twisted/protocols/loopback.py
+share/zope3/lib/python/twisted/protocols/loopback.pyc
+share/zope3/lib/python/twisted/protocols/loopback.pyo
+share/zope3/lib/python/twisted/protocols/mice/__init__.py
+share/zope3/lib/python/twisted/protocols/mice/__init__.pyc
+share/zope3/lib/python/twisted/protocols/mice/__init__.pyo
+share/zope3/lib/python/twisted/protocols/mice/mouseman.py
+share/zope3/lib/python/twisted/protocols/mice/mouseman.pyc
+share/zope3/lib/python/twisted/protocols/mice/mouseman.pyo
+share/zope3/lib/python/twisted/protocols/msn.py
+share/zope3/lib/python/twisted/protocols/msn.pyc
+share/zope3/lib/python/twisted/protocols/msn.pyo
+share/zope3/lib/python/twisted/protocols/nntp.py
+share/zope3/lib/python/twisted/protocols/nntp.pyc
+share/zope3/lib/python/twisted/protocols/nntp.pyo
+share/zope3/lib/python/twisted/protocols/oscar.py
+share/zope3/lib/python/twisted/protocols/oscar.pyc
+share/zope3/lib/python/twisted/protocols/oscar.pyo
+share/zope3/lib/python/twisted/protocols/pcp.py
+share/zope3/lib/python/twisted/protocols/pcp.pyc
+share/zope3/lib/python/twisted/protocols/pcp.pyo
+share/zope3/lib/python/twisted/protocols/policies.py
+share/zope3/lib/python/twisted/protocols/policies.pyc
+share/zope3/lib/python/twisted/protocols/policies.pyo
+share/zope3/lib/python/twisted/protocols/pop3.py
+share/zope3/lib/python/twisted/protocols/pop3.pyc
+share/zope3/lib/python/twisted/protocols/pop3.pyo
+share/zope3/lib/python/twisted/protocols/portforward.py
+share/zope3/lib/python/twisted/protocols/portforward.pyc
+share/zope3/lib/python/twisted/protocols/portforward.pyo
+share/zope3/lib/python/twisted/protocols/postfix.py
+share/zope3/lib/python/twisted/protocols/postfix.pyc
+share/zope3/lib/python/twisted/protocols/postfix.pyo
+share/zope3/lib/python/twisted/protocols/raw.py
+share/zope3/lib/python/twisted/protocols/raw.pyc
+share/zope3/lib/python/twisted/protocols/raw.pyo
+share/zope3/lib/python/twisted/protocols/rawudp.py
+share/zope3/lib/python/twisted/protocols/rawudp.pyc
+share/zope3/lib/python/twisted/protocols/rawudp.pyo
+share/zope3/lib/python/twisted/protocols/shoutcast.py
+share/zope3/lib/python/twisted/protocols/shoutcast.pyc
+share/zope3/lib/python/twisted/protocols/shoutcast.pyo
+share/zope3/lib/python/twisted/protocols/sip.py
+share/zope3/lib/python/twisted/protocols/sip.pyc
+share/zope3/lib/python/twisted/protocols/sip.pyo
+share/zope3/lib/python/twisted/protocols/smtp.py
+share/zope3/lib/python/twisted/protocols/smtp.pyc
+share/zope3/lib/python/twisted/protocols/smtp.pyo
+share/zope3/lib/python/twisted/protocols/socks.py
+share/zope3/lib/python/twisted/protocols/socks.pyc
+share/zope3/lib/python/twisted/protocols/socks.pyo
+share/zope3/lib/python/twisted/protocols/stateful.py
+share/zope3/lib/python/twisted/protocols/stateful.pyc
+share/zope3/lib/python/twisted/protocols/stateful.pyo
+share/zope3/lib/python/twisted/protocols/sux.py
+share/zope3/lib/python/twisted/protocols/sux.pyc
+share/zope3/lib/python/twisted/protocols/sux.pyo
+share/zope3/lib/python/twisted/protocols/telnet.py
+share/zope3/lib/python/twisted/protocols/telnet.pyc
+share/zope3/lib/python/twisted/protocols/telnet.pyo
+share/zope3/lib/python/twisted/protocols/toc.py
+share/zope3/lib/python/twisted/protocols/toc.pyc
+share/zope3/lib/python/twisted/protocols/toc.pyo
+share/zope3/lib/python/twisted/protocols/wire.py
+share/zope3/lib/python/twisted/protocols/wire.pyc
+share/zope3/lib/python/twisted/protocols/wire.pyo
+share/zope3/lib/python/twisted/protocols/xmlstream.py
+share/zope3/lib/python/twisted/protocols/xmlstream.pyc
+share/zope3/lib/python/twisted/protocols/xmlstream.pyo
+share/zope3/lib/python/twisted/python/__init__.py
+share/zope3/lib/python/twisted/python/__init__.pyc
+share/zope3/lib/python/twisted/python/__init__.pyo
+share/zope3/lib/python/twisted/python/_twisted_zsh_stub
+share/zope3/lib/python/twisted/python/compat.py
+share/zope3/lib/python/twisted/python/compat.pyc
+share/zope3/lib/python/twisted/python/compat.pyo
+share/zope3/lib/python/twisted/python/components.py
+share/zope3/lib/python/twisted/python/components.pyc
+share/zope3/lib/python/twisted/python/components.pyo
+share/zope3/lib/python/twisted/python/context.py
+share/zope3/lib/python/twisted/python/context.pyc
+share/zope3/lib/python/twisted/python/context.pyo
+share/zope3/lib/python/twisted/python/dispatch.py
+share/zope3/lib/python/twisted/python/dispatch.pyc
+share/zope3/lib/python/twisted/python/dispatch.pyo
+share/zope3/lib/python/twisted/python/dist.py
+share/zope3/lib/python/twisted/python/dist.pyc
+share/zope3/lib/python/twisted/python/dist.pyo
+share/zope3/lib/python/twisted/python/dxprofile.py
+share/zope3/lib/python/twisted/python/dxprofile.pyc
+share/zope3/lib/python/twisted/python/dxprofile.pyo
+share/zope3/lib/python/twisted/python/failure.py
+share/zope3/lib/python/twisted/python/failure.pyc
+share/zope3/lib/python/twisted/python/failure.pyo
+share/zope3/lib/python/twisted/python/filepath.py
+share/zope3/lib/python/twisted/python/filepath.pyc
+share/zope3/lib/python/twisted/python/filepath.pyo
+share/zope3/lib/python/twisted/python/finalize.py
+share/zope3/lib/python/twisted/python/finalize.pyc
+share/zope3/lib/python/twisted/python/finalize.pyo
+share/zope3/lib/python/twisted/python/formmethod.py
+share/zope3/lib/python/twisted/python/formmethod.pyc
+share/zope3/lib/python/twisted/python/formmethod.pyo
+share/zope3/lib/python/twisted/python/hook.py
+share/zope3/lib/python/twisted/python/hook.pyc
+share/zope3/lib/python/twisted/python/hook.pyo
+share/zope3/lib/python/twisted/python/htmlizer.py
+share/zope3/lib/python/twisted/python/htmlizer.pyc
+share/zope3/lib/python/twisted/python/htmlizer.pyo
+share/zope3/lib/python/twisted/python/lockfile.py
+share/zope3/lib/python/twisted/python/lockfile.pyc
+share/zope3/lib/python/twisted/python/lockfile.pyo
+share/zope3/lib/python/twisted/python/log.py
+share/zope3/lib/python/twisted/python/log.pyc
+share/zope3/lib/python/twisted/python/log.pyo
+share/zope3/lib/python/twisted/python/logfile.py
+share/zope3/lib/python/twisted/python/logfile.pyc
+share/zope3/lib/python/twisted/python/logfile.pyo
+share/zope3/lib/python/twisted/python/otp.py
+share/zope3/lib/python/twisted/python/otp.pyc
+share/zope3/lib/python/twisted/python/otp.pyo
+share/zope3/lib/python/twisted/python/plugin.py
+share/zope3/lib/python/twisted/python/plugin.pyc
+share/zope3/lib/python/twisted/python/plugin.pyo
+share/zope3/lib/python/twisted/python/procutils.py
+share/zope3/lib/python/twisted/python/procutils.pyc
+share/zope3/lib/python/twisted/python/procutils.pyo
+share/zope3/lib/python/twisted/python/pymodules/LICENSE-python.txt
+share/zope3/lib/python/twisted/python/pymodules/UserDictExtras.py
+share/zope3/lib/python/twisted/python/pymodules/UserDictExtras.pyc
+share/zope3/lib/python/twisted/python/pymodules/UserDictExtras.pyo
+share/zope3/lib/python/twisted/python/pymodules/__init__.py
+share/zope3/lib/python/twisted/python/pymodules/__init__.pyc
+share/zope3/lib/python/twisted/python/pymodules/__init__.pyo
+share/zope3/lib/python/twisted/python/pymodules/heapq.py
+share/zope3/lib/python/twisted/python/pymodules/heapq.pyc
+share/zope3/lib/python/twisted/python/pymodules/heapq.pyo
+share/zope3/lib/python/twisted/python/rebuild.py
+share/zope3/lib/python/twisted/python/rebuild.pyc
+share/zope3/lib/python/twisted/python/rebuild.pyo
+share/zope3/lib/python/twisted/python/reflect.py
+share/zope3/lib/python/twisted/python/reflect.pyc
+share/zope3/lib/python/twisted/python/reflect.pyo
+share/zope3/lib/python/twisted/python/release.py
+share/zope3/lib/python/twisted/python/release.pyc
+share/zope3/lib/python/twisted/python/release.pyo
+share/zope3/lib/python/twisted/python/roots.py
+share/zope3/lib/python/twisted/python/roots.pyc
+share/zope3/lib/python/twisted/python/roots.pyo
+share/zope3/lib/python/twisted/python/runtime.py
+share/zope3/lib/python/twisted/python/runtime.pyc
+share/zope3/lib/python/twisted/python/runtime.pyo
+share/zope3/lib/python/twisted/python/shortcut.py
+share/zope3/lib/python/twisted/python/shortcut.pyc
+share/zope3/lib/python/twisted/python/shortcut.pyo
+share/zope3/lib/python/twisted/python/syslog.py
+share/zope3/lib/python/twisted/python/syslog.pyc
+share/zope3/lib/python/twisted/python/syslog.pyo
+share/zope3/lib/python/twisted/python/text.py
+share/zope3/lib/python/twisted/python/text.pyc
+share/zope3/lib/python/twisted/python/text.pyo
+share/zope3/lib/python/twisted/python/threadable.py
+share/zope3/lib/python/twisted/python/threadable.pyc
+share/zope3/lib/python/twisted/python/threadable.pyo
+share/zope3/lib/python/twisted/python/threadpool.py
+share/zope3/lib/python/twisted/python/threadpool.pyc
+share/zope3/lib/python/twisted/python/threadpool.pyo
+share/zope3/lib/python/twisted/python/timeoutqueue.py
+share/zope3/lib/python/twisted/python/timeoutqueue.pyc
+share/zope3/lib/python/twisted/python/timeoutqueue.pyo
+share/zope3/lib/python/twisted/python/urlpath.py
+share/zope3/lib/python/twisted/python/urlpath.pyc
+share/zope3/lib/python/twisted/python/urlpath.pyo
+share/zope3/lib/python/twisted/python/usage.py
+share/zope3/lib/python/twisted/python/usage.pyc
+share/zope3/lib/python/twisted/python/usage.pyo
+share/zope3/lib/python/twisted/python/util.py
+share/zope3/lib/python/twisted/python/util.pyc
+share/zope3/lib/python/twisted/python/util.pyo
+share/zope3/lib/python/twisted/python/win32.py
+share/zope3/lib/python/twisted/python/win32.pyc
+share/zope3/lib/python/twisted/python/win32.pyo
+share/zope3/lib/python/twisted/python/zipstream.py
+share/zope3/lib/python/twisted/python/zipstream.pyc
+share/zope3/lib/python/twisted/python/zipstream.pyo
+share/zope3/lib/python/twisted/python/zsh/README
+share/zope3/lib/python/twisted/python/zsh/_cftp
+share/zope3/lib/python/twisted/python/zsh/_ckeygen
+share/zope3/lib/python/twisted/python/zsh/_conch
+share/zope3/lib/python/twisted/python/zsh/_lore
+share/zope3/lib/python/twisted/python/zsh/_manhole
+share/zope3/lib/python/twisted/python/zsh/_mktap
+share/zope3/lib/python/twisted/python/zsh/_pyhtmlizer
+share/zope3/lib/python/twisted/python/zsh/_tap2deb
+share/zope3/lib/python/twisted/python/zsh/_tap2rpm
+share/zope3/lib/python/twisted/python/zsh/_tapconvert
+share/zope3/lib/python/twisted/python/zsh/_tkconch
+share/zope3/lib/python/twisted/python/zsh/_tkmktap
+share/zope3/lib/python/twisted/python/zsh/_trial
+share/zope3/lib/python/twisted/python/zsh/_twistd
+share/zope3/lib/python/twisted/python/zsh/_websetroot
+share/zope3/lib/python/twisted/python/zshcomp.py
+share/zope3/lib/python/twisted/python/zshcomp.pyc
+share/zope3/lib/python/twisted/python/zshcomp.pyo
+share/zope3/lib/python/twisted/runner/__init__.py
+share/zope3/lib/python/twisted/runner/__init__.pyc
+share/zope3/lib/python/twisted/runner/__init__.pyo
+share/zope3/lib/python/twisted/runner/inetd.py
+share/zope3/lib/python/twisted/runner/inetd.pyc
+share/zope3/lib/python/twisted/runner/inetd.pyo
+share/zope3/lib/python/twisted/runner/inetdconf.py
+share/zope3/lib/python/twisted/runner/inetdconf.pyc
+share/zope3/lib/python/twisted/runner/inetdconf.pyo
+share/zope3/lib/python/twisted/runner/inetdtap.py
+share/zope3/lib/python/twisted/runner/inetdtap.pyc
+share/zope3/lib/python/twisted/runner/inetdtap.pyo
+share/zope3/lib/python/twisted/runner/portmap.c
+share/zope3/lib/python/twisted/runner/procmon.py
+share/zope3/lib/python/twisted/runner/procmon.pyc
+share/zope3/lib/python/twisted/runner/procmon.pyo
+share/zope3/lib/python/twisted/runner/procutils.py
+share/zope3/lib/python/twisted/runner/procutils.pyc
+share/zope3/lib/python/twisted/runner/procutils.pyo
+share/zope3/lib/python/twisted/runner/topfiles/NEWS
+share/zope3/lib/python/twisted/runner/topfiles/README
+share/zope3/lib/python/twisted/runner/topfiles/setup.py
+share/zope3/lib/python/twisted/runner/topfiles/setup.pyc
+share/zope3/lib/python/twisted/runner/topfiles/setup.pyo
+share/zope3/lib/python/twisted/scripts/__init__.py
+share/zope3/lib/python/twisted/scripts/__init__.pyc
+share/zope3/lib/python/twisted/scripts/__init__.pyo
+share/zope3/lib/python/twisted/scripts/_twistw.py
+share/zope3/lib/python/twisted/scripts/_twistw.pyc
+share/zope3/lib/python/twisted/scripts/_twistw.pyo
+share/zope3/lib/python/twisted/scripts/htmlizer.py
+share/zope3/lib/python/twisted/scripts/htmlizer.pyc
+share/zope3/lib/python/twisted/scripts/htmlizer.pyo
+share/zope3/lib/python/twisted/scripts/manhole.py
+share/zope3/lib/python/twisted/scripts/manhole.pyc
+share/zope3/lib/python/twisted/scripts/manhole.pyo
+share/zope3/lib/python/twisted/scripts/mktap.py
+share/zope3/lib/python/twisted/scripts/mktap.pyc
+share/zope3/lib/python/twisted/scripts/mktap.pyo
+share/zope3/lib/python/twisted/scripts/tap2deb.py
+share/zope3/lib/python/twisted/scripts/tap2deb.pyc
+share/zope3/lib/python/twisted/scripts/tap2deb.pyo
+share/zope3/lib/python/twisted/scripts/tap2rpm.py
+share/zope3/lib/python/twisted/scripts/tap2rpm.pyc
+share/zope3/lib/python/twisted/scripts/tap2rpm.pyo
+share/zope3/lib/python/twisted/scripts/tapconvert.py
+share/zope3/lib/python/twisted/scripts/tapconvert.pyc
+share/zope3/lib/python/twisted/scripts/tapconvert.pyo
+share/zope3/lib/python/twisted/scripts/tkmktap.py
+share/zope3/lib/python/twisted/scripts/tkmktap.pyc
+share/zope3/lib/python/twisted/scripts/tkmktap.pyo
+share/zope3/lib/python/twisted/scripts/tkunzip.py
+share/zope3/lib/python/twisted/scripts/tkunzip.pyc
+share/zope3/lib/python/twisted/scripts/tkunzip.pyo
+share/zope3/lib/python/twisted/scripts/trial.py
+share/zope3/lib/python/twisted/scripts/trial.pyc
+share/zope3/lib/python/twisted/scripts/trial.pyo
+share/zope3/lib/python/twisted/scripts/twistd.py
+share/zope3/lib/python/twisted/scripts/twistd.pyc
+share/zope3/lib/python/twisted/scripts/twistd.pyo
+share/zope3/lib/python/twisted/spread/__init__.py
+share/zope3/lib/python/twisted/spread/__init__.pyc
+share/zope3/lib/python/twisted/spread/__init__.pyo
+share/zope3/lib/python/twisted/spread/banana.py
+share/zope3/lib/python/twisted/spread/banana.pyc
+share/zope3/lib/python/twisted/spread/banana.pyo
+share/zope3/lib/python/twisted/spread/cBanana.c
+share/zope3/lib/python/twisted/spread/flavors.py
+share/zope3/lib/python/twisted/spread/flavors.pyc
+share/zope3/lib/python/twisted/spread/flavors.pyo
+share/zope3/lib/python/twisted/spread/interfaces.py
+share/zope3/lib/python/twisted/spread/interfaces.pyc
+share/zope3/lib/python/twisted/spread/interfaces.pyo
+share/zope3/lib/python/twisted/spread/jelly.py
+share/zope3/lib/python/twisted/spread/jelly.pyc
+share/zope3/lib/python/twisted/spread/jelly.pyo
+share/zope3/lib/python/twisted/spread/newjelly.py
+share/zope3/lib/python/twisted/spread/newjelly.pyc
+share/zope3/lib/python/twisted/spread/newjelly.pyo
+share/zope3/lib/python/twisted/spread/pb.py
+share/zope3/lib/python/twisted/spread/pb.pyc
+share/zope3/lib/python/twisted/spread/pb.pyo
+share/zope3/lib/python/twisted/spread/publish.py
+share/zope3/lib/python/twisted/spread/publish.pyc
+share/zope3/lib/python/twisted/spread/publish.pyo
+share/zope3/lib/python/twisted/spread/refpath.py
+share/zope3/lib/python/twisted/spread/refpath.pyc
+share/zope3/lib/python/twisted/spread/refpath.pyo
+share/zope3/lib/python/twisted/spread/sturdy.py
+share/zope3/lib/python/twisted/spread/sturdy.pyc
+share/zope3/lib/python/twisted/spread/sturdy.pyo
+share/zope3/lib/python/twisted/spread/ui/__init__.py
+share/zope3/lib/python/twisted/spread/ui/__init__.pyc
+share/zope3/lib/python/twisted/spread/ui/__init__.pyo
+share/zope3/lib/python/twisted/spread/ui/gtk2util.py
+share/zope3/lib/python/twisted/spread/ui/gtk2util.pyc
+share/zope3/lib/python/twisted/spread/ui/gtk2util.pyo
+share/zope3/lib/python/twisted/spread/ui/gtkutil.py
+share/zope3/lib/python/twisted/spread/ui/gtkutil.pyc
+share/zope3/lib/python/twisted/spread/ui/gtkutil.pyo
+share/zope3/lib/python/twisted/spread/ui/login2.glade
+share/zope3/lib/python/twisted/spread/ui/tktree.py
+share/zope3/lib/python/twisted/spread/ui/tktree.pyc
+share/zope3/lib/python/twisted/spread/ui/tktree.pyo
+share/zope3/lib/python/twisted/spread/ui/tkutil.py
+share/zope3/lib/python/twisted/spread/ui/tkutil.pyc
+share/zope3/lib/python/twisted/spread/ui/tkutil.pyo
+share/zope3/lib/python/twisted/spread/util.py
+share/zope3/lib/python/twisted/spread/util.pyc
+share/zope3/lib/python/twisted/spread/util.pyo
+share/zope3/lib/python/twisted/tap/__init__.py
+share/zope3/lib/python/twisted/tap/__init__.pyc
+share/zope3/lib/python/twisted/tap/__init__.pyo
+share/zope3/lib/python/twisted/tap/ftp.py
+share/zope3/lib/python/twisted/tap/ftp.pyc
+share/zope3/lib/python/twisted/tap/ftp.pyo
+share/zope3/lib/python/twisted/tap/manhole.py
+share/zope3/lib/python/twisted/tap/manhole.pyc
+share/zope3/lib/python/twisted/tap/manhole.pyo
+share/zope3/lib/python/twisted/tap/portforward.py
+share/zope3/lib/python/twisted/tap/portforward.pyc
+share/zope3/lib/python/twisted/tap/portforward.pyo
+share/zope3/lib/python/twisted/tap/socks.py
+share/zope3/lib/python/twisted/tap/socks.pyc
+share/zope3/lib/python/twisted/tap/socks.pyo
+share/zope3/lib/python/twisted/tap/telnet.py
+share/zope3/lib/python/twisted/tap/telnet.pyc
+share/zope3/lib/python/twisted/tap/telnet.pyo
+share/zope3/lib/python/twisted/test/__init__.py
+share/zope3/lib/python/twisted/test/__init__.pyc
+share/zope3/lib/python/twisted/test/__init__.pyo
+share/zope3/lib/python/twisted/test/crash_test_dummy.py
+share/zope3/lib/python/twisted/test/crash_test_dummy.pyc
+share/zope3/lib/python/twisted/test/crash_test_dummy.pyo
+share/zope3/lib/python/twisted/test/myrebuilder1.py
+share/zope3/lib/python/twisted/test/myrebuilder1.pyc
+share/zope3/lib/python/twisted/test/myrebuilder1.pyo
+share/zope3/lib/python/twisted/test/myrebuilder2.py
+share/zope3/lib/python/twisted/test/myrebuilder2.pyc
+share/zope3/lib/python/twisted/test/myrebuilder2.pyo
+share/zope3/lib/python/twisted/test/process_cmdline.py
+share/zope3/lib/python/twisted/test/process_cmdline.pyc
+share/zope3/lib/python/twisted/test/process_cmdline.pyo
+share/zope3/lib/python/twisted/test/process_echoer.py
+share/zope3/lib/python/twisted/test/process_echoer.pyc
+share/zope3/lib/python/twisted/test/process_echoer.pyo
+share/zope3/lib/python/twisted/test/process_fds.py
+share/zope3/lib/python/twisted/test/process_fds.pyc
+share/zope3/lib/python/twisted/test/process_fds.pyo
+share/zope3/lib/python/twisted/test/process_linger.py
+share/zope3/lib/python/twisted/test/process_linger.pyc
+share/zope3/lib/python/twisted/test/process_linger.pyo
+share/zope3/lib/python/twisted/test/process_reader.py
+share/zope3/lib/python/twisted/test/process_reader.pyc
+share/zope3/lib/python/twisted/test/process_reader.pyo
+share/zope3/lib/python/twisted/test/process_signal.py
+share/zope3/lib/python/twisted/test/process_signal.pyc
+share/zope3/lib/python/twisted/test/process_signal.pyo
+share/zope3/lib/python/twisted/test/process_stdinreader.py
+share/zope3/lib/python/twisted/test/process_stdinreader.pyc
+share/zope3/lib/python/twisted/test/process_stdinreader.pyo
+share/zope3/lib/python/twisted/test/process_tester.py
+share/zope3/lib/python/twisted/test/process_tester.pyc
+share/zope3/lib/python/twisted/test/process_tester.pyo
+share/zope3/lib/python/twisted/test/process_tty.py
+share/zope3/lib/python/twisted/test/process_tty.pyc
+share/zope3/lib/python/twisted/test/process_tty.pyo
+share/zope3/lib/python/twisted/test/process_twisted.py
+share/zope3/lib/python/twisted/test/process_twisted.pyc
+share/zope3/lib/python/twisted/test/process_twisted.pyo
+share/zope3/lib/python/twisted/test/proto_helpers.py
+share/zope3/lib/python/twisted/test/proto_helpers.pyc
+share/zope3/lib/python/twisted/test/proto_helpers.pyo
+share/zope3/lib/python/twisted/test/reflect_helper_VE.py
+share/zope3/lib/python/twisted/test/reflect_helper_VE.pyc
+share/zope3/lib/python/twisted/test/reflect_helper_VE.pyo
+share/zope3/lib/python/twisted/test/reflect_helper_ZDE.py
+share/zope3/lib/python/twisted/test/reflect_helper_ZDE.pyc
+share/zope3/lib/python/twisted/test/reflect_helper_ZDE.pyo
+share/zope3/lib/python/twisted/test/server.pem
+share/zope3/lib/python/twisted/test/ssl_helpers.py
+share/zope3/lib/python/twisted/test/ssl_helpers.pyc
+share/zope3/lib/python/twisted/test/ssl_helpers.pyo
+share/zope3/lib/python/twisted/test/test_adbapi.py
+share/zope3/lib/python/twisted/test/test_adbapi.pyc
+share/zope3/lib/python/twisted/test/test_adbapi.pyo
+share/zope3/lib/python/twisted/test/test_app.py
+share/zope3/lib/python/twisted/test/test_app.pyc
+share/zope3/lib/python/twisted/test/test_app.pyo
+share/zope3/lib/python/twisted/test/test_application.py
+share/zope3/lib/python/twisted/test/test_application.pyc
+share/zope3/lib/python/twisted/test/test_application.pyo
+share/zope3/lib/python/twisted/test/test_assertions.py
+share/zope3/lib/python/twisted/test/test_assertions.pyc
+share/zope3/lib/python/twisted/test/test_assertions.pyo
+share/zope3/lib/python/twisted/test/test_banana.py
+share/zope3/lib/python/twisted/test/test_banana.pyc
+share/zope3/lib/python/twisted/test/test_banana.pyo
+share/zope3/lib/python/twisted/test/test_compat.py
+share/zope3/lib/python/twisted/test/test_compat.pyc
+share/zope3/lib/python/twisted/test/test_compat.pyo
+share/zope3/lib/python/twisted/test/test_components.py
+share/zope3/lib/python/twisted/test/test_components.pyc
+share/zope3/lib/python/twisted/test/test_components.pyo
+share/zope3/lib/python/twisted/test/test_context.py
+share/zope3/lib/python/twisted/test/test_context.pyc
+share/zope3/lib/python/twisted/test/test_context.pyo
+share/zope3/lib/python/twisted/test/test_cred.py
+share/zope3/lib/python/twisted/test/test_cred.pyc
+share/zope3/lib/python/twisted/test/test_cred.pyo
+share/zope3/lib/python/twisted/test/test_defer.py
+share/zope3/lib/python/twisted/test/test_defer.pyc
+share/zope3/lib/python/twisted/test/test_defer.pyo
+share/zope3/lib/python/twisted/test/test_defgen.py
+share/zope3/lib/python/twisted/test/test_defgen.pyc
+share/zope3/lib/python/twisted/test/test_defgen.pyo
+share/zope3/lib/python/twisted/test/test_dict.py
+share/zope3/lib/python/twisted/test/test_dict.pyc
+share/zope3/lib/python/twisted/test/test_dict.pyo
+share/zope3/lib/python/twisted/test/test_dirdbm.py
+share/zope3/lib/python/twisted/test/test_dirdbm.pyc
+share/zope3/lib/python/twisted/test/test_dirdbm.pyo
+share/zope3/lib/python/twisted/test/test_doc.py
+share/zope3/lib/python/twisted/test/test_doc.pyc
+share/zope3/lib/python/twisted/test/test_doc.pyo
+share/zope3/lib/python/twisted/test/test_enterprise.py
+share/zope3/lib/python/twisted/test/test_enterprise.pyc
+share/zope3/lib/python/twisted/test/test_enterprise.pyo
+share/zope3/lib/python/twisted/test/test_error.py
+share/zope3/lib/python/twisted/test/test_error.pyc
+share/zope3/lib/python/twisted/test/test_error.pyo
+share/zope3/lib/python/twisted/test/test_explorer.py
+share/zope3/lib/python/twisted/test/test_explorer.pyc
+share/zope3/lib/python/twisted/test/test_explorer.pyo
+share/zope3/lib/python/twisted/test/test_extensions.py
+share/zope3/lib/python/twisted/test/test_extensions.pyc
+share/zope3/lib/python/twisted/test/test_extensions.pyo
+share/zope3/lib/python/twisted/test/test_factories.py
+share/zope3/lib/python/twisted/test/test_factories.pyc
+share/zope3/lib/python/twisted/test/test_factories.pyo
+share/zope3/lib/python/twisted/test/test_failure.py
+share/zope3/lib/python/twisted/test/test_failure.pyc
+share/zope3/lib/python/twisted/test/test_failure.pyo
+share/zope3/lib/python/twisted/test/test_finger.py
+share/zope3/lib/python/twisted/test/test_finger.pyc
+share/zope3/lib/python/twisted/test/test_finger.pyo
+share/zope3/lib/python/twisted/test/test_formmethod.py
+share/zope3/lib/python/twisted/test/test_formmethod.pyc
+share/zope3/lib/python/twisted/test/test_formmethod.pyo
+share/zope3/lib/python/twisted/test/test_ftp.py
+share/zope3/lib/python/twisted/test/test_ftp.pyc
+share/zope3/lib/python/twisted/test/test_ftp.pyo
+share/zope3/lib/python/twisted/test/test_hook.py
+share/zope3/lib/python/twisted/test/test_hook.pyc
+share/zope3/lib/python/twisted/test/test_hook.pyo
+share/zope3/lib/python/twisted/test/test_htb.py
+share/zope3/lib/python/twisted/test/test_htb.pyc
+share/zope3/lib/python/twisted/test/test_htb.pyo
+share/zope3/lib/python/twisted/test/test_ident.py
+share/zope3/lib/python/twisted/test/test_ident.pyc
+share/zope3/lib/python/twisted/test/test_ident.pyo
+share/zope3/lib/python/twisted/test/test_import.py
+share/zope3/lib/python/twisted/test/test_import.pyc
+share/zope3/lib/python/twisted/test/test_import.pyo
+share/zope3/lib/python/twisted/test/test_internet.py
+share/zope3/lib/python/twisted/test/test_internet.pyc
+share/zope3/lib/python/twisted/test/test_internet.pyo
+share/zope3/lib/python/twisted/test/test_iutils.py
+share/zope3/lib/python/twisted/test/test_iutils.pyc
+share/zope3/lib/python/twisted/test/test_iutils.pyo
+share/zope3/lib/python/twisted/test/test_jelly.py
+share/zope3/lib/python/twisted/test/test_jelly.pyc
+share/zope3/lib/python/twisted/test/test_jelly.pyo
+share/zope3/lib/python/twisted/test/test_journal.py
+share/zope3/lib/python/twisted/test/test_journal.pyc
+share/zope3/lib/python/twisted/test/test_journal.pyo
+share/zope3/lib/python/twisted/test/test_lockfile.py
+share/zope3/lib/python/twisted/test/test_lockfile.pyc
+share/zope3/lib/python/twisted/test/test_lockfile.pyo
+share/zope3/lib/python/twisted/test/test_log.py
+share/zope3/lib/python/twisted/test/test_log.pyc
+share/zope3/lib/python/twisted/test/test_log.pyo
+share/zope3/lib/python/twisted/test/test_logfile.py
+share/zope3/lib/python/twisted/test/test_logfile.pyc
+share/zope3/lib/python/twisted/test/test_logfile.pyo
+share/zope3/lib/python/twisted/test/test_loopback.py
+share/zope3/lib/python/twisted/test/test_loopback.pyc
+share/zope3/lib/python/twisted/test/test_loopback.pyo
+share/zope3/lib/python/twisted/test/test_manhole.py
+share/zope3/lib/python/twisted/test/test_manhole.pyc
+share/zope3/lib/python/twisted/test/test_manhole.pyo
+share/zope3/lib/python/twisted/test/test_newcred.py
+share/zope3/lib/python/twisted/test/test_newcred.pyc
+share/zope3/lib/python/twisted/test/test_newcred.pyo
+share/zope3/lib/python/twisted/test/test_newjelly.py
+share/zope3/lib/python/twisted/test/test_newjelly.pyc
+share/zope3/lib/python/twisted/test/test_newjelly.pyo
+share/zope3/lib/python/twisted/test/test_nmea.py
+share/zope3/lib/python/twisted/test/test_nmea.pyc
+share/zope3/lib/python/twisted/test/test_nmea.pyo
+share/zope3/lib/python/twisted/test/test_paths.py
+share/zope3/lib/python/twisted/test/test_paths.pyc
+share/zope3/lib/python/twisted/test/test_paths.pyo
+share/zope3/lib/python/twisted/test/test_pb.py
+share/zope3/lib/python/twisted/test/test_pb.pyc
+share/zope3/lib/python/twisted/test/test_pb.pyo
+share/zope3/lib/python/twisted/test/test_pbfailure.py
+share/zope3/lib/python/twisted/test/test_pbfailure.pyc
+share/zope3/lib/python/twisted/test/test_pbfailure.pyo
+share/zope3/lib/python/twisted/test/test_pcp.py
+share/zope3/lib/python/twisted/test/test_pcp.pyc
+share/zope3/lib/python/twisted/test/test_pcp.pyo
+share/zope3/lib/python/twisted/test/test_persisted.py
+share/zope3/lib/python/twisted/test/test_persisted.pyc
+share/zope3/lib/python/twisted/test/test_persisted.pyo
+share/zope3/lib/python/twisted/test/test_plugin.py
+share/zope3/lib/python/twisted/test/test_plugin.pyc
+share/zope3/lib/python/twisted/test/test_plugin.pyo
+share/zope3/lib/python/twisted/test/test_policies.py
+share/zope3/lib/python/twisted/test/test_policies.pyc
+share/zope3/lib/python/twisted/test/test_policies.pyo
+share/zope3/lib/python/twisted/test/test_postfix.py
+share/zope3/lib/python/twisted/test/test_postfix.pyc
+share/zope3/lib/python/twisted/test/test_postfix.pyo
+share/zope3/lib/python/twisted/test/test_process.py
+share/zope3/lib/python/twisted/test/test_process.pyc
+share/zope3/lib/python/twisted/test/test_process.pyo
+share/zope3/lib/python/twisted/test/test_protocols.py
+share/zope3/lib/python/twisted/test/test_protocols.pyc
+share/zope3/lib/python/twisted/test/test_protocols.pyo
+share/zope3/lib/python/twisted/test/test_rebuild.py
+share/zope3/lib/python/twisted/test/test_rebuild.pyc
+share/zope3/lib/python/twisted/test/test_rebuild.pyo
+share/zope3/lib/python/twisted/test/test_reflect.py
+share/zope3/lib/python/twisted/test/test_reflect.pyc
+share/zope3/lib/python/twisted/test/test_reflect.pyo
+share/zope3/lib/python/twisted/test/test_reflector.py
+share/zope3/lib/python/twisted/test/test_reflector.pyc
+share/zope3/lib/python/twisted/test/test_reflector.pyo
+share/zope3/lib/python/twisted/test/test_release.py
+share/zope3/lib/python/twisted/test/test_release.pyc
+share/zope3/lib/python/twisted/test/test_release.pyo
+share/zope3/lib/python/twisted/test/test_roots.py
+share/zope3/lib/python/twisted/test/test_roots.pyc
+share/zope3/lib/python/twisted/test/test_roots.pyo
+share/zope3/lib/python/twisted/test/test_shortcut.py
+share/zope3/lib/python/twisted/test/test_shortcut.pyc
+share/zope3/lib/python/twisted/test/test_shortcut.pyo
+share/zope3/lib/python/twisted/test/test_sip.py
+share/zope3/lib/python/twisted/test/test_sip.pyc
+share/zope3/lib/python/twisted/test/test_sip.pyo
+share/zope3/lib/python/twisted/test/test_sob.py
+share/zope3/lib/python/twisted/test/test_sob.pyc
+share/zope3/lib/python/twisted/test/test_sob.pyo
+share/zope3/lib/python/twisted/test/test_socks.py
+share/zope3/lib/python/twisted/test/test_socks.pyc
+share/zope3/lib/python/twisted/test/test_socks.pyo
+share/zope3/lib/python/twisted/test/test_split_compat.py
+share/zope3/lib/python/twisted/test/test_split_compat.pyc
+share/zope3/lib/python/twisted/test/test_split_compat.pyo
+share/zope3/lib/python/twisted/test/test_spread.py
+share/zope3/lib/python/twisted/test/test_spread.pyc
+share/zope3/lib/python/twisted/test/test_spread.pyo
+share/zope3/lib/python/twisted/test/test_ssl.py
+share/zope3/lib/python/twisted/test/test_ssl.pyc
+share/zope3/lib/python/twisted/test/test_ssl.pyo
+share/zope3/lib/python/twisted/test/test_stateful.py
+share/zope3/lib/python/twisted/test/test_stateful.pyc
+share/zope3/lib/python/twisted/test/test_stateful.pyo
+share/zope3/lib/python/twisted/test/test_strports.py
+share/zope3/lib/python/twisted/test/test_strports.pyc
+share/zope3/lib/python/twisted/test/test_strports.pyo
+share/zope3/lib/python/twisted/test/test_task.py
+share/zope3/lib/python/twisted/test/test_task.pyc
+share/zope3/lib/python/twisted/test/test_task.pyo
+share/zope3/lib/python/twisted/test/test_tcp.py
+share/zope3/lib/python/twisted/test/test_tcp.pyc
+share/zope3/lib/python/twisted/test/test_tcp.pyo
+share/zope3/lib/python/twisted/test/test_text.py
+share/zope3/lib/python/twisted/test/test_text.pyc
+share/zope3/lib/python/twisted/test/test_text.pyo
+share/zope3/lib/python/twisted/test/test_threadable.py
+share/zope3/lib/python/twisted/test/test_threadable.pyc
+share/zope3/lib/python/twisted/test/test_threadable.pyo
+share/zope3/lib/python/twisted/test/test_threadpool.py
+share/zope3/lib/python/twisted/test/test_threadpool.pyc
+share/zope3/lib/python/twisted/test/test_threadpool.pyo
+share/zope3/lib/python/twisted/test/test_threads.py
+share/zope3/lib/python/twisted/test/test_threads.pyc
+share/zope3/lib/python/twisted/test/test_threads.pyo
+share/zope3/lib/python/twisted/test/test_timeoutqueue.py
+share/zope3/lib/python/twisted/test/test_timeoutqueue.pyc
+share/zope3/lib/python/twisted/test/test_timeoutqueue.pyo
+share/zope3/lib/python/twisted/test/test_tpfile.py
+share/zope3/lib/python/twisted/test/test_tpfile.pyc
+share/zope3/lib/python/twisted/test/test_tpfile.pyo
+share/zope3/lib/python/twisted/test/test_udp.py
+share/zope3/lib/python/twisted/test/test_udp.pyc
+share/zope3/lib/python/twisted/test/test_udp.pyo
+share/zope3/lib/python/twisted/test/test_unix.py
+share/zope3/lib/python/twisted/test/test_unix.pyc
+share/zope3/lib/python/twisted/test/test_unix.pyo
+share/zope3/lib/python/twisted/test/test_usage.py
+share/zope3/lib/python/twisted/test/test_usage.pyc
+share/zope3/lib/python/twisted/test/test_usage.pyo
+share/zope3/lib/python/twisted/test/test_util.py
+share/zope3/lib/python/twisted/test/test_util.pyc
+share/zope3/lib/python/twisted/test/test_util.pyo
+share/zope3/lib/python/twisted/test/test_zipstream.py
+share/zope3/lib/python/twisted/test/test_zipstream.pyc
+share/zope3/lib/python/twisted/test/test_zipstream.pyo
+share/zope3/lib/python/twisted/test/testutils.py
+share/zope3/lib/python/twisted/test/testutils.pyc
+share/zope3/lib/python/twisted/test/testutils.pyo
+share/zope3/lib/python/twisted/test/threading_latency.py
+share/zope3/lib/python/twisted/test/threading_latency.pyc
+share/zope3/lib/python/twisted/test/threading_latency.pyo
+share/zope3/lib/python/twisted/topfiles/CREDITS
+share/zope3/lib/python/twisted/topfiles/ChangeLog.Old
+share/zope3/lib/python/twisted/topfiles/INSTALL
+share/zope3/lib/python/twisted/topfiles/NEWS
+share/zope3/lib/python/twisted/topfiles/README
+share/zope3/lib/python/twisted/topfiles/setup.py
+share/zope3/lib/python/twisted/topfiles/setup.pyc
+share/zope3/lib/python/twisted/topfiles/setup.pyo
+share/zope3/lib/python/twisted/trial/NOTES
+share/zope3/lib/python/twisted/trial/__init__.py
+share/zope3/lib/python/twisted/trial/__init__.pyc
+share/zope3/lib/python/twisted/trial/__init__.pyo
+share/zope3/lib/python/twisted/trial/assertions.py
+share/zope3/lib/python/twisted/trial/assertions.pyc
+share/zope3/lib/python/twisted/trial/assertions.pyo
+share/zope3/lib/python/twisted/trial/itrial.py
+share/zope3/lib/python/twisted/trial/itrial.pyc
+share/zope3/lib/python/twisted/trial/itrial.pyo
+share/zope3/lib/python/twisted/trial/reporter.py
+share/zope3/lib/python/twisted/trial/reporter.pyc
+share/zope3/lib/python/twisted/trial/reporter.pyo
+share/zope3/lib/python/twisted/trial/runner.py
+share/zope3/lib/python/twisted/trial/runner.pyc
+share/zope3/lib/python/twisted/trial/runner.pyo
+share/zope3/lib/python/twisted/trial/test/__init__.py
+share/zope3/lib/python/twisted/trial/test/__init__.pyc
+share/zope3/lib/python/twisted/trial/test/__init__.pyo
+share/zope3/lib/python/twisted/trial/test/common.py
+share/zope3/lib/python/twisted/trial/test/common.pyc
+share/zope3/lib/python/twisted/trial/test/common.pyo
+share/zope3/lib/python/twisted/trial/test/detests.py
+share/zope3/lib/python/twisted/trial/test/detests.pyc
+share/zope3/lib/python/twisted/trial/test/detests.pyo
+share/zope3/lib/python/twisted/trial/test/erroneous.py
+share/zope3/lib/python/twisted/trial/test/erroneous.pyc
+share/zope3/lib/python/twisted/trial/test/erroneous.pyo
+share/zope3/lib/python/twisted/trial/test/foo/badpackage/__init__.py
+share/zope3/lib/python/twisted/trial/test/foo/badpackage/__init__.pyc
+share/zope3/lib/python/twisted/trial/test/foo/badpackage/__init__.pyo
+share/zope3/lib/python/twisted/trial/test/foo/badpackage/test_module.py
+share/zope3/lib/python/twisted/trial/test/foo/badpackage/test_module.pyc
+share/zope3/lib/python/twisted/trial/test/foo/badpackage/test_module.pyo
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/__init__.py
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/__init__.pyc
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/__init__.pyo
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/sub/__init__.py
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/sub/__init__.pyc
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/sub/__init__.pyo
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/sub/test_sample.py
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/sub/test_sample.pyc
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/sub/test_sample.pyo
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/test_sample.py
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/test_sample.pyc
+share/zope3/lib/python/twisted/trial/test/foo/goodpackage/test_sample.pyo
+share/zope3/lib/python/twisted/trial/test/foo/package/__init__.py
+share/zope3/lib/python/twisted/trial/test/foo/package/__init__.pyc
+share/zope3/lib/python/twisted/trial/test/foo/package/__init__.pyo
+share/zope3/lib/python/twisted/trial/test/foo/package/frotz.py
+share/zope3/lib/python/twisted/trial/test/foo/package/frotz.pyc
+share/zope3/lib/python/twisted/trial/test/foo/package/frotz.pyo
+share/zope3/lib/python/twisted/trial/test/foo/package/test_bad_module.py
+share/zope3/lib/python/twisted/trial/test/foo/package/test_bad_module.pyc
+share/zope3/lib/python/twisted/trial/test/foo/package/test_bad_module.pyo
+share/zope3/lib/python/twisted/trial/test/foo/package/test_dos_module.py
+share/zope3/lib/python/twisted/trial/test/foo/package/test_dos_module.pyc
+share/zope3/lib/python/twisted/trial/test/foo/package/test_dos_module.pyo
+share/zope3/lib/python/twisted/trial/test/foo/package/test_import_module.py
+share/zope3/lib/python/twisted/trial/test/foo/package/test_import_module.pyc
+share/zope3/lib/python/twisted/trial/test/foo/package/test_import_module.pyo
+share/zope3/lib/python/twisted/trial/test/foo/package/test_module.py
+share/zope3/lib/python/twisted/trial/test/foo/package/test_module.pyc
+share/zope3/lib/python/twisted/trial/test/foo/package/test_module.pyo
+share/zope3/lib/python/twisted/trial/test/foo/package2/__init__.py
+share/zope3/lib/python/twisted/trial/test/foo/package2/__init__.pyc
+share/zope3/lib/python/twisted/trial/test/foo/package2/__init__.pyo
+share/zope3/lib/python/twisted/trial/test/foo/package2/test_module.py
+share/zope3/lib/python/twisted/trial/test/foo/package2/test_module.pyc
+share/zope3/lib/python/twisted/trial/test/foo/package2/test_module.pyo
+share/zope3/lib/python/twisted/trial/test/importErrors.py
+share/zope3/lib/python/twisted/trial/test/importErrors.pyc
+share/zope3/lib/python/twisted/trial/test/importErrors.pyo
+share/zope3/lib/python/twisted/trial/test/moduletest.py
+share/zope3/lib/python/twisted/trial/test/moduletest.pyc
+share/zope3/lib/python/twisted/trial/test/moduletest.pyo
+share/zope3/lib/python/twisted/trial/test/notpython
+share/zope3/lib/python/twisted/trial/test/novars.py
+share/zope3/lib/python/twisted/trial/test/novars.pyc
+share/zope3/lib/python/twisted/trial/test/novars.pyo
+share/zope3/lib/python/twisted/trial/test/numOfTests.py
+share/zope3/lib/python/twisted/trial/test/numOfTests.pyc
+share/zope3/lib/python/twisted/trial/test/numOfTests.pyo
+share/zope3/lib/python/twisted/trial/test/pyunit.py
+share/zope3/lib/python/twisted/trial/test/pyunit.pyc
+share/zope3/lib/python/twisted/trial/test/pyunit.pyo
+share/zope3/lib/python/twisted/trial/test/sample.py
+share/zope3/lib/python/twisted/trial/test/sample.pyc
+share/zope3/lib/python/twisted/trial/test/sample.pyo
+share/zope3/lib/python/twisted/trial/test/scripttest.py
+share/zope3/lib/python/twisted/trial/test/scripttest.pyc
+share/zope3/lib/python/twisted/trial/test/scripttest.pyo
+share/zope3/lib/python/twisted/trial/test/suppression.py
+share/zope3/lib/python/twisted/trial/test/suppression.pyc
+share/zope3/lib/python/twisted/trial/test/suppression.pyo
+share/zope3/lib/python/twisted/trial/test/test_deferred.py
+share/zope3/lib/python/twisted/trial/test/test_deferred.pyc
+share/zope3/lib/python/twisted/trial/test/test_deferred.pyo
+share/zope3/lib/python/twisted/trial/test/test_doctest.py
+share/zope3/lib/python/twisted/trial/test/test_doctest.pyc
+share/zope3/lib/python/twisted/trial/test/test_doctest.pyo
+share/zope3/lib/python/twisted/trial/test/test_failure_formatting.py
+share/zope3/lib/python/twisted/trial/test/test_failure_formatting.pyc
+share/zope3/lib/python/twisted/trial/test/test_failure_formatting.pyo
+share/zope3/lib/python/twisted/trial/test/test_keyboard.py
+share/zope3/lib/python/twisted/trial/test/test_keyboard.pyc
+share/zope3/lib/python/twisted/trial/test/test_keyboard.pyo
+share/zope3/lib/python/twisted/trial/test/test_loader.py
+share/zope3/lib/python/twisted/trial/test/test_loader.pyc
+share/zope3/lib/python/twisted/trial/test/test_loader.pyo
+share/zope3/lib/python/twisted/trial/test/test_output.py
+share/zope3/lib/python/twisted/trial/test/test_output.pyc
+share/zope3/lib/python/twisted/trial/test/test_output.pyo
+share/zope3/lib/python/twisted/trial/test/test_reporter.py
+share/zope3/lib/python/twisted/trial/test/test_reporter.pyc
+share/zope3/lib/python/twisted/trial/test/test_reporter.pyo
+share/zope3/lib/python/twisted/trial/test/test_script.py
+share/zope3/lib/python/twisted/trial/test/test_script.pyc
+share/zope3/lib/python/twisted/trial/test/test_script.pyo
+share/zope3/lib/python/twisted/trial/test/test_test_visitor.py
+share/zope3/lib/python/twisted/trial/test/test_test_visitor.pyc
+share/zope3/lib/python/twisted/trial/test/test_test_visitor.pyo
+share/zope3/lib/python/twisted/trial/test/test_tests.py
+share/zope3/lib/python/twisted/trial/test/test_tests.pyc
+share/zope3/lib/python/twisted/trial/test/test_tests.pyo
+share/zope3/lib/python/twisted/trial/test/test_trial.py
+share/zope3/lib/python/twisted/trial/test/test_trial.pyc
+share/zope3/lib/python/twisted/trial/test/test_trial.pyo
+share/zope3/lib/python/twisted/trial/test/test_util.py
+share/zope3/lib/python/twisted/trial/test/test_util.pyc
+share/zope3/lib/python/twisted/trial/test/test_util.pyo
+share/zope3/lib/python/twisted/trial/test/timeoutAttr.py
+share/zope3/lib/python/twisted/trial/test/timeoutAttr.pyc
+share/zope3/lib/python/twisted/trial/test/timeoutAttr.pyo
+share/zope3/lib/python/twisted/trial/test/trialdoctest1.py
+share/zope3/lib/python/twisted/trial/test/trialdoctest1.pyc
+share/zope3/lib/python/twisted/trial/test/trialdoctest1.pyo
+share/zope3/lib/python/twisted/trial/test/trialdoctest2.py
+share/zope3/lib/python/twisted/trial/test/trialdoctest2.pyc
+share/zope3/lib/python/twisted/trial/test/trialdoctest2.pyo
+share/zope3/lib/python/twisted/trial/unittest.py
+share/zope3/lib/python/twisted/trial/unittest.pyc
+share/zope3/lib/python/twisted/trial/unittest.pyo
+share/zope3/lib/python/twisted/trial/util.py
+share/zope3/lib/python/twisted/trial/util.pyc
+share/zope3/lib/python/twisted/trial/util.pyo
+share/zope3/lib/python/twisted/vfs/__init__.py
+share/zope3/lib/python/twisted/vfs/__init__.pyc
+share/zope3/lib/python/twisted/vfs/__init__.pyo
+share/zope3/lib/python/twisted/vfs/adapters/__init__.py
+share/zope3/lib/python/twisted/vfs/adapters/__init__.pyc
+share/zope3/lib/python/twisted/vfs/adapters/__init__.pyo
+share/zope3/lib/python/twisted/vfs/adapters/ftp.py
+share/zope3/lib/python/twisted/vfs/adapters/ftp.pyc
+share/zope3/lib/python/twisted/vfs/adapters/ftp.pyo
+share/zope3/lib/python/twisted/vfs/adapters/sftp.py
+share/zope3/lib/python/twisted/vfs/adapters/sftp.pyc
+share/zope3/lib/python/twisted/vfs/adapters/sftp.pyo
+share/zope3/lib/python/twisted/vfs/adapters/stream.py
+share/zope3/lib/python/twisted/vfs/adapters/stream.pyc
+share/zope3/lib/python/twisted/vfs/adapters/stream.pyo
+share/zope3/lib/python/twisted/vfs/backends/__init__.py
+share/zope3/lib/python/twisted/vfs/backends/__init__.pyc
+share/zope3/lib/python/twisted/vfs/backends/__init__.pyo
+share/zope3/lib/python/twisted/vfs/backends/adhoc.py
+share/zope3/lib/python/twisted/vfs/backends/adhoc.pyc
+share/zope3/lib/python/twisted/vfs/backends/adhoc.pyo
+share/zope3/lib/python/twisted/vfs/backends/inmem.py
+share/zope3/lib/python/twisted/vfs/backends/inmem.pyc
+share/zope3/lib/python/twisted/vfs/backends/inmem.pyo
+share/zope3/lib/python/twisted/vfs/backends/osfs.py
+share/zope3/lib/python/twisted/vfs/backends/osfs.pyc
+share/zope3/lib/python/twisted/vfs/backends/osfs.pyo
+share/zope3/lib/python/twisted/vfs/ivfs.py
+share/zope3/lib/python/twisted/vfs/ivfs.pyc
+share/zope3/lib/python/twisted/vfs/ivfs.pyo
+share/zope3/lib/python/twisted/vfs/pathutils.py
+share/zope3/lib/python/twisted/vfs/pathutils.pyc
+share/zope3/lib/python/twisted/vfs/pathutils.pyo
+share/zope3/lib/python/twisted/vfs/test/__init__.py
+share/zope3/lib/python/twisted/vfs/test/__init__.pyc
+share/zope3/lib/python/twisted/vfs/test/__init__.pyo
+share/zope3/lib/python/twisted/vfs/test/test_ftp.py
+share/zope3/lib/python/twisted/vfs/test/test_ftp.pyc
+share/zope3/lib/python/twisted/vfs/test/test_ftp.pyo
+share/zope3/lib/python/twisted/vfs/test/test_sftp.py
+share/zope3/lib/python/twisted/vfs/test/test_sftp.pyc
+share/zope3/lib/python/twisted/vfs/test/test_sftp.pyo
+share/zope3/lib/python/twisted/vfs/test/test_stream.py
+share/zope3/lib/python/twisted/vfs/test/test_stream.pyc
+share/zope3/lib/python/twisted/vfs/test/test_stream.pyo
+share/zope3/lib/python/twisted/vfs/test/test_vfs.py
+share/zope3/lib/python/twisted/vfs/test/test_vfs.pyc
+share/zope3/lib/python/twisted/vfs/test/test_vfs.pyo
+share/zope3/lib/python/twisted/web/__init__.py
+share/zope3/lib/python/twisted/web/__init__.pyc
+share/zope3/lib/python/twisted/web/__init__.pyo
+share/zope3/lib/python/twisted/web/client.py
+share/zope3/lib/python/twisted/web/client.pyc
+share/zope3/lib/python/twisted/web/client.pyo
+share/zope3/lib/python/twisted/web/demo.py
+share/zope3/lib/python/twisted/web/demo.pyc
+share/zope3/lib/python/twisted/web/demo.pyo
+share/zope3/lib/python/twisted/web/distrib.py
+share/zope3/lib/python/twisted/web/distrib.pyc
+share/zope3/lib/python/twisted/web/distrib.pyo
+share/zope3/lib/python/twisted/web/domhelpers.py
+share/zope3/lib/python/twisted/web/domhelpers.pyc
+share/zope3/lib/python/twisted/web/domhelpers.pyo
+share/zope3/lib/python/twisted/web/error.py
+share/zope3/lib/python/twisted/web/error.pyc
+share/zope3/lib/python/twisted/web/error.pyo
+share/zope3/lib/python/twisted/web/google.py
+share/zope3/lib/python/twisted/web/google.pyc
+share/zope3/lib/python/twisted/web/google.pyo
+share/zope3/lib/python/twisted/web/guard.py
+share/zope3/lib/python/twisted/web/guard.pyc
+share/zope3/lib/python/twisted/web/guard.pyo
+share/zope3/lib/python/twisted/web/html.py
+share/zope3/lib/python/twisted/web/html.pyc
+share/zope3/lib/python/twisted/web/html.pyo
+share/zope3/lib/python/twisted/web/http.py
+share/zope3/lib/python/twisted/web/http.pyc
+share/zope3/lib/python/twisted/web/http.pyo
+share/zope3/lib/python/twisted/web/microdom.py
+share/zope3/lib/python/twisted/web/microdom.pyc
+share/zope3/lib/python/twisted/web/microdom.pyo
+share/zope3/lib/python/twisted/web/monitor.py
+share/zope3/lib/python/twisted/web/monitor.pyc
+share/zope3/lib/python/twisted/web/monitor.pyo
+share/zope3/lib/python/twisted/web/proxy.py
+share/zope3/lib/python/twisted/web/proxy.pyc
+share/zope3/lib/python/twisted/web/proxy.pyo
+share/zope3/lib/python/twisted/web/resource.py
+share/zope3/lib/python/twisted/web/resource.pyc
+share/zope3/lib/python/twisted/web/resource.pyo
+share/zope3/lib/python/twisted/web/rewrite.py
+share/zope3/lib/python/twisted/web/rewrite.pyc
+share/zope3/lib/python/twisted/web/rewrite.pyo
+share/zope3/lib/python/twisted/web/script.py
+share/zope3/lib/python/twisted/web/script.pyc
+share/zope3/lib/python/twisted/web/script.pyo
+share/zope3/lib/python/twisted/web/scripts/__init__.py
+share/zope3/lib/python/twisted/web/scripts/__init__.pyc
+share/zope3/lib/python/twisted/web/scripts/__init__.pyo
+share/zope3/lib/python/twisted/web/scripts/websetroot.py
+share/zope3/lib/python/twisted/web/scripts/websetroot.pyc
+share/zope3/lib/python/twisted/web/scripts/websetroot.pyo
+share/zope3/lib/python/twisted/web/server.py
+share/zope3/lib/python/twisted/web/server.pyc
+share/zope3/lib/python/twisted/web/server.pyo
+share/zope3/lib/python/twisted/web/soap.py
+share/zope3/lib/python/twisted/web/soap.pyc
+share/zope3/lib/python/twisted/web/soap.pyo
+share/zope3/lib/python/twisted/web/static.py
+share/zope3/lib/python/twisted/web/static.pyc
+share/zope3/lib/python/twisted/web/static.pyo
+share/zope3/lib/python/twisted/web/sux.py
+share/zope3/lib/python/twisted/web/sux.pyc
+share/zope3/lib/python/twisted/web/sux.pyo
+share/zope3/lib/python/twisted/web/tap.py
+share/zope3/lib/python/twisted/web/tap.pyc
+share/zope3/lib/python/twisted/web/tap.pyo
+share/zope3/lib/python/twisted/web/test/__init__.py
+share/zope3/lib/python/twisted/web/test/__init__.pyc
+share/zope3/lib/python/twisted/web/test/__init__.pyo
+share/zope3/lib/python/twisted/web/test/test_cgi.py
+share/zope3/lib/python/twisted/web/test/test_cgi.pyc
+share/zope3/lib/python/twisted/web/test/test_cgi.pyo
+share/zope3/lib/python/twisted/web/test/test_distrib.py
+share/zope3/lib/python/twisted/web/test/test_distrib.pyc
+share/zope3/lib/python/twisted/web/test/test_distrib.pyo
+share/zope3/lib/python/twisted/web/test/test_domhelpers.py
+share/zope3/lib/python/twisted/web/test/test_domhelpers.pyc
+share/zope3/lib/python/twisted/web/test/test_domhelpers.pyo
+share/zope3/lib/python/twisted/web/test/test_http.py
+share/zope3/lib/python/twisted/web/test/test_http.pyc
+share/zope3/lib/python/twisted/web/test/test_http.pyo
+share/zope3/lib/python/twisted/web/test/test_mvc.py
+share/zope3/lib/python/twisted/web/test/test_mvc.pyc
+share/zope3/lib/python/twisted/web/test/test_mvc.pyo
+share/zope3/lib/python/twisted/web/test/test_soap.py
+share/zope3/lib/python/twisted/web/test/test_soap.pyc
+share/zope3/lib/python/twisted/web/test/test_soap.pyo
+share/zope3/lib/python/twisted/web/test/test_static.py
+share/zope3/lib/python/twisted/web/test/test_static.pyc
+share/zope3/lib/python/twisted/web/test/test_static.pyo
+share/zope3/lib/python/twisted/web/test/test_web.py
+share/zope3/lib/python/twisted/web/test/test_web.pyc
+share/zope3/lib/python/twisted/web/test/test_web.pyo
+share/zope3/lib/python/twisted/web/test/test_webclient.py
+share/zope3/lib/python/twisted/web/test/test_webclient.pyc
+share/zope3/lib/python/twisted/web/test/test_webclient.pyo
+share/zope3/lib/python/twisted/web/test/test_woven.py
+share/zope3/lib/python/twisted/web/test/test_woven.pyc
+share/zope3/lib/python/twisted/web/test/test_woven.pyo
+share/zope3/lib/python/twisted/web/test/test_xml.py
+share/zope3/lib/python/twisted/web/test/test_xml.pyc
+share/zope3/lib/python/twisted/web/test/test_xml.pyo
+share/zope3/lib/python/twisted/web/test/test_xmlrpc.py
+share/zope3/lib/python/twisted/web/test/test_xmlrpc.pyc
+share/zope3/lib/python/twisted/web/test/test_xmlrpc.pyo
+share/zope3/lib/python/twisted/web/topfiles/NEWS
+share/zope3/lib/python/twisted/web/topfiles/README
+share/zope3/lib/python/twisted/web/topfiles/setup.py
+share/zope3/lib/python/twisted/web/topfiles/setup.pyc
+share/zope3/lib/python/twisted/web/topfiles/setup.pyo
+share/zope3/lib/python/twisted/web/trp.py
+share/zope3/lib/python/twisted/web/trp.pyc
+share/zope3/lib/python/twisted/web/trp.pyo
+share/zope3/lib/python/twisted/web/twcgi.py
+share/zope3/lib/python/twisted/web/twcgi.pyc
+share/zope3/lib/python/twisted/web/twcgi.pyo
+share/zope3/lib/python/twisted/web/util.py
+share/zope3/lib/python/twisted/web/util.pyc
+share/zope3/lib/python/twisted/web/util.pyo
+share/zope3/lib/python/twisted/web/vhost.py
+share/zope3/lib/python/twisted/web/vhost.pyc
+share/zope3/lib/python/twisted/web/vhost.pyo
+share/zope3/lib/python/twisted/web/widgets.py
+share/zope3/lib/python/twisted/web/widgets.pyc
+share/zope3/lib/python/twisted/web/widgets.pyo
+share/zope3/lib/python/twisted/web/woven/FlashConduit.fla
+share/zope3/lib/python/twisted/web/woven/FlashConduit.swf
+share/zope3/lib/python/twisted/web/woven/FlashConduitGlue.html
+share/zope3/lib/python/twisted/web/woven/WebConduit2_mozilla.js
+share/zope3/lib/python/twisted/web/woven/WebConduit2_msie.js
+share/zope3/lib/python/twisted/web/woven/WebConduitGlue.html
+share/zope3/lib/python/twisted/web/woven/__init__.py
+share/zope3/lib/python/twisted/web/woven/__init__.pyc
+share/zope3/lib/python/twisted/web/woven/__init__.pyo
+share/zope3/lib/python/twisted/web/woven/controller.py
+share/zope3/lib/python/twisted/web/woven/controller.pyc
+share/zope3/lib/python/twisted/web/woven/controller.pyo
+share/zope3/lib/python/twisted/web/woven/dirlist.py
+share/zope3/lib/python/twisted/web/woven/dirlist.pyc
+share/zope3/lib/python/twisted/web/woven/dirlist.pyo
+share/zope3/lib/python/twisted/web/woven/flashconduit.py
+share/zope3/lib/python/twisted/web/woven/flashconduit.pyc
+share/zope3/lib/python/twisted/web/woven/flashconduit.pyo
+share/zope3/lib/python/twisted/web/woven/form.py
+share/zope3/lib/python/twisted/web/woven/form.pyc
+share/zope3/lib/python/twisted/web/woven/form.pyo
+share/zope3/lib/python/twisted/web/woven/guard.py
+share/zope3/lib/python/twisted/web/woven/guard.pyc
+share/zope3/lib/python/twisted/web/woven/guard.pyo
+share/zope3/lib/python/twisted/web/woven/input.py
+share/zope3/lib/python/twisted/web/woven/input.pyc
+share/zope3/lib/python/twisted/web/woven/input.pyo
+share/zope3/lib/python/twisted/web/woven/interfaces.py
+share/zope3/lib/python/twisted/web/woven/interfaces.pyc
+share/zope3/lib/python/twisted/web/woven/interfaces.pyo
+share/zope3/lib/python/twisted/web/woven/model.py
+share/zope3/lib/python/twisted/web/woven/model.pyc
+share/zope3/lib/python/twisted/web/woven/model.pyo
+share/zope3/lib/python/twisted/web/woven/page.py
+share/zope3/lib/python/twisted/web/woven/page.pyc
+share/zope3/lib/python/twisted/web/woven/page.pyo
+share/zope3/lib/python/twisted/web/woven/simpleguard.py
+share/zope3/lib/python/twisted/web/woven/simpleguard.pyc
+share/zope3/lib/python/twisted/web/woven/simpleguard.pyo
+share/zope3/lib/python/twisted/web/woven/tapestry.py
+share/zope3/lib/python/twisted/web/woven/tapestry.pyc
+share/zope3/lib/python/twisted/web/woven/tapestry.pyo
+share/zope3/lib/python/twisted/web/woven/template.py
+share/zope3/lib/python/twisted/web/woven/template.pyc
+share/zope3/lib/python/twisted/web/woven/template.pyo
+share/zope3/lib/python/twisted/web/woven/utils.py
+share/zope3/lib/python/twisted/web/woven/utils.pyc
+share/zope3/lib/python/twisted/web/woven/utils.pyo
+share/zope3/lib/python/twisted/web/woven/view.py
+share/zope3/lib/python/twisted/web/woven/view.pyc
+share/zope3/lib/python/twisted/web/woven/view.pyo
+share/zope3/lib/python/twisted/web/woven/widgets.py
+share/zope3/lib/python/twisted/web/woven/widgets.pyc
+share/zope3/lib/python/twisted/web/woven/widgets.pyo
+share/zope3/lib/python/twisted/web/xmlrpc.py
+share/zope3/lib/python/twisted/web/xmlrpc.pyc
+share/zope3/lib/python/twisted/web/xmlrpc.pyo
+share/zope3/lib/python/twisted/web2/TODO
+share/zope3/lib/python/twisted/web2/__init__.py
+share/zope3/lib/python/twisted/web2/__init__.pyc
+share/zope3/lib/python/twisted/web2/__init__.pyo
+share/zope3/lib/python/twisted/web2/channel/__init__.py
+share/zope3/lib/python/twisted/web2/channel/__init__.pyc
+share/zope3/lib/python/twisted/web2/channel/__init__.pyo
+share/zope3/lib/python/twisted/web2/channel/cgi.py
+share/zope3/lib/python/twisted/web2/channel/cgi.pyc
+share/zope3/lib/python/twisted/web2/channel/cgi.pyo
+share/zope3/lib/python/twisted/web2/channel/fastcgi.py
+share/zope3/lib/python/twisted/web2/channel/fastcgi.pyc
+share/zope3/lib/python/twisted/web2/channel/fastcgi.pyo
+share/zope3/lib/python/twisted/web2/channel/http.py
+share/zope3/lib/python/twisted/web2/channel/http.pyc
+share/zope3/lib/python/twisted/web2/channel/http.pyo
+share/zope3/lib/python/twisted/web2/channel/scgi.py
+share/zope3/lib/python/twisted/web2/channel/scgi.pyc
+share/zope3/lib/python/twisted/web2/channel/scgi.pyo
+share/zope3/lib/python/twisted/web2/compat.py
+share/zope3/lib/python/twisted/web2/compat.pyc
+share/zope3/lib/python/twisted/web2/compat.pyo
+share/zope3/lib/python/twisted/web2/context.py
+share/zope3/lib/python/twisted/web2/context.pyc
+share/zope3/lib/python/twisted/web2/context.pyo
+share/zope3/lib/python/twisted/web2/dirlist.py
+share/zope3/lib/python/twisted/web2/dirlist.pyc
+share/zope3/lib/python/twisted/web2/dirlist.pyo
+share/zope3/lib/python/twisted/web2/error.py
+share/zope3/lib/python/twisted/web2/error.pyc
+share/zope3/lib/python/twisted/web2/error.pyo
+share/zope3/lib/python/twisted/web2/fileupload.py
+share/zope3/lib/python/twisted/web2/fileupload.pyc
+share/zope3/lib/python/twisted/web2/fileupload.pyo
+share/zope3/lib/python/twisted/web2/filter/__init__.py
+share/zope3/lib/python/twisted/web2/filter/__init__.pyc
+share/zope3/lib/python/twisted/web2/filter/__init__.pyo
+share/zope3/lib/python/twisted/web2/filter/gzip.py
+share/zope3/lib/python/twisted/web2/filter/gzip.pyc
+share/zope3/lib/python/twisted/web2/filter/gzip.pyo
+share/zope3/lib/python/twisted/web2/filter/range.py
+share/zope3/lib/python/twisted/web2/filter/range.pyc
+share/zope3/lib/python/twisted/web2/filter/range.pyo
+share/zope3/lib/python/twisted/web2/http.py
+share/zope3/lib/python/twisted/web2/http.pyc
+share/zope3/lib/python/twisted/web2/http.pyo
+share/zope3/lib/python/twisted/web2/http_headers.py
+share/zope3/lib/python/twisted/web2/http_headers.pyc
+share/zope3/lib/python/twisted/web2/http_headers.pyo
+share/zope3/lib/python/twisted/web2/iweb.py
+share/zope3/lib/python/twisted/web2/iweb.pyc
+share/zope3/lib/python/twisted/web2/iweb.pyo
+share/zope3/lib/python/twisted/web2/log.py
+share/zope3/lib/python/twisted/web2/log.pyc
+share/zope3/lib/python/twisted/web2/log.pyo
+share/zope3/lib/python/twisted/web2/plugin.py
+share/zope3/lib/python/twisted/web2/plugin.pyc
+share/zope3/lib/python/twisted/web2/plugin.pyo
+share/zope3/lib/python/twisted/web2/proxy.py
+share/zope3/lib/python/twisted/web2/proxy.pyc
+share/zope3/lib/python/twisted/web2/proxy.pyo
+share/zope3/lib/python/twisted/web2/requtil.py
+share/zope3/lib/python/twisted/web2/requtil.pyc
+share/zope3/lib/python/twisted/web2/requtil.pyo
+share/zope3/lib/python/twisted/web2/resource.py
+share/zope3/lib/python/twisted/web2/resource.pyc
+share/zope3/lib/python/twisted/web2/resource.pyo
+share/zope3/lib/python/twisted/web2/responsecode.py
+share/zope3/lib/python/twisted/web2/responsecode.pyc
+share/zope3/lib/python/twisted/web2/responsecode.pyo
+share/zope3/lib/python/twisted/web2/script.py
+share/zope3/lib/python/twisted/web2/script.pyc
+share/zope3/lib/python/twisted/web2/script.pyo
+share/zope3/lib/python/twisted/web2/scripts/__init__.py
+share/zope3/lib/python/twisted/web2/scripts/__init__.pyc
+share/zope3/lib/python/twisted/web2/scripts/__init__.pyo
+share/zope3/lib/python/twisted/web2/scripts/websetroot.py
+share/zope3/lib/python/twisted/web2/scripts/websetroot.pyc
+share/zope3/lib/python/twisted/web2/scripts/websetroot.pyo
+share/zope3/lib/python/twisted/web2/server.py
+share/zope3/lib/python/twisted/web2/server.pyc
+share/zope3/lib/python/twisted/web2/server.pyo
+share/zope3/lib/python/twisted/web2/static.py
+share/zope3/lib/python/twisted/web2/static.pyc
+share/zope3/lib/python/twisted/web2/static.pyo
+share/zope3/lib/python/twisted/web2/stream.py
+share/zope3/lib/python/twisted/web2/stream.pyc
+share/zope3/lib/python/twisted/web2/stream.pyo
+share/zope3/lib/python/twisted/web2/test/__init__.py
+share/zope3/lib/python/twisted/web2/test/__init__.pyc
+share/zope3/lib/python/twisted/web2/test/__init__.pyo
+share/zope3/lib/python/twisted/web2/test/server.pem
+share/zope3/lib/python/twisted/web2/test/simple_client.py
+share/zope3/lib/python/twisted/web2/test/simple_client.pyc
+share/zope3/lib/python/twisted/web2/test/simple_client.pyo
+share/zope3/lib/python/twisted/web2/test/stream_data.txt
+share/zope3/lib/python/twisted/web2/test/test_cgi.py
+share/zope3/lib/python/twisted/web2/test/test_cgi.pyc
+share/zope3/lib/python/twisted/web2/test/test_cgi.pyo
+share/zope3/lib/python/twisted/web2/test/test_compat.py
+share/zope3/lib/python/twisted/web2/test/test_compat.pyc
+share/zope3/lib/python/twisted/web2/test/test_compat.pyo
+share/zope3/lib/python/twisted/web2/test/test_fileupload.py
+share/zope3/lib/python/twisted/web2/test/test_fileupload.pyc
+share/zope3/lib/python/twisted/web2/test/test_fileupload.pyo
+share/zope3/lib/python/twisted/web2/test/test_http.py
+share/zope3/lib/python/twisted/web2/test/test_http.pyc
+share/zope3/lib/python/twisted/web2/test/test_http.pyo
+share/zope3/lib/python/twisted/web2/test/test_http_headers.py
+share/zope3/lib/python/twisted/web2/test/test_http_headers.pyc
+share/zope3/lib/python/twisted/web2/test/test_http_headers.pyo
+share/zope3/lib/python/twisted/web2/test/test_plugin.py
+share/zope3/lib/python/twisted/web2/test/test_plugin.pyc
+share/zope3/lib/python/twisted/web2/test/test_plugin.pyo
+share/zope3/lib/python/twisted/web2/test/test_server.py
+share/zope3/lib/python/twisted/web2/test/test_server.pyc
+share/zope3/lib/python/twisted/web2/test/test_server.pyo
+share/zope3/lib/python/twisted/web2/test/test_static.py
+share/zope3/lib/python/twisted/web2/test/test_static.pyc
+share/zope3/lib/python/twisted/web2/test/test_static.pyo
+share/zope3/lib/python/twisted/web2/test/test_stream.py
+share/zope3/lib/python/twisted/web2/test/test_stream.pyc
+share/zope3/lib/python/twisted/web2/test/test_stream.pyo
+share/zope3/lib/python/twisted/web2/test/test_vhost.py
+share/zope3/lib/python/twisted/web2/test/test_vhost.pyc
+share/zope3/lib/python/twisted/web2/test/test_vhost.pyo
+share/zope3/lib/python/twisted/web2/test/test_wsgi.py
+share/zope3/lib/python/twisted/web2/test/test_wsgi.pyc
+share/zope3/lib/python/twisted/web2/test/test_wsgi.pyo
+share/zope3/lib/python/twisted/web2/topfiles/README
+share/zope3/lib/python/twisted/web2/topfiles/setup.py
+share/zope3/lib/python/twisted/web2/topfiles/setup.pyc
+share/zope3/lib/python/twisted/web2/topfiles/setup.pyo
+share/zope3/lib/python/twisted/web2/twcgi.py
+share/zope3/lib/python/twisted/web2/twcgi.pyc
+share/zope3/lib/python/twisted/web2/twcgi.pyo
+share/zope3/lib/python/twisted/web2/twscgi.py
+share/zope3/lib/python/twisted/web2/twscgi.pyc
+share/zope3/lib/python/twisted/web2/twscgi.pyo
+share/zope3/lib/python/twisted/web2/vhost.py
+share/zope3/lib/python/twisted/web2/vhost.pyc
+share/zope3/lib/python/twisted/web2/vhost.pyo
+share/zope3/lib/python/twisted/web2/wsgi.py
+share/zope3/lib/python/twisted/web2/wsgi.pyc
+share/zope3/lib/python/twisted/web2/wsgi.pyo
+share/zope3/lib/python/twisted/words/__init__.py
+share/zope3/lib/python/twisted/words/__init__.pyc
+share/zope3/lib/python/twisted/words/__init__.pyo
+share/zope3/lib/python/twisted/words/ewords.py
+share/zope3/lib/python/twisted/words/ewords.pyc
+share/zope3/lib/python/twisted/words/ewords.pyo
+share/zope3/lib/python/twisted/words/im/__init__.py
+share/zope3/lib/python/twisted/words/im/__init__.pyc
+share/zope3/lib/python/twisted/words/im/__init__.pyo
+share/zope3/lib/python/twisted/words/im/baseaccount.py
+share/zope3/lib/python/twisted/words/im/baseaccount.pyc
+share/zope3/lib/python/twisted/words/im/baseaccount.pyo
+share/zope3/lib/python/twisted/words/im/basechat.py
+share/zope3/lib/python/twisted/words/im/basechat.pyc
+share/zope3/lib/python/twisted/words/im/basechat.pyo
+share/zope3/lib/python/twisted/words/im/basesupport.py
+share/zope3/lib/python/twisted/words/im/basesupport.pyc
+share/zope3/lib/python/twisted/words/im/basesupport.pyo
+share/zope3/lib/python/twisted/words/im/gtkaccount.py
+share/zope3/lib/python/twisted/words/im/gtkaccount.pyc
+share/zope3/lib/python/twisted/words/im/gtkaccount.pyo
+share/zope3/lib/python/twisted/words/im/gtkchat.py
+share/zope3/lib/python/twisted/words/im/gtkchat.pyc
+share/zope3/lib/python/twisted/words/im/gtkchat.pyo
+share/zope3/lib/python/twisted/words/im/gtkcommon.py
+share/zope3/lib/python/twisted/words/im/gtkcommon.pyc
+share/zope3/lib/python/twisted/words/im/gtkcommon.pyo
+share/zope3/lib/python/twisted/words/im/instancemessenger.glade
+share/zope3/lib/python/twisted/words/im/interfaces.py
+share/zope3/lib/python/twisted/words/im/interfaces.pyc
+share/zope3/lib/python/twisted/words/im/interfaces.pyo
+share/zope3/lib/python/twisted/words/im/ircsupport.py
+share/zope3/lib/python/twisted/words/im/ircsupport.pyc
+share/zope3/lib/python/twisted/words/im/ircsupport.pyo
+share/zope3/lib/python/twisted/words/im/jyaccount.py
+share/zope3/lib/python/twisted/words/im/jyaccount.pyc
+share/zope3/lib/python/twisted/words/im/jyaccount.pyo
+share/zope3/lib/python/twisted/words/im/jychat.py
+share/zope3/lib/python/twisted/words/im/jychat.pyc
+share/zope3/lib/python/twisted/words/im/jychat.pyo
+share/zope3/lib/python/twisted/words/im/locals.py
+share/zope3/lib/python/twisted/words/im/locals.pyc
+share/zope3/lib/python/twisted/words/im/locals.pyo
+share/zope3/lib/python/twisted/words/im/pbsupport.py
+share/zope3/lib/python/twisted/words/im/pbsupport.pyc
+share/zope3/lib/python/twisted/words/im/pbsupport.pyo
+share/zope3/lib/python/twisted/words/im/proxyui.py
+share/zope3/lib/python/twisted/words/im/proxyui.pyc
+share/zope3/lib/python/twisted/words/im/proxyui.pyo
+share/zope3/lib/python/twisted/words/im/tap.py
+share/zope3/lib/python/twisted/words/im/tap.pyc
+share/zope3/lib/python/twisted/words/im/tap.pyo
+share/zope3/lib/python/twisted/words/im/tocsupport.py
+share/zope3/lib/python/twisted/words/im/tocsupport.pyc
+share/zope3/lib/python/twisted/words/im/tocsupport.pyo
+share/zope3/lib/python/twisted/words/iwords.py
+share/zope3/lib/python/twisted/words/iwords.pyc
+share/zope3/lib/python/twisted/words/iwords.pyo
+share/zope3/lib/python/twisted/words/protocols/__init__.py
+share/zope3/lib/python/twisted/words/protocols/__init__.pyc
+share/zope3/lib/python/twisted/words/protocols/__init__.pyo
+share/zope3/lib/python/twisted/words/protocols/irc.py
+share/zope3/lib/python/twisted/words/protocols/irc.pyc
+share/zope3/lib/python/twisted/words/protocols/irc.pyo
+share/zope3/lib/python/twisted/words/protocols/jabber/__init__.py
+share/zope3/lib/python/twisted/words/protocols/jabber/__init__.pyc
+share/zope3/lib/python/twisted/words/protocols/jabber/__init__.pyo
+share/zope3/lib/python/twisted/words/protocols/jabber/client.py
+share/zope3/lib/python/twisted/words/protocols/jabber/client.pyc
+share/zope3/lib/python/twisted/words/protocols/jabber/client.pyo
+share/zope3/lib/python/twisted/words/protocols/jabber/component.py
+share/zope3/lib/python/twisted/words/protocols/jabber/component.pyc
+share/zope3/lib/python/twisted/words/protocols/jabber/component.pyo
+share/zope3/lib/python/twisted/words/protocols/jabber/jid.py
+share/zope3/lib/python/twisted/words/protocols/jabber/jid.pyc
+share/zope3/lib/python/twisted/words/protocols/jabber/jid.pyo
+share/zope3/lib/python/twisted/words/protocols/jabber/jstrports.py
+share/zope3/lib/python/twisted/words/protocols/jabber/jstrports.pyc
+share/zope3/lib/python/twisted/words/protocols/jabber/jstrports.pyo
+share/zope3/lib/python/twisted/words/protocols/jabber/xmpp_stringprep.py
+share/zope3/lib/python/twisted/words/protocols/jabber/xmpp_stringprep.pyc
+share/zope3/lib/python/twisted/words/protocols/jabber/xmpp_stringprep.pyo
+share/zope3/lib/python/twisted/words/protocols/msn.py
+share/zope3/lib/python/twisted/words/protocols/msn.pyc
+share/zope3/lib/python/twisted/words/protocols/msn.pyo
+share/zope3/lib/python/twisted/words/protocols/oscar.py
+share/zope3/lib/python/twisted/words/protocols/oscar.pyc
+share/zope3/lib/python/twisted/words/protocols/oscar.pyo
+share/zope3/lib/python/twisted/words/protocols/toc.py
+share/zope3/lib/python/twisted/words/protocols/toc.pyc
+share/zope3/lib/python/twisted/words/protocols/toc.pyo
+share/zope3/lib/python/twisted/words/scripts/__init__.py
+share/zope3/lib/python/twisted/words/scripts/__init__.pyc
+share/zope3/lib/python/twisted/words/scripts/__init__.pyo
+share/zope3/lib/python/twisted/words/scripts/im.py
+share/zope3/lib/python/twisted/words/scripts/im.pyc
+share/zope3/lib/python/twisted/words/scripts/im.pyo
+share/zope3/lib/python/twisted/words/service.py
+share/zope3/lib/python/twisted/words/service.pyc
+share/zope3/lib/python/twisted/words/service.pyo
+share/zope3/lib/python/twisted/words/tap.py
+share/zope3/lib/python/twisted/words/tap.pyc
+share/zope3/lib/python/twisted/words/tap.pyo
+share/zope3/lib/python/twisted/words/test/__init__.py
+share/zope3/lib/python/twisted/words/test/__init__.pyc
+share/zope3/lib/python/twisted/words/test/__init__.pyo
+share/zope3/lib/python/twisted/words/test/test_irc.py
+share/zope3/lib/python/twisted/words/test/test_irc.pyc
+share/zope3/lib/python/twisted/words/test/test_irc.pyo
+share/zope3/lib/python/twisted/words/test/test_jabbercomponent.py
+share/zope3/lib/python/twisted/words/test/test_jabbercomponent.pyc
+share/zope3/lib/python/twisted/words/test/test_jabbercomponent.pyo
+share/zope3/lib/python/twisted/words/test/test_jabberjid.py
+share/zope3/lib/python/twisted/words/test/test_jabberjid.pyc
+share/zope3/lib/python/twisted/words/test/test_jabberjid.pyo
+share/zope3/lib/python/twisted/words/test/test_jabberxmppstringprep.py
+share/zope3/lib/python/twisted/words/test/test_jabberxmppstringprep.pyc
+share/zope3/lib/python/twisted/words/test/test_jabberxmppstringprep.pyo
+share/zope3/lib/python/twisted/words/test/test_msn.py
+share/zope3/lib/python/twisted/words/test/test_msn.pyc
+share/zope3/lib/python/twisted/words/test/test_msn.pyo
+share/zope3/lib/python/twisted/words/test/test_service.py
+share/zope3/lib/python/twisted/words/test/test_service.pyc
+share/zope3/lib/python/twisted/words/test/test_service.pyo
+share/zope3/lib/python/twisted/words/test/test_toc.py
+share/zope3/lib/python/twisted/words/test/test_toc.pyc
+share/zope3/lib/python/twisted/words/test/test_toc.pyo
+share/zope3/lib/python/twisted/words/toctap.py
+share/zope3/lib/python/twisted/words/toctap.pyc
+share/zope3/lib/python/twisted/words/toctap.pyo
+share/zope3/lib/python/twisted/words/topfiles/NEWS
+share/zope3/lib/python/twisted/words/topfiles/README
+share/zope3/lib/python/twisted/words/topfiles/setup.py
+share/zope3/lib/python/twisted/words/topfiles/setup.pyc
+share/zope3/lib/python/twisted/words/topfiles/setup.pyo
+share/zope3/lib/python/twisted/xish/__init__.py
+share/zope3/lib/python/twisted/xish/__init__.pyc
+share/zope3/lib/python/twisted/xish/__init__.pyo
+share/zope3/lib/python/twisted/xish/domish.py
+share/zope3/lib/python/twisted/xish/domish.pyc
+share/zope3/lib/python/twisted/xish/domish.pyo
+share/zope3/lib/python/twisted/xish/test/__init__.py
+share/zope3/lib/python/twisted/xish/test/__init__.pyc
+share/zope3/lib/python/twisted/xish/test/__init__.pyo
+share/zope3/lib/python/twisted/xish/test/test_domish.py
+share/zope3/lib/python/twisted/xish/test/test_domish.pyc
+share/zope3/lib/python/twisted/xish/test/test_domish.pyo
+share/zope3/lib/python/twisted/xish/test/test_xishutil.py
+share/zope3/lib/python/twisted/xish/test/test_xishutil.pyc
+share/zope3/lib/python/twisted/xish/test/test_xishutil.pyo
+share/zope3/lib/python/twisted/xish/test/test_xmlstream.py
+share/zope3/lib/python/twisted/xish/test/test_xmlstream.pyc
+share/zope3/lib/python/twisted/xish/test/test_xmlstream.pyo
+share/zope3/lib/python/twisted/xish/test/test_xpath.py
+share/zope3/lib/python/twisted/xish/test/test_xpath.pyc
+share/zope3/lib/python/twisted/xish/test/test_xpath.pyo
+share/zope3/lib/python/twisted/xish/topfiles/NEWS
+share/zope3/lib/python/twisted/xish/topfiles/README
+share/zope3/lib/python/twisted/xish/topfiles/setup.py
+share/zope3/lib/python/twisted/xish/topfiles/setup.pyc
+share/zope3/lib/python/twisted/xish/topfiles/setup.pyo
+share/zope3/lib/python/twisted/xish/utility.py
+share/zope3/lib/python/twisted/xish/utility.pyc
+share/zope3/lib/python/twisted/xish/utility.pyo
+share/zope3/lib/python/twisted/xish/xmlstream.py
+share/zope3/lib/python/twisted/xish/xmlstream.pyc
+share/zope3/lib/python/twisted/xish/xmlstream.pyo
+share/zope3/lib/python/twisted/xish/xpath.py
+share/zope3/lib/python/twisted/xish/xpath.pyc
+share/zope3/lib/python/twisted/xish/xpath.pyo
+share/zope3/lib/python/twisted/xish/xpathparser.g
+share/zope3/lib/python/twisted/xish/xpathparser.py
+share/zope3/lib/python/twisted/xish/xpathparser.pyc
+share/zope3/lib/python/twisted/xish/xpathparser.pyo
share/zope3/lib/python/zdaemon/DEPENDENCIES.cfg
share/zope3/lib/python/zdaemon/SETUP.cfg
share/zope3/lib/python/zdaemon/__init__.py
@@ -2794,7 +5144,6 @@ share/zope3/lib/python/zdaemon/schema.xml
share/zope3/lib/python/zdaemon/tests/__init__.py
share/zope3/lib/python/zdaemon/tests/__init__.pyc
share/zope3/lib/python/zdaemon/tests/__init__.pyo
-share/zope3/lib/python/zdaemon/tests/donothing.sh
share/zope3/lib/python/zdaemon/tests/nokill.py
share/zope3/lib/python/zdaemon/tests/nokill.pyc
share/zope3/lib/python/zdaemon/tests/nokill.pyo
@@ -2925,9 +5274,11 @@ share/zope3/lib/python/zope/app/apidoc/bookmodule/metaconfigure.pyo
share/zope3/lib/python/zope/app/apidoc/bookmodule/metadirectives.py
share/zope3/lib/python/zope/app/apidoc/bookmodule/metadirectives.pyc
share/zope3/lib/python/zope/app/apidoc/bookmodule/metadirectives.pyo
+share/zope3/lib/python/zope/app/apidoc/bookmodule/static_menu.pt
share/zope3/lib/python/zope/app/apidoc/bookmodule/tests.py
share/zope3/lib/python/zope/app/apidoc/bookmodule/tests.pyc
share/zope3/lib/python/zope/app/apidoc/bookmodule/tests.pyo
+share/zope3/lib/python/zope/app/apidoc/browser/README.txt
share/zope3/lib/python/zope/app/apidoc/browser/__init__.py
share/zope3/lib/python/zope/app/apidoc/browser/__init__.pyc
share/zope3/lib/python/zope/app/apidoc/browser/__init__.pyo
@@ -2950,11 +5301,20 @@ share/zope3/lib/python/zope/app/apidoc/browser/macros.pyo
share/zope3/lib/python/zope/app/apidoc/browser/menu.pt
share/zope3/lib/python/zope/app/apidoc/browser/menu_macros.pt
share/zope3/lib/python/zope/app/apidoc/browser/modules.pt
+share/zope3/lib/python/zope/app/apidoc/browser/notfound.pt
share/zope3/lib/python/zope/app/apidoc/browser/prefIndex.pt
share/zope3/lib/python/zope/app/apidoc/browser/preference.py
share/zope3/lib/python/zope/app/apidoc/browser/preference.pyc
share/zope3/lib/python/zope/app/apidoc/browser/preference.pyo
share/zope3/lib/python/zope/app/apidoc/browser/prefmenu.pt
+share/zope3/lib/python/zope/app/apidoc/browser/skin.py
+share/zope3/lib/python/zope/app/apidoc/browser/skin.pyc
+share/zope3/lib/python/zope/app/apidoc/browser/skin.pyo
+share/zope3/lib/python/zope/app/apidoc/browser/static_contents.pt
+share/zope3/lib/python/zope/app/apidoc/browser/static_index.pt
+share/zope3/lib/python/zope/app/apidoc/browser/static_menu.pt
+share/zope3/lib/python/zope/app/apidoc/browser/static_menu_macros.pt
+share/zope3/lib/python/zope/app/apidoc/browser/static_modules.pt
share/zope3/lib/python/zope/app/apidoc/browser/utilities.js
share/zope3/lib/python/zope/app/apidoc/browser/varrow.png
share/zope3/lib/python/zope/app/apidoc/classregistry.py
@@ -2989,6 +5349,7 @@ share/zope3/lib/python/zope/app/apidoc/codemodule/browser/introspector.py
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/introspector.pyc
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/introspector.pyo
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/introspector.txt
+share/zope3/lib/python/zope/app/apidoc/codemodule/browser/introspector.zcml
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/menu.pt
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/menu.py
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/menu.pyc
@@ -2997,6 +5358,7 @@ share/zope3/lib/python/zope/app/apidoc/codemodule/browser/module.py
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/module.pyc
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/module.pyo
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/module_index.pt
+share/zope3/lib/python/zope/app/apidoc/codemodule/browser/static_menu.pt
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/tests.py
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/tests.pyc
share/zope3/lib/python/zope/app/apidoc/codemodule/browser/tests.pyo
@@ -3076,6 +5438,7 @@ share/zope3/lib/python/zope/app/apidoc/ifacemodule/menu.py
share/zope3/lib/python/zope/app/apidoc/ifacemodule/menu.pyc
share/zope3/lib/python/zope/app/apidoc/ifacemodule/menu.pyo
share/zope3/lib/python/zope/app/apidoc/ifacemodule/presentation_macros.pt
+share/zope3/lib/python/zope/app/apidoc/ifacemodule/static_menu.pt
share/zope3/lib/python/zope/app/apidoc/ifacemodule/tests.py
share/zope3/lib/python/zope/app/apidoc/ifacemodule/tests.pyc
share/zope3/lib/python/zope/app/apidoc/ifacemodule/tests.pyo
@@ -3091,6 +5454,9 @@ share/zope3/lib/python/zope/app/apidoc/presentation.py
share/zope3/lib/python/zope/app/apidoc/presentation.pyc
share/zope3/lib/python/zope/app/apidoc/presentation.pyo
share/zope3/lib/python/zope/app/apidoc/presentation.txt
+share/zope3/lib/python/zope/app/apidoc/static.py
+share/zope3/lib/python/zope/app/apidoc/static.pyc
+share/zope3/lib/python/zope/app/apidoc/static.pyo
share/zope3/lib/python/zope/app/apidoc/tests.py
share/zope3/lib/python/zope/app/apidoc/tests.pyc
share/zope3/lib/python/zope/app/apidoc/tests.pyo
@@ -3102,6 +5468,7 @@ share/zope3/lib/python/zope/app/apidoc/typemodule/browser.pyc
share/zope3/lib/python/zope/app/apidoc/typemodule/browser.pyo
share/zope3/lib/python/zope/app/apidoc/typemodule/configure.zcml
share/zope3/lib/python/zope/app/apidoc/typemodule/menu.pt
+share/zope3/lib/python/zope/app/apidoc/typemodule/static_menu.pt
share/zope3/lib/python/zope/app/apidoc/typemodule/tests.py
share/zope3/lib/python/zope/app/apidoc/typemodule/tests.pyc
share/zope3/lib/python/zope/app/apidoc/typemodule/tests.pyo
@@ -3126,6 +5493,7 @@ share/zope3/lib/python/zope/app/apidoc/utilitymodule/ftests.pyc
share/zope3/lib/python/zope/app/apidoc/utilitymodule/ftests.pyo
share/zope3/lib/python/zope/app/apidoc/utilitymodule/index.pt
share/zope3/lib/python/zope/app/apidoc/utilitymodule/menu.pt
+share/zope3/lib/python/zope/app/apidoc/utilitymodule/static_menu.pt
share/zope3/lib/python/zope/app/apidoc/utilitymodule/tests.py
share/zope3/lib/python/zope/app/apidoc/utilitymodule/tests.pyc
share/zope3/lib/python/zope/app/apidoc/utilitymodule/tests.pyo
@@ -3147,6 +5515,7 @@ share/zope3/lib/python/zope/app/apidoc/zcmlmodule/ftests.pyc
share/zope3/lib/python/zope/app/apidoc/zcmlmodule/ftests.pyo
share/zope3/lib/python/zope/app/apidoc/zcmlmodule/index.pt
share/zope3/lib/python/zope/app/apidoc/zcmlmodule/menu.pt
+share/zope3/lib/python/zope/app/apidoc/zcmlmodule/static_menu.pt
share/zope3/lib/python/zope/app/apidoc/zcmlmodule/tests.py
share/zope3/lib/python/zope/app/apidoc/zcmlmodule/tests.pyc
share/zope3/lib/python/zope/app/apidoc/zcmlmodule/tests.pyo
@@ -3176,7 +5545,7 @@ share/zope3/lib/python/zope/app/applicationcontrol/browser/runtimeinfo.pt
share/zope3/lib/python/zope/app/applicationcontrol/browser/runtimeinfo.py
share/zope3/lib/python/zope/app/applicationcontrol/browser/runtimeinfo.pyc
share/zope3/lib/python/zope/app/applicationcontrol/browser/runtimeinfo.pyo
-share/zope3/lib/python/zope/app/applicationcontrol/browser/server-control.pt
+share/zope3/lib/python/zope/app/applicationcontrol/browser/servercontrol.pt
share/zope3/lib/python/zope/app/applicationcontrol/browser/servercontrol.py
share/zope3/lib/python/zope/app/applicationcontrol/browser/servercontrol.pyc
share/zope3/lib/python/zope/app/applicationcontrol/browser/servercontrol.pyo
@@ -3233,6 +5602,7 @@ share/zope3/lib/python/zope/app/appsetup/configure.zcml
share/zope3/lib/python/zope/app/appsetup/interfaces.py
share/zope3/lib/python/zope/app/appsetup/interfaces.pyc
share/zope3/lib/python/zope/app/appsetup/interfaces.pyo
+share/zope3/lib/python/zope/app/appsetup/schema.xml
share/zope3/lib/python/zope/app/appsetup/tests.py
share/zope3/lib/python/zope/app/appsetup/tests.pyc
share/zope3/lib/python/zope/app/appsetup/tests.pyo
@@ -3294,6 +5664,13 @@ share/zope3/lib/python/zope/app/authentication/idpicker.pyo
share/zope3/lib/python/zope/app/authentication/interfaces.py
share/zope3/lib/python/zope/app/authentication/interfaces.pyc
share/zope3/lib/python/zope/app/authentication/interfaces.pyo
+share/zope3/lib/python/zope/app/authentication/password.py
+share/zope3/lib/python/zope/app/authentication/password.pyc
+share/zope3/lib/python/zope/app/authentication/password.pyo
+share/zope3/lib/python/zope/app/authentication/password.zcml
+share/zope3/lib/python/zope/app/authentication/placelesssetup.py
+share/zope3/lib/python/zope/app/authentication/placelesssetup.pyc
+share/zope3/lib/python/zope/app/authentication/placelesssetup.pyo
share/zope3/lib/python/zope/app/authentication/principalfolder.py
share/zope3/lib/python/zope/app/authentication/principalfolder.pyc
share/zope3/lib/python/zope/app/authentication/principalfolder.pyo
@@ -3480,25 +5857,29 @@ share/zope3/lib/python/zope/app/component/browser/site.py
share/zope3/lib/python/zope/app/component/browser/site.pyc
share/zope3/lib/python/zope/app/component/browser/site.pyo
share/zope3/lib/python/zope/app/component/browser/site_management.pt
+share/zope3/lib/python/zope/app/component/browser/tests/__init__.py
+share/zope3/lib/python/zope/app/component/browser/tests/__init__.pyc
+share/zope3/lib/python/zope/app/component/browser/tests/__init__.pyo
+share/zope3/lib/python/zope/app/component/browser/tests/test_directives.py
+share/zope3/lib/python/zope/app/component/browser/tests/test_directives.pyc
+share/zope3/lib/python/zope/app/component/browser/tests/test_directives.pyo
+share/zope3/lib/python/zope/app/component/browser/tests/test_editregistration.py
+share/zope3/lib/python/zope/app/component/browser/tests/test_editregistration.pyc
+share/zope3/lib/python/zope/app/component/browser/tests/test_editregistration.pyo
+share/zope3/lib/python/zope/app/component/browser/tests/test_registrationview.py
+share/zope3/lib/python/zope/app/component/browser/tests/test_registrationview.pyc
+share/zope3/lib/python/zope/app/component/browser/tests/test_registrationview.pyo
+share/zope3/lib/python/zope/app/component/browser/tests/test_tools.py
+share/zope3/lib/python/zope/app/component/browser/tests/test_tools.pyc
+share/zope3/lib/python/zope/app/component/browser/tests/test_tools.pyo
share/zope3/lib/python/zope/app/component/browser/tools.py
share/zope3/lib/python/zope/app/component/browser/tools.pyc
share/zope3/lib/python/zope/app/component/browser/tools.pyo
+share/zope3/lib/python/zope/app/component/browser/tools.txt
share/zope3/lib/python/zope/app/component/browser/utility.py
share/zope3/lib/python/zope/app/component/browser/utility.pyc
share/zope3/lib/python/zope/app/component/browser/utility.pyo
share/zope3/lib/python/zope/app/component/browser/utilreg_details.pt
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_changeregistrations.py
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_changeregistrations.pyc
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_changeregistrations.pyo
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_directives.py
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_directives.pyc
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_directives.pyo
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_editregistration.py
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_editregistration.pyc
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_editregistration.pyo
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_registrationview.py
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_registrationview.pyc
-share/zope3/lib/python/zope/app/component/browser/xxx_tests/test_registrationview.pyo
share/zope3/lib/python/zope/app/component/configure.zcml
share/zope3/lib/python/zope/app/component/contentdirective.py
share/zope3/lib/python/zope/app/component/contentdirective.pyc
@@ -3641,6 +6022,7 @@ share/zope3/lib/python/zope/app/container/configure.zcml
share/zope3/lib/python/zope/app/container/constraints.py
share/zope3/lib/python/zope/app/container/constraints.pyc
share/zope3/lib/python/zope/app/container/constraints.pyo
+share/zope3/lib/python/zope/app/container/constraints.txt
share/zope3/lib/python/zope/app/container/contained.py
share/zope3/lib/python/zope/app/container/contained.pyc
share/zope3/lib/python/zope/app/container/contained.pyo
@@ -3723,9 +6105,18 @@ share/zope3/lib/python/zope/app/content/configure.zcml
share/zope3/lib/python/zope/app/content/interfaces.py
share/zope3/lib/python/zope/app/content/interfaces.pyc
share/zope3/lib/python/zope/app/content/interfaces.pyo
-share/zope3/lib/python/zope/app/content_types.py
-share/zope3/lib/python/zope/app/content_types.pyc
-share/zope3/lib/python/zope/app/content_types.pyo
+share/zope3/lib/python/zope/app/content_types/__init__.py
+share/zope3/lib/python/zope/app/content_types/__init__.pyc
+share/zope3/lib/python/zope/app/content_types/__init__.pyo
+share/zope3/lib/python/zope/app/content_types/mime.types
+share/zope3/lib/python/zope/app/content_types/tests/__init__.py
+share/zope3/lib/python/zope/app/content_types/tests/__init__.pyc
+share/zope3/lib/python/zope/app/content_types/tests/__init__.pyo
+share/zope3/lib/python/zope/app/content_types/tests/mime.types-1
+share/zope3/lib/python/zope/app/content_types/tests/mime.types-2
+share/zope3/lib/python/zope/app/content_types/tests/testContentTypes.py
+share/zope3/lib/python/zope/app/content_types/tests/testContentTypes.pyc
+share/zope3/lib/python/zope/app/content_types/tests/testContentTypes.pyo
share/zope3/lib/python/zope/app/copypastemove/__init__.py
share/zope3/lib/python/zope/app/copypastemove/__init__.pyc
share/zope3/lib/python/zope/app/copypastemove/__init__.pyo
@@ -3997,6 +6388,7 @@ share/zope3/lib/python/zope/app/event/tests/test_objectevent.pyo
share/zope3/lib/python/zope/app/exception/__init__.py
share/zope3/lib/python/zope/app/exception/__init__.pyc
share/zope3/lib/python/zope/app/exception/__init__.pyo
+share/zope3/lib/python/zope/app/exception/browser/SETUP.cfg
share/zope3/lib/python/zope/app/exception/browser/__init__.py
share/zope3/lib/python/zope/app/exception/browser/__init__.pyc
share/zope3/lib/python/zope/app/exception/browser/__init__.pyo
@@ -4121,10 +6513,6 @@ share/zope3/lib/python/zope/app/form/browser/add.pt
share/zope3/lib/python/zope/app/form/browser/add.py
share/zope3/lib/python/zope/app/form/browser/add.pyc
share/zope3/lib/python/zope/app/form/browser/add.pyo
-share/zope3/lib/python/zope/app/form/browser/addwizard.pt
-share/zope3/lib/python/zope/app/form/browser/addwizard.py
-share/zope3/lib/python/zope/app/form/browser/addwizard.pyc
-share/zope3/lib/python/zope/app/form/browser/addwizard.pyo
share/zope3/lib/python/zope/app/form/browser/boolwidgets.py
share/zope3/lib/python/zope/app/form/browser/boolwidgets.pyc
share/zope3/lib/python/zope/app/form/browser/boolwidgets.pyo
@@ -4134,10 +6522,6 @@ share/zope3/lib/python/zope/app/form/browser/edit.pt
share/zope3/lib/python/zope/app/form/browser/editview.py
share/zope3/lib/python/zope/app/form/browser/editview.pyc
share/zope3/lib/python/zope/app/form/browser/editview.pyo
-share/zope3/lib/python/zope/app/form/browser/editwizard.pt
-share/zope3/lib/python/zope/app/form/browser/editwizard.py
-share/zope3/lib/python/zope/app/form/browser/editwizard.pyc
-share/zope3/lib/python/zope/app/form/browser/editwizard.pyo
share/zope3/lib/python/zope/app/form/browser/exception.py
share/zope3/lib/python/zope/app/form/browser/exception.pyc
share/zope3/lib/python/zope/app/form/browser/exception.pyo
@@ -4148,6 +6532,10 @@ share/zope3/lib/python/zope/app/form/browser/formview.pyo
share/zope3/lib/python/zope/app/form/browser/ftests/__init__.py
share/zope3/lib/python/zope/app/form/browser/ftests/__init__.pyc
share/zope3/lib/python/zope/app/form/browser/ftests/__init__.pyo
+share/zope3/lib/python/zope/app/form/browser/ftests/i18n.zcml
+share/zope3/lib/python/zope/app/form/browser/ftests/locales/de/LC_MESSAGES/formtest.mo
+share/zope3/lib/python/zope/app/form/browser/ftests/locales/de/LC_MESSAGES/formtest.po
+share/zope3/lib/python/zope/app/form/browser/ftests/locales/formtest.pot
share/zope3/lib/python/zope/app/form/browser/ftests/support.py
share/zope3/lib/python/zope/app/form/browser/ftests/support.pyc
share/zope3/lib/python/zope/app/form/browser/ftests/support.pyo
@@ -4169,6 +6557,9 @@ share/zope3/lib/python/zope/app/form/browser/ftests/test_filewidget.pyo
share/zope3/lib/python/zope/app/form/browser/ftests/test_floatwidget.py
share/zope3/lib/python/zope/app/form/browser/ftests/test_floatwidget.pyc
share/zope3/lib/python/zope/app/form/browser/ftests/test_floatwidget.pyo
+share/zope3/lib/python/zope/app/form/browser/ftests/test_i18n.py
+share/zope3/lib/python/zope/app/form/browser/ftests/test_i18n.pyc
+share/zope3/lib/python/zope/app/form/browser/ftests/test_i18n.pyo
share/zope3/lib/python/zope/app/form/browser/ftests/test_intwidget.py
share/zope3/lib/python/zope/app/form/browser/ftests/test_intwidget.pyc
share/zope3/lib/python/zope/app/form/browser/ftests/test_intwidget.pyo
@@ -4181,6 +6572,7 @@ share/zope3/lib/python/zope/app/form/browser/ftests/test_textareawidget.pyo
share/zope3/lib/python/zope/app/form/browser/ftests/test_textwidget.py
share/zope3/lib/python/zope/app/form/browser/ftests/test_textwidget.pyc
share/zope3/lib/python/zope/app/form/browser/ftests/test_textwidget.pyo
+share/zope3/lib/python/zope/app/form/browser/i18n.txt
share/zope3/lib/python/zope/app/form/browser/interfaces.py
share/zope3/lib/python/zope/app/form/browser/interfaces.pyc
share/zope3/lib/python/zope/app/form/browser/interfaces.pyo
@@ -4254,9 +6646,6 @@ share/zope3/lib/python/zope/app/form/browser/tests/test_displaywidget.pyo
share/zope3/lib/python/zope/app/form/browser/tests/test_editview.py
share/zope3/lib/python/zope/app/form/browser/tests/test_editview.pyc
share/zope3/lib/python/zope/app/form/browser/tests/test_editview.pyo
-share/zope3/lib/python/zope/app/form/browser/tests/test_editwizardview.py
-share/zope3/lib/python/zope/app/form/browser/tests/test_editwizardview.pyc
-share/zope3/lib/python/zope/app/form/browser/tests/test_editwizardview.pyo
share/zope3/lib/python/zope/app/form/browser/tests/test_exception.py
share/zope3/lib/python/zope/app/form/browser/tests/test_exception.pyc
share/zope3/lib/python/zope/app/form/browser/tests/test_exception.pyo
@@ -4362,6 +6751,9 @@ share/zope3/lib/python/zope/app/ftp/configure.zcml
share/zope3/lib/python/zope/app/ftp/tests/__init__.py
share/zope3/lib/python/zope/app/ftp/tests/__init__.pyc
share/zope3/lib/python/zope/app/ftp/tests/__init__.pyo
+share/zope3/lib/python/zope/app/ftp/tests/demofs.py
+share/zope3/lib/python/zope/app/ftp/tests/demofs.pyc
+share/zope3/lib/python/zope/app/ftp/tests/demofs.pyo
share/zope3/lib/python/zope/app/ftp/tests/test_ftpview.py
share/zope3/lib/python/zope/app/ftp/tests/test_ftpview.pyc
share/zope3/lib/python/zope/app/ftp/tests/test_ftpview.pyo
@@ -4448,6 +6840,9 @@ share/zope3/lib/python/zope/app/http/exception/tests/test_unauthorized.pyo
share/zope3/lib/python/zope/app/http/exception/unauthorized.py
share/zope3/lib/python/zope/app/http/exception/unauthorized.pyc
share/zope3/lib/python/zope/app/http/exception/unauthorized.pyo
+share/zope3/lib/python/zope/app/http/httpdate.py
+share/zope3/lib/python/zope/app/http/httpdate.pyc
+share/zope3/lib/python/zope/app/http/httpdate.pyo
share/zope3/lib/python/zope/app/http/interfaces.py
share/zope3/lib/python/zope/app/http/interfaces.pyc
share/zope3/lib/python/zope/app/http/interfaces.pyo
@@ -4520,6 +6915,7 @@ share/zope3/lib/python/zope/app/i18n/metadirectives.pyo
share/zope3/lib/python/zope/app/i18n/tests/__init__.py
share/zope3/lib/python/zope/app/i18n/tests/__init__.pyc
share/zope3/lib/python/zope/app/i18n/tests/__init__.pyo
+share/zope3/lib/python/zope/app/i18n/tests/configure.zcml
share/zope3/lib/python/zope/app/i18n/tests/placelesssetup.py
share/zope3/lib/python/zope/app/i18n/tests/placelesssetup.pyc
share/zope3/lib/python/zope/app/i18n/tests/placelesssetup.pyo
@@ -4684,11 +7080,21 @@ share/zope3/lib/python/zope/app/locales/extract.pyc
share/zope3/lib/python/zope/app/locales/extract.pyo
share/zope3/lib/python/zope/app/locales/fr/LC_MESSAGES/zope.mo
share/zope3/lib/python/zope/app/locales/fr/LC_MESSAGES/zope.po
+share/zope3/lib/python/zope/app/locales/hu/LC_MESSAGES/zope.mo
+share/zope3/lib/python/zope/app/locales/hu/LC_MESSAGES/zope.po
share/zope3/lib/python/zope/app/locales/interfaces.py
share/zope3/lib/python/zope/app/locales/interfaces.pyc
share/zope3/lib/python/zope/app/locales/interfaces.pyo
share/zope3/lib/python/zope/app/locales/it/LC_MESSAGES/zope.mo
share/zope3/lib/python/zope/app/locales/it/LC_MESSAGES/zope.po
+share/zope3/lib/python/zope/app/locales/ja/LC_MESSAGES/zope.mo
+share/zope3/lib/python/zope/app/locales/ja/LC_MESSAGES/zope.po
+share/zope3/lib/python/zope/app/locales/ml/LC_MESSAGES/zope.mo
+share/zope3/lib/python/zope/app/locales/ml/LC_MESSAGES/zope.po
+share/zope3/lib/python/zope/app/locales/nl/LC_MESSAGES/zope.mo
+share/zope3/lib/python/zope/app/locales/nl/LC_MESSAGES/zope.po
+share/zope3/lib/python/zope/app/locales/pl/LC_MESSAGES/zope.mo
+share/zope3/lib/python/zope/app/locales/pl/LC_MESSAGES/zope.po
share/zope3/lib/python/zope/app/locales/pt_BR/LC_MESSAGES/zope.mo
share/zope3/lib/python/zope/app/locales/pt_BR/LC_MESSAGES/zope.po
share/zope3/lib/python/zope/app/locales/pygettext.py
@@ -4699,6 +7105,12 @@ share/zope3/lib/python/zope/app/locales/ru/LC_MESSAGES/zope.po
share/zope3/lib/python/zope/app/locales/tests.py
share/zope3/lib/python/zope/app/locales/tests.pyc
share/zope3/lib/python/zope/app/locales/tests.pyo
+share/zope3/lib/python/zope/app/locales/tr/LC_MESSAGES/zope.mo
+share/zope3/lib/python/zope/app/locales/tr/LC_MESSAGES/zope.po
+share/zope3/lib/python/zope/app/locales/zh_CN/LC_MESSAGES/zope.mo
+share/zope3/lib/python/zope/app/locales/zh_CN/LC_MESSAGES/zope.po
+share/zope3/lib/python/zope/app/locales/zh_TW/LC_MESSAGES/zope.mo
+share/zope3/lib/python/zope/app/locales/zh_TW/LC_MESSAGES/zope.po
share/zope3/lib/python/zope/app/locales/zope.pot
share/zope3/lib/python/zope/app/location/__init__.py
share/zope3/lib/python/zope/app/location/__init__.pyc
@@ -5026,14 +7438,28 @@ share/zope3/lib/python/zope/app/publication/http.pyo
share/zope3/lib/python/zope/app/publication/httpfactory.py
share/zope3/lib/python/zope/app/publication/httpfactory.pyc
share/zope3/lib/python/zope/app/publication/httpfactory.pyo
+share/zope3/lib/python/zope/app/publication/httpfactory.txt
share/zope3/lib/python/zope/app/publication/interfaces.py
share/zope3/lib/python/zope/app/publication/interfaces.pyc
share/zope3/lib/python/zope/app/publication/interfaces.pyo
+share/zope3/lib/python/zope/app/publication/meta.zcml
+share/zope3/lib/python/zope/app/publication/metaconfigure.py
+share/zope3/lib/python/zope/app/publication/metaconfigure.pyc
+share/zope3/lib/python/zope/app/publication/metaconfigure.pyo
+share/zope3/lib/python/zope/app/publication/metadirectives.py
+share/zope3/lib/python/zope/app/publication/metadirectives.pyc
+share/zope3/lib/python/zope/app/publication/metadirectives.pyo
share/zope3/lib/python/zope/app/publication/methodnotallowed.txt
share/zope3/lib/python/zope/app/publication/notfound.txt
share/zope3/lib/python/zope/app/publication/publicationtraverse.py
share/zope3/lib/python/zope/app/publication/publicationtraverse.pyc
share/zope3/lib/python/zope/app/publication/publicationtraverse.pyo
+share/zope3/lib/python/zope/app/publication/requestpublicationfactories.py
+share/zope3/lib/python/zope/app/publication/requestpublicationfactories.pyc
+share/zope3/lib/python/zope/app/publication/requestpublicationfactories.pyo
+share/zope3/lib/python/zope/app/publication/requestpublicationregistry.py
+share/zope3/lib/python/zope/app/publication/requestpublicationregistry.pyc
+share/zope3/lib/python/zope/app/publication/requestpublicationregistry.pyo
share/zope3/lib/python/zope/app/publication/soap.py
share/zope3/lib/python/zope/app/publication/soap.pyc
share/zope3/lib/python/zope/app/publication/soap.pyo
@@ -5049,6 +7475,12 @@ share/zope3/lib/python/zope/app/publication/tests/test_http.pyo
share/zope3/lib/python/zope/app/publication/tests/test_httpfactory.py
share/zope3/lib/python/zope/app/publication/tests/test_httpfactory.pyc
share/zope3/lib/python/zope/app/publication/tests/test_httpfactory.pyo
+share/zope3/lib/python/zope/app/publication/tests/test_requestpublicationfactories.py
+share/zope3/lib/python/zope/app/publication/tests/test_requestpublicationfactories.pyc
+share/zope3/lib/python/zope/app/publication/tests/test_requestpublicationfactories.pyo
+share/zope3/lib/python/zope/app/publication/tests/test_requestpublicationregistry.py
+share/zope3/lib/python/zope/app/publication/tests/test_requestpublicationregistry.pyc
+share/zope3/lib/python/zope/app/publication/tests/test_requestpublicationregistry.pyo
share/zope3/lib/python/zope/app/publication/tests/test_simplecomponenttraverser.py
share/zope3/lib/python/zope/app/publication/tests/test_simplecomponenttraverser.pyc
share/zope3/lib/python/zope/app/publication/tests/test_simplecomponenttraverser.pyo
@@ -5124,6 +7556,7 @@ share/zope3/lib/python/zope/app/publisher/browser/resources.pyo
share/zope3/lib/python/zope/app/publisher/browser/tests/__init__.py
share/zope3/lib/python/zope/app/publisher/browser/tests/__init__.pyc
share/zope3/lib/python/zope/app/publisher/browser/tests/__init__.pyo
+share/zope3/lib/python/zope/app/publisher/browser/tests/addmenuitems.zcml
share/zope3/lib/python/zope/app/publisher/browser/tests/menus.zcml
share/zope3/lib/python/zope/app/publisher/browser/tests/support.py
share/zope3/lib/python/zope/app/publisher/browser/tests/support.pyc
@@ -5137,6 +7570,9 @@ share/zope3/lib/python/zope/app/publisher/browser/tests/test_addMenuItem.pyo
share/zope3/lib/python/zope/app/publisher/browser/tests/test_api.py
share/zope3/lib/python/zope/app/publisher/browser/tests/test_api.pyc
share/zope3/lib/python/zope/app/publisher/browser/tests/test_api.pyo
+share/zope3/lib/python/zope/app/publisher/browser/tests/test_browserlanguages.py
+share/zope3/lib/python/zope/app/publisher/browser/tests/test_browserlanguages.pyc
+share/zope3/lib/python/zope/app/publisher/browser/tests/test_browserlanguages.pyo
share/zope3/lib/python/zope/app/publisher/browser/tests/test_directives.py
share/zope3/lib/python/zope/app/publisher/browser/tests/test_directives.pyc
share/zope3/lib/python/zope/app/publisher/browser/tests/test_directives.pyo
@@ -5238,6 +7674,7 @@ share/zope3/lib/python/zope/app/publisher/xmlrpc/tests/test_directives.pyc
share/zope3/lib/python/zope/app/publisher/xmlrpc/tests/test_directives.pyo
share/zope3/lib/python/zope/app/publisher/xmlrpc/tests/xmlrpc.zcml
share/zope3/lib/python/zope/app/publisher/xmlrpc/tests/xmlrpc_error.zcml
+share/zope3/lib/python/zope/app/publisher/xmlrpc/tests/xmlrpc_noperm.zcml
share/zope3/lib/python/zope/app/rdb/SETUP.cfg
share/zope3/lib/python/zope/app/rdb/__init__.py
share/zope3/lib/python/zope/app/rdb/__init__.pyc
@@ -5511,6 +7948,7 @@ share/zope3/lib/python/zope/app/rotterdam/zope3.css
share/zope3/lib/python/zope/app/rotterdam/zope3.js
share/zope3/lib/python/zope/app/rotterdam/zope3_tablelayout.css
share/zope3/lib/python/zope/app/rotterdam/zope3logo.gif
+share/zope3/lib/python/zope/app/schema/SETUP.cfg
share/zope3/lib/python/zope/app/schema/__init__.py
share/zope3/lib/python/zope/app/schema/__init__.pyc
share/zope3/lib/python/zope/app/schema/__init__.pyo
@@ -5573,7 +8011,6 @@ share/zope3/lib/python/zope/app/schema/vocabulary.pyo
share/zope3/lib/python/zope/app/schema/wrapper.py
share/zope3/lib/python/zope/app/schema/wrapper.pyc
share/zope3/lib/python/zope/app/schema/wrapper.pyo
-share/zope3/lib/python/zope/app/schema/zope.app.schema-configure.zcml
share/zope3/lib/python/zope/app/security/__init__.py
share/zope3/lib/python/zope/app/security/__init__.pyc
share/zope3/lib/python/zope/app/security/__init__.pyo
@@ -5840,9 +8277,6 @@ share/zope3/lib/python/zope/app/server/controller.pyo
share/zope3/lib/python/zope/app/server/ftp.py
share/zope3/lib/python/zope/app/server/ftp.pyc
share/zope3/lib/python/zope/app/server/ftp.pyo
-share/zope3/lib/python/zope/app/server/http.py
-share/zope3/lib/python/zope/app/server/http.pyc
-share/zope3/lib/python/zope/app/server/http.pyo
share/zope3/lib/python/zope/app/server/main.py
share/zope3/lib/python/zope/app/server/main.pyc
share/zope3/lib/python/zope/app/server/main.pyo
@@ -5862,6 +8296,7 @@ share/zope3/lib/python/zope/app/server/servertype.pyo
share/zope3/lib/python/zope/app/server/tests/__init__.py
share/zope3/lib/python/zope/app/server/tests/__init__.pyc
share/zope3/lib/python/zope/app/server/tests/__init__.pyo
+share/zope3/lib/python/zope/app/server/tests/site.zcml
share/zope3/lib/python/zope/app/server/tests/test_accesslog.py
share/zope3/lib/python/zope/app/server/tests/test_accesslog.pyc
share/zope3/lib/python/zope/app/server/tests/test_accesslog.pyo
@@ -5880,9 +8315,19 @@ share/zope3/lib/python/zope/app/server/tests/test_server.pyo
share/zope3/lib/python/zope/app/server/tests/test_servertype.py
share/zope3/lib/python/zope/app/server/tests/test_servertype.pyc
share/zope3/lib/python/zope/app/server/tests/test_servertype.pyo
+share/zope3/lib/python/zope/app/server/tests/test_zpasswd.py
+share/zope3/lib/python/zope/app/server/tests/test_zpasswd.pyc
+share/zope3/lib/python/zope/app/server/tests/test_zpasswd.pyo
share/zope3/lib/python/zope/app/server/wsgi.py
share/zope3/lib/python/zope/app/server/wsgi.pyc
share/zope3/lib/python/zope/app/server/wsgi.pyo
+share/zope3/lib/python/zope/app/server/zopeskel/bin/debugzope.in
+share/zope3/lib/python/zope/app/server/zopeskel/bin/runzope.in
+share/zope3/lib/python/zope/app/server/zopeskel/bin/zopectl.in
+share/zope3/lib/python/zope/app/server/zopeskel/etc/zope.conf.in
+share/zope3/lib/python/zope/app/server/zpasswd.py
+share/zope3/lib/python/zope/app/server/zpasswd.pyc
+share/zope3/lib/python/zope/app/server/zpasswd.pyo
share/zope3/lib/python/zope/app/servicenames.py
share/zope3/lib/python/zope/app/servicenames.pyc
share/zope3/lib/python/zope/app/servicenames.pyo
@@ -6000,6 +8445,7 @@ share/zope3/lib/python/zope/app/sqlscript/tests/testdt_sqltest.pyo
share/zope3/lib/python/zope/app/sqlscript/tests/testdt_sqlvar.py
share/zope3/lib/python/zope/app/sqlscript/tests/testdt_sqlvar.pyc
share/zope3/lib/python/zope/app/sqlscript/tests/testdt_sqlvar.pyo
+share/zope3/lib/python/zope/app/testing/DEPENDENCIES.cfg
share/zope3/lib/python/zope/app/testing/__init__.py
share/zope3/lib/python/zope/app/testing/__init__.pyc
share/zope3/lib/python/zope/app/testing/__init__.pyo
@@ -6020,9 +8466,6 @@ share/zope3/lib/python/zope/app/testing/recorded/test0002.response
share/zope3/lib/python/zope/app/testing/setup.py
share/zope3/lib/python/zope/app/testing/setup.pyc
share/zope3/lib/python/zope/app/testing/setup.pyo
-share/zope3/lib/python/zope/app/testing/test.py
-share/zope3/lib/python/zope/app/testing/test.pyc
-share/zope3/lib/python/zope/app/testing/test.pyo
share/zope3/lib/python/zope/app/testing/tests.py
share/zope3/lib/python/zope/app/testing/tests.pyc
share/zope3/lib/python/zope/app/testing/tests.pyo
@@ -6091,6 +8534,9 @@ share/zope3/lib/python/zope/app/traversing/tests/test_conveniencefunctions.pyo
share/zope3/lib/python/zope/app/traversing/tests/test_etc.py
share/zope3/lib/python/zope/app/traversing/tests/test_etc.pyc
share/zope3/lib/python/zope/app/traversing/tests/test_etc.pyo
+share/zope3/lib/python/zope/app/traversing/tests/test_lang.py
+share/zope3/lib/python/zope/app/traversing/tests/test_lang.pyc
+share/zope3/lib/python/zope/app/traversing/tests/test_lang.pyo
share/zope3/lib/python/zope/app/traversing/tests/test_namespacetrversal.py
share/zope3/lib/python/zope/app/traversing/tests/test_namespacetrversal.pyc
share/zope3/lib/python/zope/app/traversing/tests/test_namespacetrversal.pyo
@@ -6173,6 +8619,110 @@ share/zope3/lib/python/zope/app/tree/utils.py
share/zope3/lib/python/zope/app/tree/utils.pyc
share/zope3/lib/python/zope/app/tree/utils.pyo
share/zope3/lib/python/zope/app/tree/version.txt
+share/zope3/lib/python/zope/app/twisted/DEPENDENCIES.cfg
+share/zope3/lib/python/zope/app/twisted/README.txt
+share/zope3/lib/python/zope/app/twisted/SETUP.cfg
+share/zope3/lib/python/zope/app/twisted/__init__.py
+share/zope3/lib/python/zope/app/twisted/__init__.pyc
+share/zope3/lib/python/zope/app/twisted/__init__.pyo
+share/zope3/lib/python/zope/app/twisted/accesslog.py
+share/zope3/lib/python/zope/app/twisted/accesslog.pyc
+share/zope3/lib/python/zope/app/twisted/accesslog.pyo
+share/zope3/lib/python/zope/app/twisted/accesslog.xml
+share/zope3/lib/python/zope/app/twisted/asyncore_main_loop.py
+share/zope3/lib/python/zope/app/twisted/asyncore_main_loop.pyc
+share/zope3/lib/python/zope/app/twisted/asyncore_main_loop.pyo
+share/zope3/lib/python/zope/app/twisted/configure.zcml
+share/zope3/lib/python/zope/app/twisted/controller.py
+share/zope3/lib/python/zope/app/twisted/controller.pyc
+share/zope3/lib/python/zope/app/twisted/controller.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/__init__.py
+share/zope3/lib/python/zope/app/twisted/ftp/__init__.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/__init__.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/buffers.py
+share/zope3/lib/python/zope/app/twisted/ftp/buffers.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/buffers.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/configure.zcml
+share/zope3/lib/python/zope/app/twisted/ftp/ftp.py
+share/zope3/lib/python/zope/app/twisted/ftp/ftp.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/ftp.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/server.py
+share/zope3/lib/python/zope/app/twisted/ftp/server.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/server.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/sftp.py
+share/zope3/lib/python/zope/app/twisted/ftp/sftp.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/sftp.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/sftpserver.py
+share/zope3/lib/python/zope/app/twisted/ftp/sftpserver.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/sftpserver.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/test/__init__.py
+share/zope3/lib/python/zope/app/twisted/ftp/test/__init__.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/test/__init__.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/test/test_zope_ftp.py
+share/zope3/lib/python/zope/app/twisted/ftp/test/test_zope_ftp.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/test/test_zope_ftp.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/tests/__init__.py
+share/zope3/lib/python/zope/app/twisted/ftp/tests/__init__.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/tests/__init__.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/tests/demofs.py
+share/zope3/lib/python/zope/app/twisted/ftp/tests/demofs.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/tests/demofs.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/tests/fstests.py
+share/zope3/lib/python/zope/app/twisted/ftp/tests/fstests.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/tests/fstests.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/tests/test_demofs.py
+share/zope3/lib/python/zope/app/twisted/ftp/tests/test_demofs.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/tests/test_demofs.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/tests/test_ftpserver.py
+share/zope3/lib/python/zope/app/twisted/ftp/tests/test_ftpserver.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/tests/test_ftpserver.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/tests/test_publisher.py
+share/zope3/lib/python/zope/app/twisted/ftp/tests/test_publisher.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/tests/test_publisher.pyo
+share/zope3/lib/python/zope/app/twisted/ftp/utils.py
+share/zope3/lib/python/zope/app/twisted/ftp/utils.pyc
+share/zope3/lib/python/zope/app/twisted/ftp/utils.pyo
+share/zope3/lib/python/zope/app/twisted/http.py
+share/zope3/lib/python/zope/app/twisted/http.pyc
+share/zope3/lib/python/zope/app/twisted/http.pyo
+share/zope3/lib/python/zope/app/twisted/interfaces.py
+share/zope3/lib/python/zope/app/twisted/interfaces.pyc
+share/zope3/lib/python/zope/app/twisted/interfaces.pyo
+share/zope3/lib/python/zope/app/twisted/log.py
+share/zope3/lib/python/zope/app/twisted/log.pyc
+share/zope3/lib/python/zope/app/twisted/log.pyo
+share/zope3/lib/python/zope/app/twisted/log.txt
+share/zope3/lib/python/zope/app/twisted/main.py
+share/zope3/lib/python/zope/app/twisted/main.pyc
+share/zope3/lib/python/zope/app/twisted/main.pyo
+share/zope3/lib/python/zope/app/twisted/schema.xml
+share/zope3/lib/python/zope/app/twisted/server.py
+share/zope3/lib/python/zope/app/twisted/server.pyc
+share/zope3/lib/python/zope/app/twisted/server.pyo
+share/zope3/lib/python/zope/app/twisted/servercontrol.py
+share/zope3/lib/python/zope/app/twisted/servercontrol.pyc
+share/zope3/lib/python/zope/app/twisted/servercontrol.pyo
+share/zope3/lib/python/zope/app/twisted/tests/__init__.py
+share/zope3/lib/python/zope/app/twisted/tests/__init__.pyc
+share/zope3/lib/python/zope/app/twisted/tests/__init__.pyo
+share/zope3/lib/python/zope/app/twisted/tests/test_accesslog.py
+share/zope3/lib/python/zope/app/twisted/tests/test_accesslog.pyc
+share/zope3/lib/python/zope/app/twisted/tests/test_accesslog.pyo
+share/zope3/lib/python/zope/app/twisted/tests/test_asyncore_main_loop.py
+share/zope3/lib/python/zope/app/twisted/tests/test_asyncore_main_loop.pyc
+share/zope3/lib/python/zope/app/twisted/tests/test_asyncore_main_loop.pyo
+share/zope3/lib/python/zope/app/twisted/tests/test_docs.py
+share/zope3/lib/python/zope/app/twisted/tests/test_docs.pyc
+share/zope3/lib/python/zope/app/twisted/tests/test_docs.pyo
+share/zope3/lib/python/zope/app/twisted/tests/test_inputbuffering.py
+share/zope3/lib/python/zope/app/twisted/tests/test_inputbuffering.pyc
+share/zope3/lib/python/zope/app/twisted/tests/test_inputbuffering.pyo
+share/zope3/lib/python/zope/app/twisted/tests/test_schema.py
+share/zope3/lib/python/zope/app/twisted/tests/test_schema.pyc
+share/zope3/lib/python/zope/app/twisted/tests/test_schema.pyo
+share/zope3/lib/python/zope/app/twisted/tests/test_zeo.py
+share/zope3/lib/python/zope/app/twisted/tests/test_zeo.pyc
+share/zope3/lib/python/zope/app/twisted/tests/test_zeo.pyo
share/zope3/lib/python/zope/app/undo/SETUP.cfg
share/zope3/lib/python/zope/app/undo/__init__.py
share/zope3/lib/python/zope/app/undo/__init__.pyc
@@ -6216,6 +8766,11 @@ share/zope3/lib/python/zope/app/wsgi/README.txt
share/zope3/lib/python/zope/app/wsgi/__init__.py
share/zope3/lib/python/zope/app/wsgi/__init__.pyc
share/zope3/lib/python/zope/app/wsgi/__init__.pyo
+share/zope3/lib/python/zope/app/wsgi/configure.zcml
+share/zope3/lib/python/zope/app/wsgi/fileresult.py
+share/zope3/lib/python/zope/app/wsgi/fileresult.pyc
+share/zope3/lib/python/zope/app/wsgi/fileresult.pyo
+share/zope3/lib/python/zope/app/wsgi/fileresult.txt
share/zope3/lib/python/zope/app/wsgi/interfaces.py
share/zope3/lib/python/zope/app/wsgi/interfaces.pyc
share/zope3/lib/python/zope/app/wsgi/interfaces.pyo
@@ -6240,6 +8795,9 @@ share/zope3/lib/python/zope/app/zopeappgenerations/configure.zcml
share/zope3/lib/python/zope/app/zopeappgenerations/evolve1.py
share/zope3/lib/python/zope/app/zopeappgenerations/evolve1.pyc
share/zope3/lib/python/zope/app/zopeappgenerations/evolve1.pyo
+share/zope3/lib/python/zope/app/zopeappgenerations/evolve2.py
+share/zope3/lib/python/zope/app/zopeappgenerations/evolve2.pyc
+share/zope3/lib/python/zope/app/zopeappgenerations/evolve2.pyo
share/zope3/lib/python/zope/app/zptpage/DEPENDENCIES.cfg
share/zope3/lib/python/zope/app/zptpage/SETUP.cfg
share/zope3/lib/python/zope/app/zptpage/__init__.py
@@ -6454,6 +9012,23 @@ share/zope3/lib/python/zope/configuration/xmlconfig.pyo
share/zope3/lib/python/zope/configuration/zopeconfigure.py
share/zope3/lib/python/zope/configuration/zopeconfigure.pyc
share/zope3/lib/python/zope/configuration/zopeconfigure.pyo
+share/zope3/lib/python/zope/contentprovider/DEPENDENCIES.cfg
+share/zope3/lib/python/zope/contentprovider/README.txt
+share/zope3/lib/python/zope/contentprovider/SETUP.cfg
+share/zope3/lib/python/zope/contentprovider/__init__.py
+share/zope3/lib/python/zope/contentprovider/__init__.pyc
+share/zope3/lib/python/zope/contentprovider/__init__.pyo
+share/zope3/lib/python/zope/contentprovider/configure.zcml
+share/zope3/lib/python/zope/contentprovider/interfaces.py
+share/zope3/lib/python/zope/contentprovider/interfaces.pyc
+share/zope3/lib/python/zope/contentprovider/interfaces.pyo
+share/zope3/lib/python/zope/contentprovider/tales.py
+share/zope3/lib/python/zope/contentprovider/tales.pyc
+share/zope3/lib/python/zope/contentprovider/tales.pyo
+share/zope3/lib/python/zope/contentprovider/tests.py
+share/zope3/lib/python/zope/contentprovider/tests.pyc
+share/zope3/lib/python/zope/contentprovider/tests.pyo
+share/zope3/lib/python/zope/deprecation/DEPENDENCIES.cfg
share/zope3/lib/python/zope/deprecation/README.txt
share/zope3/lib/python/zope/deprecation/__init__.py
share/zope3/lib/python/zope/deprecation/__init__.pyc
@@ -6540,6 +9115,16 @@ share/zope3/lib/python/zope/documenttemplate/untrusted/tests.pyo
share/zope3/lib/python/zope/documenttemplate/untrusted/untrusted.py
share/zope3/lib/python/zope/documenttemplate/untrusted/untrusted.pyc
share/zope3/lib/python/zope/documenttemplate/untrusted/untrusted.pyo
+share/zope3/lib/python/zope/dottedname/__init__.py
+share/zope3/lib/python/zope/dottedname/__init__.pyc
+share/zope3/lib/python/zope/dottedname/__init__.pyo
+share/zope3/lib/python/zope/dottedname/resolve.py
+share/zope3/lib/python/zope/dottedname/resolve.pyc
+share/zope3/lib/python/zope/dottedname/resolve.pyo
+share/zope3/lib/python/zope/dottedname/resolve.txt
+share/zope3/lib/python/zope/dottedname/tests.py
+share/zope3/lib/python/zope/dottedname/tests.pyc
+share/zope3/lib/python/zope/dottedname/tests.pyo
share/zope3/lib/python/zope/event/README.txt
share/zope3/lib/python/zope/event/__init__.py
share/zope3/lib/python/zope/event/__init__.pyc
@@ -6569,6 +9154,38 @@ share/zope3/lib/python/zope/exceptions/tests/__init__.pyo
share/zope3/lib/python/zope/exceptions/tests/test_exceptionformatter.py
share/zope3/lib/python/zope/exceptions/tests/test_exceptionformatter.pyc
share/zope3/lib/python/zope/exceptions/tests/test_exceptionformatter.pyo
+share/zope3/lib/python/zope/formlib/COPYRIGHT.txt
+share/zope3/lib/python/zope/formlib/LICENSE.txt
+share/zope3/lib/python/zope/formlib/SETUP.cfg
+share/zope3/lib/python/zope/formlib/TODO.txt
+share/zope3/lib/python/zope/formlib/__init__.py
+share/zope3/lib/python/zope/formlib/__init__.pyc
+share/zope3/lib/python/zope/formlib/__init__.pyo
+share/zope3/lib/python/zope/formlib/configure.zcml
+share/zope3/lib/python/zope/formlib/form.py
+share/zope3/lib/python/zope/formlib/form.pyc
+share/zope3/lib/python/zope/formlib/form.pyo
+share/zope3/lib/python/zope/formlib/form.txt
+share/zope3/lib/python/zope/formlib/i18n.py
+share/zope3/lib/python/zope/formlib/i18n.pyc
+share/zope3/lib/python/zope/formlib/i18n.pyo
+share/zope3/lib/python/zope/formlib/interfaces.py
+share/zope3/lib/python/zope/formlib/interfaces.pyc
+share/zope3/lib/python/zope/formlib/interfaces.pyo
+share/zope3/lib/python/zope/formlib/namedtemplate.py
+share/zope3/lib/python/zope/formlib/namedtemplate.pyc
+share/zope3/lib/python/zope/formlib/namedtemplate.pyo
+share/zope3/lib/python/zope/formlib/namedtemplate.txt
+share/zope3/lib/python/zope/formlib/page.py
+share/zope3/lib/python/zope/formlib/page.pyc
+share/zope3/lib/python/zope/formlib/page.pyo
+share/zope3/lib/python/zope/formlib/page.txt
+share/zope3/lib/python/zope/formlib/pageform.pt
+share/zope3/lib/python/zope/formlib/sample.pt
+share/zope3/lib/python/zope/formlib/subpageform.pt
+share/zope3/lib/python/zope/formlib/tests.py
+share/zope3/lib/python/zope/formlib/tests.pyc
+share/zope3/lib/python/zope/formlib/tests.pyo
share/zope3/lib/python/zope/hookable/DEPENDENCIES.cfg
share/zope3/lib/python/zope/hookable/SETUP.cfg
share/zope3/lib/python/zope/hookable/__init__.py
@@ -6856,6 +9473,10 @@ share/zope3/lib/python/zope/i18n/negotiator.pyo
share/zope3/lib/python/zope/i18n/simpletranslationdomain.py
share/zope3/lib/python/zope/i18n/simpletranslationdomain.pyc
share/zope3/lib/python/zope/i18n/simpletranslationdomain.pyo
+share/zope3/lib/python/zope/i18n/testmessagecatalog.py
+share/zope3/lib/python/zope/i18n/testmessagecatalog.pyc
+share/zope3/lib/python/zope/i18n/testmessagecatalog.pyo
+share/zope3/lib/python/zope/i18n/testmessagecatalog.txt
share/zope3/lib/python/zope/i18n/tests/__init__.py
share/zope3/lib/python/zope/i18n/tests/__init__.pyc
share/zope3/lib/python/zope/i18n/tests/__init__.pyo
@@ -6876,6 +9497,9 @@ share/zope3/lib/python/zope/i18n/tests/locale/en/LC_MESSAGES/zope-i18n.po
share/zope3/lib/python/zope/i18n/tests/locale/en/__init__.py
share/zope3/lib/python/zope/i18n/tests/locale/en/__init__.pyc
share/zope3/lib/python/zope/i18n/tests/locale/en/__init__.pyo
+share/zope3/lib/python/zope/i18n/tests/test.py
+share/zope3/lib/python/zope/i18n/tests/test.pyc
+share/zope3/lib/python/zope/i18n/tests/test.pyo
share/zope3/lib/python/zope/i18n/tests/test_formats.py
share/zope3/lib/python/zope/i18n/tests/test_formats.pyc
share/zope3/lib/python/zope/i18n/tests/test_formats.pyo
@@ -6897,6 +9521,9 @@ share/zope3/lib/python/zope/i18n/tests/test_negotiator.pyo
share/zope3/lib/python/zope/i18n/tests/test_simpletranslationdomain.py
share/zope3/lib/python/zope/i18n/tests/test_simpletranslationdomain.pyc
share/zope3/lib/python/zope/i18n/tests/test_simpletranslationdomain.pyo
+share/zope3/lib/python/zope/i18n/tests/test_testmessagecatalog.py
+share/zope3/lib/python/zope/i18n/tests/test_testmessagecatalog.pyc
+share/zope3/lib/python/zope/i18n/tests/test_testmessagecatalog.pyo
share/zope3/lib/python/zope/i18n/tests/test_translationdomain.py
share/zope3/lib/python/zope/i18n/tests/test_translationdomain.pyc
share/zope3/lib/python/zope/i18n/tests/test_translationdomain.pyo
@@ -7303,6 +9930,7 @@ share/zope3/lib/python/zope/publisher/ftp.pyo
share/zope3/lib/python/zope/publisher/http.py
share/zope3/lib/python/zope/publisher/http.pyc
share/zope3/lib/python/zope/publisher/http.pyo
+share/zope3/lib/python/zope/publisher/httpresults.txt
share/zope3/lib/python/zope/publisher/interfaces/__init__.py
share/zope3/lib/python/zope/publisher/interfaces/__init__.pyc
share/zope3/lib/python/zope/publisher/interfaces/__init__.pyo
@@ -7424,6 +10052,7 @@ share/zope3/lib/python/zope/schema/fields.txt
share/zope3/lib/python/zope/schema/interfaces.py
share/zope3/lib/python/zope/schema/interfaces.pyc
share/zope3/lib/python/zope/schema/interfaces.pyo
+share/zope3/lib/python/zope/schema/sources.txt
share/zope3/lib/python/zope/schema/tests/__init__.py
share/zope3/lib/python/zope/schema/tests/__init__.pyc
share/zope3/lib/python/zope/schema/tests/__init__.pyo
@@ -7666,9 +10295,9 @@ share/zope3/lib/python/zope/server/http/tests/test_httprequestparser.pyo
share/zope3/lib/python/zope/server/http/tests/test_httpserver.py
share/zope3/lib/python/zope/server/http/tests/test_httpserver.pyc
share/zope3/lib/python/zope/server/http/tests/test_httpserver.pyo
-share/zope3/lib/python/zope/server/http/tests/test_publisherserver.py
-share/zope3/lib/python/zope/server/http/tests/test_publisherserver.pyc
-share/zope3/lib/python/zope/server/http/tests/test_publisherserver.pyo
+share/zope3/lib/python/zope/server/http/tests/test_wsgiserver.py
+share/zope3/lib/python/zope/server/http/tests/test_wsgiserver.pyc
+share/zope3/lib/python/zope/server/http/tests/test_wsgiserver.pyo
share/zope3/lib/python/zope/server/http/wsgihttpserver.py
share/zope3/lib/python/zope/server/http/wsgihttpserver.pyc
share/zope3/lib/python/zope/server/http/wsgihttpserver.pyo
@@ -8100,6 +10729,47 @@ share/zope3/lib/python/zope/tales/tests/test_expressions.pyo
share/zope3/lib/python/zope/tales/tests/test_tales.py
share/zope3/lib/python/zope/tales/tests/test_tales.pyc
share/zope3/lib/python/zope/tales/tests/test_tales.pyo
+share/zope3/lib/python/zope/tales/tests/test_traverser.py
+share/zope3/lib/python/zope/tales/tests/test_traverser.pyc
+share/zope3/lib/python/zope/tales/tests/test_traverser.pyo
+share/zope3/lib/python/zope/testbrowser/ClientForm.py
+share/zope3/lib/python/zope/testbrowser/ClientForm.pyc
+share/zope3/lib/python/zope/testbrowser/ClientForm.pyo
+share/zope3/lib/python/zope/testbrowser/DEPENDENCIES.cfg
+share/zope3/lib/python/zope/testbrowser/README.txt
+share/zope3/lib/python/zope/testbrowser/SETUP.cfg
+share/zope3/lib/python/zope/testbrowser/__init__.py
+share/zope3/lib/python/zope/testbrowser/__init__.pyc
+share/zope3/lib/python/zope/testbrowser/__init__.pyo
+share/zope3/lib/python/zope/testbrowser/browser.py
+share/zope3/lib/python/zope/testbrowser/browser.pyc
+share/zope3/lib/python/zope/testbrowser/browser.pyo
+share/zope3/lib/python/zope/testbrowser/dummymodules.py
+share/zope3/lib/python/zope/testbrowser/dummymodules.pyc
+share/zope3/lib/python/zope/testbrowser/dummymodules.pyo
+share/zope3/lib/python/zope/testbrowser/ftests/__init__.py
+share/zope3/lib/python/zope/testbrowser/ftests/__init__.pyc
+share/zope3/lib/python/zope/testbrowser/ftests/__init__.pyo
+share/zope3/lib/python/zope/testbrowser/ftests/controls.html
+share/zope3/lib/python/zope/testbrowser/ftests/forms.html
+share/zope3/lib/python/zope/testbrowser/ftests/ftesting.zcml
+share/zope3/lib/python/zope/testbrowser/ftests/navigate.html
+share/zope3/lib/python/zope/testbrowser/ftests/notitle.html
+share/zope3/lib/python/zope/testbrowser/ftests/simple.html
+share/zope3/lib/python/zope/testbrowser/ftests/testdoc.py
+share/zope3/lib/python/zope/testbrowser/ftests/testdoc.pyc
+share/zope3/lib/python/zope/testbrowser/ftests/testdoc.pyo
+share/zope3/lib/python/zope/testbrowser/ftests/zope3logo.gif
+share/zope3/lib/python/zope/testbrowser/interfaces.py
+share/zope3/lib/python/zope/testbrowser/interfaces.pyc
+share/zope3/lib/python/zope/testbrowser/interfaces.pyo
+share/zope3/lib/python/zope/testbrowser/over_the_wire.txt
+share/zope3/lib/python/zope/testbrowser/pullparser.py
+share/zope3/lib/python/zope/testbrowser/pullparser.pyc
+share/zope3/lib/python/zope/testbrowser/pullparser.pyo
+share/zope3/lib/python/zope/testbrowser/testing.py
+share/zope3/lib/python/zope/testbrowser/testing.pyc
+share/zope3/lib/python/zope/testbrowser/testing.pyo
share/zope3/lib/python/zope/testing/DEPENDENCIES.cfg
share/zope3/lib/python/zope/testing/__init__.py
share/zope3/lib/python/zope/testing/__init__.pyc
@@ -8126,6 +10796,257 @@ share/zope3/lib/python/zope/testing/loghandler.pyo
share/zope3/lib/python/zope/testing/module.py
share/zope3/lib/python/zope/testing/module.pyc
share/zope3/lib/python/zope/testing/module.pyo
+share/zope3/lib/python/zope/testing/renormalizing.py
+share/zope3/lib/python/zope/testing/renormalizing.pyc
+share/zope3/lib/python/zope/testing/renormalizing.pyo
+share/zope3/lib/python/zope/testing/testrunner-arguments.txt
+share/zope3/lib/python/zope/testing/testrunner-coverage.txt
+share/zope3/lib/python/zope/testing/testrunner-debugging.txt
+share/zope3/lib/python/zope/testing/testrunner-edge-cases.txt
+share/zope3/lib/python/zope/testing/testrunner-errors.txt
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/products/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/products/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/products/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/more/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/more/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/more/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/more/sampletests.py
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/more/sampletests.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/more/sampletests.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/sampletests.py
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/sampletests.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/sampletests.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/README.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/gc0.py
+share/zope3/lib/python/zope/testing/testrunner-ex/gc0.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/gc0.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/gc1.py
+share/zope3/lib/python/zope/testing/testrunner-ex/gc1.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/gc1.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/gcset.py
+share/zope3/lib/python/zope/testing/testrunner-ex/gcset.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/gcset.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/gcstats.py
+share/zope3/lib/python/zope/testing/testrunner-ex/gcstats.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/gcstats.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/leak.py
+share/zope3/lib/python/zope/testing/testrunner-ex/leak.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/leak.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/pledge.py
+share/zope3/lib/python/zope/testing/testrunner-ex/pledge.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/pledge.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample11/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample11/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample11/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample11/sampletests.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample11/sampletests.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample11/sampletests.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample12/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample12/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample12/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample13/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample13/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample13/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample13/sampletests.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample13/sampletests.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample13/sampletests.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test1.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test1.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test1.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test11.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test11.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test11.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test111.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test111.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test111.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test112.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test112.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test112.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test12.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test12.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test12.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test121.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test121.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test121.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test122.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test122.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test122.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test_one.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test_one.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests/test_one.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_suite.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_suite.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_suite.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_test.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_test.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_none_test.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntd.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntd.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntd.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntds.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntds.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests_ntds.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletestsf.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletestsf.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletestsf.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/do-not-enter/sampletests.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/do-not-enter/sampletests.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/do-not-enter/sampletests.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/donotenter/sampletests.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/donotenter/sampletests.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/donotenter/sampletests.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/e.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample22/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample22/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample22/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample23/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample23/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample23/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests/test_1.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests/test_1.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests/test_1.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests/testone.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests/testone.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests/testone.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_1.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_1.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_1.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_e.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_e.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_e.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_f.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_f.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_f.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntd.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntd.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntd.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntds.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntds.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests_ntds.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/post_mortem5.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/post_mortem6.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/post_mortem_failure.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample31/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample31/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample31/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample32/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample32/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample32/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample33/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample33/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample33/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sampletests.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sampletests.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sampletests.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sampletests_d.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sampletests_d.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sampletests_d.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sampletests_ntd.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sampletests_ntd.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sampletests_ntd.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/set_trace5.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/sample3/set_trace6.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/samplelayers.py
+share/zope3/lib/python/zope/testing/testrunner-ex/samplelayers.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/samplelayers.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test1.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test1.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test1.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test11.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test11.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test11.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test111.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test111.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test111.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test112.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test112.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test112.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test12.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test12.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test12.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test121.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test121.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test121.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test122.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test122.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test122.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test_one.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test_one.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletests/test_one.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletestsf.py
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletestsf.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletestsf.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/sampletestsl.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/README.txt
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/compiletest.py
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/compiletest.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/compiletest.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/package/__init__.py
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/package/__init__.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/package/__init__.pyo
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/package/compiletest.py
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/package/compiletest.pyc
+share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/package/compiletest.pyo
+share/zope3/lib/python/zope/testing/testrunner-gc.txt
+share/zope3/lib/python/zope/testing/testrunner-knit.txt
+share/zope3/lib/python/zope/testing/testrunner-layers-ntd.txt
+share/zope3/lib/python/zope/testing/testrunner-layers.txt
+share/zope3/lib/python/zope/testing/testrunner-leaks-err.txt
+share/zope3/lib/python/zope/testing/testrunner-leaks.txt
+share/zope3/lib/python/zope/testing/testrunner-profiling.txt
+share/zope3/lib/python/zope/testing/testrunner-progress.txt
+share/zope3/lib/python/zope/testing/testrunner-repeat.txt
+share/zope3/lib/python/zope/testing/testrunner-simple.txt
+share/zope3/lib/python/zope/testing/testrunner-test-selection.txt
+share/zope3/lib/python/zope/testing/testrunner-verbose.txt
+share/zope3/lib/python/zope/testing/testrunner-wo-source.txt
+share/zope3/lib/python/zope/testing/testrunner.py
+share/zope3/lib/python/zope/testing/testrunner.pyc
+share/zope3/lib/python/zope/testing/testrunner.pyo
+share/zope3/lib/python/zope/testing/testrunner.txt
share/zope3/lib/python/zope/testing/tests.py
share/zope3/lib/python/zope/testing/tests.pyc
share/zope3/lib/python/zope/testing/tests.pyo
@@ -8137,6 +11058,35 @@ share/zope3/lib/python/zope/thread/_zope_thread.so
share/zope3/lib/python/zope/thread/tests.py
share/zope3/lib/python/zope/thread/tests.pyc
share/zope3/lib/python/zope/thread/tests.pyo
+share/zope3/lib/python/zope/viewlet/DEPENDENCIES.cfg
+share/zope3/lib/python/zope/viewlet/README.txt
+share/zope3/lib/python/zope/viewlet/SETUP.cfg
+share/zope3/lib/python/zope/viewlet/__init__.py
+share/zope3/lib/python/zope/viewlet/__init__.pyc
+share/zope3/lib/python/zope/viewlet/__init__.pyo
+share/zope3/lib/python/zope/viewlet/configure.zcml
+share/zope3/lib/python/zope/viewlet/css_viewlet.pt
+share/zope3/lib/python/zope/viewlet/directives.txt
+share/zope3/lib/python/zope/viewlet/interfaces.py
+share/zope3/lib/python/zope/viewlet/interfaces.pyc
+share/zope3/lib/python/zope/viewlet/interfaces.pyo
+share/zope3/lib/python/zope/viewlet/javascript_viewlet.pt
+share/zope3/lib/python/zope/viewlet/manager.py
+share/zope3/lib/python/zope/viewlet/manager.pyc
+share/zope3/lib/python/zope/viewlet/manager.pyo
+share/zope3/lib/python/zope/viewlet/meta.zcml
+share/zope3/lib/python/zope/viewlet/metaconfigure.py
+share/zope3/lib/python/zope/viewlet/metaconfigure.pyc
+share/zope3/lib/python/zope/viewlet/metaconfigure.pyo
+share/zope3/lib/python/zope/viewlet/metadirectives.py
+share/zope3/lib/python/zope/viewlet/metadirectives.pyc
+share/zope3/lib/python/zope/viewlet/metadirectives.pyo
+share/zope3/lib/python/zope/viewlet/tests.py
+share/zope3/lib/python/zope/viewlet/tests.pyc
+share/zope3/lib/python/zope/viewlet/tests.pyo
+share/zope3/lib/python/zope/viewlet/viewlet.py
+share/zope3/lib/python/zope/viewlet/viewlet.pyc
+share/zope3/lib/python/zope/viewlet/viewlet.pyo
share/zope3/zopeskel/README.txt
share/zope3/zopeskel/bin/debugzope.bat.in
share/zope3/zopeskel/bin/debugzope.in
@@ -8152,21 +11102,26 @@ share/zope3/zopeskel/bin/pyskel.bat.in
share/zope3/zopeskel/bin/pyskel.in
share/zope3/zopeskel/bin/runzope.bat.in
share/zope3/zopeskel/bin/runzope.in
+share/zope3/zopeskel/bin/static-apidoc.in
share/zope3/zopeskel/bin/test.bat.in
share/zope3/zopeskel/bin/test.in
share/zope3/zopeskel/bin/zopectl.in
share/zope3/zopeskel/bin/zopeservice.py.in
+share/zope3/zopeskel/bin/zpasswd.in
share/zope3/zopeskel/etc/ftesting.zcml
share/zope3/zopeskel/etc/overrides.zcml
share/zope3/zopeskel/etc/overrides_ftesting.zcml
share/zope3/zopeskel/etc/package-includes/README.txt
share/zope3/zopeskel/etc/package-includes/apidoc-configure.zcml
+share/zope3/zopeskel/etc/package-includes/apidoc-ftesting.zcml
share/zope3/zopeskel/etc/package-includes/apidoc-meta.zcml
share/zope3/zopeskel/etc/package-includes/cache-configure.zcml
share/zope3/zopeskel/etc/package-includes/dav-configure.zcml
share/zope3/zopeskel/etc/package-includes/dav-meta.zcml
share/zope3/zopeskel/etc/package-includes/debugskin-configure.zcml
+share/zope3/zopeskel/etc/package-includes/exception-ftesting.zcml
share/zope3/zopeskel/etc/package-includes/file-configure.zcml
+share/zope3/zopeskel/etc/package-includes/formlib-configure.zcml
share/zope3/zopeskel/etc/package-includes/ftp-configure.zcml
share/zope3/zopeskel/etc/package-includes/i18nfile-configure.zcml
share/zope3/zopeskel/etc/package-includes/mail-configure.zcml
@@ -8181,6 +11136,7 @@ share/zope3/zopeskel/etc/package-includes/renderer-configure.zcml
share/zope3/zopeskel/etc/package-includes/renderer-meta.zcml
share/zope3/zopeskel/etc/package-includes/securitypolicy-meta.zcml
share/zope3/zopeskel/etc/package-includes/sqlscript-configure.zcml
+share/zope3/zopeskel/etc/package-includes/testbrowser-ftesting.zcml
share/zope3/zopeskel/etc/package-includes/tree-configure.zcml
share/zope3/zopeskel/etc/package-includes/undo-configure.zcml
share/zope3/zopeskel/etc/package-includes/zope.app.authentication-configure.zcml
@@ -8189,14 +11145,21 @@ share/zope3/zopeskel/etc/package-includes/zope.app.dtmlpage-configure.zcml
share/zope3/zopeskel/etc/package-includes/zope.app.intid-configure.zcml
share/zope3/zopeskel/etc/package-includes/zope.app.keyreference-configure.zcml
share/zope3/zopeskel/etc/package-includes/zope.app.pluggableauth-configure.zcml
+share/zope3/zopeskel/etc/package-includes/zope.app.schema-configure.zcml
share/zope3/zopeskel/etc/package-includes/zope.app.server-configure.zcml
share/zope3/zopeskel/etc/package-includes/zope.app.session-configure.zcml
+share/zope3/zopeskel/etc/package-includes/zope.app.twisted-configure.zcml
share/zope3/zopeskel/etc/package-includes/zope.app.zptpage.textindex-configure.zcml
+share/zope3/zopeskel/etc/package-includes/zope.contentprovider-configure.zcml
+share/zope3/zopeskel/etc/package-includes/zope.viewlet-configure.zcml
+share/zope3/zopeskel/etc/package-includes/zope.viewlet-meta.zcml
share/zope3/zopeskel/etc/package-includes/zptpage-configure.zcml
share/zope3/zopeskel/etc/principals.zcml.in
share/zope3/zopeskel/etc/securitypolicy-ftesting.zcml
share/zope3/zopeskel/etc/securitypolicy.zcml
+share/zope3/zopeskel/etc/server.pem
share/zope3/zopeskel/etc/site.zcml
+share/zope3/zopeskel/etc/ssh_host_rsa_key
share/zope3/zopeskel/etc/zdaemon.conf.in
share/zope3/zopeskel/etc/zope.conf.in
share/zope3/zopeskel/lib/python/README.txt.in
@@ -8210,8 +11173,36 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/zopeskel/etc
@dirrm share/zope3/zopeskel/bin
@dirrm share/zope3/zopeskel
+@dirrm share/zope3/lib/python/zope/viewlet
@dirrm share/zope3/lib/python/zope/thread
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled/package
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/usecompiled
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sampletests
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample33
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample32
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample3/sample31
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample3
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sampletests
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample23
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample22
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample2/sample21
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample2/donotenter
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample2/do-not-enter
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample2
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sampletests
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample13
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample12
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample1/sample11
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex/sample1
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex-pp-products/more
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex-pp-products
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/products
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex-pp-lib/sample4
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex-pp-lib
+@dirrm share/zope3/lib/python/zope/testing/testrunner-ex
@dirrm share/zope3/lib/python/zope/testing
+@dirrm share/zope3/lib/python/zope/testbrowser/ftests
+@dirrm share/zope3/lib/python/zope/testbrowser
@dirrm share/zope3/lib/python/zope/tales/tests
@dirrm share/zope3/lib/python/zope/tales
@dirrm share/zope3/lib/python/zope/tal/tests/output
@@ -8272,13 +11263,16 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/zope/i18n
@dirrm share/zope3/lib/python/zope/hookable/tests
@dirrm share/zope3/lib/python/zope/hookable
+@dirrm share/zope3/lib/python/zope/formlib
@dirrm share/zope3/lib/python/zope/exceptions/tests
@dirrm share/zope3/lib/python/zope/exceptions
@dirrm share/zope3/lib/python/zope/event
+@dirrm share/zope3/lib/python/zope/dottedname
@dirrm share/zope3/lib/python/zope/documenttemplate/untrusted
@dirrm share/zope3/lib/python/zope/documenttemplate/tests
@dirrm share/zope3/lib/python/zope/documenttemplate
@dirrm share/zope3/lib/python/zope/deprecation
+@dirrm share/zope3/lib/python/zope/contentprovider
@dirrm share/zope3/lib/python/zope/configuration/tests/samplepackage
@dirrm share/zope3/lib/python/zope/configuration/tests
@dirrm share/zope3/lib/python/zope/configuration
@@ -8296,6 +11290,11 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/zope/app/utility
@dirrm share/zope3/lib/python/zope/app/undo/tests
@dirrm share/zope3/lib/python/zope/app/undo
+@dirrm share/zope3/lib/python/zope/app/twisted/tests
+@dirrm share/zope3/lib/python/zope/app/twisted/ftp/tests
+@dirrm share/zope3/lib/python/zope/app/twisted/ftp/test
+@dirrm share/zope3/lib/python/zope/app/twisted/ftp
+@dirrm share/zope3/lib/python/zope/app/twisted
@dirrm share/zope3/lib/python/zope/app/tree/tests
@dirrm share/zope3/lib/python/zope/app/tree/browser/images
@dirrm share/zope3/lib/python/zope/app/tree/browser
@@ -8314,6 +11313,9 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/zope/app/site/tests
@dirrm share/zope3/lib/python/zope/app/site
@dirrm share/zope3/lib/python/zope/app/session
+@dirrm share/zope3/lib/python/zope/app/server/zopeskel/etc
+@dirrm share/zope3/lib/python/zope/app/server/zopeskel/bin
+@dirrm share/zope3/lib/python/zope/app/server/zopeskel
@dirrm share/zope3/lib/python/zope/app/server/tests
@dirrm share/zope3/lib/python/zope/app/server
@dirrm share/zope3/lib/python/zope/app/securitypolicy/tests
@@ -8365,12 +11367,28 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/zope/app/mail/tests
@dirrm share/zope3/lib/python/zope/app/mail
@dirrm share/zope3/lib/python/zope/app/location
+@dirrm share/zope3/lib/python/zope/app/locales/zh_TW/LC_MESSAGES
+@dirrm share/zope3/lib/python/zope/app/locales/zh_TW
+@dirrm share/zope3/lib/python/zope/app/locales/zh_CN/LC_MESSAGES
+@dirrm share/zope3/lib/python/zope/app/locales/zh_CN
+@dirrm share/zope3/lib/python/zope/app/locales/tr/LC_MESSAGES
+@dirrm share/zope3/lib/python/zope/app/locales/tr
@dirrm share/zope3/lib/python/zope/app/locales/ru/LC_MESSAGES
@dirrm share/zope3/lib/python/zope/app/locales/ru
@dirrm share/zope3/lib/python/zope/app/locales/pt_BR/LC_MESSAGES
@dirrm share/zope3/lib/python/zope/app/locales/pt_BR
+@dirrm share/zope3/lib/python/zope/app/locales/pl/LC_MESSAGES
+@dirrm share/zope3/lib/python/zope/app/locales/pl
+@dirrm share/zope3/lib/python/zope/app/locales/nl/LC_MESSAGES
+@dirrm share/zope3/lib/python/zope/app/locales/nl
+@dirrm share/zope3/lib/python/zope/app/locales/ml/LC_MESSAGES
+@dirrm share/zope3/lib/python/zope/app/locales/ml
+@dirrm share/zope3/lib/python/zope/app/locales/ja/LC_MESSAGES
+@dirrm share/zope3/lib/python/zope/app/locales/ja
@dirrm share/zope3/lib/python/zope/app/locales/it/LC_MESSAGES
@dirrm share/zope3/lib/python/zope/app/locales/it
+@dirrm share/zope3/lib/python/zope/app/locales/hu/LC_MESSAGES
+@dirrm share/zope3/lib/python/zope/app/locales/hu
@dirrm share/zope3/lib/python/zope/app/locales/fr/LC_MESSAGES
@dirrm share/zope3/lib/python/zope/app/locales/fr
@dirrm share/zope3/lib/python/zope/app/locales/es/LC_MESSAGES
@@ -8408,6 +11426,9 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/zope/app/ftests
@dirrm share/zope3/lib/python/zope/app/form/tests
@dirrm share/zope3/lib/python/zope/app/form/browser/tests
+@dirrm share/zope3/lib/python/zope/app/form/browser/ftests/locales/de/LC_MESSAGES
+@dirrm share/zope3/lib/python/zope/app/form/browser/ftests/locales/de
+@dirrm share/zope3/lib/python/zope/app/form/browser/ftests/locales
@dirrm share/zope3/lib/python/zope/app/form/browser/ftests
@dirrm share/zope3/lib/python/zope/app/form/browser
@dirrm share/zope3/lib/python/zope/app/form
@@ -8438,6 +11459,8 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/zope/app/dav
@dirrm share/zope3/lib/python/zope/app/copypastemove/tests
@dirrm share/zope3/lib/python/zope/app/copypastemove
+@dirrm share/zope3/lib/python/zope/app/content_types/tests
+@dirrm share/zope3/lib/python/zope/app/content_types
@dirrm share/zope3/lib/python/zope/app/content
@dirrm share/zope3/lib/python/zope/app/container/tests
@dirrm share/zope3/lib/python/zope/app/container/ftests
@@ -8447,7 +11470,7 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/zope/app/container
@dirrm share/zope3/lib/python/zope/app/component/tests
@dirrm share/zope3/lib/python/zope/app/component/interfaces
-@dirrm share/zope3/lib/python/zope/app/component/browser/xxx_tests
+@dirrm share/zope3/lib/python/zope/app/component/browser/tests
@dirrm share/zope3/lib/python/zope/app/component/browser
@dirrm share/zope3/lib/python/zope/app/component/bbb
@dirrm share/zope3/lib/python/zope/app/component
@@ -8486,6 +11509,95 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/zodbcode
@dirrm share/zope3/lib/python/zdaemon/tests
@dirrm share/zope3/lib/python/zdaemon
+@dirrm share/zope3/lib/python/twisted/xish/topfiles
+@dirrm share/zope3/lib/python/twisted/xish/test
+@dirrm share/zope3/lib/python/twisted/xish
+@dirrm share/zope3/lib/python/twisted/words/topfiles
+@dirrm share/zope3/lib/python/twisted/words/test
+@dirrm share/zope3/lib/python/twisted/words/scripts
+@dirrm share/zope3/lib/python/twisted/words/protocols/jabber
+@dirrm share/zope3/lib/python/twisted/words/protocols
+@dirrm share/zope3/lib/python/twisted/words/im
+@dirrm share/zope3/lib/python/twisted/words
+@dirrm share/zope3/lib/python/twisted/web2/topfiles
+@dirrm share/zope3/lib/python/twisted/web2/test
+@dirrm share/zope3/lib/python/twisted/web2/scripts
+@dirrm share/zope3/lib/python/twisted/web2/filter
+@dirrm share/zope3/lib/python/twisted/web2/channel
+@dirrm share/zope3/lib/python/twisted/web2
+@dirrm share/zope3/lib/python/twisted/web/woven
+@dirrm share/zope3/lib/python/twisted/web/topfiles
+@dirrm share/zope3/lib/python/twisted/web/test
+@dirrm share/zope3/lib/python/twisted/web/scripts
+@dirrm share/zope3/lib/python/twisted/web
+@dirrm share/zope3/lib/python/twisted/vfs/test
+@dirrm share/zope3/lib/python/twisted/vfs/backends
+@dirrm share/zope3/lib/python/twisted/vfs/adapters
+@dirrm share/zope3/lib/python/twisted/vfs
+@dirrm share/zope3/lib/python/twisted/trial/test/foo/package2
+@dirrm share/zope3/lib/python/twisted/trial/test/foo/package
+@dirrm share/zope3/lib/python/twisted/trial/test/foo/goodpackage/sub
+@dirrm share/zope3/lib/python/twisted/trial/test/foo/goodpackage
+@dirrm share/zope3/lib/python/twisted/trial/test/foo/badpackage
+@dirrm share/zope3/lib/python/twisted/trial/test/foo
+@dirrm share/zope3/lib/python/twisted/trial/test
+@dirrm share/zope3/lib/python/twisted/trial
+@dirrm share/zope3/lib/python/twisted/topfiles
+@dirrm share/zope3/lib/python/twisted/test
+@dirrm share/zope3/lib/python/twisted/tap
+@dirrm share/zope3/lib/python/twisted/spread/ui
+@dirrm share/zope3/lib/python/twisted/spread
+@dirrm share/zope3/lib/python/twisted/scripts
+@dirrm share/zope3/lib/python/twisted/runner/topfiles
+@dirrm share/zope3/lib/python/twisted/runner
+@dirrm share/zope3/lib/python/twisted/python/zsh
+@dirrm share/zope3/lib/python/twisted/python/pymodules
+@dirrm share/zope3/lib/python/twisted/python
+@dirrm share/zope3/lib/python/twisted/protocols/mice
+@dirrm share/zope3/lib/python/twisted/protocols/gps
+@dirrm share/zope3/lib/python/twisted/protocols
+@dirrm share/zope3/lib/python/twisted/plugins
+@dirrm share/zope3/lib/python/twisted/persisted/journal
+@dirrm share/zope3/lib/python/twisted/persisted
+@dirrm share/zope3/lib/python/twisted/pair/topfiles
+@dirrm share/zope3/lib/python/twisted/pair/test
+@dirrm share/zope3/lib/python/twisted/pair
+@dirrm share/zope3/lib/python/twisted/news/topfiles
+@dirrm share/zope3/lib/python/twisted/news/test
+@dirrm share/zope3/lib/python/twisted/news
+@dirrm share/zope3/lib/python/twisted/names/topfiles
+@dirrm share/zope3/lib/python/twisted/names/test
+@dirrm share/zope3/lib/python/twisted/names
+@dirrm share/zope3/lib/python/twisted/manhole/ui
+@dirrm share/zope3/lib/python/twisted/manhole
+@dirrm share/zope3/lib/python/twisted/mail/topfiles
+@dirrm share/zope3/lib/python/twisted/mail/test
+@dirrm share/zope3/lib/python/twisted/mail/scripts
+@dirrm share/zope3/lib/python/twisted/mail
+@dirrm share/zope3/lib/python/twisted/lore/topfiles
+@dirrm share/zope3/lib/python/twisted/lore/test
+@dirrm share/zope3/lib/python/twisted/lore/scripts
+@dirrm share/zope3/lib/python/twisted/lore
+@dirrm share/zope3/lib/python/twisted/internet/serialport
+@dirrm share/zope3/lib/python/twisted/internet/iocpreactor
+@dirrm share/zope3/lib/python/twisted/internet/cfsupport
+@dirrm share/zope3/lib/python/twisted/internet
+@dirrm share/zope3/lib/python/twisted/flow/topfiles
+@dirrm share/zope3/lib/python/twisted/flow/test
+@dirrm share/zope3/lib/python/twisted/flow
+@dirrm share/zope3/lib/python/twisted/enterprise
+@dirrm share/zope3/lib/python/twisted/cred
+@dirrm share/zope3/lib/python/twisted/conch/ui
+@dirrm share/zope3/lib/python/twisted/conch/topfiles
+@dirrm share/zope3/lib/python/twisted/conch/test
+@dirrm share/zope3/lib/python/twisted/conch/ssh
+@dirrm share/zope3/lib/python/twisted/conch/scripts
+@dirrm share/zope3/lib/python/twisted/conch/openssh_compat
+@dirrm share/zope3/lib/python/twisted/conch/insults
+@dirrm share/zope3/lib/python/twisted/conch/client
+@dirrm share/zope3/lib/python/twisted/conch
+@dirrm share/zope3/lib/python/twisted/application
+@dirrm share/zope3/lib/python/twisted
@dirrm share/zope3/lib/python/transaction/tests
@dirrm share/zope3/lib/python/transaction
@dirrm share/zope3/lib/python/pytz/zoneinfo/US
@@ -8514,6 +11626,7 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/pytz
@dirrm share/zope3/lib/python/persistent/tests
@dirrm share/zope3/lib/python/persistent
+@dirrm share/zope3/lib/python/mechanize
@dirrm share/zope3/lib/python/docutils/writers
@dirrm share/zope3/lib/python/docutils/transforms
@dirrm share/zope3/lib/python/docutils/readers/python
@@ -8546,6 +11659,7 @@ share/zope3/zopeskel/var/README.txt
@dirrm share/zope3/lib/python/ThreadedAsync
@dirrm share/zope3/lib/python/RestrictedPython/tests
@dirrm share/zope3/lib/python/RestrictedPython
+@dirrm share/zope3/lib/python/ClientCookie
@dirrm share/zope3/lib/python/BTrees/tests
@dirrm share/zope3/lib/python/BTrees
@dirrm share/zope3/lib/python
diff --git a/www/zope3/distinfo b/www/zope3/distinfo
index 4f31ed9bc03..b06ad93f1fc 100644
--- a/www/zope3/distinfo
+++ b/www/zope3/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+$NetBSD: distinfo,v 1.2 2006/01/07 13:13:28 wiz Exp $
-SHA1 (Zope-3.1.0.tgz) = ee44bb56094fa96b7c5403322e2fb0a37b013167
-RMD160 (Zope-3.1.0.tgz) = c3af6b6172b56ec53691f8f86f3ee14064003602
-Size (Zope-3.1.0.tgz) = 4048336 bytes
-SHA1 (patch-aa) = f55495da74cd4ab87f418d81fa75e383bb918df9
-SHA1 (patch-ab) = fba271c3ca9ef1a4e13977a2f6a5b59e5bcc5413
-SHA1 (patch-ac) = bc60a874d8d8a2e86f8d4f6f078ed51d3c4508f8
-SHA1 (patch-ad) = 2112ad2b2e627eee8a8d2389a535e32bfcef9939
+SHA1 (Zope-3.2.0.tgz) = 1fa9610a1e1a7a6fe03ae0a94759110ad56ad22b
+RMD160 (Zope-3.2.0.tgz) = dcb47d95328ef29342c18bcf75582281dc1b34f3
+Size (Zope-3.2.0.tgz) = 6566282 bytes
+SHA1 (patch-aa) = e0bdbe22e31cb282e6956ee4617cfc655c5d12a8
+SHA1 (patch-ab) = 78d87de66d3c8aac8f1cc637fe7ce0cd76b8a703
+SHA1 (patch-ac) = d8a6a68c1b53acc3b311328984886ac08f911a49
+SHA1 (patch-ad) = e1d15f0936b25d0dbc026efaae247e34b600081c
diff --git a/www/zope3/files/zope3.sh b/www/zope3/files/zope3.sh
index fce111ff9dc..034452e5e44 100644
--- a/www/zope3/files/zope3.sh
+++ b/www/zope3/files/zope3.sh
@@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
-# $NetBSD: zope3.sh,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+# $NetBSD: zope3.sh,v 1.2 2006/01/07 13:13:28 wiz Exp $
#
# PROVIDE: zope3
# REQUIRE: DAEMON
diff --git a/www/zope3/files/zss3.sh b/www/zope3/files/zss3.sh
index 2b834d8a589..dde3c0646ab 100644
--- a/www/zope3/files/zss3.sh
+++ b/www/zope3/files/zss3.sh
@@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
-# $NetBSD: zss3.sh,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+# $NetBSD: zss3.sh,v 1.2 2006/01/07 13:13:28 wiz Exp $
#
# PROVIDE: zss3
# REQUIRE: DAEMON
diff --git a/www/zope3/package.mk b/www/zope3/package.mk
new file mode 100644
index 00000000000..6d67c167ee9
--- /dev/null
+++ b/www/zope3/package.mk
@@ -0,0 +1,13 @@
+# $NetBSD: package.mk,v 1.1 2006/01/07 13:13:28 wiz Exp $
+#
+
+DEPENDS+= zope3>=3.2.0:../../www/zope3
+
+.include "Makefile.common"
+
+HAS_CONFIGURE= yes
+CONFIGURE_ARGS+= --with-python ${PYTHONBIN} \
+ --prefix ${ZOPE3_DIR} \
+ --force
+
+BUILD_TARGET= build
diff --git a/www/zope3/patches/patch-aa b/www/zope3/patches/patch-aa
index f757692e084..20d0fc3ac44 100644
--- a/www/zope3/patches/patch-aa
+++ b/www/zope3/patches/patch-aa
@@ -1,13 +1,12 @@
-$NetBSD: patch-aa,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+$NetBSD: patch-aa,v 1.2 2006/01/07 13:13:28 wiz Exp $
---- Dependencies/ZConfig-Zope-3.1.0/ZConfig/scripts/zconfig.orig 2005-10-03 03:48:10.000000000 +0900
-+++ Dependencies/ZConfig-Zope-3.1.0/ZConfig/scripts/zconfig
-@@ -41,2 +41,15 @@
-
+--- Dependencies/ZConfig-Zope-3.2.0/ZConfig/scripts/zconfig.orig 2006-01-06 05:04:42.000000000 +0900
++++ Dependencies/ZConfig-Zope-3.2.0/ZConfig/scripts/zconfig
+@@ -40,2 +40,13 @@
+ import sys
++import os
++
+if __name__ == "__main__":
-+ # Add the zope3 library directory to the module search path
-+ import os
-+ import sys
+ here = os.path.dirname(os.path.realpath(__file__))
+ swhome = os.path.dirname(here)
+ for parts in [("src",), ("lib", "python"), ("Lib", "site-packages")]:
@@ -16,5 +15,4 @@ $NetBSD: patch-aa,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+ d = os.path.join(swhome, *parts)
+ sys.path.insert(0, d)
+ break
-+
- import ZConfig
+
diff --git a/www/zope3/patches/patch-ab b/www/zope3/patches/patch-ab
index fb7507407e7..fa3f9b1b981 100644
--- a/www/zope3/patches/patch-ab
+++ b/www/zope3/patches/patch-ab
@@ -1,13 +1,14 @@
-$NetBSD: patch-ab,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+$NetBSD: patch-ab,v 1.2 2006/01/07 13:13:28 wiz Exp $
---- Dependencies/ZConfig-Zope-3.1.0/ZConfig/scripts/zconfig_schema2html.orig 2005-10-03 03:48:10.000000000 +0900
-+++ Dependencies/ZConfig-Zope-3.1.0/ZConfig/scripts/zconfig_schema2html
-@@ -17,2 +17,15 @@
+--- Dependencies/ZConfig-Zope-3.2.0/ZConfig/scripts/zconfig_schema2html.orig 2006-01-06 05:04:42.000000000 +0900
++++ Dependencies/ZConfig-Zope-3.2.0/ZConfig/scripts/zconfig_schema2html
+@@ -17,5 +17,18 @@
++import sys
++import os
++import cgi
++
+if __name__ == "__main__":
-+ # Add the zope3 library directory to the module search path
-+ import os
-+ import sys
+ here = os.path.dirname(os.path.realpath(__file__))
+ swhome = os.path.dirname(here)
+ for parts in [("src",), ("lib", "python"), ("Lib", "site-packages")]:
@@ -18,3 +19,6 @@ $NetBSD: patch-ab,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+ break
+
import ZConfig.loader
+ from ZConfig.info import *
+-import sys, cgi
+
diff --git a/www/zope3/patches/patch-ac b/www/zope3/patches/patch-ac
index 4abb4a2dd32..bb824b67bf5 100644
--- a/www/zope3/patches/patch-ac
+++ b/www/zope3/patches/patch-ac
@@ -1,12 +1,9 @@
-$NetBSD: patch-ac,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+$NetBSD: patch-ac,v 1.2 2006/01/07 13:13:28 wiz Exp $
---- Dependencies/zdaemon-Zope-3.1.0/zdaemon/zdctl.py.orig 2005-10-03 03:48:12.000000000 +0900
-+++ Dependencies/zdaemon-Zope-3.1.0/zdaemon/zdctl.py
-@@ -60,2 +60,13 @@
+--- Dependencies/zdaemon-Zope-3.2.0/zdaemon/zdctl.py.orig 2006-01-06 05:04:52.000000000 +0900
++++ Dependencies/zdaemon-Zope-3.2.0/zdaemon/zdctl.py
+@@ -60,2 +60,10 @@
sys.path.append(dirname(scriptdir))
-+ # Add the zope3 library directory to the module search path
-+ import os
-+ import sys
+ here = os.path.dirname(os.path.realpath(__file__))
+ swhome = os.path.dirname(here)
+ for parts in [("src",), ("lib", "python"), ("Lib", "site-packages")]:
diff --git a/www/zope3/patches/patch-ad b/www/zope3/patches/patch-ad
index b049012bd6c..35e4b06935e 100644
--- a/www/zope3/patches/patch-ad
+++ b/www/zope3/patches/patch-ad
@@ -1,12 +1,9 @@
-$NetBSD: patch-ad,v 1.1.1.1 2005/10/24 02:25:29 minskim Exp $
+$NetBSD: patch-ad,v 1.2 2006/01/07 13:13:28 wiz Exp $
---- Dependencies/zdaemon-Zope-3.1.0/zdaemon/zdrun.py.orig 2005-10-03 03:48:12.000000000 +0900
-+++ Dependencies/zdaemon-Zope-3.1.0/zdaemon/zdrun.py
-@@ -85,2 +85,13 @@
+--- Dependencies/zdaemon-Zope-3.2.0/zdaemon/zdrun.py.orig 2006-01-06 05:04:52.000000000 +0900
++++ Dependencies/zdaemon-Zope-3.2.0/zdaemon/zdrun.py
+@@ -85,2 +85,10 @@
sys.path.append(dirname(scriptdir))
-+ # Add the zope3 library directory to the module search path
-+ import os
-+ import sys
+ here = os.path.dirname(os.path.realpath(__file__))
+ swhome = os.path.dirname(here)
+ for parts in [("src",), ("lib", "python"), ("Lib", "site-packages")]: