summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2007-12-18 15:46:59 +0000
committertaca <taca@pkgsrc.org>2007-12-18 15:46:59 +0000
commit68c6d1318fecb3c3cf9eaa3a236a42426d39d904 (patch)
tree6f02f9f43593b284e7ef81472923f578ef475b00 /www
parent9048f495cb98caa1ed5a71c29be87e27cac564a5 (diff)
downloadpkgsrc-68c6d1318fecb3c3cf9eaa3a236a42426d39d904.tar.gz
Importing Plone 3.0.4 as plone3.
This package is based on new zope's framework. Plone is a ready-to-run content management system that is built on the powerful and free Zope application server. Plone is easy to set up, extremely flexible, and provides you with a system for managing web content that is ideal for project groups, communities, web sites, extranets and intranets. Plone 3 runs on Zope 2.10.x and has many improved features from Plone 2.5. 1. Inline editing 2. Working Copy support 3. Link and reference integrity checking 4. Automatic locking and unlocking 5. Easy collaboration and sharing 6. Versioning, history and reverting content 7. Upgraded visual HTML editor 8. Powerful workflow capabilities 9. Flexible authentication back-end 10. Full-text indexing of Word and PDF documents 11. Collections 12. Presentation mode for content 13. Support for the search engine Sitemap protocol 14. Support for multiple mark-up formats 15. Wiki support 16. Automatic previous/next navigation 17. Rules engine for content 18. Auto-generated tables of contents 19. Portlets engine 20. Professional support, development, hosting & training
Diffstat (limited to 'www')
-rw-r--r--www/plone3/DESCR5
-rw-r--r--www/plone3/MESSAGE18
-rw-r--r--www/plone3/Makefile57
-rw-r--r--www/plone3/PLIST9188
-rw-r--r--www/plone3/PLIST.common_end805
-rw-r--r--www/plone3/distinfo6
-rw-r--r--www/plone3/patches/patch-aa29
7 files changed, 10108 insertions, 0 deletions
diff --git a/www/plone3/DESCR b/www/plone3/DESCR
new file mode 100644
index 00000000000..58ffcf08e4e
--- /dev/null
+++ b/www/plone3/DESCR
@@ -0,0 +1,5 @@
+Plone is a ready-to-run content management system that is built on the
+powerful and free Zope application server. Plone is easy to set up,
+extremely flexible, and provides you with a system for managing web
+content that is ideal for project groups, communities, web sites,
+extranets and intranets.
diff --git a/www/plone3/MESSAGE b/www/plone3/MESSAGE
new file mode 100644
index 00000000000..7429b1a49bb
--- /dev/null
+++ b/www/plone3/MESSAGE
@@ -0,0 +1,18 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2007/12/18 15:46:59 taca Exp $
+
+To complete the installation of Plone:
+
+1. Add "products ${PLONE_DIR}" to your zope.conf
+ before existing "products" directive.
+
+2. Restart Zope. This may be done from the Zope Control Panel.
+
+3. If you are upgrading from an earlier version:
+
+ - Go http://yoursite/manage
+ - Go to portal_migrations
+ - Click the Migration tab
+ - Click Migrate
+
+===========================================================================
diff --git a/www/plone3/Makefile b/www/plone3/Makefile
new file mode 100644
index 00000000000..94290588667
--- /dev/null
+++ b/www/plone3/Makefile
@@ -0,0 +1,57 @@
+# $NetBSD: Makefile,v 1.1.1.1 2007/12/18 15:47:05 taca Exp $
+# FreeBSD: ports/www/plone/Makefile,v 1.25 2007/02/17 08:32:54 rafan Exp
+#
+
+DISTNAME= Plone-${PLONE3_VERSION}
+PKGNAME= ${PLONE_PKG_PREFIX}-${PLONE3_VERSION}
+CATEGORIES= www python
+MASTER_SITES= http://launchpad.net/plone/3.0/3.0.4/+download/
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://plone.org/
+COMMENT= User friendly CMS written on top of ZOPE
+
+PLONE_VERSION= 3
+PYTHON_VERSIONS_ACCEPTED= 24
+ZOPE_VERSION_ACCEPTED= 210
+
+ZOPE_PRODUCT_NAME= plone
+ZOPE_PRODUCT_VER= ${PLONE3_VERSION}
+ZOPE_BUILD_METHOD= zope-force-build
+ZOPE_PRODUCT_SRCDIR= ${WRKSRC}/Products
+
+USE_TOOLS+= msgfmt
+PRIVILEGED_STAGES+= clean
+CONFLICTS= zope25-BTreeFolder2-[0-9]* zope25-CMF-[0-9]* \
+ zope25-CMFPlone-[0-9]*
+PLIST_SRC= ${WRKDIR}/PLIST
+
+REPLACE_PYTHON_DIRS= ${WRKSRC}/Products/kupu ${WRKSRC}/lib/python/wicked
+REPLACE_PYTHON_PAT= *.cgi *.py
+
+PLONE_PODIRS= PlacelessTranslationService/locales PloneTranslations
+
+pre-build:
+ ${RM} -rf ${WRKSRC}/Products/ATContentTypes/utilities
+ ${RM} -f ${WRKSRC}/Products/CMFCore/tests/fake_skins/fake_skin/.test1.py
+
+post-build:
+ ${CP} ${PKGDIR}/PLIST ${WRKDIR}/PLIST
+ cd ${WRKSRC}/Products; \
+ ${FIND} ${PLONE_PODIRS} -xdev -type f -name '*.po' -print | \
+ while read f; do \
+ mo=`${ECHO} $$f | ${SED} -e 's|\.po$$|.mo|'`; \
+ msgfmt -o $$mo $$f; \
+ ${ECHO} "${PLONE_BASE}/$$mo" >> ${WRKDIR}/PLIST; \
+ done
+ ${CAT} ${PKGDIR}/PLIST.common_end >> ${WRKDIR}/PLIST
+
+post-install:
+ cd ${WRKSRC}/lib; ${PAX} -rw . ${ZOPE_DIR}/lib
+
+.include "../../www/plone/ploneversion.mk"
+.include "../../www/zope/replace.mk"
+.include "../../textproc/py-elementtree/buildlink3.mk"
+.include "../../textproc/py-libxml2/buildlink3.mk"
+.include "../../graphics/py-imaging/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/www/plone3/PLIST b/www/plone3/PLIST
new file mode 100644
index 00000000000..792a7c181fe
--- /dev/null
+++ b/www/plone3/PLIST
@@ -0,0 +1,9188 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2007/12/18 15:47:05 taca Exp $
+${PLONE_BASE}/ATContentTypes/AUTHORS.txt
+${PLONE_BASE}/ATContentTypes/CHANGELOG.txt
+${PLONE_BASE}/ATContentTypes/HISTORY.txt
+${PLONE_BASE}/ATContentTypes/INSTALL.txt
+${PLONE_BASE}/ATContentTypes/LICENSE.GPL
+${PLONE_BASE}/ATContentTypes/LICENSE.ZPL
+${PLONE_BASE}/ATContentTypes/LICENSE.txt
+${PLONE_BASE}/ATContentTypes/README.txt
+${PLONE_BASE}/ATContentTypes/__init__.py
+${PLONE_BASE}/ATContentTypes/__init__.pyc
+${PLONE_BASE}/ATContentTypes/adapters/__init__.py
+${PLONE_BASE}/ATContentTypes/adapters/__init__.pyc
+${PLONE_BASE}/ATContentTypes/adapters/archive.py
+${PLONE_BASE}/ATContentTypes/adapters/archive.pyc
+${PLONE_BASE}/ATContentTypes/adapters/document.py
+${PLONE_BASE}/ATContentTypes/adapters/document.pyc
+${PLONE_BASE}/ATContentTypes/adapters/folder.py
+${PLONE_BASE}/ATContentTypes/adapters/folder.pyc
+${PLONE_BASE}/ATContentTypes/adapters/image.py
+${PLONE_BASE}/ATContentTypes/adapters/image.pyc
+${PLONE_BASE}/ATContentTypes/adapters.zcml
+${PLONE_BASE}/ATContentTypes/atct.py
+${PLONE_BASE}/ATContentTypes/atct.pyc
+${PLONE_BASE}/ATContentTypes/browser/__init__.py
+${PLONE_BASE}/ATContentTypes/browser/__init__.pyc
+${PLONE_BASE}/ATContentTypes/browser/archive.py
+${PLONE_BASE}/ATContentTypes/browser/archive.pyc
+${PLONE_BASE}/ATContentTypes/browser/nextprevious.py
+${PLONE_BASE}/ATContentTypes/browser/nextprevious.pyc
+${PLONE_BASE}/ATContentTypes/browser.zcml
+${PLONE_BASE}/ATContentTypes/config.py
+${PLONE_BASE}/ATContentTypes/config.pyc
+${PLONE_BASE}/ATContentTypes/configuration/__init__.py
+${PLONE_BASE}/ATContentTypes/configuration/__init__.pyc
+${PLONE_BASE}/ATContentTypes/configuration/component.xml
+${PLONE_BASE}/ATContentTypes/configuration/config.py
+${PLONE_BASE}/ATContentTypes/configuration/config.pyc
+${PLONE_BASE}/ATContentTypes/configuration/datatype.py
+${PLONE_BASE}/ATContentTypes/configuration/datatype.pyc
+${PLONE_BASE}/ATContentTypes/configuration/schema.py
+${PLONE_BASE}/ATContentTypes/configuration/schema.pyc
+${PLONE_BASE}/ATContentTypes/configuration/schema.xml
+${PLONE_BASE}/ATContentTypes/configure.zcml
+${PLONE_BASE}/ATContentTypes/content/__init__.py
+${PLONE_BASE}/ATContentTypes/content/__init__.pyc
+${PLONE_BASE}/ATContentTypes/content/base.py
+${PLONE_BASE}/ATContentTypes/content/base.pyc
+${PLONE_BASE}/ATContentTypes/content/document.py
+${PLONE_BASE}/ATContentTypes/content/document.pyc
+${PLONE_BASE}/ATContentTypes/content/event.py
+${PLONE_BASE}/ATContentTypes/content/event.pyc
+${PLONE_BASE}/ATContentTypes/content/favorite.py
+${PLONE_BASE}/ATContentTypes/content/favorite.pyc
+${PLONE_BASE}/ATContentTypes/content/file.py
+${PLONE_BASE}/ATContentTypes/content/file.pyc
+${PLONE_BASE}/ATContentTypes/content/folder.py
+${PLONE_BASE}/ATContentTypes/content/folder.pyc
+${PLONE_BASE}/ATContentTypes/content/image.py
+${PLONE_BASE}/ATContentTypes/content/image.pyc
+${PLONE_BASE}/ATContentTypes/content/link.py
+${PLONE_BASE}/ATContentTypes/content/link.pyc
+${PLONE_BASE}/ATContentTypes/content/newsitem.py
+${PLONE_BASE}/ATContentTypes/content/newsitem.pyc
+${PLONE_BASE}/ATContentTypes/content/schemata.py
+${PLONE_BASE}/ATContentTypes/content/schemata.pyc
+${PLONE_BASE}/ATContentTypes/content/topic.py
+${PLONE_BASE}/ATContentTypes/content/topic.pyc
+${PLONE_BASE}/ATContentTypes/criteria/__init__.py
+${PLONE_BASE}/ATContentTypes/criteria/__init__.pyc
+${PLONE_BASE}/ATContentTypes/criteria/base.py
+${PLONE_BASE}/ATContentTypes/criteria/base.pyc
+${PLONE_BASE}/ATContentTypes/criteria/boolean.py
+${PLONE_BASE}/ATContentTypes/criteria/boolean.pyc
+${PLONE_BASE}/ATContentTypes/criteria/currentauthor.py
+${PLONE_BASE}/ATContentTypes/criteria/currentauthor.pyc
+${PLONE_BASE}/ATContentTypes/criteria/date.py
+${PLONE_BASE}/ATContentTypes/criteria/date.pyc
+${PLONE_BASE}/ATContentTypes/criteria/daterange.py
+${PLONE_BASE}/ATContentTypes/criteria/daterange.pyc
+${PLONE_BASE}/ATContentTypes/criteria/list.py
+${PLONE_BASE}/ATContentTypes/criteria/list.pyc
+${PLONE_BASE}/ATContentTypes/criteria/path.py
+${PLONE_BASE}/ATContentTypes/criteria/path.pyc
+${PLONE_BASE}/ATContentTypes/criteria/portaltype.py
+${PLONE_BASE}/ATContentTypes/criteria/portaltype.pyc
+${PLONE_BASE}/ATContentTypes/criteria/reference.py
+${PLONE_BASE}/ATContentTypes/criteria/reference.pyc
+${PLONE_BASE}/ATContentTypes/criteria/relativepath.py
+${PLONE_BASE}/ATContentTypes/criteria/relativepath.pyc
+${PLONE_BASE}/ATContentTypes/criteria/schemata.py
+${PLONE_BASE}/ATContentTypes/criteria/schemata.pyc
+${PLONE_BASE}/ATContentTypes/criteria/selection.py
+${PLONE_BASE}/ATContentTypes/criteria/selection.pyc
+${PLONE_BASE}/ATContentTypes/criteria/simpleint.py
+${PLONE_BASE}/ATContentTypes/criteria/simpleint.pyc
+${PLONE_BASE}/ATContentTypes/criteria/simplestring.py
+${PLONE_BASE}/ATContentTypes/criteria/simplestring.pyc
+${PLONE_BASE}/ATContentTypes/criteria/sort.py
+${PLONE_BASE}/ATContentTypes/criteria/sort.pyc
+${PLONE_BASE}/ATContentTypes/etc/atcontenttypes.conf.in
+${PLONE_BASE}/ATContentTypes/exportimport/__init__.py
+${PLONE_BASE}/ATContentTypes/exportimport/__init__.pyc
+${PLONE_BASE}/ATContentTypes/exportimport/atcttool.py
+${PLONE_BASE}/ATContentTypes/exportimport/atcttool.pyc
+${PLONE_BASE}/ATContentTypes/exportimport/configure.zcml
+${PLONE_BASE}/ATContentTypes/implements.zcml
+${PLONE_BASE}/ATContentTypes/interface/__init__.py
+${PLONE_BASE}/ATContentTypes/interface/__init__.pyc
+${PLONE_BASE}/ATContentTypes/interface/archive.py
+${PLONE_BASE}/ATContentTypes/interface/archive.pyc
+${PLONE_BASE}/ATContentTypes/interface/autosort.py
+${PLONE_BASE}/ATContentTypes/interface/autosort.pyc
+${PLONE_BASE}/ATContentTypes/interface/dataExtractor.py
+${PLONE_BASE}/ATContentTypes/interface/dataExtractor.pyc
+${PLONE_BASE}/ATContentTypes/interface/document.py
+${PLONE_BASE}/ATContentTypes/interface/document.pyc
+${PLONE_BASE}/ATContentTypes/interface/event.py
+${PLONE_BASE}/ATContentTypes/interface/event.pyc
+${PLONE_BASE}/ATContentTypes/interface/file.py
+${PLONE_BASE}/ATContentTypes/interface/file.pyc
+${PLONE_BASE}/ATContentTypes/interface/folder.py
+${PLONE_BASE}/ATContentTypes/interface/folder.pyc
+${PLONE_BASE}/ATContentTypes/interface/image.py
+${PLONE_BASE}/ATContentTypes/interface/image.pyc
+${PLONE_BASE}/ATContentTypes/interface/interfaces.py
+${PLONE_BASE}/ATContentTypes/interface/interfaces.pyc
+${PLONE_BASE}/ATContentTypes/interface/link.py
+${PLONE_BASE}/ATContentTypes/interface/link.pyc
+${PLONE_BASE}/ATContentTypes/interface/news.py
+${PLONE_BASE}/ATContentTypes/interface/news.pyc
+${PLONE_BASE}/ATContentTypes/interface/topic.py
+${PLONE_BASE}/ATContentTypes/interface/topic.pyc
+${PLONE_BASE}/ATContentTypes/interfaces.py
+${PLONE_BASE}/ATContentTypes/interfaces.pyc
+${PLONE_BASE}/ATContentTypes/lib/__init__.py
+${PLONE_BASE}/ATContentTypes/lib/__init__.pyc
+${PLONE_BASE}/ATContentTypes/lib/autosort.py
+${PLONE_BASE}/ATContentTypes/lib/autosort.pyc
+${PLONE_BASE}/ATContentTypes/lib/calendarsupport.py
+${PLONE_BASE}/ATContentTypes/lib/calendarsupport.pyc
+${PLONE_BASE}/ATContentTypes/lib/constraintypes.py
+${PLONE_BASE}/ATContentTypes/lib/constraintypes.pyc
+${PLONE_BASE}/ATContentTypes/lib/historyaware.py
+${PLONE_BASE}/ATContentTypes/lib/historyaware.pyc
+${PLONE_BASE}/ATContentTypes/lib/imagetransform.py
+${PLONE_BASE}/ATContentTypes/lib/imagetransform.pyc
+${PLONE_BASE}/ATContentTypes/lib/urlupload.py
+${PLONE_BASE}/ATContentTypes/lib/urlupload.pyc
+${PLONE_BASE}/ATContentTypes/lib/validators.py
+${PLONE_BASE}/ATContentTypes/lib/validators.pyc
+${PLONE_BASE}/ATContentTypes/migration/__init__.py
+${PLONE_BASE}/ATContentTypes/migration/__init__.pyc
+${PLONE_BASE}/ATContentTypes/migration/v1_2/__init__.py
+${PLONE_BASE}/ATContentTypes/migration/v1_2/__init__.pyc
+${PLONE_BASE}/ATContentTypes/modulealiases.py
+${PLONE_BASE}/ATContentTypes/modulealiases.pyc
+${PLONE_BASE}/ATContentTypes/permission.py
+${PLONE_BASE}/ATContentTypes/permission.pyc
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atctListAlbum.py
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_album_image.pt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_album_image.pt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_album_view.pt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_album_view.pt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_edit.cpt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_edit.cpt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_history.pt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_history.pt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_image_transform.pt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_image_transform.pt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_macros.pt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_manageTopicIndex.cpt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_manageTopicIndex.cpt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_manageTopicMetadata.cpt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_manageTopicMetadata.cpt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_saveTopicSetup.cpy
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_saveTopicSetup.cpy.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_topic_pdf.pt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_topic_pdf_template.pt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_topic_subtopics.pt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_topic_subtopics.pt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_topic_view.pt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/atct_topic_view.pt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_add.cpy
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_add.cpy.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_edit_form.cpt
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_edit_form.cpt.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_remove.cpy
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_remove.cpy.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_save.cpy
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_save.cpy.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_set_sort.cpy
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/criterion_set_sort.cpy.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/favorite_broken_icon.gif
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/favorite_broken_icon.gif.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/formatCatalogMetadata.py
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/formatHistoryDiff.py
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/getValidCriteriaForIndex.py
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/getXMLSelectVocab.py
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_export_ical.png
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_export_ical.png.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_export_vcal.png
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_export_vcal.png.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_flip_horizontal.png
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_flip_horizontal.png.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_flip_vertical.png
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_flip_vertical.png.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_rotate_180.png
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_rotate_180.png.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_rotate_clockwise.png
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_rotate_clockwise.png.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_rotate_counter_clockwise.png
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/icon_rotate_counter_clockwise.png.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/isATCTbased.py
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/modifySelectList.js
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/polaroid-multi.png
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/polaroid-multi.png.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/polaroid-single.png
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/polaroid-single.png.metadata
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/unittestGetTitleOf.py
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/validate_add_criterion.vpy
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/validate_atct.vpy
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/validate_remove_criterion.vpy
+${PLONE_BASE}/ATContentTypes/skins/ATContentTypes/validate_set_sort.vpy
+${PLONE_BASE}/ATContentTypes/tests/__init__.py
+${PLONE_BASE}/ATContentTypes/tests/__init__.pyc
+${PLONE_BASE}/ATContentTypes/tests/archive.txt
+${PLONE_BASE}/ATContentTypes/tests/atctftestcase.py
+${PLONE_BASE}/ATContentTypes/tests/atctftestcase.pyc
+${PLONE_BASE}/ATContentTypes/tests/atcttestcase.py
+${PLONE_BASE}/ATContentTypes/tests/atcttestcase.pyc
+${PLONE_BASE}/ATContentTypes/tests/dataextractor.txt
+${PLONE_BASE}/ATContentTypes/tests/http_access.txt
+${PLONE_BASE}/ATContentTypes/tests/input/canoneye.jpg
+${PLONE_BASE}/ATContentTypes/tests/input/divisionerror.jpg
+${PLONE_BASE}/ATContentTypes/tests/input/test-document.txt
+${PLONE_BASE}/ATContentTypes/tests/input/test-event.txt
+${PLONE_BASE}/ATContentTypes/tests/input/test-html-title.html
+${PLONE_BASE}/ATContentTypes/tests/input/test-link.txt
+${PLONE_BASE}/ATContentTypes/tests/input/test-news-item.txt
+${PLONE_BASE}/ATContentTypes/tests/input/test-xhtml-title.html
+${PLONE_BASE}/ATContentTypes/tests/input/test.gif
+${PLONE_BASE}/ATContentTypes/tests/input/test.sxw
+${PLONE_BASE}/ATContentTypes/tests/input/test.zip
+${PLONE_BASE}/ATContentTypes/tests/input/tidy1-in.html
+${PLONE_BASE}/ATContentTypes/tests/input/tidy1-out.html
+${PLONE_BASE}/ATContentTypes/tests/test_adapters.py
+${PLONE_BASE}/ATContentTypes/tests/test_adapters.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_archive.py
+${PLONE_BASE}/ATContentTypes/tests/test_archive.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_atdocument.py
+${PLONE_BASE}/ATContentTypes/tests/test_atdocument.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_atevent.py
+${PLONE_BASE}/ATContentTypes/tests/test_atevent.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_atfavorite.py
+${PLONE_BASE}/ATContentTypes/tests/test_atfavorite.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_atfile.py
+${PLONE_BASE}/ATContentTypes/tests/test_atfile.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_atfolder.py
+${PLONE_BASE}/ATContentTypes/tests/test_atfolder.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_atimage.py
+${PLONE_BASE}/ATContentTypes/tests/test_atimage.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_atlink.py
+${PLONE_BASE}/ATContentTypes/tests/test_atlink.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_atnewsitem.py
+${PLONE_BASE}/ATContentTypes/tests/test_atnewsitem.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_attopic.py
+${PLONE_BASE}/ATContentTypes/tests/test_attopic.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_browserdefaultmixin.py
+${PLONE_BASE}/ATContentTypes/tests/test_browserdefaultmixin.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_bugs.py
+${PLONE_BASE}/ATContentTypes/tests/test_bugs.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_constraintypes.py
+${PLONE_BASE}/ATContentTypes/tests/test_constraintypes.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_criteria.py
+${PLONE_BASE}/ATContentTypes/tests/test_criteria.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_dataextractor.py
+${PLONE_BASE}/ATContentTypes/tests/test_dataextractor.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_functional.py
+${PLONE_BASE}/ATContentTypes/tests/test_functional.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_installation.py
+${PLONE_BASE}/ATContentTypes/tests/test_installation.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_migrations.py
+${PLONE_BASE}/ATContentTypes/tests/test_migrations.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_modulealiases.py
+${PLONE_BASE}/ATContentTypes/tests/test_modulealiases.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_skinScripts.py
+${PLONE_BASE}/ATContentTypes/tests/test_skinScripts.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_tool.py
+${PLONE_BASE}/ATContentTypes/tests/test_tool.pyc
+${PLONE_BASE}/ATContentTypes/tests/test_topictool.py
+${PLONE_BASE}/ATContentTypes/tests/test_topictool.pyc
+${PLONE_BASE}/ATContentTypes/tests/utils.py
+${PLONE_BASE}/ATContentTypes/tests/utils.pyc
+${PLONE_BASE}/ATContentTypes/tests/webdav.txt
+${PLONE_BASE}/ATContentTypes/thirdparty/README.txt
+${PLONE_BASE}/ATContentTypes/thirdparty/exif.py
+${PLONE_BASE}/ATContentTypes/thirdparty/exif.pyc
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/__init__.py
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/__init__.pyc
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/cal.py
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/cal.pyc
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/caselessdict.py
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/caselessdict.pyc
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/interfaces.py
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/interfaces.pyc
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/parser.py
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/parser.pyc
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/prop.py
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/prop.pyc
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/tools.py
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/tools.pyc
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/util.py
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar/util.pyc
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar-doc/example.txt
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar-doc/groupscheduled.ics
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar-doc/groupscheduled.txt
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar-doc/multiple.ics
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar-doc/multiple.txt
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar-doc/small.ics
+${PLONE_BASE}/ATContentTypes/thirdparty/icalendar-doc/small.txt
+${PLONE_BASE}/ATContentTypes/tool/__init__.py
+${PLONE_BASE}/ATContentTypes/tool/__init__.pyc
+${PLONE_BASE}/ATContentTypes/tool/atct.py
+${PLONE_BASE}/ATContentTypes/tool/atct.pyc
+${PLONE_BASE}/ATContentTypes/tool/topic.py
+${PLONE_BASE}/ATContentTypes/tool/topic.pyc
+${PLONE_BASE}/ATContentTypes/tool.gif
+@comment ${PLONE_BASE}/ATContentTypes/utilities/XXXreport
+@comment ${PLONE_BASE}/ATContentTypes/utilities/XXXreport.html
+@comment ${PLONE_BASE}/ATContentTypes/utilities/XXXreport2html.py
+@comment ${PLONE_BASE}/ATContentTypes/utilities/XXXreport2html.pyc
+${PLONE_BASE}/ATContentTypes/utils.py
+${PLONE_BASE}/ATContentTypes/utils.pyc
+${PLONE_BASE}/ATContentTypes/version.txt
+${PLONE_BASE}/ATContentTypes/www/imageScales.zpt
+${PLONE_BASE}/ATContentTypes/www/overview.zpt
+${PLONE_BASE}/ATContentTypes/z3/__init__.py
+${PLONE_BASE}/ATContentTypes/z3/__init__.pyc
+${PLONE_BASE}/ATReferenceBrowserWidget/ATRefBrowserDemo.py
+${PLONE_BASE}/ATReferenceBrowserWidget/ATRefBrowserDemo.pyc
+${PLONE_BASE}/ATReferenceBrowserWidget/ATReferenceBrowserWidget.py
+${PLONE_BASE}/ATReferenceBrowserWidget/ATReferenceBrowserWidget.pyc
+${PLONE_BASE}/ATReferenceBrowserWidget/Extensions/Install.py
+${PLONE_BASE}/ATReferenceBrowserWidget/Extensions/Install.pyc
+${PLONE_BASE}/ATReferenceBrowserWidget/HISTORY.txt
+${PLONE_BASE}/ATReferenceBrowserWidget/__init__.py
+${PLONE_BASE}/ATReferenceBrowserWidget/__init__.pyc
+${PLONE_BASE}/ATReferenceBrowserWidget/config.py
+${PLONE_BASE}/ATReferenceBrowserWidget/config.pyc
+${PLONE_BASE}/ATReferenceBrowserWidget/configure.zcml
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/referencebrowser.js
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/referencebrowser.js.metadata
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/referencebrowser.pt
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/referencebrowser_filterBreadCrumbs.py
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/referencebrowser_insertHistory.py
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/referencebrowser_insertHistory.pyc
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/referencebrowser_popup.pt
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/referencebrowser_queryCatalog.py
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/referencebrowser_startupDirectory.py
+${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget/select_lists.js.metadata
+${PLONE_BASE}/ATReferenceBrowserWidget/version.txt
+${PLONE_BASE}/AdvancedQuery/AdvancedQuery.py
+${PLONE_BASE}/AdvancedQuery/AdvancedQuery.pyc
+${PLONE_BASE}/AdvancedQuery/LICENSE.txt
+${PLONE_BASE}/AdvancedQuery/README.txt
+${PLONE_BASE}/AdvancedQuery/VERSION.txt
+${PLONE_BASE}/AdvancedQuery/__init__.py
+${PLONE_BASE}/AdvancedQuery/__init__.pyc
+${PLONE_BASE}/AdvancedQuery/doc/AdvancedQuery.html
+${PLONE_BASE}/AdvancedQuery/eval.py
+${PLONE_BASE}/AdvancedQuery/eval.pyc
+${PLONE_BASE}/AdvancedQuery/ranking.py
+${PLONE_BASE}/AdvancedQuery/ranking.pyc
+${PLONE_BASE}/AdvancedQuery/sorting.py
+${PLONE_BASE}/AdvancedQuery/sorting.pyc
+${PLONE_BASE}/AdvancedQuery/tests/TestBase.py
+${PLONE_BASE}/AdvancedQuery/tests/TestBase.pyc
+${PLONE_BASE}/AdvancedQuery/tests/__init__.py
+${PLONE_BASE}/AdvancedQuery/tests/__init__.pyc
+${PLONE_BASE}/AdvancedQuery/tests/framework.py
+${PLONE_BASE}/AdvancedQuery/tests/framework.pyc
+${PLONE_BASE}/AdvancedQuery/tests/testAdvancedQuery.py
+${PLONE_BASE}/AdvancedQuery/tests/testAdvancedQuery.pyc
+${PLONE_BASE}/Archetypes/AUTHORS
+${PLONE_BASE}/Archetypes/AggregatedStorage.py
+${PLONE_BASE}/Archetypes/AggregatedStorage.pyc
+${PLONE_BASE}/Archetypes/AllowedTypesByIface.py
+${PLONE_BASE}/Archetypes/AllowedTypesByIface.pyc
+${PLONE_BASE}/Archetypes/ApeSupport.py
+${PLONE_BASE}/Archetypes/ApeSupport.pyc
+${PLONE_BASE}/Archetypes/ArchTTWTool.py
+${PLONE_BASE}/Archetypes/ArchTTWTool.pyc
+${PLONE_BASE}/Archetypes/ArchetypeTool.py
+${PLONE_BASE}/Archetypes/ArchetypeTool.pyc
+${PLONE_BASE}/Archetypes/BaseBTreeFolder.py
+${PLONE_BASE}/Archetypes/BaseBTreeFolder.pyc
+${PLONE_BASE}/Archetypes/BaseContent.py
+${PLONE_BASE}/Archetypes/BaseContent.pyc
+${PLONE_BASE}/Archetypes/BaseFolder.py
+${PLONE_BASE}/Archetypes/BaseFolder.pyc
+${PLONE_BASE}/Archetypes/BaseObject.py
+${PLONE_BASE}/Archetypes/BaseObject.pyc
+${PLONE_BASE}/Archetypes/BaseUnit.py
+${PLONE_BASE}/Archetypes/BaseUnit.pyc
+${PLONE_BASE}/Archetypes/CatalogMultiplex.py
+${PLONE_BASE}/Archetypes/CatalogMultiplex.pyc
+${PLONE_BASE}/Archetypes/ChangeLog
+${PLONE_BASE}/Archetypes/ClassGen.py
+${PLONE_BASE}/Archetypes/ClassGen.pyc
+${PLONE_BASE}/Archetypes/ExtensibleMetadata.py
+${PLONE_BASE}/Archetypes/ExtensibleMetadata.pyc
+${PLONE_BASE}/Archetypes/Extensions/__init__.py
+${PLONE_BASE}/Archetypes/Extensions/__init__.pyc
+${PLONE_BASE}/Archetypes/Extensions/migrations.py
+${PLONE_BASE}/Archetypes/Extensions/migrations.pyc
+${PLONE_BASE}/Archetypes/Extensions/utils.py
+${PLONE_BASE}/Archetypes/Extensions/utils.pyc
+${PLONE_BASE}/Archetypes/Field.py
+${PLONE_BASE}/Archetypes/Field.pyc
+${PLONE_BASE}/Archetypes/HISTORY.txt
+${PLONE_BASE}/Archetypes/LICENSE.txt
+${PLONE_BASE}/Archetypes/Layer.py
+${PLONE_BASE}/Archetypes/Layer.pyc
+${PLONE_BASE}/Archetypes/Makefile.in
+${PLONE_BASE}/Archetypes/Marshall.py
+${PLONE_BASE}/Archetypes/Marshall.pyc
+${PLONE_BASE}/Archetypes/OrderedBaseFolder.py
+${PLONE_BASE}/Archetypes/OrderedBaseFolder.pyc
+${PLONE_BASE}/Archetypes/PloneCompat.py
+${PLONE_BASE}/Archetypes/PloneCompat.pyc
+${PLONE_BASE}/Archetypes/README.txt
+${PLONE_BASE}/Archetypes/ReferenceEngine.py
+${PLONE_BASE}/Archetypes/ReferenceEngine.pyc
+${PLONE_BASE}/Archetypes/Referenceable.py
+${PLONE_BASE}/Archetypes/Referenceable.pyc
+${PLONE_BASE}/Archetypes/Registry.py
+${PLONE_BASE}/Archetypes/Registry.pyc
+${PLONE_BASE}/Archetypes/Renderer.py
+${PLONE_BASE}/Archetypes/Renderer.pyc
+${PLONE_BASE}/Archetypes/SQLMethod.py
+${PLONE_BASE}/Archetypes/SQLMethod.pyc
+${PLONE_BASE}/Archetypes/SQLStorage.py
+${PLONE_BASE}/Archetypes/SQLStorage.pyc
+${PLONE_BASE}/Archetypes/SQLStorageConfig.py
+${PLONE_BASE}/Archetypes/SQLStorageConfig.pyc
+${PLONE_BASE}/Archetypes/Schema/Composite.py
+${PLONE_BASE}/Archetypes/Schema/Composite.pyc
+${PLONE_BASE}/Archetypes/Schema/Facade.py
+${PLONE_BASE}/Archetypes/Schema/Facade.pyc
+${PLONE_BASE}/Archetypes/Schema/__init__.py
+${PLONE_BASE}/Archetypes/Schema/__init__.pyc
+${PLONE_BASE}/Archetypes/Schema/configure.zcml
+${PLONE_BASE}/Archetypes/Schema/factory.py
+${PLONE_BASE}/Archetypes/Schema/factory.pyc
+${PLONE_BASE}/Archetypes/Storage/Facade.py
+${PLONE_BASE}/Archetypes/Storage/Facade.pyc
+${PLONE_BASE}/Archetypes/Storage/__init__.py
+${PLONE_BASE}/Archetypes/Storage/__init__.pyc
+${PLONE_BASE}/Archetypes/Storage/annotation.py
+${PLONE_BASE}/Archetypes/Storage/annotation.pyc
+${PLONE_BASE}/Archetypes/TemplateMixin.py
+${PLONE_BASE}/Archetypes/TemplateMixin.pyc
+${PLONE_BASE}/Archetypes/UIDCatalog.py
+${PLONE_BASE}/Archetypes/UIDCatalog.pyc
+${PLONE_BASE}/Archetypes/VariableSchemaSupport.py
+${PLONE_BASE}/Archetypes/VariableSchemaSupport.pyc
+${PLONE_BASE}/Archetypes/WebDAVSupport.py
+${PLONE_BASE}/Archetypes/WebDAVSupport.pyc
+${PLONE_BASE}/Archetypes/Widget.py
+${PLONE_BASE}/Archetypes/Widget.pyc
+${PLONE_BASE}/Archetypes/__init__.py
+${PLONE_BASE}/Archetypes/__init__.pyc
+${PLONE_BASE}/Archetypes/__pkginfo__.py
+${PLONE_BASE}/Archetypes/__pkginfo__.pyc
+${PLONE_BASE}/Archetypes/annotations.py
+${PLONE_BASE}/Archetypes/annotations.pyc
+${PLONE_BASE}/Archetypes/atapi.py
+${PLONE_BASE}/Archetypes/atapi.pyc
+${PLONE_BASE}/Archetypes/athistoryaware.py
+${PLONE_BASE}/Archetypes/athistoryaware.pyc
+${PLONE_BASE}/Archetypes/bbb.py
+${PLONE_BASE}/Archetypes/bbb.pyc
+${PLONE_BASE}/Archetypes/bridge.zcml
+${PLONE_BASE}/Archetypes/browser/__init__.py
+${PLONE_BASE}/Archetypes/browser/__init__.pyc
+${PLONE_BASE}/Archetypes/browser/configure.zcml
+${PLONE_BASE}/Archetypes/browser/edit.py
+${PLONE_BASE}/Archetypes/browser/edit.pyc
+${PLONE_BASE}/Archetypes/browser/fields.py
+${PLONE_BASE}/Archetypes/browser/fields.pyc
+${PLONE_BASE}/Archetypes/browser/lifecycle.py
+${PLONE_BASE}/Archetypes/browser/lifecycle.pyc
+${PLONE_BASE}/Archetypes/browser/widgets.py
+${PLONE_BASE}/Archetypes/browser/widgets.pyc
+${PLONE_BASE}/Archetypes/config.py
+${PLONE_BASE}/Archetypes/config.pyc
+${PLONE_BASE}/Archetypes/configure.zcml
+${PLONE_BASE}/Archetypes/customizationpolicy.py
+${PLONE_BASE}/Archetypes/customizationpolicy.pyc
+${PLONE_BASE}/Archetypes/debian/changelog
+${PLONE_BASE}/Archetypes/debian/config
+${PLONE_BASE}/Archetypes/debian/control
+${PLONE_BASE}/Archetypes/debian/copyright
+${PLONE_BASE}/Archetypes/debian/dirs
+${PLONE_BASE}/Archetypes/debian/postinst
+${PLONE_BASE}/Archetypes/debian/prerm
+${PLONE_BASE}/Archetypes/debian/rules
+${PLONE_BASE}/Archetypes/debian/templates
+${PLONE_BASE}/Archetypes/debug.py
+${PLONE_BASE}/Archetypes/debug.pyc
+${PLONE_BASE}/Archetypes/docs/archetypes_paper.html
+${PLONE_BASE}/Archetypes/docs/archetypes_pres.ppt
+${PLONE_BASE}/Archetypes/docs/customsearching-howto.rst
+${PLONE_BASE}/Archetypes/docs/doc-guide.rst
+${PLONE_BASE}/Archetypes/docs/known_issues.rst
+${PLONE_BASE}/Archetypes/docs/migration.txt
+${PLONE_BASE}/Archetypes/docs/quickref.rst
+${PLONE_BASE}/Archetypes/docs/reference-engine-notes.txt
+${PLONE_BASE}/Archetypes/docs/referenceCatalog.txt
+${PLONE_BASE}/Archetypes/docs/sqlstorage-howto.rst
+${PLONE_BASE}/Archetypes/docs/sqlstorage-known-issues.txt
+${PLONE_BASE}/Archetypes/event.py
+${PLONE_BASE}/Archetypes/event.pyc
+${PLONE_BASE}/Archetypes/events.zcml
+${PLONE_BASE}/Archetypes/examples/ATBIFolder.py
+${PLONE_BASE}/Archetypes/examples/ATBIFolder.pyc
+${PLONE_BASE}/Archetypes/examples/ComplexType.py
+${PLONE_BASE}/Archetypes/examples/ComplexType.pyc
+${PLONE_BASE}/Archetypes/examples/DDocument.py
+${PLONE_BASE}/Archetypes/examples/DDocument.pyc
+${PLONE_BASE}/Archetypes/examples/Fact.py
+${PLONE_BASE}/Archetypes/examples/Fact.pyc
+${PLONE_BASE}/Archetypes/examples/RefNode.py
+${PLONE_BASE}/Archetypes/examples/RefNode.pyc
+${PLONE_BASE}/Archetypes/examples/SimpleBTreeFolder.py
+${PLONE_BASE}/Archetypes/examples/SimpleBTreeFolder.pyc
+${PLONE_BASE}/Archetypes/examples/SimpleFile.py
+${PLONE_BASE}/Archetypes/examples/SimpleFile.pyc
+${PLONE_BASE}/Archetypes/examples/SimpleFolder.py
+${PLONE_BASE}/Archetypes/examples/SimpleFolder.pyc
+${PLONE_BASE}/Archetypes/examples/SimpleType.py
+${PLONE_BASE}/Archetypes/examples/SimpleType.pyc
+${PLONE_BASE}/Archetypes/examples/__init__.py
+${PLONE_BASE}/Archetypes/examples/__init__.pyc
+${PLONE_BASE}/Archetypes/exceptions.py
+${PLONE_BASE}/Archetypes/exceptions.pyc
+${PLONE_BASE}/Archetypes/exportimport/__init__.py
+${PLONE_BASE}/Archetypes/exportimport/__init__.pyc
+${PLONE_BASE}/Archetypes/exportimport/archetypetool.py
+${PLONE_BASE}/Archetypes/exportimport/archetypetool.pyc
+${PLONE_BASE}/Archetypes/exportimport/configure.zcml
+${PLONE_BASE}/Archetypes/fieldproperty.py
+${PLONE_BASE}/Archetypes/fieldproperty.pyc
+${PLONE_BASE}/Archetypes/generator/__init__.py
+${PLONE_BASE}/Archetypes/generator/__init__.pyc
+${PLONE_BASE}/Archetypes/generator/i18n.py
+${PLONE_BASE}/Archetypes/generator/i18n.pyc
+${PLONE_BASE}/Archetypes/generator/widget.py
+${PLONE_BASE}/Archetypes/generator/widget.pyc
+${PLONE_BASE}/Archetypes/implements.zcml
+${PLONE_BASE}/Archetypes/interfaces/ITemplateMixin.py
+${PLONE_BASE}/Archetypes/interfaces/ITemplateMixin.pyc
+${PLONE_BASE}/Archetypes/interfaces/__init__.py
+${PLONE_BASE}/Archetypes/interfaces/__init__.pyc
+${PLONE_BASE}/Archetypes/interfaces/_annotations.py
+${PLONE_BASE}/Archetypes/interfaces/_annotations.pyc
+${PLONE_BASE}/Archetypes/interfaces/_archetypetool.py
+${PLONE_BASE}/Archetypes/interfaces/_archetypetool.pyc
+${PLONE_BASE}/Archetypes/interfaces/_athistoryaware.py
+${PLONE_BASE}/Archetypes/interfaces/_athistoryaware.pyc
+${PLONE_BASE}/Archetypes/interfaces/_base.py
+${PLONE_BASE}/Archetypes/interfaces/_base.pyc
+${PLONE_BASE}/Archetypes/interfaces/_edit.py
+${PLONE_BASE}/Archetypes/interfaces/_edit.pyc
+${PLONE_BASE}/Archetypes/interfaces/_event.py
+${PLONE_BASE}/Archetypes/interfaces/_event.pyc
+${PLONE_BASE}/Archetypes/interfaces/_field.py
+${PLONE_BASE}/Archetypes/interfaces/_field.pyc
+${PLONE_BASE}/Archetypes/interfaces/_layer.py
+${PLONE_BASE}/Archetypes/interfaces/_layer.pyc
+${PLONE_BASE}/Archetypes/interfaces/_marshall.py
+${PLONE_BASE}/Archetypes/interfaces/_marshall.pyc
+${PLONE_BASE}/Archetypes/interfaces/_metadata.py
+${PLONE_BASE}/Archetypes/interfaces/_metadata.pyc
+${PLONE_BASE}/Archetypes/interfaces/_orderedfolder.py
+${PLONE_BASE}/Archetypes/interfaces/_orderedfolder.pyc
+${PLONE_BASE}/Archetypes/interfaces/_referenceable.py
+${PLONE_BASE}/Archetypes/interfaces/_referenceable.pyc
+${PLONE_BASE}/Archetypes/interfaces/_referenceengine.py
+${PLONE_BASE}/Archetypes/interfaces/_referenceengine.pyc
+${PLONE_BASE}/Archetypes/interfaces/_schema.py
+${PLONE_BASE}/Archetypes/interfaces/_schema.pyc
+${PLONE_BASE}/Archetypes/interfaces/_storage.py
+${PLONE_BASE}/Archetypes/interfaces/_storage.pyc
+${PLONE_BASE}/Archetypes/interfaces/_templatemixin.py
+${PLONE_BASE}/Archetypes/interfaces/_templatemixin.pyc
+${PLONE_BASE}/Archetypes/interfaces/_validator.py
+${PLONE_BASE}/Archetypes/interfaces/_validator.pyc
+${PLONE_BASE}/Archetypes/interfaces/_vocabulary.py
+${PLONE_BASE}/Archetypes/interfaces/_vocabulary.pyc
+${PLONE_BASE}/Archetypes/interfaces/annotations.py
+${PLONE_BASE}/Archetypes/interfaces/annotations.pyc
+${PLONE_BASE}/Archetypes/interfaces/athistoryaware.py
+${PLONE_BASE}/Archetypes/interfaces/athistoryaware.pyc
+${PLONE_BASE}/Archetypes/interfaces/base.py
+${PLONE_BASE}/Archetypes/interfaces/base.pyc
+${PLONE_BASE}/Archetypes/interfaces/field.py
+${PLONE_BASE}/Archetypes/interfaces/field.pyc
+${PLONE_BASE}/Archetypes/interfaces/layer.py
+${PLONE_BASE}/Archetypes/interfaces/layer.pyc
+${PLONE_BASE}/Archetypes/interfaces/marshall.py
+${PLONE_BASE}/Archetypes/interfaces/marshall.pyc
+${PLONE_BASE}/Archetypes/interfaces/metadata.py
+${PLONE_BASE}/Archetypes/interfaces/metadata.pyc
+${PLONE_BASE}/Archetypes/interfaces/orderedfolder.py
+${PLONE_BASE}/Archetypes/interfaces/orderedfolder.pyc
+${PLONE_BASE}/Archetypes/interfaces/referenceable.py
+${PLONE_BASE}/Archetypes/interfaces/referenceable.pyc
+${PLONE_BASE}/Archetypes/interfaces/referenceengine.py
+${PLONE_BASE}/Archetypes/interfaces/referenceengine.pyc
+${PLONE_BASE}/Archetypes/interfaces/schema.py
+${PLONE_BASE}/Archetypes/interfaces/schema.pyc
+${PLONE_BASE}/Archetypes/interfaces/storage.py
+${PLONE_BASE}/Archetypes/interfaces/storage.pyc
+${PLONE_BASE}/Archetypes/interfaces/templatemixin.py
+${PLONE_BASE}/Archetypes/interfaces/templatemixin.pyc
+${PLONE_BASE}/Archetypes/interfaces/vocabulary.py
+${PLONE_BASE}/Archetypes/interfaces/vocabulary.pyc
+${PLONE_BASE}/Archetypes/mimetype_utils.py
+${PLONE_BASE}/Archetypes/mimetype_utils.pyc
+${PLONE_BASE}/Archetypes/profiles/default/archetypes-various.txt
+${PLONE_BASE}/Archetypes/profiles/default/export_steps.xml
+${PLONE_BASE}/Archetypes/profiles/default/import_steps.xml
+${PLONE_BASE}/Archetypes/profiles/default/skins.xml
+${PLONE_BASE}/Archetypes/profiles/default/toolset.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/archetype_tool.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/ATBIFolder.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/ComplexType.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/DDocument.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/Fact.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/MySimpleType.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/Refnode.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/SimpleBTreeFolder.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/SimpleFile.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/SimpleFolder.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/SimpleProtectedType.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types/SimpleType.xml
+${PLONE_BASE}/Archetypes/profiles/sample_types/types.xml
+${PLONE_BASE}/Archetypes/profiles.zcml
+${PLONE_BASE}/Archetypes/public.py
+${PLONE_BASE}/Archetypes/public.pyc
+${PLONE_BASE}/Archetypes/ref_graph.py
+${PLONE_BASE}/Archetypes/ref_graph.pyc
+${PLONE_BASE}/Archetypes/references.py
+${PLONE_BASE}/Archetypes/references.pyc
+${PLONE_BASE}/Archetypes/setuphandlers.py
+${PLONE_BASE}/Archetypes/setuphandlers.pyc
+${PLONE_BASE}/Archetypes/skins/archetypes/add_reference.cpy
+${PLONE_BASE}/Archetypes/skins/archetypes/add_reference.cpy.metadata
+${PLONE_BASE}/Archetypes/skins/archetypes/archebuilder/archebuilder.css
+${PLONE_BASE}/Archetypes/skins/archetypes/archebuilder/archebuilder.html
+${PLONE_BASE}/Archetypes/skins/archetypes/archebuilder/archebuilder.js
+${PLONE_BASE}/Archetypes/skins/archetypes/archebuilder/archebuilder.xul
+${PLONE_BASE}/Archetypes/skins/archetypes/archebuilder/archebuilderxul.xsl
+${PLONE_BASE}/Archetypes/skins/archetypes/archebuilder/sarissa.js
+${PLONE_BASE}/Archetypes/skins/archetypes/archetypes_zmi.css.dtml
+${PLONE_BASE}/Archetypes/skins/archetypes/at_download.py
+${PLONE_BASE}/Archetypes/skins/archetypes/at_isEditable.py
+${PLONE_BASE}/Archetypes/skins/archetypes/at_isEditable.pyc
+${PLONE_BASE}/Archetypes/skins/archetypes/base.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/base_edit.cpt
+${PLONE_BASE}/Archetypes/skins/archetypes/base_edit.cpt.metadata
+${PLONE_BASE}/Archetypes/skins/archetypes/base_metadata.cpt
+${PLONE_BASE}/Archetypes/skins/archetypes/base_metadata.cpt.metadata
+${PLONE_BASE}/Archetypes/skins/archetypes/base_view.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/base_view.pt.metadata
+${PLONE_BASE}/Archetypes/skins/archetypes/checkSelected.py
+${PLONE_BASE}/Archetypes/skins/archetypes/collectKeywords.py
+${PLONE_BASE}/Archetypes/skins/archetypes/content_edit.cpy
+${PLONE_BASE}/Archetypes/skins/archetypes/content_edit.cpy.metadata
+${PLONE_BASE}/Archetypes/skins/archetypes/content_edit_impl.py
+${PLONE_BASE}/Archetypes/skins/archetypes/content_types.css.dtml
+${PLONE_BASE}/Archetypes/skins/archetypes/displayValue.py
+${PLONE_BASE}/Archetypes/skins/archetypes/edit_macros.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/getBestIcon.py
+${PLONE_BASE}/Archetypes/skins/archetypes/getCharset.py
+${PLONE_BASE}/Archetypes/skins/archetypes/getImageTag.py
+${PLONE_BASE}/Archetypes/skins/archetypes/getUniqueWidgetAttr.py
+${PLONE_BASE}/Archetypes/skins/archetypes/go_back.cpy
+${PLONE_BASE}/Archetypes/skins/archetypes/lookupMime.py
+${PLONE_BASE}/Archetypes/skins/archetypes/metadata_macros.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/reference_focus_js.dtml
+${PLONE_BASE}/Archetypes/skins/archetypes/reference_graph.cpt
+${PLONE_BASE}/Archetypes/skins/archetypes/reference_js.dtml
+${PLONE_BASE}/Archetypes/skins/archetypes/reference_slot.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/remove_creation_mark.py
+${PLONE_BASE}/Archetypes/skins/archetypes/session_restore_value.py
+${PLONE_BASE}/Archetypes/skins/archetypes/session_save_form.py
+${PLONE_BASE}/Archetypes/skins/archetypes/session_save_form.pyc
+${PLONE_BASE}/Archetypes/skins/archetypes/table.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/table_view.css.dtml
+${PLONE_BASE}/Archetypes/skins/archetypes/table_view.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/test_rview.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/unicodeEncode.py
+${PLONE_BASE}/Archetypes/skins/archetypes/unicodeTestIn.py
+${PLONE_BASE}/Archetypes/skins/archetypes/validate_base.vpy
+${PLONE_BASE}/Archetypes/skins/archetypes/validate_integrity.cpy
+${PLONE_BASE}/Archetypes/skins/archetypes/validate_integrity.cpy.metadata
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/addable_support.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/boolean.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/calendar.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/computed.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/decimal.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/epoz.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/field.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/field_table.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/file.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/image.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/inandout.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/integer.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/js/inandout.js
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/js/inandout.js.metadata
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/js/picklist.js
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/js/picklist.js.metadata
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/js/textcount.js
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/js/textcount.js.metadata
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/keyword.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/label.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/languagewidget.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/lines.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/multiselection.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/password.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/picklist.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/reference.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/rich.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/selection.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/string.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/textarea.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/visual.pt
+${PLONE_BASE}/Archetypes/skins/archetypes/widgets/zid.pt
+${PLONE_BASE}/Archetypes/skins/archetypes_kss/at.kss
+${PLONE_BASE}/Archetypes/skins/archetypes_kss/at_experimental.kss
+${PLONE_BASE}/Archetypes/tests/README.txt
+${PLONE_BASE}/Archetypes/tests/__init__.py
+${PLONE_BASE}/Archetypes/tests/__init__.pyc
+${PLONE_BASE}/Archetypes/tests/atsitetestcase.py
+${PLONE_BASE}/Archetypes/tests/atsitetestcase.pyc
+${PLONE_BASE}/Archetypes/tests/attestcase.py
+${PLONE_BASE}/Archetypes/tests/attestcase.pyc
+${PLONE_BASE}/Archetypes/tests/common.py
+${PLONE_BASE}/Archetypes/tests/common.pyc
+${PLONE_BASE}/Archetypes/tests/doctestcase.py
+${PLONE_BASE}/Archetypes/tests/doctestcase.pyc
+${PLONE_BASE}/Archetypes/tests/editing.txt
+${PLONE_BASE}/Archetypes/tests/events.txt
+${PLONE_BASE}/Archetypes/tests/folder_marshall.txt
+${PLONE_BASE}/Archetypes/tests/input/pdb.doc
+${PLONE_BASE}/Archetypes/tests/input/rest1.rst
+${PLONE_BASE}/Archetypes/tests/input/rest1.tgz
+${PLONE_BASE}/Archetypes/tests/input/rest2.rst
+${PLONE_BASE}/Archetypes/tests/input/rest3.rst
+${PLONE_BASE}/Archetypes/tests/input/tool.gif
+${PLONE_BASE}/Archetypes/tests/input/webdav.pdf
+${PLONE_BASE}/Archetypes/tests/input/word.doc
+${PLONE_BASE}/Archetypes/tests/output/rest1.out
+${PLONE_BASE}/Archetypes/tests/output/rest2.out
+${PLONE_BASE}/Archetypes/tests/output/rest3.out
+${PLONE_BASE}/Archetypes/tests/reindex_sanity_plone21.txt
+${PLONE_BASE}/Archetypes/tests/test_aggregated_storage.py
+${PLONE_BASE}/Archetypes/tests/test_aggregated_storage.pyc
+${PLONE_BASE}/Archetypes/tests/test_annotation.py
+${PLONE_BASE}/Archetypes/tests/test_annotation.pyc
+${PLONE_BASE}/Archetypes/tests/test_athistoryaware.py
+${PLONE_BASE}/Archetypes/tests/test_athistoryaware.pyc
+${PLONE_BASE}/Archetypes/tests/test_baseobject.py
+${PLONE_BASE}/Archetypes/tests/test_baseobject.pyc
+${PLONE_BASE}/Archetypes/tests/test_baseschema.py
+${PLONE_BASE}/Archetypes/tests/test_baseschema.pyc
+${PLONE_BASE}/Archetypes/tests/test_baseunit.py
+${PLONE_BASE}/Archetypes/tests/test_baseunit.pyc
+${PLONE_BASE}/Archetypes/tests/test_classgen.py
+${PLONE_BASE}/Archetypes/tests/test_classgen.pyc
+${PLONE_BASE}/Archetypes/tests/test_cmfessentials.py
+${PLONE_BASE}/Archetypes/tests/test_cmfessentials.pyc
+${PLONE_BASE}/Archetypes/tests/test_construction.py
+${PLONE_BASE}/Archetypes/tests/test_construction.pyc
+${PLONE_BASE}/Archetypes/tests/test_contenttype.py
+${PLONE_BASE}/Archetypes/tests/test_contenttype.pyc
+${PLONE_BASE}/Archetypes/tests/test_copying.py
+${PLONE_BASE}/Archetypes/tests/test_copying.pyc
+${PLONE_BASE}/Archetypes/tests/test_default_mimetypes.py
+${PLONE_BASE}/Archetypes/tests/test_default_mimetypes.pyc
+${PLONE_BASE}/Archetypes/tests/test_doctests.py
+${PLONE_BASE}/Archetypes/tests/test_doctests.pyc
+${PLONE_BASE}/Archetypes/tests/test_event.py
+${PLONE_BASE}/Archetypes/tests/test_event.pyc
+${PLONE_BASE}/Archetypes/tests/test_extensions_utils.py
+${PLONE_BASE}/Archetypes/tests/test_extensions_utils.pyc
+${PLONE_BASE}/Archetypes/tests/test_externaleditor.py
+${PLONE_BASE}/Archetypes/tests/test_externaleditor.pyc
+${PLONE_BASE}/Archetypes/tests/test_fields.py
+${PLONE_BASE}/Archetypes/tests/test_fields.pyc
+${PLONE_BASE}/Archetypes/tests/test_fieldvalidation.py
+${PLONE_BASE}/Archetypes/tests/test_fieldvalidation.pyc
+${PLONE_BASE}/Archetypes/tests/test_file_upload.py
+${PLONE_BASE}/Archetypes/tests/test_file_upload.pyc
+${PLONE_BASE}/Archetypes/tests/test_filename.py
+${PLONE_BASE}/Archetypes/tests/test_filename.pyc
+${PLONE_BASE}/Archetypes/tests/test_functional.py
+${PLONE_BASE}/Archetypes/tests/test_functional.pyc
+${PLONE_BASE}/Archetypes/tests/test_index.py
+${PLONE_BASE}/Archetypes/tests/test_index.pyc
+${PLONE_BASE}/Archetypes/tests/test_interfaces.py
+${PLONE_BASE}/Archetypes/tests/test_interfaces.pyc
+${PLONE_BASE}/Archetypes/tests/test_marshaller.py
+${PLONE_BASE}/Archetypes/tests/test_marshaller.pyc
+${PLONE_BASE}/Archetypes/tests/test_metadata.py
+${PLONE_BASE}/Archetypes/tests/test_metadata.pyc
+${PLONE_BASE}/Archetypes/tests/test_referenceCatalog.py
+${PLONE_BASE}/Archetypes/tests/test_referenceCatalog.pyc
+${PLONE_BASE}/Archetypes/tests/test_referenceable.py
+${PLONE_BASE}/Archetypes/tests/test_referenceable.pyc
+${PLONE_BASE}/Archetypes/tests/test_rename.py
+${PLONE_BASE}/Archetypes/tests/test_rename.pyc
+${PLONE_BASE}/Archetypes/tests/test_schemata.py
+${PLONE_BASE}/Archetypes/tests/test_schemata.pyc
+${PLONE_BASE}/Archetypes/tests/test_schemata_manipulation.py
+${PLONE_BASE}/Archetypes/tests/test_schemata_manipulation.pyc
+${PLONE_BASE}/Archetypes/tests/test_security.py
+${PLONE_BASE}/Archetypes/tests/test_security.pyc
+${PLONE_BASE}/Archetypes/tests/test_sitepolicy.py
+${PLONE_BASE}/Archetypes/tests/test_sitepolicy.pyc
+${PLONE_BASE}/Archetypes/tests/test_sqlstorage.py
+${PLONE_BASE}/Archetypes/tests/test_sqlstorage.pyc
+${PLONE_BASE}/Archetypes/tests/test_storage.py
+${PLONE_BASE}/Archetypes/tests/test_storage.pyc
+${PLONE_BASE}/Archetypes/tests/test_templatemixin.py
+${PLONE_BASE}/Archetypes/tests/test_templatemixin.pyc
+${PLONE_BASE}/Archetypes/tests/test_unicode.py
+${PLONE_BASE}/Archetypes/tests/test_unicode.pyc
+${PLONE_BASE}/Archetypes/tests/test_update_schema1.py
+${PLONE_BASE}/Archetypes/tests/test_update_schema1.pyc
+${PLONE_BASE}/Archetypes/tests/test_update_schema2.py
+${PLONE_BASE}/Archetypes/tests/test_update_schema2.pyc
+${PLONE_BASE}/Archetypes/tests/test_utils.py
+${PLONE_BASE}/Archetypes/tests/test_utils.pyc
+${PLONE_BASE}/Archetypes/tests/test_utils2.py
+${PLONE_BASE}/Archetypes/tests/test_utils2.pyc
+${PLONE_BASE}/Archetypes/tests/test_validation.py
+${PLONE_BASE}/Archetypes/tests/test_validation.pyc
+${PLONE_BASE}/Archetypes/tests/test_varschema.py
+${PLONE_BASE}/Archetypes/tests/test_varschema.pyc
+${PLONE_BASE}/Archetypes/tests/test_widgets.py
+${PLONE_BASE}/Archetypes/tests/test_widgets.pyc
+${PLONE_BASE}/Archetypes/tests/traversal.txt
+${PLONE_BASE}/Archetypes/tests/traversal_4981.txt
+${PLONE_BASE}/Archetypes/tests/utils.py
+${PLONE_BASE}/Archetypes/tests/utils.pyc
+${PLONE_BASE}/Archetypes/tests/webdav_operations.txt
+${PLONE_BASE}/Archetypes/tool.gif
+${PLONE_BASE}/Archetypes/utils.py
+${PLONE_BASE}/Archetypes/utils.pyc
+${PLONE_BASE}/Archetypes/validator.py
+${PLONE_BASE}/Archetypes/validator.pyc
+${PLONE_BASE}/Archetypes/version.txt
+${PLONE_BASE}/Archetypes/www/addSchema.zpt
+${PLONE_BASE}/Archetypes/www/fields_xml.zpt
+${PLONE_BASE}/Archetypes/www/generateDebug.zpt
+${PLONE_BASE}/Archetypes/www/manageTemplates.zpt
+${PLONE_BASE}/Archetypes/www/manage_catalogs.zpt
+${PLONE_BASE}/Archetypes/www/migrationForm.zpt
+${PLONE_BASE}/Archetypes/www/registry.rng
+${PLONE_BASE}/Archetypes/www/registry.xml
+${PLONE_BASE}/Archetypes/www/registry_xml.zpt
+${PLONE_BASE}/Archetypes/www/schema.zpt
+${PLONE_BASE}/Archetypes/www/selectConnections.dtml
+${PLONE_BASE}/Archetypes/www/storages_xml.zpt
+${PLONE_BASE}/Archetypes/www/type_xml.zpt
+${PLONE_BASE}/Archetypes/www/types_xml.zpt
+${PLONE_BASE}/Archetypes/www/updateSchemaForm.zpt
+${PLONE_BASE}/Archetypes/www/validators_xml.zpt
+${PLONE_BASE}/Archetypes/www/viewContents.zpt
+${PLONE_BASE}/Archetypes/www/view_reference.zpt
+${PLONE_BASE}/Archetypes/www/widgets_xml.zpt
+${PLONE_BASE}/Archetypes/www/zmi/base_add.pt
+${PLONE_BASE}/Archetypes/www/zmi/base_edit.pt
+${PLONE_BASE}/Archetypes/www/zmi/icons/document_icon.gif
+${PLONE_BASE}/Archetypes/www/zmi/icons/folder_icon.gif
+${PLONE_BASE}/CMFActionIcons/ActionIconsTool.py
+${PLONE_BASE}/CMFActionIcons/ActionIconsTool.pyc
+${PLONE_BASE}/CMFActionIcons/DEPENDENCIES.txt
+${PLONE_BASE}/CMFActionIcons/README.txt
+${PLONE_BASE}/CMFActionIcons/__init__.py
+${PLONE_BASE}/CMFActionIcons/__init__.pyc
+${PLONE_BASE}/CMFActionIcons/configure.zcml
+${PLONE_BASE}/CMFActionIcons/exportimport.py
+${PLONE_BASE}/CMFActionIcons/exportimport.pyc
+${PLONE_BASE}/CMFActionIcons/interfaces/__init__.py
+${PLONE_BASE}/CMFActionIcons/interfaces/__init__.pyc
+${PLONE_BASE}/CMFActionIcons/interfaces/_tools.py
+${PLONE_BASE}/CMFActionIcons/interfaces/_tools.pyc
+${PLONE_BASE}/CMFActionIcons/permissions.py
+${PLONE_BASE}/CMFActionIcons/permissions.pyc
+${PLONE_BASE}/CMFActionIcons/profiles/actionicons/actionicons.xml
+${PLONE_BASE}/CMFActionIcons/profiles/actionicons/componentregistry.xml
+${PLONE_BASE}/CMFActionIcons/profiles/actionicons/export_steps.xml
+${PLONE_BASE}/CMFActionIcons/profiles/actionicons/import_steps.xml
+${PLONE_BASE}/CMFActionIcons/profiles/actionicons/skins.xml
+${PLONE_BASE}/CMFActionIcons/profiles/actionicons/toolset.xml
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/actionicons_macros.pt
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/approve_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/edit_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/expire_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/folder_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/metadata_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/policies_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/preview_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/reject_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/retract_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/submit_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/undo_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/user_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/worklist_icon.png
+${PLONE_BASE}/CMFActionIcons/skins/actionicons/yank_icon.png
+${PLONE_BASE}/CMFActionIcons/standard_mappings.py
+${PLONE_BASE}/CMFActionIcons/standard_mappings.pyc
+${PLONE_BASE}/CMFActionIcons/tests/__init__.py
+${PLONE_BASE}/CMFActionIcons/tests/__init__.pyc
+${PLONE_BASE}/CMFActionIcons/tests/test_ActionIconsTool.py
+${PLONE_BASE}/CMFActionIcons/tests/test_ActionIconsTool.pyc
+${PLONE_BASE}/CMFActionIcons/tests/test_exportimport.py
+${PLONE_BASE}/CMFActionIcons/tests/test_exportimport.pyc
+${PLONE_BASE}/CMFActionIcons/tool.gif
+${PLONE_BASE}/CMFActionIcons/version.txt
+${PLONE_BASE}/CMFActionIcons/www/aitEdit.zpt
+${PLONE_BASE}/CMFActionIcons/xml/aitExport.xml
+${PLONE_BASE}/CMFCalendar/CREDITS.txt
+${PLONE_BASE}/CMFCalendar/CalendarTool.py
+${PLONE_BASE}/CMFCalendar/CalendarTool.pyc
+${PLONE_BASE}/CMFCalendar/DEPENDENCIES.txt
+${PLONE_BASE}/CMFCalendar/Event.py
+${PLONE_BASE}/CMFCalendar/Event.pyc
+${PLONE_BASE}/CMFCalendar/README.txt
+${PLONE_BASE}/CMFCalendar/__init__.py
+${PLONE_BASE}/CMFCalendar/__init__.pyc
+${PLONE_BASE}/CMFCalendar/browser/__init__.py
+${PLONE_BASE}/CMFCalendar/browser/__init__.pyc
+${PLONE_BASE}/CMFCalendar/browser/calendartool.py
+${PLONE_BASE}/CMFCalendar/browser/calendartool.pyc
+${PLONE_BASE}/CMFCalendar/browser/configure.zcml
+${PLONE_BASE}/CMFCalendar/browser/event.py
+${PLONE_BASE}/CMFCalendar/browser/event.pyc
+${PLONE_BASE}/CMFCalendar/browser/event.txt
+${PLONE_BASE}/CMFCalendar/browser/templates/calendar_day.pt
+${PLONE_BASE}/CMFCalendar/browser/templates/calendar_widgets.pt
+${PLONE_BASE}/CMFCalendar/browser/tests.py
+${PLONE_BASE}/CMFCalendar/browser/tests.pyc
+${PLONE_BASE}/CMFCalendar/configure.zcml
+${PLONE_BASE}/CMFCalendar/exceptions.py
+${PLONE_BASE}/CMFCalendar/exceptions.pyc
+${PLONE_BASE}/CMFCalendar/interfaces/__init__.py
+${PLONE_BASE}/CMFCalendar/interfaces/__init__.pyc
+${PLONE_BASE}/CMFCalendar/interfaces/_content.py
+${PLONE_BASE}/CMFCalendar/interfaces/_content.pyc
+${PLONE_BASE}/CMFCalendar/interfaces/_tools.py
+${PLONE_BASE}/CMFCalendar/interfaces/_tools.pyc
+${PLONE_BASE}/CMFCalendar/locales/cmf_calendar-manual.pot
+${PLONE_BASE}/CMFCalendar/locales/cmf_calendar.pot
+${PLONE_BASE}/CMFCalendar/permissions.py
+${PLONE_BASE}/CMFCalendar/permissions.pyc
+${PLONE_BASE}/CMFCalendar/profiles/default/catalog.xml
+${PLONE_BASE}/CMFCalendar/profiles/default/import_steps.xml
+${PLONE_BASE}/CMFCalendar/profiles/default/toolset.xml
+${PLONE_BASE}/CMFCalendar/profiles/default/types/Event.xml
+${PLONE_BASE}/CMFCalendar/profiles/default/types.xml
+${PLONE_BASE}/CMFCalendar/profiles/skins_support/skins.xml
+${PLONE_BASE}/CMFCalendar/profiles/skins_support/types/Event.xml
+${PLONE_BASE}/CMFCalendar/setuphandlers.py
+${PLONE_BASE}/CMFCalendar/setuphandlers.pyc
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/CalendarStyle.css
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/calendarBox.pt
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/calendar_day_view.py
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/calendar_day_view_template.pt
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/event_edit_control.py
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/event_edit_form.py
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/event_edit_template.pt
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/event_icon.gif
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/event_view.py
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/event_view_template.pt
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/getDaysClass.py
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/getEndAsString.py
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/getMonthAndYear.py
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/getNextMonthLink.py
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/getPreviousMonthLink.py
+${PLONE_BASE}/CMFCalendar/skins/zpt_calendar/getStartAsString.py
+${PLONE_BASE}/CMFCalendar/testing.py
+${PLONE_BASE}/CMFCalendar/testing.pyc
+${PLONE_BASE}/CMFCalendar/tests/__init__.py
+${PLONE_BASE}/CMFCalendar/tests/__init__.pyc
+${PLONE_BASE}/CMFCalendar/tests/test_Calendar.py
+${PLONE_BASE}/CMFCalendar/tests/test_Calendar.pyc
+${PLONE_BASE}/CMFCalendar/tests/test_Event.py
+${PLONE_BASE}/CMFCalendar/tests/test_Event.pyc
+${PLONE_BASE}/CMFCalendar/tool.gif
+${PLONE_BASE}/CMFCalendar/utils.py
+${PLONE_BASE}/CMFCalendar/utils.pyc
+${PLONE_BASE}/CMFCalendar/version.txt
+${PLONE_BASE}/CMFCalendar/www/configureCalendarTool.zpt
+${PLONE_BASE}/CMFCalendar/www/explainCalendarTool.zpt
+${PLONE_BASE}/CMFCore/ActionInformation.py
+${PLONE_BASE}/CMFCore/ActionInformation.pyc
+${PLONE_BASE}/CMFCore/ActionProviderBase.py
+${PLONE_BASE}/CMFCore/ActionProviderBase.pyc
+${PLONE_BASE}/CMFCore/ActionsTool.py
+${PLONE_BASE}/CMFCore/ActionsTool.pyc
+${PLONE_BASE}/CMFCore/CMFBTreeFolder.py
+${PLONE_BASE}/CMFCore/CMFBTreeFolder.pyc
+${PLONE_BASE}/CMFCore/CMFCatalogAware.py
+${PLONE_BASE}/CMFCore/CMFCatalogAware.pyc
+${PLONE_BASE}/CMFCore/CachingPolicyManager.py
+${PLONE_BASE}/CMFCore/CachingPolicyManager.pyc
+${PLONE_BASE}/CMFCore/CatalogTool.py
+${PLONE_BASE}/CMFCore/CatalogTool.pyc
+${PLONE_BASE}/CMFCore/ContentTypeRegistry.py
+${PLONE_BASE}/CMFCore/ContentTypeRegistry.pyc
+${PLONE_BASE}/CMFCore/CookieCrumbler.py
+${PLONE_BASE}/CMFCore/CookieCrumbler.pyc
+${PLONE_BASE}/CMFCore/DEPENDENCIES.txt
+${PLONE_BASE}/CMFCore/DirectoryView.py
+${PLONE_BASE}/CMFCore/DirectoryView.pyc
+${PLONE_BASE}/CMFCore/DiscussionTool.py
+${PLONE_BASE}/CMFCore/DiscussionTool.pyc
+${PLONE_BASE}/CMFCore/DynamicType.py
+${PLONE_BASE}/CMFCore/DynamicType.pyc
+${PLONE_BASE}/CMFCore/Expression.py
+${PLONE_BASE}/CMFCore/Expression.pyc
+${PLONE_BASE}/CMFCore/Extensions/TestRecord.py
+${PLONE_BASE}/CMFCore/Extensions/TestRecord.pyc
+${PLONE_BASE}/CMFCore/Extensions/migrateToCMF21.py
+${PLONE_BASE}/CMFCore/Extensions/migrateToCMF21.pyc
+${PLONE_BASE}/CMFCore/FSDTMLMethod.py
+${PLONE_BASE}/CMFCore/FSDTMLMethod.pyc
+${PLONE_BASE}/CMFCore/FSFile.py
+${PLONE_BASE}/CMFCore/FSFile.pyc
+${PLONE_BASE}/CMFCore/FSImage.py
+${PLONE_BASE}/CMFCore/FSImage.pyc
+${PLONE_BASE}/CMFCore/FSMetadata.py
+${PLONE_BASE}/CMFCore/FSMetadata.pyc
+${PLONE_BASE}/CMFCore/FSObject.py
+${PLONE_BASE}/CMFCore/FSObject.pyc
+${PLONE_BASE}/CMFCore/FSPageTemplate.py
+${PLONE_BASE}/CMFCore/FSPageTemplate.pyc
+${PLONE_BASE}/CMFCore/FSPropertiesObject.py
+${PLONE_BASE}/CMFCore/FSPropertiesObject.pyc
+${PLONE_BASE}/CMFCore/FSPythonScript.py
+${PLONE_BASE}/CMFCore/FSPythonScript.pyc
+${PLONE_BASE}/CMFCore/FSReSTMethod.py
+${PLONE_BASE}/CMFCore/FSReSTMethod.pyc
+${PLONE_BASE}/CMFCore/FSSTXMethod.py
+${PLONE_BASE}/CMFCore/FSSTXMethod.pyc
+${PLONE_BASE}/CMFCore/FSZSQLMethod.py
+${PLONE_BASE}/CMFCore/FSZSQLMethod.pyc
+${PLONE_BASE}/CMFCore/MemberDataTool.py
+${PLONE_BASE}/CMFCore/MemberDataTool.pyc
+${PLONE_BASE}/CMFCore/MembershipTool.py
+${PLONE_BASE}/CMFCore/MembershipTool.pyc
+${PLONE_BASE}/CMFCore/PortalContent.py
+${PLONE_BASE}/CMFCore/PortalContent.pyc
+${PLONE_BASE}/CMFCore/PortalFolder.py
+${PLONE_BASE}/CMFCore/PortalFolder.pyc
+${PLONE_BASE}/CMFCore/PortalObject.py
+${PLONE_BASE}/CMFCore/PortalObject.pyc
+${PLONE_BASE}/CMFCore/README.txt
+${PLONE_BASE}/CMFCore/RegistrationTool.py
+${PLONE_BASE}/CMFCore/RegistrationTool.pyc
+${PLONE_BASE}/CMFCore/Skinnable.py
+${PLONE_BASE}/CMFCore/Skinnable.pyc
+${PLONE_BASE}/CMFCore/SkinsContainer.py
+${PLONE_BASE}/CMFCore/SkinsContainer.pyc
+${PLONE_BASE}/CMFCore/SkinsTool.py
+${PLONE_BASE}/CMFCore/SkinsTool.pyc
+${PLONE_BASE}/CMFCore/TypesTool.py
+${PLONE_BASE}/CMFCore/TypesTool.pyc
+${PLONE_BASE}/CMFCore/URLTool.py
+${PLONE_BASE}/CMFCore/URLTool.pyc
+${PLONE_BASE}/CMFCore/UndoTool.py
+${PLONE_BASE}/CMFCore/UndoTool.pyc
+${PLONE_BASE}/CMFCore/WorkflowCore.py
+${PLONE_BASE}/CMFCore/WorkflowCore.pyc
+${PLONE_BASE}/CMFCore/WorkflowTool.py
+${PLONE_BASE}/CMFCore/WorkflowTool.pyc
+${PLONE_BASE}/CMFCore/__init__.py
+${PLONE_BASE}/CMFCore/__init__.pyc
+${PLONE_BASE}/CMFCore/browser/__init__.py
+${PLONE_BASE}/CMFCore/browser/__init__.pyc
+${PLONE_BASE}/CMFCore/browser/actions.py
+${PLONE_BASE}/CMFCore/browser/actions.pyc
+${PLONE_BASE}/CMFCore/browser/configure.zcml
+${PLONE_BASE}/CMFCore/browser/globalbrowsermenuservice.py
+${PLONE_BASE}/CMFCore/browser/globalbrowsermenuservice.pyc
+${PLONE_BASE}/CMFCore/browser/meta.zcml
+${PLONE_BASE}/CMFCore/browser/typeinfo.py
+${PLONE_BASE}/CMFCore/browser/typeinfo.pyc
+${PLONE_BASE}/CMFCore/configure.zcml
+${PLONE_BASE}/CMFCore/content.zcml
+${PLONE_BASE}/CMFCore/dtml/addCC.dtml
+${PLONE_BASE}/CMFCore/dtml/addFSDirView.dtml
+${PLONE_BASE}/CMFCore/dtml/addInstance.dtml
+${PLONE_BASE}/CMFCore/dtml/cachingPolicies.dtml
+${PLONE_BASE}/CMFCore/dtml/catalogFind.dtml
+${PLONE_BASE}/CMFCore/dtml/configureRegistrationTool.dtml
+${PLONE_BASE}/CMFCore/dtml/custdtml.dtml
+${PLONE_BASE}/CMFCore/dtml/custfile.dtml
+${PLONE_BASE}/CMFCore/dtml/custimage.dtml
+${PLONE_BASE}/CMFCore/dtml/custprops.dtml
+${PLONE_BASE}/CMFCore/dtml/custpt.dtml
+${PLONE_BASE}/CMFCore/dtml/custpy.dtml
+${PLONE_BASE}/CMFCore/dtml/custstx.dtml
+${PLONE_BASE}/CMFCore/dtml/custzsql.dtml
+${PLONE_BASE}/CMFCore/dtml/dirview_properties.dtml
+${PLONE_BASE}/CMFCore/dtml/editToolsActions.dtml
+${PLONE_BASE}/CMFCore/dtml/explainActionsTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainCatalogTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainDiscussionTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainFiveActionsTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainMemberDataTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainMembershipTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainRegistrationTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainSkinsTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainTypesTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainURLTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainUndoTool.dtml
+${PLONE_BASE}/CMFCore/dtml/explainWorkflowTool.dtml
+${PLONE_BASE}/CMFCore/dtml/extensionWidget.dtml
+${PLONE_BASE}/CMFCore/dtml/findForm.dtml
+${PLONE_BASE}/CMFCore/dtml/findResult.dtml
+${PLONE_BASE}/CMFCore/dtml/majorMinorWidget.dtml
+${PLONE_BASE}/CMFCore/dtml/manageActionProviders.dtml
+${PLONE_BASE}/CMFCore/dtml/memberdataContents.dtml
+${PLONE_BASE}/CMFCore/dtml/membershipRolemapping.dtml
+${PLONE_BASE}/CMFCore/dtml/mimetypePredEdit.dtml
+${PLONE_BASE}/CMFCore/dtml/patternWidget.dtml
+${PLONE_BASE}/CMFCore/dtml/registryPredList.dtml
+${PLONE_BASE}/CMFCore/dtml/registryTest.dtml
+${PLONE_BASE}/CMFCore/dtml/selectWorkflows.dtml
+${PLONE_BASE}/CMFCore/dtml/skinProps.dtml
+${PLONE_BASE}/CMFCore/dtml/zmi_workflows.dtml
+${PLONE_BASE}/CMFCore/event.zcml
+${PLONE_BASE}/CMFCore/exceptions.py
+${PLONE_BASE}/CMFCore/exceptions.pyc
+${PLONE_BASE}/CMFCore/exportimport/__init__.py
+${PLONE_BASE}/CMFCore/exportimport/__init__.pyc
+${PLONE_BASE}/CMFCore/exportimport/actions.py
+${PLONE_BASE}/CMFCore/exportimport/actions.pyc
+${PLONE_BASE}/CMFCore/exportimport/cachingpolicymgr.py
+${PLONE_BASE}/CMFCore/exportimport/cachingpolicymgr.pyc
+${PLONE_BASE}/CMFCore/exportimport/catalog.py
+${PLONE_BASE}/CMFCore/exportimport/catalog.pyc
+${PLONE_BASE}/CMFCore/exportimport/configure.zcml
+${PLONE_BASE}/CMFCore/exportimport/content.py
+${PLONE_BASE}/CMFCore/exportimport/content.pyc
+${PLONE_BASE}/CMFCore/exportimport/contenttyperegistry.py
+${PLONE_BASE}/CMFCore/exportimport/contenttyperegistry.pyc
+${PLONE_BASE}/CMFCore/exportimport/cookieauth.py
+${PLONE_BASE}/CMFCore/exportimport/cookieauth.pyc
+${PLONE_BASE}/CMFCore/exportimport/mailhost.py
+${PLONE_BASE}/CMFCore/exportimport/mailhost.pyc
+${PLONE_BASE}/CMFCore/exportimport/properties.py
+${PLONE_BASE}/CMFCore/exportimport/properties.pyc
+${PLONE_BASE}/CMFCore/exportimport/skins.py
+${PLONE_BASE}/CMFCore/exportimport/skins.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/__init__.py
+${PLONE_BASE}/CMFCore/exportimport/tests/__init__.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/conformance.py
+${PLONE_BASE}/CMFCore/exportimport/tests/conformance.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/four/placeholder.txt
+${PLONE_BASE}/CMFCore/exportimport/tests/one/placeholder.txt
+${PLONE_BASE}/CMFCore/exportimport/tests/test_actions.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_actions.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_cachingpolicymgr.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_cachingpolicymgr.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_catalog.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_catalog.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_content.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_content.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_contenttyperegistry.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_contenttyperegistry.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_cookieauth.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_cookieauth.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_mailhost.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_mailhost.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_properties.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_properties.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_skins.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_skins.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_typeinfo.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_typeinfo.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/test_workflow.py
+${PLONE_BASE}/CMFCore/exportimport/tests/test_workflow.pyc
+${PLONE_BASE}/CMFCore/exportimport/tests/three/placeholder.txt
+${PLONE_BASE}/CMFCore/exportimport/tests/two/placeholder.txt
+${PLONE_BASE}/CMFCore/exportimport/typeinfo.py
+${PLONE_BASE}/CMFCore/exportimport/typeinfo.pyc
+${PLONE_BASE}/CMFCore/exportimport/workflow.py
+${PLONE_BASE}/CMFCore/exportimport/workflow.pyc
+${PLONE_BASE}/CMFCore/fiveactionstool.py
+${PLONE_BASE}/CMFCore/fiveactionstool.pyc
+${PLONE_BASE}/CMFCore/folderAdd.dtml
+${PLONE_BASE}/CMFCore/help/Actions.stx
+${PLONE_BASE}/CMFCore/help/CPMPolicies.stx
+${PLONE_BASE}/CMFCore/images/cmf_action.gif
+${PLONE_BASE}/CMFCore/images/cmf_action_category.gif
+${PLONE_BASE}/CMFCore/images/cookie.gif
+${PLONE_BASE}/CMFCore/images/dirview.gif
+${PLONE_BASE}/CMFCore/images/fsdtml.gif
+${PLONE_BASE}/CMFCore/images/fsfile.gif
+${PLONE_BASE}/CMFCore/images/fsimage.gif
+${PLONE_BASE}/CMFCore/images/fsprops.gif
+${PLONE_BASE}/CMFCore/images/fspt.gif
+${PLONE_BASE}/CMFCore/images/fspy.gif
+${PLONE_BASE}/CMFCore/images/fssqlmethod.gif
+${PLONE_BASE}/CMFCore/images/registry.gif
+${PLONE_BASE}/CMFCore/images/typeinfo.gif
+${PLONE_BASE}/CMFCore/interfaces/CachingPolicyManager.py
+${PLONE_BASE}/CMFCore/interfaces/CachingPolicyManager.pyc
+${PLONE_BASE}/CMFCore/interfaces/ContentTypeRegistry.py
+${PLONE_BASE}/CMFCore/interfaces/ContentTypeRegistry.pyc
+${PLONE_BASE}/CMFCore/interfaces/Contentish.py
+${PLONE_BASE}/CMFCore/interfaces/Contentish.pyc
+${PLONE_BASE}/CMFCore/interfaces/Discussions.py
+${PLONE_BASE}/CMFCore/interfaces/Discussions.pyc
+${PLONE_BASE}/CMFCore/interfaces/DublinCore.py
+${PLONE_BASE}/CMFCore/interfaces/DublinCore.pyc
+${PLONE_BASE}/CMFCore/interfaces/Dynamic.py
+${PLONE_BASE}/CMFCore/interfaces/Dynamic.pyc
+${PLONE_BASE}/CMFCore/interfaces/Folderish.py
+${PLONE_BASE}/CMFCore/interfaces/Folderish.pyc
+${PLONE_BASE}/CMFCore/interfaces/IOpaqueItems.py
+${PLONE_BASE}/CMFCore/interfaces/IOpaqueItems.pyc
+${PLONE_BASE}/CMFCore/interfaces/Syndicatable.py
+${PLONE_BASE}/CMFCore/interfaces/Syndicatable.pyc
+${PLONE_BASE}/CMFCore/interfaces/__init__.py
+${PLONE_BASE}/CMFCore/interfaces/__init__.pyc
+${PLONE_BASE}/CMFCore/interfaces/_content.py
+${PLONE_BASE}/CMFCore/interfaces/_content.pyc
+${PLONE_BASE}/CMFCore/interfaces/_events.py
+${PLONE_BASE}/CMFCore/interfaces/_events.pyc
+${PLONE_BASE}/CMFCore/interfaces/_tools.py
+${PLONE_BASE}/CMFCore/interfaces/_tools.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_actions.py
+${PLONE_BASE}/CMFCore/interfaces/portal_actions.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_catalog.py
+${PLONE_BASE}/CMFCore/interfaces/portal_catalog.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_discussion.py
+${PLONE_BASE}/CMFCore/interfaces/portal_discussion.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_memberdata.py
+${PLONE_BASE}/CMFCore/interfaces/portal_memberdata.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_membership.py
+${PLONE_BASE}/CMFCore/interfaces/portal_membership.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_metadata.py
+${PLONE_BASE}/CMFCore/interfaces/portal_metadata.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_properties.py
+${PLONE_BASE}/CMFCore/interfaces/portal_properties.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_registration.py
+${PLONE_BASE}/CMFCore/interfaces/portal_registration.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_skins.py
+${PLONE_BASE}/CMFCore/interfaces/portal_skins.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_types.py
+${PLONE_BASE}/CMFCore/interfaces/portal_types.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_undo.py
+${PLONE_BASE}/CMFCore/interfaces/portal_undo.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_url.py
+${PLONE_BASE}/CMFCore/interfaces/portal_url.pyc
+${PLONE_BASE}/CMFCore/interfaces/portal_workflow.py
+${PLONE_BASE}/CMFCore/interfaces/portal_workflow.pyc
+${PLONE_BASE}/CMFCore/meta.zcml
+${PLONE_BASE}/CMFCore/overrides.zcml
+${PLONE_BASE}/CMFCore/permissions.py
+${PLONE_BASE}/CMFCore/permissions.pyc
+${PLONE_BASE}/CMFCore/src/__init__.py
+${PLONE_BASE}/CMFCore/src/__init__.pyc
+${PLONE_BASE}/CMFCore/src/five/EXTERNALS.txt
+${PLONE_BASE}/CMFCore/src/five/__init__.py
+${PLONE_BASE}/CMFCore/src/five/__init__.pyc
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/__init__.py
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/__init__.pyc
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/browser.py
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/browser.pyc
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/browser.txt
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/components.pt
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/configure.zcml
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/localsitemanager.txt
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/overrides.zcml
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/registry.py
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/registry.pyc
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/tests.py
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/tests.pyc
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/utils.py
+${PLONE_BASE}/CMFCore/src/five/localsitemanager/utils.pyc
+${PLONE_BASE}/CMFCore/testing.py
+${PLONE_BASE}/CMFCore/testing.pyc
+${PLONE_BASE}/CMFCore/testing.zcml
+${PLONE_BASE}/CMFCore/tests/__init__.py
+${PLONE_BASE}/CMFCore/tests/__init__.pyc
+${PLONE_BASE}/CMFCore/tests/base/__init__.py
+${PLONE_BASE}/CMFCore/tests/base/__init__.pyc
+${PLONE_BASE}/CMFCore/tests/base/content.py
+${PLONE_BASE}/CMFCore/tests/base/content.pyc
+${PLONE_BASE}/CMFCore/tests/base/dummy.py
+${PLONE_BASE}/CMFCore/tests/base/dummy.pyc
+${PLONE_BASE}/CMFCore/tests/base/security.py
+${PLONE_BASE}/CMFCore/tests/base/security.pyc
+${PLONE_BASE}/CMFCore/tests/base/testcase.py
+${PLONE_BASE}/CMFCore/tests/base/testcase.pyc
+${PLONE_BASE}/CMFCore/tests/base/tidata.py
+${PLONE_BASE}/CMFCore/tests/base/tidata.pyc
+${PLONE_BASE}/CMFCore/tests/base/utils.py
+${PLONE_BASE}/CMFCore/tests/base/utils.pyc
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/nested_view.zpt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/nested_view_1.zpt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/nested_view_2.dtml
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/nested_view_2.zpt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/output_page_1.zpt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/output_page_2.zpt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/output_page_3.dtml
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/output_page_4.dtml
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test1.py
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test4.py
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test4.py.security
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test5.py
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test6.py
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test6.py.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testDTML.dtml
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testDTML.dtml.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testDTML_CPM3.dtml
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT.pt.properties
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT2.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT2.pt.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT3.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT3.pt.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT4.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT4.pt.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT_CPM1.zpt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT_CPM2.zpt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT_multiline_python_dos.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT_multiline_python_mac.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT_multiline_python_unix.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPT_utf8.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testPTbad.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testReST.rst
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testReST.rst.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testSTX.stx
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testSTX.stx.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testUtf8.js
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testXMLPT.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_directory/directorytest.pt
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_directory/directorytest.pt.properties
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_directory.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_dos.py
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_dtml.dtml
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_dtml.dtml.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_file.swf
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_file.swf.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_file_two.swf
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_file_two.swf.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_image.gif
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_image.gif.metadata
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_mac.py
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_manual_ignore.py
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_manual_ignore.pyc
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_props.props
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_unix.py
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_warn.py
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_warn.pyc
+${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/testsql.zsql
+${PLONE_BASE}/CMFCore/tests/fiveactions.zcml
+${PLONE_BASE}/CMFCore/tests/test_ActionInformation.py
+${PLONE_BASE}/CMFCore/tests/test_ActionInformation.pyc
+${PLONE_BASE}/CMFCore/tests/test_ActionProviderBase.py
+${PLONE_BASE}/CMFCore/tests/test_ActionProviderBase.pyc
+${PLONE_BASE}/CMFCore/tests/test_ActionsTool.py
+${PLONE_BASE}/CMFCore/tests/test_ActionsTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_CMFBTreeFolder.py
+${PLONE_BASE}/CMFCore/tests/test_CMFBTreeFolder.pyc
+${PLONE_BASE}/CMFCore/tests/test_CMFCatalogAware.py
+${PLONE_BASE}/CMFCore/tests/test_CMFCatalogAware.pyc
+${PLONE_BASE}/CMFCore/tests/test_CachingPolicyManager.py
+${PLONE_BASE}/CMFCore/tests/test_CachingPolicyManager.pyc
+${PLONE_BASE}/CMFCore/tests/test_CatalogTool.py
+${PLONE_BASE}/CMFCore/tests/test_CatalogTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_ContentTypeRegistry.py
+${PLONE_BASE}/CMFCore/tests/test_ContentTypeRegistry.pyc
+${PLONE_BASE}/CMFCore/tests/test_CookieCrumbler.py
+${PLONE_BASE}/CMFCore/tests/test_CookieCrumbler.pyc
+${PLONE_BASE}/CMFCore/tests/test_DirectoryView.py
+${PLONE_BASE}/CMFCore/tests/test_DirectoryView.pyc
+${PLONE_BASE}/CMFCore/tests/test_DiscussionTool.py
+${PLONE_BASE}/CMFCore/tests/test_DiscussionTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_DynamicType.py
+${PLONE_BASE}/CMFCore/tests/test_DynamicType.pyc
+${PLONE_BASE}/CMFCore/tests/test_Expression.py
+${PLONE_BASE}/CMFCore/tests/test_Expression.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSDTMLMethod.py
+${PLONE_BASE}/CMFCore/tests/test_FSDTMLMethod.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSFile.py
+${PLONE_BASE}/CMFCore/tests/test_FSFile.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSImage.py
+${PLONE_BASE}/CMFCore/tests/test_FSImage.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSMetadata.py
+${PLONE_BASE}/CMFCore/tests/test_FSMetadata.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSPageTemplate.py
+${PLONE_BASE}/CMFCore/tests/test_FSPageTemplate.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSPropertiesObject.py
+${PLONE_BASE}/CMFCore/tests/test_FSPropertiesObject.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSPythonScript.py
+${PLONE_BASE}/CMFCore/tests/test_FSPythonScript.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSReSTMethod.py
+${PLONE_BASE}/CMFCore/tests/test_FSReSTMethod.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSSTXMethod.py
+${PLONE_BASE}/CMFCore/tests/test_FSSTXMethod.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSSecurity.py
+${PLONE_BASE}/CMFCore/tests/test_FSSecurity.pyc
+${PLONE_BASE}/CMFCore/tests/test_FSZSQLMethod.py
+${PLONE_BASE}/CMFCore/tests/test_FSZSQLMethod.pyc
+${PLONE_BASE}/CMFCore/tests/test_MemberDataTool.py
+${PLONE_BASE}/CMFCore/tests/test_MemberDataTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_MembershipTool.py
+${PLONE_BASE}/CMFCore/tests/test_MembershipTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_OpaqueItems.py
+${PLONE_BASE}/CMFCore/tests/test_OpaqueItems.pyc
+${PLONE_BASE}/CMFCore/tests/test_PortalContent.py
+${PLONE_BASE}/CMFCore/tests/test_PortalContent.pyc
+${PLONE_BASE}/CMFCore/tests/test_PortalFolder.py
+${PLONE_BASE}/CMFCore/tests/test_PortalFolder.pyc
+${PLONE_BASE}/CMFCore/tests/test_RegistrationTool.py
+${PLONE_BASE}/CMFCore/tests/test_RegistrationTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_SkinsTool.py
+${PLONE_BASE}/CMFCore/tests/test_SkinsTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_TypesTool.py
+${PLONE_BASE}/CMFCore/tests/test_TypesTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_URLTool.py
+${PLONE_BASE}/CMFCore/tests/test_URLTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_UndoTool.py
+${PLONE_BASE}/CMFCore/tests/test_UndoTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_WorkflowTool.py
+${PLONE_BASE}/CMFCore/tests/test_WorkflowTool.pyc
+${PLONE_BASE}/CMFCore/tests/test_fiveactionstool.py
+${PLONE_BASE}/CMFCore/tests/test_fiveactionstool.pyc
+${PLONE_BASE}/CMFCore/tests/test_utils.py
+${PLONE_BASE}/CMFCore/tests/test_utils.pyc
+${PLONE_BASE}/CMFCore/tests/test_zcml.py
+${PLONE_BASE}/CMFCore/tests/test_zcml.pyc
+${PLONE_BASE}/CMFCore/tool.gif
+${PLONE_BASE}/CMFCore/tool.zcml
+${PLONE_BASE}/CMFCore/utils.py
+${PLONE_BASE}/CMFCore/utils.pyc
+${PLONE_BASE}/CMFCore/version.txt
+${PLONE_BASE}/CMFCore/www/cpsDiff.pt
+${PLONE_BASE}/CMFCore/www/typeinfoAliases.zpt
+${PLONE_BASE}/CMFCore/www/typesAliases.zpt
+${PLONE_BASE}/CMFCore/zcml.py
+${PLONE_BASE}/CMFCore/zcml.pyc
+${PLONE_BASE}/CMFDefault/DEPENDENCIES.txt
+${PLONE_BASE}/CMFDefault/DefaultWorkflow.py
+${PLONE_BASE}/CMFDefault/DefaultWorkflow.pyc
+${PLONE_BASE}/CMFDefault/DiscussionItem.py
+${PLONE_BASE}/CMFDefault/DiscussionItem.pyc
+${PLONE_BASE}/CMFDefault/DiscussionTool.py
+${PLONE_BASE}/CMFDefault/DiscussionTool.pyc
+${PLONE_BASE}/CMFDefault/Document.py
+${PLONE_BASE}/CMFDefault/Document.pyc
+${PLONE_BASE}/CMFDefault/DublinCore.py
+${PLONE_BASE}/CMFDefault/DublinCore.pyc
+${PLONE_BASE}/CMFDefault/Extensions/Upgrade.py
+${PLONE_BASE}/CMFDefault/Extensions/Upgrade.pyc
+${PLONE_BASE}/CMFDefault/Extensions/fix_cmf_permissions.py
+${PLONE_BASE}/CMFDefault/Extensions/fix_cmf_permissions.pyc
+${PLONE_BASE}/CMFDefault/Extensions/migrate_ptk.py
+${PLONE_BASE}/CMFDefault/Extensions/migrate_ptk.pyc
+${PLONE_BASE}/CMFDefault/Extensions/update_catalogIndexes.py
+${PLONE_BASE}/CMFDefault/Extensions/update_catalogIndexes.pyc
+${PLONE_BASE}/CMFDefault/Extensions/update_discussion.py
+${PLONE_BASE}/CMFDefault/Extensions/update_discussion.pyc
+${PLONE_BASE}/CMFDefault/Favorite.py
+${PLONE_BASE}/CMFDefault/Favorite.pyc
+${PLONE_BASE}/CMFDefault/File.py
+${PLONE_BASE}/CMFDefault/File.pyc
+${PLONE_BASE}/CMFDefault/Image.py
+${PLONE_BASE}/CMFDefault/Image.pyc
+${PLONE_BASE}/CMFDefault/Link.py
+${PLONE_BASE}/CMFDefault/Link.pyc
+${PLONE_BASE}/CMFDefault/MembershipTool.py
+${PLONE_BASE}/CMFDefault/MembershipTool.pyc
+${PLONE_BASE}/CMFDefault/MetadataTool.py
+${PLONE_BASE}/CMFDefault/MetadataTool.pyc
+${PLONE_BASE}/CMFDefault/NewsItem.py
+${PLONE_BASE}/CMFDefault/NewsItem.pyc
+${PLONE_BASE}/CMFDefault/Portal.py
+${PLONE_BASE}/CMFDefault/Portal.pyc
+${PLONE_BASE}/CMFDefault/PropertiesTool.py
+${PLONE_BASE}/CMFDefault/PropertiesTool.pyc
+${PLONE_BASE}/CMFDefault/README.txt
+${PLONE_BASE}/CMFDefault/RegistrationTool.py
+${PLONE_BASE}/CMFDefault/RegistrationTool.pyc
+${PLONE_BASE}/CMFDefault/SkinnedFolder.py
+${PLONE_BASE}/CMFDefault/SkinnedFolder.pyc
+${PLONE_BASE}/CMFDefault/SyndicationInfo.py
+${PLONE_BASE}/CMFDefault/SyndicationInfo.pyc
+${PLONE_BASE}/CMFDefault/SyndicationTool.py
+${PLONE_BASE}/CMFDefault/SyndicationTool.pyc
+${PLONE_BASE}/CMFDefault/URLTool.py
+${PLONE_BASE}/CMFDefault/URLTool.pyc
+${PLONE_BASE}/CMFDefault/__init__.py
+${PLONE_BASE}/CMFDefault/__init__.pyc
+${PLONE_BASE}/CMFDefault/browser/README.txt
+${PLONE_BASE}/CMFDefault/browser/TODO.txt
+${PLONE_BASE}/CMFDefault/browser/__init__.py
+${PLONE_BASE}/CMFDefault/browser/__init__.pyc
+${PLONE_BASE}/CMFDefault/browser/configure.zcml
+${PLONE_BASE}/CMFDefault/browser/document.py
+${PLONE_BASE}/CMFDefault/browser/document.pyc
+${PLONE_BASE}/CMFDefault/browser/document.txt
+${PLONE_BASE}/CMFDefault/browser/favorite.py
+${PLONE_BASE}/CMFDefault/browser/favorite.pyc
+${PLONE_BASE}/CMFDefault/browser/file.py
+${PLONE_BASE}/CMFDefault/browser/file.pyc
+${PLONE_BASE}/CMFDefault/browser/folder.py
+${PLONE_BASE}/CMFDefault/browser/folder.pyc
+${PLONE_BASE}/CMFDefault/browser/folder.txt
+${PLONE_BASE}/CMFDefault/browser/link.py
+${PLONE_BASE}/CMFDefault/browser/link.pyc
+${PLONE_BASE}/CMFDefault/browser/metadata.py
+${PLONE_BASE}/CMFDefault/browser/metadata.pyc
+${PLONE_BASE}/CMFDefault/browser/metadata.txt
+${PLONE_BASE}/CMFDefault/browser/newsitem.py
+${PLONE_BASE}/CMFDefault/browser/newsitem.pyc
+${PLONE_BASE}/CMFDefault/browser/templates/batch_widgets.pt
+${PLONE_BASE}/CMFDefault/browser/templates/document.pt
+${PLONE_BASE}/CMFDefault/browser/templates/folder.pt
+${PLONE_BASE}/CMFDefault/browser/templates/folder_contents.pt
+${PLONE_BASE}/CMFDefault/browser/templates/form_widgets.pt
+${PLONE_BASE}/CMFDefault/browser/templates/link.pt
+${PLONE_BASE}/CMFDefault/browser/tests.py
+${PLONE_BASE}/CMFDefault/browser/tests.pyc
+${PLONE_BASE}/CMFDefault/browser/utils.py
+${PLONE_BASE}/CMFDefault/browser/utils.pyc
+${PLONE_BASE}/CMFDefault/configure.zcml
+${PLONE_BASE}/CMFDefault/content.zcml
+${PLONE_BASE}/CMFDefault/directories.zcml
+${PLONE_BASE}/CMFDefault/dtml/explainDiscussionTool.dtml
+${PLONE_BASE}/CMFDefault/dtml/explainMembershipTool.dtml
+${PLONE_BASE}/CMFDefault/dtml/explainMetadataTool.dtml
+${PLONE_BASE}/CMFDefault/dtml/explainPropertiesTool.dtml
+${PLONE_BASE}/CMFDefault/dtml/membershipRolemapping.dtml
+${PLONE_BASE}/CMFDefault/dtml/metadataElementPolicies.dtml
+${PLONE_BASE}/CMFDefault/dtml/metadataProperties.dtml
+${PLONE_BASE}/CMFDefault/dtml/synOverview.dtml
+${PLONE_BASE}/CMFDefault/dtml/synPolicies.dtml
+${PLONE_BASE}/CMFDefault/dtml/synProps.dtml
+${PLONE_BASE}/CMFDefault/dtml/synReports.dtml
+${PLONE_BASE}/CMFDefault/dtml/zmi_editDocument.dtml
+${PLONE_BASE}/CMFDefault/dtml/zmi_editLink.dtml
+${PLONE_BASE}/CMFDefault/dtml/zmi_metadata.dtml
+${PLONE_BASE}/CMFDefault/exceptions.py
+${PLONE_BASE}/CMFDefault/exceptions.pyc
+${PLONE_BASE}/CMFDefault/factory.py
+${PLONE_BASE}/CMFDefault/factory.pyc
+${PLONE_BASE}/CMFDefault/formlib/__init__.py
+${PLONE_BASE}/CMFDefault/formlib/__init__.pyc
+${PLONE_BASE}/CMFDefault/formlib/configure.zcml
+${PLONE_BASE}/CMFDefault/formlib/editform.pt
+${PLONE_BASE}/CMFDefault/formlib/form.py
+${PLONE_BASE}/CMFDefault/formlib/form.pyc
+${PLONE_BASE}/CMFDefault/formlib/schema.py
+${PLONE_BASE}/CMFDefault/formlib/schema.pyc
+${PLONE_BASE}/CMFDefault/formlib/schema.txt
+${PLONE_BASE}/CMFDefault/formlib/tests.py
+${PLONE_BASE}/CMFDefault/formlib/tests.pyc
+${PLONE_BASE}/CMFDefault/formlib/viewform.pt
+${PLONE_BASE}/CMFDefault/formlib/vocabulary.py
+${PLONE_BASE}/CMFDefault/formlib/vocabulary.pyc
+${PLONE_BASE}/CMFDefault/formlib/widgets.py
+${PLONE_BASE}/CMFDefault/formlib/widgets.pyc
+${PLONE_BASE}/CMFDefault/formlib/widgets.txt
+${PLONE_BASE}/CMFDefault/help/ActorDefinitions.stx
+${PLONE_BASE}/CMFDefault/help/Actor_ContentCreator.stx
+${PLONE_BASE}/CMFDefault/help/Actor_MembershipManager.stx
+${PLONE_BASE}/CMFDefault/help/Actor_Reviewer.stx
+${PLONE_BASE}/CMFDefault/help/Actor_SiteDesigner.stx
+${PLONE_BASE}/CMFDefault/help/Actor_SiteManager.stx
+${PLONE_BASE}/CMFDefault/help/Actor_SiteVisitor.stx
+${PLONE_BASE}/CMFDefault/help/AddContentFolders.stx
+${PLONE_BASE}/CMFDefault/help/ApproveForPublication.stx
+${PLONE_BASE}/CMFDefault/help/BecomeAMember.stx
+${PLONE_BASE}/CMFDefault/help/BrowseCMFSiteHomepage.stx
+${PLONE_BASE}/CMFDefault/help/BrowseNewsItems.stx
+${PLONE_BASE}/CMFDefault/help/BrowseSubmittedForReview.stx
+${PLONE_BASE}/CMFDefault/help/ChangeContent.stx
+${PLONE_BASE}/CMFDefault/help/ConfigureCMFSite.stx
+${PLONE_BASE}/CMFDefault/help/ConfigurePersonalization.stx
+${PLONE_BASE}/CMFDefault/help/CreateCMFFolder.stx
+${PLONE_BASE}/CMFDefault/help/CreateCMFSite.stx
+${PLONE_BASE}/CMFDefault/help/CreateCMFTopic.stx
+${PLONE_BASE}/CMFDefault/help/CreateNewContent.stx
+${PLONE_BASE}/CMFDefault/help/LoginAsMember.stx
+${PLONE_BASE}/CMFDefault/help/ManageLocalRoles.stx
+${PLONE_BASE}/CMFDefault/help/MoveCopyContent.stx
+${PLONE_BASE}/CMFDefault/help/ProvideFeedback.stx
+${PLONE_BASE}/CMFDefault/help/RemoveContent.stx
+${PLONE_BASE}/CMFDefault/help/RenameContent.stx
+${PLONE_BASE}/CMFDefault/help/SearchCMFSite.stx
+${PLONE_BASE}/CMFDefault/help/SubmitContentForPublication.stx
+${PLONE_BASE}/CMFDefault/help/Syndication-Tool_Overview.stx
+${PLONE_BASE}/CMFDefault/help/Syndication-Tool_Policies.stx
+${PLONE_BASE}/CMFDefault/help/Syndication-Tool_Properties.stx
+${PLONE_BASE}/CMFDefault/help/Syndication-Tool_Reporting.stx
+${PLONE_BASE}/CMFDefault/help/TODO.stx
+${PLONE_BASE}/CMFDefault/help/UndoChanges.stx
+${PLONE_BASE}/CMFDefault/help/UnpublishContent.stx
+${PLONE_BASE}/CMFDefault/help/ViewMyContent.stx
+${PLONE_BASE}/CMFDefault/images/portal.gif
+${PLONE_BASE}/CMFDefault/images/workflow.gif
+${PLONE_BASE}/CMFDefault/interfaces/Document.py
+${PLONE_BASE}/CMFDefault/interfaces/Document.pyc
+${PLONE_BASE}/CMFDefault/interfaces/__init__.py
+${PLONE_BASE}/CMFDefault/interfaces/__init__.pyc
+${PLONE_BASE}/CMFDefault/interfaces/_content.py
+${PLONE_BASE}/CMFDefault/interfaces/_content.pyc
+${PLONE_BASE}/CMFDefault/interfaces/_tools.py
+${PLONE_BASE}/CMFDefault/interfaces/_tools.pyc
+${PLONE_BASE}/CMFDefault/interfaces/portal_membership.py
+${PLONE_BASE}/CMFDefault/interfaces/portal_membership.pyc
+${PLONE_BASE}/CMFDefault/locales/cmf_default-manual.pot
+${PLONE_BASE}/CMFDefault/locales/cmf_default.pot
+${PLONE_BASE}/CMFDefault/permissions.py
+${PLONE_BASE}/CMFDefault/permissions.pyc
+${PLONE_BASE}/CMFDefault/profiles/default/actions.xml
+${PLONE_BASE}/CMFDefault/profiles/default/cachingpolicymgr.xml
+${PLONE_BASE}/CMFDefault/profiles/default/catalog.xml
+${PLONE_BASE}/CMFDefault/profiles/default/componentregistry.xml
+${PLONE_BASE}/CMFDefault/profiles/default/contenttyperegistry.xml
+${PLONE_BASE}/CMFDefault/profiles/default/cookieauth.xml
+${PLONE_BASE}/CMFDefault/profiles/default/export_steps.xml
+${PLONE_BASE}/CMFDefault/profiles/default/import_steps.xml
+${PLONE_BASE}/CMFDefault/profiles/default/mailhost.xml
+${PLONE_BASE}/CMFDefault/profiles/default/properties.xml
+${PLONE_BASE}/CMFDefault/profiles/default/rolemap.xml
+${PLONE_BASE}/CMFDefault/profiles/default/skins/custom.xml
+${PLONE_BASE}/CMFDefault/profiles/default/skins.xml
+${PLONE_BASE}/CMFDefault/profiles/default/toolset.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types/CMF_BTree_Folder.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types/Discussion_Item.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types/Document.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types/Favorite.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types/File.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types/Folder.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types/Image.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types/Link.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types/News_Item.xml
+${PLONE_BASE}/CMFDefault/profiles/default/types.xml
+${PLONE_BASE}/CMFDefault/profiles/default/workflows/default_workflow/definition.xml
+${PLONE_BASE}/CMFDefault/profiles/default/workflows.xml
+${PLONE_BASE}/CMFDefault/profiles/sample_content/export_steps.xml
+${PLONE_BASE}/CMFDefault/profiles/sample_content/import_steps.xml
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/.objects
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/.preserve
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/.properties
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/subfolder/.objects
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/subfolder/.properties
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/subfolder/a_link
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/subfolder/binary_file.tgz
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/subfolder/binary_image.png
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/subfolder/html_document
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/subfolder/some_news
+${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/subfolder/stx_document
+${PLONE_BASE}/CMFDefault/profiles/views_support/types/CMF_BTree_Folder.xml
+${PLONE_BASE}/CMFDefault/profiles/views_support/types/Document.xml
+${PLONE_BASE}/CMFDefault/profiles/views_support/types/Favorite.xml
+${PLONE_BASE}/CMFDefault/profiles/views_support/types/File.xml
+${PLONE_BASE}/CMFDefault/profiles/views_support/types/Folder.xml
+${PLONE_BASE}/CMFDefault/profiles/views_support/types/Image.xml
+${PLONE_BASE}/CMFDefault/profiles/views_support/types/Link.xml
+${PLONE_BASE}/CMFDefault/profiles/views_support/types/News_Item.xml
+${PLONE_BASE}/CMFDefault/profiles.zcml
+${PLONE_BASE}/CMFDefault/setuphandlers.py
+${PLONE_BASE}/CMFDefault/setuphandlers.pyc
+${PLONE_BASE}/CMFDefault/skin/__init__.py
+${PLONE_BASE}/CMFDefault/skin/__init__.pyc
+${PLONE_BASE}/CMFDefault/skin/configure.zcml
+${PLONE_BASE}/CMFDefault/skin/five_template.pt
+${PLONE_BASE}/CMFDefault/skins/Images/UpFolder_icon.gif
+${PLONE_BASE}/CMFDefault/skins/Images/Zope_logo.gif
+${PLONE_BASE}/CMFDefault/skins/Images/c.gif
+${PLONE_BASE}/CMFDefault/skins/Images/go.gif
+${PLONE_BASE}/CMFDefault/skins/Images/logo.jpg
+${PLONE_BASE}/CMFDefault/skins/Images/logo.png
+${PLONE_BASE}/CMFDefault/skins/Images/spacer.gif
+${PLONE_BASE}/CMFDefault/skins/Images/tinyzope.jpg
+${PLONE_BASE}/CMFDefault/skins/zpt_content/aboveInThread.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/content_hide_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/content_publish_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/content_reject_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/content_retract_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/content_show_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/content_status_history.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/content_status_modify.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/content_status_modify.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_content/content_submit_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/discussionitem_icon.gif
+${PLONE_BASE}/CMFDefault/skins/zpt_content/discussionitem_view.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/discussionitem_view_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/document_edit_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/document_edit_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/document_edit_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/document_icon.gif
+${PLONE_BASE}/CMFDefault/skins/zpt_content/document_view.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/document_view_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/favorite_view.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/file_edit_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/file_edit_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/file_edit_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/file_icon.gif
+${PLONE_BASE}/CMFDefault/skins/zpt_content/file_view.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/file_view_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/folder_edit_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/folder_edit_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/folder_edit_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/folder_icon.gif
+${PLONE_BASE}/CMFDefault/skins/zpt_content/folder_view.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/getBaseTag.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/image_edit_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/image_edit_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/image_edit_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/image_icon.gif
+${PLONE_BASE}/CMFDefault/skins/zpt_content/image_view.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/image_view_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/link_edit_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/link_edit_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/link_edit_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/link_icon.gif
+${PLONE_BASE}/CMFDefault/skins/zpt_content/link_view.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/link_view_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/metadata_edit_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/metadata_edit_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/metadata_edit_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/newsitem_edit_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/newsitem_edit_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/newsitem_edit_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/newsitem_icon.gif
+${PLONE_BASE}/CMFDefault/skins/zpt_content/newsitem_view.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/source_html.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/transition_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_content/validateHTML.py
+${PLONE_BASE}/CMFDefault/skins/zpt_content/validateTextFile.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/addtoFavorites.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/addtoFavorites.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_control/change_password.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/disableSyndication.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/editSynProperties.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/enableSyndication.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/finish_portal_construction.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_add_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_bottom_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_copy_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_cut_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_delete_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_down_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_localrole_edit.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_localrole_edit.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_paste_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_rename_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_sort_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_top_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/folder_up_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/logout.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/mail_password.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/members_add_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/members_delete_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/personalize.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/portal_config_control.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/setRedirect.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/setStatus.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/undo.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/undo.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_control/validateClipboardData.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/validateId.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/validateItemIds.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/validateMemberIds.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/validatePassword.py
+${PLONE_BASE}/CMFDefault/skins/zpt_control/validateType.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/RSS.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/RSS_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/TitleOrId.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/batch_widgets.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/breadcrumbs.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/clearCookie.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/clearCookie.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/content_byline.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/discitem_delete.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/discitem_delete.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/discussion_reply.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/discussion_reply.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/discussion_reply_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/discussion_reply_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/expanded_title.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/filterCookie.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/filterCookie.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/folder_contents.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/folder_contents_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/folder_factories.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/folder_factories_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/folder_filter_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/folder_localrole_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/folder_rename_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/folder_rename_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/form_widgets.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/getBatchItemInfos.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/getBatchNavigation.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/getMainGlobals.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/get_permalink.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/index_html.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/index_html_categorized.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/index_html_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/index_html_utils.html
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/join_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/join_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/logged_in.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/logged_in_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/logged_out.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/login_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/mail_password_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/mail_password_response.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/main_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/members_delete_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/members_delete_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/members_manage_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/members_manage_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/metadata_help.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/news_box.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/news_box_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/password_email.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/password_email_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/password_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/password_form_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/permalink.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/personalize_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/publishItems.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/publishItems.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/recent_news.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/recent_news_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/reconfig_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/reconfig_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/registered_email.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/registered_email_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/rejectItems.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/rejectItems.pyc
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/review.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/roster.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/rssDisabled.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/search.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/search_form.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/search_form_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/search_results_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/setup_talkback_tree.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/standard_error_message.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/stxmethod_view.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/synPropertiesForm.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/synPropertiesForm_template.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/talkback_tree.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/truncID.py
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/undo_form.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/viewThreadsAtBottom.pt
+${PLONE_BASE}/CMFDefault/skins/zpt_generic/zpt_stylesheet.css
+${PLONE_BASE}/CMFDefault/testing.py
+${PLONE_BASE}/CMFDefault/testing.pyc
+${PLONE_BASE}/CMFDefault/tests/RegistrationTool.txt
+${PLONE_BASE}/CMFDefault/tests/TestFile.swf
+${PLONE_BASE}/CMFDefault/tests/TestImage.jpg
+${PLONE_BASE}/CMFDefault/tests/__init__.py
+${PLONE_BASE}/CMFDefault/tests/__init__.pyc
+${PLONE_BASE}/CMFDefault/tests/test_DefaultWorkflow.py
+${PLONE_BASE}/CMFDefault/tests/test_DefaultWorkflow.pyc
+${PLONE_BASE}/CMFDefault/tests/test_DiscussionReply.py
+${PLONE_BASE}/CMFDefault/tests/test_DiscussionReply.pyc
+${PLONE_BASE}/CMFDefault/tests/test_DiscussionTool.py
+${PLONE_BASE}/CMFDefault/tests/test_DiscussionTool.pyc
+${PLONE_BASE}/CMFDefault/tests/test_Discussions.py
+${PLONE_BASE}/CMFDefault/tests/test_Discussions.pyc
+${PLONE_BASE}/CMFDefault/tests/test_Document.py
+${PLONE_BASE}/CMFDefault/tests/test_Document.pyc
+${PLONE_BASE}/CMFDefault/tests/test_DublinCore.py
+${PLONE_BASE}/CMFDefault/tests/test_DublinCore.pyc
+${PLONE_BASE}/CMFDefault/tests/test_Favorite.py
+${PLONE_BASE}/CMFDefault/tests/test_Favorite.pyc
+${PLONE_BASE}/CMFDefault/tests/test_File.py
+${PLONE_BASE}/CMFDefault/tests/test_File.pyc
+${PLONE_BASE}/CMFDefault/tests/test_Image.py
+${PLONE_BASE}/CMFDefault/tests/test_Image.pyc
+${PLONE_BASE}/CMFDefault/tests/test_Link.py
+${PLONE_BASE}/CMFDefault/tests/test_Link.pyc
+${PLONE_BASE}/CMFDefault/tests/test_MembershipTool.py
+${PLONE_BASE}/CMFDefault/tests/test_MembershipTool.pyc
+${PLONE_BASE}/CMFDefault/tests/test_MetadataTool.py
+${PLONE_BASE}/CMFDefault/tests/test_MetadataTool.pyc
+${PLONE_BASE}/CMFDefault/tests/test_NewsItem.py
+${PLONE_BASE}/CMFDefault/tests/test_NewsItem.pyc
+${PLONE_BASE}/CMFDefault/tests/test_Portal.py
+${PLONE_BASE}/CMFDefault/tests/test_Portal.pyc
+${PLONE_BASE}/CMFDefault/tests/test_PropertiesTool.py
+${PLONE_BASE}/CMFDefault/tests/test_PropertiesTool.pyc
+${PLONE_BASE}/CMFDefault/tests/test_RegistrationTool.py
+${PLONE_BASE}/CMFDefault/tests/test_RegistrationTool.pyc
+${PLONE_BASE}/CMFDefault/tests/test_SkinnedFolder.py
+${PLONE_BASE}/CMFDefault/tests/test_SkinnedFolder.pyc
+${PLONE_BASE}/CMFDefault/tests/test_SyndicationTool.py
+${PLONE_BASE}/CMFDefault/tests/test_SyndicationTool.pyc
+${PLONE_BASE}/CMFDefault/tests/test_join.py
+${PLONE_BASE}/CMFDefault/tests/test_join.pyc
+${PLONE_BASE}/CMFDefault/tests/test_utils.py
+${PLONE_BASE}/CMFDefault/tests/test_utils.pyc
+${PLONE_BASE}/CMFDefault/tool.gif
+${PLONE_BASE}/CMFDefault/utils.py
+${PLONE_BASE}/CMFDefault/utils.pyc
+${PLONE_BASE}/CMFDefault/version.txt
+${PLONE_BASE}/CMFDefault/www/siteAddForm.zpt
+${PLONE_BASE}/CMFDiffTool/ATCompoundDiff.py
+${PLONE_BASE}/CMFDiffTool/ATCompoundDiff.pyc
+${PLONE_BASE}/CMFDiffTool/BaseDiff.py
+${PLONE_BASE}/CMFDiffTool/BaseDiff.pyc
+${PLONE_BASE}/CMFDiffTool/BinaryDiff.py
+${PLONE_BASE}/CMFDiffTool/BinaryDiff.pyc
+${PLONE_BASE}/CMFDiffTool/CMFDTHtmlDiff.py
+${PLONE_BASE}/CMFDiffTool/CMFDTHtmlDiff.pyc
+${PLONE_BASE}/CMFDiffTool/CMFDiffTool.py
+${PLONE_BASE}/CMFDiffTool/CMFDiffTool.pyc
+${PLONE_BASE}/CMFDiffTool/CREDITS.txt
+${PLONE_BASE}/CMFDiffTool/ChangeSet.py
+${PLONE_BASE}/CMFDiffTool/ChangeSet.pyc
+${PLONE_BASE}/CMFDiffTool/FieldDiff.py
+${PLONE_BASE}/CMFDiffTool/FieldDiff.pyc
+${PLONE_BASE}/CMFDiffTool/HISTORY.txt
+${PLONE_BASE}/CMFDiffTool/INSTALL.txt
+${PLONE_BASE}/CMFDiffTool/LICENSE.GPL
+${PLONE_BASE}/CMFDiffTool/LICENSE.txt
+${PLONE_BASE}/CMFDiffTool/ListDiff.py
+${PLONE_BASE}/CMFDiffTool/ListDiff.pyc
+${PLONE_BASE}/CMFDiffTool/TextDiff.py
+${PLONE_BASE}/CMFDiffTool/TextDiff.pyc
+${PLONE_BASE}/CMFDiffTool/__init__.py
+${PLONE_BASE}/CMFDiffTool/__init__.pyc
+${PLONE_BASE}/CMFDiffTool/configure.zcml
+${PLONE_BASE}/CMFDiffTool/exportimport/__init__.py
+${PLONE_BASE}/CMFDiffTool/exportimport/__init__.pyc
+${PLONE_BASE}/CMFDiffTool/exportimport/configure.zcml
+${PLONE_BASE}/CMFDiffTool/exportimport/difftool.py
+${PLONE_BASE}/CMFDiffTool/exportimport/difftool.pyc
+${PLONE_BASE}/CMFDiffTool/interfaces/IChangeSet.py
+${PLONE_BASE}/CMFDiffTool/interfaces/IChangeSet.pyc
+${PLONE_BASE}/CMFDiffTool/interfaces/__init__.py
+${PLONE_BASE}/CMFDiffTool/interfaces/__init__.pyc
+${PLONE_BASE}/CMFDiffTool/interfaces/portal_diff.py
+${PLONE_BASE}/CMFDiffTool/interfaces/portal_diff.pyc
+${PLONE_BASE}/CMFDiffTool/libs/__init__.py
+${PLONE_BASE}/CMFDiffTool/libs/__init__.pyc
+${PLONE_BASE}/CMFDiffTool/libs/htmldiff.py
+${PLONE_BASE}/CMFDiffTool/libs/htmldiff.pyc
+${PLONE_BASE}/CMFDiffTool/profiles/default/componentregistry.xml
+${PLONE_BASE}/CMFDiffTool/profiles/default/export_steps.xml
+${PLONE_BASE}/CMFDiffTool/profiles/default/import_steps.xml
+${PLONE_BASE}/CMFDiffTool/profiles/default/skins.xml
+${PLONE_BASE}/CMFDiffTool/profiles/default/toolset.xml
+${PLONE_BASE}/CMFDiffTool/profiles/default/types/ChangeSet.xml
+${PLONE_BASE}/CMFDiffTool/profiles/default/types.xml
+${PLONE_BASE}/CMFDiffTool/profiles.zcml
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/at_changeset.pt
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/changeset.png
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/changeset_edit.py
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/changeset_edit.pyc
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/changeset_edit_form.pt
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/changeset_view.pt
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/diffSpliter.py
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/diff_widgets.pt
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/getIgnoreFields.py
+${PLONE_BASE}/CMFDiffTool/skins/ChangeSet/view_changeset.py
+${PLONE_BASE}/CMFDiffTool/tests/BaseTestCase.py
+${PLONE_BASE}/CMFDiffTool/tests/BaseTestCase.pyc
+${PLONE_BASE}/CMFDiffTool/tests/__init__.py
+${PLONE_BASE}/CMFDiffTool/tests/__init__.pyc
+${PLONE_BASE}/CMFDiffTool/tests/testChangeSet.py
+${PLONE_BASE}/CMFDiffTool/tests/testChangeSet.pyc
+${PLONE_BASE}/CMFDiffTool/tests/testDiffTool.py
+${PLONE_BASE}/CMFDiffTool/tests/testDiffTool.pyc
+${PLONE_BASE}/CMFDiffTool/tests/testFieldDiff.py
+${PLONE_BASE}/CMFDiffTool/tests/testFieldDiff.pyc
+${PLONE_BASE}/CMFDiffTool/tests/testListDiff.py
+${PLONE_BASE}/CMFDiffTool/tests/testListDiff.pyc
+${PLONE_BASE}/CMFDiffTool/tool.gif
+${PLONE_BASE}/CMFDiffTool/version.txt
+${PLONE_BASE}/CMFDiffTool/zpt/editCMFDiffTool.zpt
+${PLONE_BASE}/CMFDynamicViewFTI/HISTORY.txt
+${PLONE_BASE}/CMFDynamicViewFTI/__init__.py
+${PLONE_BASE}/CMFDynamicViewFTI/__init__.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/browser/__init__.py
+${PLONE_BASE}/CMFDynamicViewFTI/browser/__init__.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/browser/addWithPresettings.pt
+${PLONE_BASE}/CMFDynamicViewFTI/browser/typeinfo.py
+${PLONE_BASE}/CMFDynamicViewFTI/browser/typeinfo.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/browserdefault.py
+${PLONE_BASE}/CMFDynamicViewFTI/browserdefault.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/configure.zcml
+${PLONE_BASE}/CMFDynamicViewFTI/fti.py
+${PLONE_BASE}/CMFDynamicViewFTI/fti.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/images/typeinfo.gif
+${PLONE_BASE}/CMFDynamicViewFTI/interface/__init__.py
+${PLONE_BASE}/CMFDynamicViewFTI/interface/__init__.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/interface/_base.py
+${PLONE_BASE}/CMFDynamicViewFTI/interface/_base.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/interfaces.py
+${PLONE_BASE}/CMFDynamicViewFTI/interfaces.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/permissions.py
+${PLONE_BASE}/CMFDynamicViewFTI/permissions.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/profiles/sample_types/types/DynDocument.xml
+${PLONE_BASE}/CMFDynamicViewFTI/profiles/sample_types/types/DynFolder.xml
+${PLONE_BASE}/CMFDynamicViewFTI/profiles/sample_types/types.xml
+${PLONE_BASE}/CMFDynamicViewFTI/tests/CMFDVFTITestCase.py
+${PLONE_BASE}/CMFDynamicViewFTI/tests/CMFDVFTITestCase.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/tests/__init__.py
+${PLONE_BASE}/CMFDynamicViewFTI/tests/__init__.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/tests/browserdefault.zcml
+${PLONE_BASE}/CMFDynamicViewFTI/tests/test_browserdefault.py
+${PLONE_BASE}/CMFDynamicViewFTI/tests/test_browserdefault.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/tests/test_fti.py
+${PLONE_BASE}/CMFDynamicViewFTI/tests/test_fti.pyc
+${PLONE_BASE}/CMFDynamicViewFTI/version.txt
+${PLONE_BASE}/CMFEditions/ArchivistTool.py
+${PLONE_BASE}/CMFEditions/ArchivistTool.pyc
+${PLONE_BASE}/CMFEditions/CHANGES.txt
+${PLONE_BASE}/CMFEditions/CREDITS.txt
+${PLONE_BASE}/CMFEditions/CopyModifyMergeRepositoryTool.py
+${PLONE_BASE}/CMFEditions/CopyModifyMergeRepositoryTool.pyc
+${PLONE_BASE}/CMFEditions/DEPENDENCIES.txt
+${PLONE_BASE}/CMFEditions/KeepLastNVersionsTool.py
+${PLONE_BASE}/CMFEditions/KeepLastNVersionsTool.pyc
+${PLONE_BASE}/CMFEditions/ModifierRegistryTool.py
+${PLONE_BASE}/CMFEditions/ModifierRegistryTool.pyc
+${PLONE_BASE}/CMFEditions/Modifiers.py
+${PLONE_BASE}/CMFEditions/Modifiers.pyc
+${PLONE_BASE}/CMFEditions/Permissions.py
+${PLONE_BASE}/CMFEditions/Permissions.pyc
+${PLONE_BASE}/CMFEditions/README.txt
+${PLONE_BASE}/CMFEditions/ReferenceFactoriesTool.py
+${PLONE_BASE}/CMFEditions/ReferenceFactoriesTool.pyc
+${PLONE_BASE}/CMFEditions/StandardModifiers.py
+${PLONE_BASE}/CMFEditions/StandardModifiers.pyc
+${PLONE_BASE}/CMFEditions/StorageMigrationSupport.py
+${PLONE_BASE}/CMFEditions/StorageMigrationSupport.pyc
+${PLONE_BASE}/CMFEditions/UniqueIdHandlerTool.py
+${PLONE_BASE}/CMFEditions/UniqueIdHandlerTool.pyc
+${PLONE_BASE}/CMFEditions/VersionPolicies.py
+${PLONE_BASE}/CMFEditions/VersionPolicies.pyc
+${PLONE_BASE}/CMFEditions/ZVCStorageTool.py
+${PLONE_BASE}/CMFEditions/ZVCStorageTool.pyc
+${PLONE_BASE}/CMFEditions/__init__.py
+${PLONE_BASE}/CMFEditions/__init__.pyc
+${PLONE_BASE}/CMFEditions/configure.zcml
+${PLONE_BASE}/CMFEditions/doc/DevelDoc.html
+${PLONE_BASE}/CMFEditions/doc/DevelDoc.txt
+${PLONE_BASE}/CMFEditions/doc/InteractionDiagram.dia
+${PLONE_BASE}/CMFEditions/doc/ToDo.txt
+${PLONE_BASE}/CMFEditions/doc/architecture.pdf
+${PLONE_BASE}/CMFEditions/doc/docutils.conf
+${PLONE_BASE}/CMFEditions/doc/img/InteractionDiagram.png
+${PLONE_BASE}/CMFEditions/doc/img/architecture.gif
+${PLONE_BASE}/CMFEditions/doc/img/architecture600dpi.gif
+${PLONE_BASE}/CMFEditions/doc/img/areas.gif
+${PLONE_BASE}/CMFEditions/doc/img/areas600dpi.gif
+${PLONE_BASE}/CMFEditions/doc/old/MultisiteTool.stx
+${PLONE_BASE}/CMFEditions/doc/old/PLIP8Feedback.stx
+${PLONE_BASE}/CMFEditions/doc/old/Proposal.txt
+${PLONE_BASE}/CMFEditions/doc/old/StagingVersioningUseCases.stx
+${PLONE_BASE}/CMFEditions/doc/old/ToDo.txt
+${PLONE_BASE}/CMFEditions/doc/presentations/EPC2005_CMFEditions.sxi
+${PLONE_BASE}/CMFEditions/doc/presentations/EPC2006_CMFEditions.sxi
+${PLONE_BASE}/CMFEditions/doc/presentations/PloneConf2005_CMFEditions.sxi
+${PLONE_BASE}/CMFEditions/doc/references.txt
+${PLONE_BASE}/CMFEditions/exportimport/__init__.py
+${PLONE_BASE}/CMFEditions/exportimport/__init__.pyc
+${PLONE_BASE}/CMFEditions/exportimport/configure.zcml
+${PLONE_BASE}/CMFEditions/exportimport/repository.py
+${PLONE_BASE}/CMFEditions/exportimport/repository.pyc
+${PLONE_BASE}/CMFEditions/interfaces/IArchivist.py
+${PLONE_BASE}/CMFEditions/interfaces/IArchivist.pyc
+${PLONE_BASE}/CMFEditions/interfaces/IModifier.py
+${PLONE_BASE}/CMFEditions/interfaces/IModifier.pyc
+${PLONE_BASE}/CMFEditions/interfaces/IPurgePolicy.py
+${PLONE_BASE}/CMFEditions/interfaces/IPurgePolicy.pyc
+${PLONE_BASE}/CMFEditions/interfaces/IReferenceFactories.py
+${PLONE_BASE}/CMFEditions/interfaces/IReferenceFactories.pyc
+${PLONE_BASE}/CMFEditions/interfaces/IRepository.py
+${PLONE_BASE}/CMFEditions/interfaces/IRepository.pyc
+${PLONE_BASE}/CMFEditions/interfaces/IStorage.py
+${PLONE_BASE}/CMFEditions/interfaces/IStorage.pyc
+${PLONE_BASE}/CMFEditions/interfaces/IVersionPolicy.py
+${PLONE_BASE}/CMFEditions/interfaces/IVersionPolicy.pyc
+${PLONE_BASE}/CMFEditions/interfaces/__init__.py
+${PLONE_BASE}/CMFEditions/interfaces/__init__.pyc
+${PLONE_BASE}/CMFEditions/interfaces/_tools.py
+${PLONE_BASE}/CMFEditions/interfaces/_tools.pyc
+${PLONE_BASE}/CMFEditions/profiles/default/actionicons.xml
+${PLONE_BASE}/CMFEditions/profiles/default/actions.xml
+${PLONE_BASE}/CMFEditions/profiles/default/cmfeditions_various.txt
+${PLONE_BASE}/CMFEditions/profiles/default/export_steps.xml
+${PLONE_BASE}/CMFEditions/profiles/default/import_steps.xml
+${PLONE_BASE}/CMFEditions/profiles/default/repositorytool.xml
+${PLONE_BASE}/CMFEditions/profiles/default/rolemap.xml
+${PLONE_BASE}/CMFEditions/profiles/default/skins.xml
+${PLONE_BASE}/CMFEditions/profiles/default/toolset.xml
+${PLONE_BASE}/CMFEditions/profiles.zcml
+${PLONE_BASE}/CMFEditions/setuphandlers.py
+${PLONE_BASE}/CMFEditions/setuphandlers.pyc
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/checkUpToDate.py
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/compare.css.dtml
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/createTestHierarchy.py
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/diff_legend.pt
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/edit_macros.pt
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/getVersionDiff.py
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/get_cmfeditions_ftests.py
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/get_macros.py
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/migrateStorage.py
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/revertversion.py
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/saveasnewversion.py
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/saveasnewversion.pyc
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/update_version_before_edit.cpy
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/update_version_before_edit.cpy.metadata
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/update_version_on_edit.cpy
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/update_version_on_edit.cpy.metadata
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/version_diff.pt
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/versioning.gif
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/versioning_config.py
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/versioning_config.pyc
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/versioning_config_form.pt
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/versions_history.pt
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/versions_history_form.pt
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/versions_history_form.pt.metadata
+${PLONE_BASE}/CMFEditions/skins/CMFEditions/versions_history_form.pt.vds
+${PLONE_BASE}/CMFEditions/skins/cmfeditions_views/file_download_version.py
+${PLONE_BASE}/CMFEditions/skins/cmfeditions_views/version_file_view.pt
+${PLONE_BASE}/CMFEditions/skins/cmfeditions_views/version_image_tag.py
+${PLONE_BASE}/CMFEditions/skins/cmfeditions_views/version_image_view.pt
+${PLONE_BASE}/CMFEditions/skins/cmfeditions_views/version_metadata_view.pt
+${PLONE_BASE}/CMFEditions/tests/DummyTools.py
+${PLONE_BASE}/CMFEditions/tests/DummyTools.pyc
+${PLONE_BASE}/CMFEditions/tests/FAQ/Extensions/Install.py
+${PLONE_BASE}/CMFEditions/tests/FAQ/Extensions/Install.pyc
+${PLONE_BASE}/CMFEditions/tests/FAQ/FAQ.py
+${PLONE_BASE}/CMFEditions/tests/FAQ/FAQ.pyc
+${PLONE_BASE}/CMFEditions/tests/FAQ/FAQQuestion.py
+${PLONE_BASE}/CMFEditions/tests/FAQ/FAQQuestion.pyc
+${PLONE_BASE}/CMFEditions/tests/FAQ/__init__.py
+${PLONE_BASE}/CMFEditions/tests/FAQ/__init__.pyc
+${PLONE_BASE}/CMFEditions/tests/FAQ/model/FAQ.odm
+${PLONE_BASE}/CMFEditions/tests/FAQ/skins/faq/faq_view.pt
+${PLONE_BASE}/CMFEditions/tests/FAQ/skins/faq/readme.txt
+${PLONE_BASE}/CMFEditions/tests/FAQ/skins/faq_public/readme.txt
+${PLONE_BASE}/CMFEditions/tests/FAQ/version.txt
+${PLONE_BASE}/CMFEditions/tests/__init__.py
+${PLONE_BASE}/CMFEditions/tests/__init__.pyc
+${PLONE_BASE}/CMFEditions/tests/images/Image1_v0.gif
+${PLONE_BASE}/CMFEditions/tests/images/Image1_v1.gif
+${PLONE_BASE}/CMFEditions/tests/images/Image1_v2.gif
+${PLONE_BASE}/CMFEditions/tests/images/Image1_v3.gif
+${PLONE_BASE}/CMFEditions/tests/images/Image2_v0.gif
+${PLONE_BASE}/CMFEditions/tests/images/Image2_v1.gif
+${PLONE_BASE}/CMFEditions/tests/images/Image2_v2.gif
+${PLONE_BASE}/CMFEditions/tests/images/Image2_v3.gif
+${PLONE_BASE}/CMFEditions/tests/images/img1.png
+${PLONE_BASE}/CMFEditions/tests/images/img2.png
+${PLONE_BASE}/CMFEditions/tests/large_file_modifiers.txt
+${PLONE_BASE}/CMFEditions/tests/test_ATContentTypes.py
+${PLONE_BASE}/CMFEditions/tests/test_ATContentTypes.pyc
+${PLONE_BASE}/CMFEditions/tests/test_ATReferences.py
+${PLONE_BASE}/CMFEditions/tests/test_ATReferences.pyc
+${PLONE_BASE}/CMFEditions/tests/test_ArchivistTool.py
+${PLONE_BASE}/CMFEditions/tests/test_ArchivistTool.pyc
+${PLONE_BASE}/CMFEditions/tests/test_ContentTypes.py
+${PLONE_BASE}/CMFEditions/tests/test_ContentTypes.pyc
+${PLONE_BASE}/CMFEditions/tests/test_CopyModifyMergeRepositoryTool.py
+${PLONE_BASE}/CMFEditions/tests/test_CopyModifyMergeRepositoryTool.pyc
+${PLONE_BASE}/CMFEditions/tests/test_FAQ.py
+${PLONE_BASE}/CMFEditions/tests/test_FAQ.pyc
+${PLONE_BASE}/CMFEditions/tests/test_IntegrationTests.py
+${PLONE_BASE}/CMFEditions/tests/test_IntegrationTests.pyc
+${PLONE_BASE}/CMFEditions/tests/test_KeepLastNVersionsTool.py
+${PLONE_BASE}/CMFEditions/tests/test_KeepLastNVersionsTool.pyc
+${PLONE_BASE}/CMFEditions/tests/test_ModifierRegistryTool.py
+${PLONE_BASE}/CMFEditions/tests/test_ModifierRegistryTool.pyc
+${PLONE_BASE}/CMFEditions/tests/test_ZVCStorageTool.py
+${PLONE_BASE}/CMFEditions/tests/test_ZVCStorageTool.pyc
+${PLONE_BASE}/CMFEditions/tests/test_doctests.py
+${PLONE_BASE}/CMFEditions/tests/test_doctests.pyc
+${PLONE_BASE}/CMFEditions/tool.gif
+${PLONE_BASE}/CMFEditions/utilities.py
+${PLONE_BASE}/CMFEditions/utilities.pyc
+${PLONE_BASE}/CMFEditions/version.txt
+${PLONE_BASE}/CMFEditions/www/AbortVersioningOfLargeFilesAndImagesAddForm.pt
+${PLONE_BASE}/CMFEditions/www/NotRetainATRefsModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/OMInsideChildrensModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/OMOutsideChildrensModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/RetainATRefsModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/RetainPermissionsSettingsModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/RetainUIDsModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/RetainWorkflowStateAndHistoryModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/SaveFileDataInFileTypeByReferenceModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/SillyDemoRetrieveModifier.pt
+${PLONE_BASE}/CMFEditions/www/SillyDemoRetrieveModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/SkipVersioningOfLargeFilesAndImagesAddForm.pt
+${PLONE_BASE}/CMFEditions/www/fieldModifierEditForm.pt
+${PLONE_BASE}/CMFEditions/www/modifier.gif
+${PLONE_BASE}/CMFEditions/www/modifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/modifierEditForm.pt
+${PLONE_BASE}/CMFEditions/www/storageStatistics.pt
+${PLONE_BASE}/CMFEditions/www/talesModifierAddForm.pt
+${PLONE_BASE}/CMFEditions/www/talesModifierEditForm.pt
+${PLONE_BASE}/CMFFormController/Actions/BaseFormAction.py
+${PLONE_BASE}/CMFFormController/Actions/BaseFormAction.pyc
+${PLONE_BASE}/CMFFormController/Actions/IFormAction.py
+${PLONE_BASE}/CMFFormController/Actions/IFormAction.pyc
+${PLONE_BASE}/CMFFormController/Actions/RedirectTo.py
+${PLONE_BASE}/CMFFormController/Actions/RedirectTo.pyc
+${PLONE_BASE}/CMFFormController/Actions/RedirectToAction.py
+${PLONE_BASE}/CMFFormController/Actions/RedirectToAction.pyc
+${PLONE_BASE}/CMFFormController/Actions/TraverseTo.py
+${PLONE_BASE}/CMFFormController/Actions/TraverseTo.pyc
+${PLONE_BASE}/CMFFormController/Actions/TraverseToAction.py
+${PLONE_BASE}/CMFFormController/Actions/TraverseToAction.pyc
+${PLONE_BASE}/CMFFormController/Actions/__init__.py
+${PLONE_BASE}/CMFFormController/Actions/__init__.pyc
+${PLONE_BASE}/CMFFormController/BaseControllerPageTemplate.py
+${PLONE_BASE}/CMFFormController/BaseControllerPageTemplate.pyc
+${PLONE_BASE}/CMFFormController/ControllerBase.py
+${PLONE_BASE}/CMFFormController/ControllerBase.pyc
+${PLONE_BASE}/CMFFormController/ControllerPageTemplate.py
+${PLONE_BASE}/CMFFormController/ControllerPageTemplate.pyc
+${PLONE_BASE}/CMFFormController/ControllerPageTemplateFile.py
+${PLONE_BASE}/CMFFormController/ControllerPageTemplateFile.pyc
+${PLONE_BASE}/CMFFormController/ControllerPythonScript.py
+${PLONE_BASE}/CMFFormController/ControllerPythonScript.pyc
+${PLONE_BASE}/CMFFormController/ControllerState.py
+${PLONE_BASE}/CMFFormController/ControllerState.pyc
+${PLONE_BASE}/CMFFormController/ControllerValidator.py
+${PLONE_BASE}/CMFFormController/ControllerValidator.pyc
+${PLONE_BASE}/CMFFormController/FSControllerBase.py
+${PLONE_BASE}/CMFFormController/FSControllerBase.pyc
+${PLONE_BASE}/CMFFormController/FSControllerPageTemplate.py
+${PLONE_BASE}/CMFFormController/FSControllerPageTemplate.pyc
+${PLONE_BASE}/CMFFormController/FSControllerPythonScript.py
+${PLONE_BASE}/CMFFormController/FSControllerPythonScript.pyc
+${PLONE_BASE}/CMFFormController/FSControllerValidator.py
+${PLONE_BASE}/CMFFormController/FSControllerValidator.pyc
+${PLONE_BASE}/CMFFormController/FormAction.py
+${PLONE_BASE}/CMFFormController/FormAction.pyc
+${PLONE_BASE}/CMFFormController/FormController.py
+${PLONE_BASE}/CMFFormController/FormController.pyc
+${PLONE_BASE}/CMFFormController/FormValidator.py
+${PLONE_BASE}/CMFFormController/FormValidator.pyc
+${PLONE_BASE}/CMFFormController/HISTORY.txt
+${PLONE_BASE}/CMFFormController/Key.py
+${PLONE_BASE}/CMFFormController/Key.pyc
+${PLONE_BASE}/CMFFormController/Script.py
+${PLONE_BASE}/CMFFormController/Script.pyc
+${PLONE_BASE}/CMFFormController/ValidationError.py
+${PLONE_BASE}/CMFFormController/ValidationError.pyc
+${PLONE_BASE}/CMFFormController/__init__.py
+${PLONE_BASE}/CMFFormController/__init__.pyc
+${PLONE_BASE}/CMFFormController/config.py
+${PLONE_BASE}/CMFFormController/config.pyc
+${PLONE_BASE}/CMFFormController/configure.zcml
+${PLONE_BASE}/CMFFormController/exportimport/__init__.py
+${PLONE_BASE}/CMFFormController/exportimport/__init__.pyc
+${PLONE_BASE}/CMFFormController/exportimport/configure.zcml
+${PLONE_BASE}/CMFFormController/exportimport/controllerpythonscript.py
+${PLONE_BASE}/CMFFormController/exportimport/controllerpythonscript.pyc
+${PLONE_BASE}/CMFFormController/exportimport/controllervalidator.py
+${PLONE_BASE}/CMFFormController/exportimport/controllervalidator.pyc
+${PLONE_BASE}/CMFFormController/exportimport/formcontroller.py
+${PLONE_BASE}/CMFFormController/exportimport/formcontroller.pyc
+${PLONE_BASE}/CMFFormController/exportimport/xml/fcExport.xml
+${PLONE_BASE}/CMFFormController/globalVars.py
+${PLONE_BASE}/CMFFormController/globalVars.pyc
+${PLONE_BASE}/CMFFormController/interfaces.py
+${PLONE_BASE}/CMFFormController/interfaces.pyc
+${PLONE_BASE}/CMFFormController/profiles/default/toolset.xml
+${PLONE_BASE}/CMFFormController/profiles.zcml
+${PLONE_BASE}/CMFFormController/tests/__init__.py
+${PLONE_BASE}/CMFFormController/tests/__init__.pyc
+${PLONE_BASE}/CMFFormController/tests/testCopyRename.py
+${PLONE_BASE}/CMFFormController/tests/testCopyRename.pyc
+${PLONE_BASE}/CMFFormController/tests/test_exportimport.py
+${PLONE_BASE}/CMFFormController/tests/test_exportimport.pyc
+${PLONE_BASE}/CMFFormController/tool.gif
+${PLONE_BASE}/CMFFormController/utils.py
+${PLONE_BASE}/CMFFormController/utils.pyc
+${PLONE_BASE}/CMFFormController/version.txt
+${PLONE_BASE}/CMFFormController/www/cpt.gif
+${PLONE_BASE}/CMFFormController/www/cptAdd.zpt
+${PLONE_BASE}/CMFFormController/www/cpy.gif
+${PLONE_BASE}/CMFFormController/www/cpyAdd.zpt
+${PLONE_BASE}/CMFFormController/www/default.html
+${PLONE_BASE}/CMFFormController/www/default_cpy
+${PLONE_BASE}/CMFFormController/www/default_vpy
+${PLONE_BASE}/CMFFormController/www/docs.stx
+${PLONE_BASE}/CMFFormController/www/manage_docs.zpt
+${PLONE_BASE}/CMFFormController/www/manage_formActionsForm.zpt
+${PLONE_BASE}/CMFFormController/www/manage_formValidatorsForm.zpt
+${PLONE_BASE}/CMFFormController/www/manage_overview.zpt
+${PLONE_BASE}/CMFFormController/www/manage_purgeForm.zpt
+${PLONE_BASE}/CMFFormController/www/vpy.gif
+${PLONE_BASE}/CMFFormController/www/vpyAdd.zpt
+${PLONE_BASE}/CMFPlacefulWorkflow/ABOUT
+${PLONE_BASE}/CMFPlacefulWorkflow/CHANGES
+${PLONE_BASE}/CMFPlacefulWorkflow/DefaultWorkflowPolicy.py
+${PLONE_BASE}/CMFPlacefulWorkflow/DefaultWorkflowPolicy.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/Extensions/Install.py
+${PLONE_BASE}/CMFPlacefulWorkflow/Extensions/Install.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/INSTALL.txt
+${PLONE_BASE}/CMFPlacefulWorkflow/LICENSE
+${PLONE_BASE}/CMFPlacefulWorkflow/Log.py
+${PLONE_BASE}/CMFPlacefulWorkflow/Log.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/MAINTENANCE_BRANCH.txt
+${PLONE_BASE}/CMFPlacefulWorkflow/PlacefulWorkflowTool.py
+${PLONE_BASE}/CMFPlacefulWorkflow/PlacefulWorkflowTool.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/README.txt
+${PLONE_BASE}/CMFPlacefulWorkflow/TESTED_WITH
+${PLONE_BASE}/CMFPlacefulWorkflow/TODO.txt
+${PLONE_BASE}/CMFPlacefulWorkflow/WorkflowPolicyConfig.py
+${PLONE_BASE}/CMFPlacefulWorkflow/WorkflowPolicyConfig.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/__init__.py
+${PLONE_BASE}/CMFPlacefulWorkflow/__init__.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/configure.zcml
+${PLONE_BASE}/CMFPlacefulWorkflow/doc/FAQ
+${PLONE_BASE}/CMFPlacefulWorkflow/doc/SCREENSHOTS
+${PLONE_BASE}/CMFPlacefulWorkflow/doc/icon.png
+${PLONE_BASE}/CMFPlacefulWorkflow/doc/readme.txt
+${PLONE_BASE}/CMFPlacefulWorkflow/doc/workflow_policy.png
+${PLONE_BASE}/CMFPlacefulWorkflow/dtml/addWorkflowPolicy.dtml
+${PLONE_BASE}/CMFPlacefulWorkflow/dtml/addWorkflowPolicyConfig_form.dtml
+${PLONE_BASE}/CMFPlacefulWorkflow/dtml/defineLocalWorkflowPolicy.dtml
+${PLONE_BASE}/CMFPlacefulWorkflow/dtml/explainWorkflowPolicy.dtml
+${PLONE_BASE}/CMFPlacefulWorkflow/dtml/manageWorkflowPolicyConfig.dtml
+${PLONE_BASE}/CMFPlacefulWorkflow/dtml/selectWorkflows.dtml
+${PLONE_BASE}/CMFPlacefulWorkflow/global_symbols.py
+${PLONE_BASE}/CMFPlacefulWorkflow/global_symbols.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/images/workflow_policy.gif
+${PLONE_BASE}/CMFPlacefulWorkflow/implements.zcml
+${PLONE_BASE}/CMFPlacefulWorkflow/interfaces/PlacefulWorkflow.py
+${PLONE_BASE}/CMFPlacefulWorkflow/interfaces/PlacefulWorkflow.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/interfaces/WorkflowPolicyDefinition.py
+${PLONE_BASE}/CMFPlacefulWorkflow/interfaces/WorkflowPolicyDefinition.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/interfaces/__init__.py
+${PLONE_BASE}/CMFPlacefulWorkflow/interfaces/__init__.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/interfaces/portal_placeful_workflow.py
+${PLONE_BASE}/CMFPlacefulWorkflow/interfaces/portal_placeful_workflow.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/messagefactory_.py
+${PLONE_BASE}/CMFPlacefulWorkflow/messagefactory_.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/patches/__init__.py
+${PLONE_BASE}/CMFPlacefulWorkflow/patches/__init__.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/patches/workflowtoolPatch.py
+${PLONE_BASE}/CMFPlacefulWorkflow/patches/workflowtoolPatch.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/product.txt
+${PLONE_BASE}/CMFPlacefulWorkflow/refresh.txt
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/placeful_workflow_configuration.pt
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/placeful_workflow_configuration_add.py
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/placeful_workflow_configuration_add.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/placeful_workflow_configuration_set.py
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/placeful_workflow_configuration_set.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/placefulworkflow_icon.png
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/prefs_workflow_advanced.pt
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/prefs_workflow_advanced_edit.py
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/prefs_workflow_localpolicies_form.pt
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/prefs_workflow_localpolicies_set.py
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/prefs_workflow_localpolicies_set.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/prefs_workflow_policy_mapping.pt
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/prefs_workflow_policy_mapping.pt.metadata
+${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow/prefs_workflow_policy_mapping_set.py
+${PLONE_BASE}/CMFPlacefulWorkflow/tests/CMFPlacefulWorkflowTestCase.py
+${PLONE_BASE}/CMFPlacefulWorkflow/tests/CMFPlacefulWorkflowTestCase.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/tests/README
+${PLONE_BASE}/CMFPlacefulWorkflow/tests/__init__.py
+${PLONE_BASE}/CMFPlacefulWorkflow/tests/__init__.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/tests/testCMFPlacefulWorkflow.py
+${PLONE_BASE}/CMFPlacefulWorkflow/tests/testCMFPlacefulWorkflow.pyc
+${PLONE_BASE}/CMFPlacefulWorkflow/tool.gif
+${PLONE_BASE}/CMFPlacefulWorkflow/version.txt
+${PLONE_BASE}/CMFPlacefulWorkflow/www/WorkflowPolicyConfig_icon.gif
+${PLONE_BASE}/CMFPlone/ActionIconsTool.py
+${PLONE_BASE}/CMFPlone/ActionIconsTool.pyc
+${PLONE_BASE}/CMFPlone/ActionsTool.py
+${PLONE_BASE}/CMFPlone/ActionsTool.pyc
+${PLONE_BASE}/CMFPlone/CREDITS.txt
+${PLONE_BASE}/CMFPlone/CalendarTool.py
+${PLONE_BASE}/CMFPlone/CalendarTool.pyc
+${PLONE_BASE}/CMFPlone/CatalogTool.py
+${PLONE_BASE}/CMFPlone/CatalogTool.pyc
+${PLONE_BASE}/CMFPlone/DiscussionTool.py
+${PLONE_BASE}/CMFPlone/DiscussionTool.pyc
+${PLONE_BASE}/CMFPlone/Extensions/__init__.py
+${PLONE_BASE}/CMFPlone/Extensions/__init__.pyc
+${PLONE_BASE}/CMFPlone/Extensions/accessRule.py
+${PLONE_BASE}/CMFPlone/Extensions/accessRule.pyc
+${PLONE_BASE}/CMFPlone/Extensions/cleanup.py
+${PLONE_BASE}/CMFPlone/Extensions/cleanup.pyc
+${PLONE_BASE}/CMFPlone/Extensions/setupSite.py
+${PLONE_BASE}/CMFPlone/Extensions/setupSite.pyc
+${PLONE_BASE}/CMFPlone/Extensions/stripGRUFLocalRolePrefix.py
+${PLONE_BASE}/CMFPlone/Extensions/stripGRUFLocalRolePrefix.pyc
+${PLONE_BASE}/CMFPlone/Extensions/view_source.py
+${PLONE_BASE}/CMFPlone/Extensions/view_source.pyc
+${PLONE_BASE}/CMFPlone/FactoryTool.py
+${PLONE_BASE}/CMFPlone/FactoryTool.pyc
+${PLONE_BASE}/CMFPlone/GroupDataTool.py
+${PLONE_BASE}/CMFPlone/GroupDataTool.pyc
+${PLONE_BASE}/CMFPlone/GroupsTool.py
+${PLONE_BASE}/CMFPlone/GroupsTool.pyc
+${PLONE_BASE}/CMFPlone/HISTORY.txt
+${PLONE_BASE}/CMFPlone/INSTALL.txt
+${PLONE_BASE}/CMFPlone/InterfaceTool.py
+${PLONE_BASE}/CMFPlone/InterfaceTool.pyc
+${PLONE_BASE}/CMFPlone/LICENSE.GPL
+${PLONE_BASE}/CMFPlone/LICENSE.ZPL
+${PLONE_BASE}/CMFPlone/LICENSE.txt
+${PLONE_BASE}/CMFPlone/LargePloneFolder.py
+${PLONE_BASE}/CMFPlone/LargePloneFolder.pyc
+${PLONE_BASE}/CMFPlone/MemberDataTool.py
+${PLONE_BASE}/CMFPlone/MemberDataTool.pyc
+${PLONE_BASE}/CMFPlone/MembershipTool.py
+${PLONE_BASE}/CMFPlone/MembershipTool.pyc
+${PLONE_BASE}/CMFPlone/MetadataTool.py
+${PLONE_BASE}/CMFPlone/MetadataTool.pyc
+${PLONE_BASE}/CMFPlone/MigrationTool.py
+${PLONE_BASE}/CMFPlone/MigrationTool.pyc
+${PLONE_BASE}/CMFPlone/PloneBaseTool.py
+${PLONE_BASE}/CMFPlone/PloneBaseTool.pyc
+${PLONE_BASE}/CMFPlone/PloneBatch.py
+${PLONE_BASE}/CMFPlone/PloneBatch.pyc
+${PLONE_BASE}/CMFPlone/PloneContent.py
+${PLONE_BASE}/CMFPlone/PloneContent.pyc
+${PLONE_BASE}/CMFPlone/PloneControlPanel.py
+${PLONE_BASE}/CMFPlone/PloneControlPanel.pyc
+${PLONE_BASE}/CMFPlone/PloneFolder.py
+${PLONE_BASE}/CMFPlone/PloneFolder.pyc
+${PLONE_BASE}/CMFPlone/PloneInitialize.py
+${PLONE_BASE}/CMFPlone/PloneInitialize.pyc
+${PLONE_BASE}/CMFPlone/PloneTool.py
+${PLONE_BASE}/CMFPlone/PloneTool.pyc
+${PLONE_BASE}/CMFPlone/Portal.py
+${PLONE_BASE}/CMFPlone/Portal.pyc
+${PLONE_BASE}/CMFPlone/PropertiesTool.py
+${PLONE_BASE}/CMFPlone/PropertiesTool.pyc
+${PLONE_BASE}/CMFPlone/QuickInstallerTool.py
+${PLONE_BASE}/CMFPlone/QuickInstallerTool.pyc
+${PLONE_BASE}/CMFPlone/README.txt
+${PLONE_BASE}/CMFPlone/RELEASENOTES.txt
+${PLONE_BASE}/CMFPlone/RegistrationTool.py
+${PLONE_BASE}/CMFPlone/RegistrationTool.pyc
+${PLONE_BASE}/CMFPlone/SkinsTool.py
+${PLONE_BASE}/CMFPlone/SkinsTool.pyc
+${PLONE_BASE}/CMFPlone/SyndicationTool.py
+${PLONE_BASE}/CMFPlone/SyndicationTool.pyc
+${PLONE_BASE}/CMFPlone/ToolNames.py
+${PLONE_BASE}/CMFPlone/ToolNames.pyc
+${PLONE_BASE}/CMFPlone/TranslationServiceTool.py
+${PLONE_BASE}/CMFPlone/TranslationServiceTool.pyc
+${PLONE_BASE}/CMFPlone/TypesTool.py
+${PLONE_BASE}/CMFPlone/TypesTool.pyc
+${PLONE_BASE}/CMFPlone/UPGRADE.txt
+${PLONE_BASE}/CMFPlone/URLTool.py
+${PLONE_BASE}/CMFPlone/URLTool.pyc
+${PLONE_BASE}/CMFPlone/UndoTool.py
+${PLONE_BASE}/CMFPlone/UndoTool.pyc
+${PLONE_BASE}/CMFPlone/UnicodeSplitter.py
+${PLONE_BASE}/CMFPlone/UnicodeSplitter.pyc
+${PLONE_BASE}/CMFPlone/WorkflowTool.py
+${PLONE_BASE}/CMFPlone/WorkflowTool.pyc
+${PLONE_BASE}/CMFPlone/__init__.py
+${PLONE_BASE}/CMFPlone/__init__.pyc
+${PLONE_BASE}/CMFPlone/browser/__init__.py
+${PLONE_BASE}/CMFPlone/browser/__init__.pyc
+${PLONE_BASE}/CMFPlone/browser/configure.zcml
+${PLONE_BASE}/CMFPlone/browser/interfaces.py
+${PLONE_BASE}/CMFPlone/browser/interfaces.pyc
+${PLONE_BASE}/CMFPlone/browser/navigation.py
+${PLONE_BASE}/CMFPlone/browser/navigation.pyc
+${PLONE_BASE}/CMFPlone/browser/navtree.py
+${PLONE_BASE}/CMFPlone/browser/navtree.pyc
+${PLONE_BASE}/CMFPlone/browser/ploneview.py
+${PLONE_BASE}/CMFPlone/browser/ploneview.pyc
+${PLONE_BASE}/CMFPlone/browser/portlets/__init__.py
+${PLONE_BASE}/CMFPlone/browser/portlets/__init__.pyc
+${PLONE_BASE}/CMFPlone/browser/portlets/calendar.py
+${PLONE_BASE}/CMFPlone/browser/portlets/calendar.pyc
+${PLONE_BASE}/CMFPlone/browser/portlets/events.py
+${PLONE_BASE}/CMFPlone/browser/portlets/events.pyc
+${PLONE_BASE}/CMFPlone/browser/portlets/navigation.py
+${PLONE_BASE}/CMFPlone/browser/portlets/navigation.pyc
+${PLONE_BASE}/CMFPlone/browser/portlets/news.py
+${PLONE_BASE}/CMFPlone/browser/portlets/news.pyc
+${PLONE_BASE}/CMFPlone/browser/portlets/recent.py
+${PLONE_BASE}/CMFPlone/browser/portlets/recent.pyc
+${PLONE_BASE}/CMFPlone/browser/sitemap.py
+${PLONE_BASE}/CMFPlone/browser/sitemap.pyc
+${PLONE_BASE}/CMFPlone/configure.zcml
+${PLONE_BASE}/CMFPlone/deprecated.zcml
+${PLONE_BASE}/CMFPlone/docs/README.txt
+${PLONE_BASE}/CMFPlone/events.py
+${PLONE_BASE}/CMFPlone/events.pyc
+${PLONE_BASE}/CMFPlone/exportimport/README.txt
+${PLONE_BASE}/CMFPlone/exportimport/__init__.py
+${PLONE_BASE}/CMFPlone/exportimport/__init__.pyc
+${PLONE_BASE}/CMFPlone/exportimport/configure.zcml
+${PLONE_BASE}/CMFPlone/exportimport/content.py
+${PLONE_BASE}/CMFPlone/exportimport/content.pyc
+${PLONE_BASE}/CMFPlone/exportimport/controlpanel.py
+${PLONE_BASE}/CMFPlone/exportimport/controlpanel.pyc
+${PLONE_BASE}/CMFPlone/exportimport/factorytool.py
+${PLONE_BASE}/CMFPlone/exportimport/factorytool.pyc
+${PLONE_BASE}/CMFPlone/exportimport/memberdata_properties.py
+${PLONE_BASE}/CMFPlone/exportimport/memberdata_properties.pyc
+${PLONE_BASE}/CMFPlone/exportimport/propertiestool.py
+${PLONE_BASE}/CMFPlone/exportimport/propertiestool.pyc
+${PLONE_BASE}/CMFPlone/exportimport/tests/__init__.py
+${PLONE_BASE}/CMFPlone/exportimport/tests/__init__.pyc
+${PLONE_BASE}/CMFPlone/exportimport/tests/base.py
+${PLONE_BASE}/CMFPlone/exportimport/tests/base.pyc
+${PLONE_BASE}/CMFPlone/exportimport/tests/framework.py
+${PLONE_BASE}/CMFPlone/exportimport/tests/framework.pyc
+${PLONE_BASE}/CMFPlone/exportimport/tests/runalltests.py
+${PLONE_BASE}/CMFPlone/exportimport/tests/runalltests.pyc
+${PLONE_BASE}/CMFPlone/exportimport/tests/testControlPanel.py
+${PLONE_BASE}/CMFPlone/exportimport/tests/testControlPanel.pyc
+${PLONE_BASE}/CMFPlone/exportimport/tests/testFactoryTool.py
+${PLONE_BASE}/CMFPlone/exportimport/tests/testFactoryTool.pyc
+${PLONE_BASE}/CMFPlone/exportimport/tests/testPropertiesTool.py
+${PLONE_BASE}/CMFPlone/exportimport/tests/testPropertiesTool.pyc
+${PLONE_BASE}/CMFPlone/factory.py
+${PLONE_BASE}/CMFPlone/factory.pyc
+${PLONE_BASE}/CMFPlone/i18nl10n.py
+${PLONE_BASE}/CMFPlone/i18nl10n.pyc
+${PLONE_BASE}/CMFPlone/interfaces/BrowserDefault.py
+${PLONE_BASE}/CMFPlone/interfaces/BrowserDefault.pyc
+${PLONE_BASE}/CMFPlone/interfaces/ConstrainTypes.py
+${PLONE_BASE}/CMFPlone/interfaces/ConstrainTypes.pyc
+${PLONE_BASE}/CMFPlone/interfaces/FactoryTool.py
+${PLONE_BASE}/CMFPlone/interfaces/FactoryTool.pyc
+${PLONE_BASE}/CMFPlone/interfaces/InterfaceTool.py
+${PLONE_BASE}/CMFPlone/interfaces/InterfaceTool.pyc
+${PLONE_BASE}/CMFPlone/interfaces/NonStructuralFolder.py
+${PLONE_BASE}/CMFPlone/interfaces/NonStructuralFolder.pyc
+${PLONE_BASE}/CMFPlone/interfaces/OrderedContainer.py
+${PLONE_BASE}/CMFPlone/interfaces/OrderedContainer.pyc
+${PLONE_BASE}/CMFPlone/interfaces/PloneBaseTool.py
+${PLONE_BASE}/CMFPlone/interfaces/PloneBaseTool.pyc
+${PLONE_BASE}/CMFPlone/interfaces/PloneControlPanel.py
+${PLONE_BASE}/CMFPlone/interfaces/PloneControlPanel.pyc
+${PLONE_BASE}/CMFPlone/interfaces/PropertiesTool.py
+${PLONE_BASE}/CMFPlone/interfaces/PropertiesTool.pyc
+${PLONE_BASE}/CMFPlone/interfaces/Translatable.py
+${PLONE_BASE}/CMFPlone/interfaces/Translatable.pyc
+${PLONE_BASE}/CMFPlone/interfaces/__init__.py
+${PLONE_BASE}/CMFPlone/interfaces/__init__.pyc
+${PLONE_BASE}/CMFPlone/interfaces/basetool.py
+${PLONE_BASE}/CMFPlone/interfaces/basetool.pyc
+${PLONE_BASE}/CMFPlone/interfaces/breadcrumbs.py
+${PLONE_BASE}/CMFPlone/interfaces/breadcrumbs.pyc
+${PLONE_BASE}/CMFPlone/interfaces/constrains.py
+${PLONE_BASE}/CMFPlone/interfaces/constrains.pyc
+${PLONE_BASE}/CMFPlone/interfaces/controlpanel.py
+${PLONE_BASE}/CMFPlone/interfaces/controlpanel.pyc
+${PLONE_BASE}/CMFPlone/interfaces/events.py
+${PLONE_BASE}/CMFPlone/interfaces/events.pyc
+${PLONE_BASE}/CMFPlone/interfaces/factory.py
+${PLONE_BASE}/CMFPlone/interfaces/factory.pyc
+${PLONE_BASE}/CMFPlone/interfaces/installable.py
+${PLONE_BASE}/CMFPlone/interfaces/installable.pyc
+${PLONE_BASE}/CMFPlone/interfaces/interface.py
+${PLONE_BASE}/CMFPlone/interfaces/interface.pyc
+${PLONE_BASE}/CMFPlone/interfaces/migration.py
+${PLONE_BASE}/CMFPlone/interfaces/migration.pyc
+${PLONE_BASE}/CMFPlone/interfaces/properties.py
+${PLONE_BASE}/CMFPlone/interfaces/properties.pyc
+${PLONE_BASE}/CMFPlone/interfaces/siteroot.py
+${PLONE_BASE}/CMFPlone/interfaces/siteroot.pyc
+${PLONE_BASE}/CMFPlone/interfaces/structure.py
+${PLONE_BASE}/CMFPlone/interfaces/structure.pyc
+${PLONE_BASE}/CMFPlone/interfaces/translationservice.py
+${PLONE_BASE}/CMFPlone/interfaces/translationservice.pyc
+${PLONE_BASE}/CMFPlone/interfaces/view.py
+${PLONE_BASE}/CMFPlone/interfaces/view.pyc
+${PLONE_BASE}/CMFPlone/log.py
+${PLONE_BASE}/CMFPlone/log.pyc
+${PLONE_BASE}/CMFPlone/makefile.in
+${PLONE_BASE}/CMFPlone/meta.zcml
+${PLONE_BASE}/CMFPlone/migrations/__init__.py
+${PLONE_BASE}/CMFPlone/migrations/__init__.pyc
+${PLONE_BASE}/CMFPlone/migrations/configure.zcml
+${PLONE_BASE}/CMFPlone/migrations/migration_util.py
+${PLONE_BASE}/CMFPlone/migrations/migration_util.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_1/__init__.py
+${PLONE_BASE}/CMFPlone/migrations/v2_1/__init__.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_1/final_two11.py
+${PLONE_BASE}/CMFPlone/migrations/v2_1/final_two11.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_1/two11_two12.py
+${PLONE_BASE}/CMFPlone/migrations/v2_1/two11_two12.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_1/two12_two13.py
+${PLONE_BASE}/CMFPlone/migrations/v2_1/two12_two13.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_5/__init__.py
+${PLONE_BASE}/CMFPlone/migrations/v2_5/__init__.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_5/alphas.py
+${PLONE_BASE}/CMFPlone/migrations/v2_5/alphas.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_5/betas.py
+${PLONE_BASE}/CMFPlone/migrations/v2_5/betas.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_5/final_two51.py
+${PLONE_BASE}/CMFPlone/migrations/v2_5/final_two51.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_5/rcs.py
+${PLONE_BASE}/CMFPlone/migrations/v2_5/rcs.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_5/two51_two52.py
+${PLONE_BASE}/CMFPlone/migrations/v2_5/two51_two52.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_5/two52_two53.py
+${PLONE_BASE}/CMFPlone/migrations/v2_5/two52_two53.pyc
+${PLONE_BASE}/CMFPlone/migrations/v2_5/two53_two54.py
+${PLONE_BASE}/CMFPlone/migrations/v2_5/two53_two54.pyc
+${PLONE_BASE}/CMFPlone/migrations/v3_0/__init__.py
+${PLONE_BASE}/CMFPlone/migrations/v3_0/__init__.pyc
+${PLONE_BASE}/CMFPlone/migrations/v3_0/alphas.py
+${PLONE_BASE}/CMFPlone/migrations/v3_0/alphas.pyc
+${PLONE_BASE}/CMFPlone/migrations/v3_0/betas.py
+${PLONE_BASE}/CMFPlone/migrations/v3_0/betas.pyc
+${PLONE_BASE}/CMFPlone/migrations/v3_0/final_three0x.py
+${PLONE_BASE}/CMFPlone/migrations/v3_0/final_three0x.pyc
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/actionicons.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/actions.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/catalog.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/componentregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/cssregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/export_steps.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/import_steps.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/jsregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/kssregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/portal_atct.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/propertiestool.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/rolemap.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/toolset.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2/workflows.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta2_beta3/actions.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta2_beta3/componentregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta2_beta3/export_steps.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta2_beta3/import_steps.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta2_beta3/viewlets.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta3_beta4/actions.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta3_beta4/cmfeditions_various.txt
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta3_beta4/componentregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta3_beta4/cssregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta3_beta4/jsregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta3_beta4/propertiestool.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta3_beta4/viewlets.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/final_three01/componentregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/final_three01/rolemap.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/final_three01/toolset.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/rc2_final/actions.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/rc2_final/cssregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/rc2_final/jsregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/rc2_final/rolemap.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/three01_three02/controlpanel.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/three01_three02/cssregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/three01_three02/jsregistry.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/three01_three02/rolemap.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/three03_three04/diff_tool.xml
+${PLONE_BASE}/CMFPlone/migrations/v3_0/rcs.py
+${PLONE_BASE}/CMFPlone/migrations/v3_0/rcs.pyc
+${PLONE_BASE}/CMFPlone/overrides.zcml
+${PLONE_BASE}/CMFPlone/patches/__init__.py
+${PLONE_BASE}/CMFPlone/patches/__init__.pyc
+${PLONE_BASE}/CMFPlone/patches/dateIndexPatch.py
+${PLONE_BASE}/CMFPlone/patches/dateIndexPatch.pyc
+${PLONE_BASE}/CMFPlone/patches/interfacePatch.py
+${PLONE_BASE}/CMFPlone/patches/interfacePatch.pyc
+${PLONE_BASE}/CMFPlone/patches/unicodeFallbackPatch.py
+${PLONE_BASE}/CMFPlone/patches/unicodeFallbackPatch.pyc
+${PLONE_BASE}/CMFPlone/patches/unicodehacks.py
+${PLONE_BASE}/CMFPlone/patches/unicodehacks.pyc
+${PLONE_BASE}/CMFPlone/patches/zserverPatch.py
+${PLONE_BASE}/CMFPlone/patches/zserverPatch.pyc
+${PLONE_BASE}/CMFPlone/profiles/default/actionicons.xml
+${PLONE_BASE}/CMFPlone/profiles/default/actions.xml
+${PLONE_BASE}/CMFPlone/profiles/default/catalog.xml
+${PLONE_BASE}/CMFPlone/profiles/default/componentregistry.xml
+${PLONE_BASE}/CMFPlone/profiles/default/contenttyperegistry.xml
+${PLONE_BASE}/CMFPlone/profiles/default/controlpanel.xml
+${PLONE_BASE}/CMFPlone/profiles/default/cssregistry.xml
+${PLONE_BASE}/CMFPlone/profiles/default/diff_tool.xml
+${PLONE_BASE}/CMFPlone/profiles/default/export_steps.xml
+${PLONE_BASE}/CMFPlone/profiles/default/factorytool.xml
+${PLONE_BASE}/CMFPlone/profiles/default/import_steps.xml
+${PLONE_BASE}/CMFPlone/profiles/default/jsregistry.xml
+${PLONE_BASE}/CMFPlone/profiles/default/kssregistry.xml
+${PLONE_BASE}/CMFPlone/profiles/default/mailhost.xml
+${PLONE_BASE}/CMFPlone/profiles/default/memberdata_properties.xml
+${PLONE_BASE}/CMFPlone/profiles/default/metadata.xml
+${PLONE_BASE}/CMFPlone/profiles/default/plone-app-kss.txt
+${PLONE_BASE}/CMFPlone/profiles/default/plone-content.txt
+${PLONE_BASE}/CMFPlone/profiles/default/plone-final.txt
+${PLONE_BASE}/CMFPlone/profiles/default/plone_archetypes.txt
+${PLONE_BASE}/CMFPlone/profiles/default/plone_various.txt
+${PLONE_BASE}/CMFPlone/profiles/default/portal_atct.xml
+${PLONE_BASE}/CMFPlone/profiles/default/portlets.xml
+${PLONE_BASE}/CMFPlone/profiles/default/properties.xml
+${PLONE_BASE}/CMFPlone/profiles/default/propertiestool.xml
+${PLONE_BASE}/CMFPlone/profiles/default/rolemap.xml
+${PLONE_BASE}/CMFPlone/profiles/default/skins.xml
+${PLONE_BASE}/CMFPlone/profiles/default/structure/.objects
+${PLONE_BASE}/CMFPlone/profiles/default/structure/.preserve
+${PLONE_BASE}/CMFPlone/profiles/default/structure/.properties
+${PLONE_BASE}/CMFPlone/profiles/default/structure/Members/.objects
+${PLONE_BASE}/CMFPlone/profiles/default/structure/Members/.properties
+${PLONE_BASE}/CMFPlone/profiles/default/structure/front-page
+${PLONE_BASE}/CMFPlone/profiles/default/toolset.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATBooleanCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATCurrentAuthorCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATDateCriteria.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATDateRangeCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATListCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATPathCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATPortalTypeCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATReferenceCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATRelativePathCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATSelectionCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATSimpleIntCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATSimpleStringCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/ATSortCriterion.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Discussion_Item.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Document.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Event.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Favorite.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/File.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Folder.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Image.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Large_Plone_Folder.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Link.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/News_Item.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Plone_Site.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/TempFolder.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types/Topic.xml
+${PLONE_BASE}/CMFPlone/profiles/default/types.xml
+${PLONE_BASE}/CMFPlone/profiles/default/viewlets.xml
+${PLONE_BASE}/CMFPlone/profiles/default/workflows/folder_workflow/definition.xml
+${PLONE_BASE}/CMFPlone/profiles/default/workflows/intranet_folder_workflow/definition.xml
+${PLONE_BASE}/CMFPlone/profiles/default/workflows/intranet_workflow/definition.xml
+${PLONE_BASE}/CMFPlone/profiles/default/workflows/one_state_workflow/definition.xml
+${PLONE_BASE}/CMFPlone/profiles/default/workflows/plone_workflow/definition.xml
+${PLONE_BASE}/CMFPlone/profiles/default/workflows/simple_publication_workflow/definition.xml
+${PLONE_BASE}/CMFPlone/profiles/default/workflows.xml
+${PLONE_BASE}/CMFPlone/profiles/testfixture/import_steps.xml
+${PLONE_BASE}/CMFPlone/profiles/testfixture/workflows.xml
+${PLONE_BASE}/CMFPlone/profiles.zcml
+${PLONE_BASE}/CMFPlone/setup/__init__.py
+${PLONE_BASE}/CMFPlone/setup/__init__.pyc
+${PLONE_BASE}/CMFPlone/setup/dependencies.py
+${PLONE_BASE}/CMFPlone/setup/dependencies.pyc
+${PLONE_BASE}/CMFPlone/setuphandlers.py
+${PLONE_BASE}/CMFPlone/setuphandlers.pyc
+${PLONE_BASE}/CMFPlone/skins/cmf_legacy/TitleOrId.py
+${PLONE_BASE}/CMFPlone/skins/cmf_legacy/metadata_edit.cpy
+${PLONE_BASE}/CMFPlone/skins/cmf_legacy/metadata_edit.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/cmf_legacy/metadata_edit_form.cpt
+${PLONE_BASE}/CMFPlone/skins/cmf_legacy/metadata_edit_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/cssQuery-license.txt
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/cssQuery.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/ecmaunit-license.txt
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/ecmaunit.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/event-registration.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/ChangeLog
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/README
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/README-Plone
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/active-bg.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/bugtest-hidden-selects.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-af.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-af.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-al.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-al.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-bg.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-bg.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-big5-utf8.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-big5-utf8.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-big5.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-big5.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-blue.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-blue.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-blue2.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-blue2.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-br.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-br.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-brown.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-brown.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ca.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ca.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-cs-utf8.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-cs-utf8.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-cs-win.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-cs-win.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-da.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-da.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-de.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-de.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-du.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-du.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-el.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-el.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-en.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-en.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-es.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-es.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-fi.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-fi.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-fr.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-fr.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-green.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-green.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-he-utf8.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-he-utf8.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-hr-utf8.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-hr-utf8.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-hr.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-hr.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-hu.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-hu.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-hy.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-hy.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-it.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-it.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-jp.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-jp.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ko-utf8.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ko-utf8.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ko.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ko.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-lt-utf8.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-lt-utf8.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-lt.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-lt.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-lv.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-lv.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-nl.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-nl.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-no.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-no.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-pl-utf8.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-pl-utf8.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-pl.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-pl.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-pt.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-pt.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ro.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ro.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ru.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ru.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ru_win_.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-ru_win_.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-setup.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-setup.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-setup_stripped.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-setup_stripped.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-si.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-si.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-sk.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-sk.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-sp.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-sp.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-sv.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-sv.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-system.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-system.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-tas.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-tas.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-tr.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-tr.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-win2k-1.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-win2k-1.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-win2k-2.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-win2k-2.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-win2k-cold-1.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-win2k-cold-1.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-win2k-cold-2.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-win2k-cold-2.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-zh.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar-zh.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar.php
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar_stripped.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/calendar_stripped.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/cn_utf8.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/cn_utf8.js.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/dark-bg.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/dayinfo.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/field-button.jpg
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/hover-bg.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/img.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/index.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/menuarrow.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/menuarrow2.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/multiple-dates.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/normal-bg.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/reference-Z-S.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/reference.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/reference.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/reference.pdf
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/release-notes.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/rowhover-bg.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/simple-1.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/simple-2.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/simple-3.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/status-bg.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/test-position.html
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/test.php
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/theme.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/theme.css.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/title-bg.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar/today-bg.gif
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/s5_core.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/s5_framing.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/s5_iepngfix.htc
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/s5_opera.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/s5_outline.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/s5_pretty.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/s5_print.css
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/s5_slides.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/s5_slides.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/sarissa.js
+${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/se-highlight.js
+${PLONE_BASE}/CMFPlone/skins/plone_content/author.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_content/author.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/discussionitem_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/document_relateditems.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/document_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/document_view.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/event_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/event_view.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/favorite_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/file_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/file_view.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/folder_edit_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_content/folder_edit_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/folder_listing.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/folder_listing.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/folder_summary_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/folder_summary_view.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/folder_tabular_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/folder_tabular_view.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/image_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/image_view.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/image_view_fullscreen.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/link_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/link_view.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_content/newsitem_view.pt
+${PLONE_BASE}/CMFPlone/skins/plone_content/newsitem_view.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/colophon.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/correctPREformatting.js
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/cropText.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/document_actions.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/document_byline.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/enabling_cookies.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/enabling_cookies.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/extract_date_components.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_contents_filter.js
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_contents_hideAddItems.js
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_add.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_add.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_delete.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_delete.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_edit.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_edit.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_form.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_form.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_set.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/folder_localrole_set.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/footer.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getActionIconList.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getActionIconList.py.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getAddableTypesInMenu.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getCurrentUrl.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getEventString.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getNextMonth.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getOrderedUserActions.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getPersonalFolderFor.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getPreviousMonth.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getReplyReplies.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getViewTemplateId.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getWorkflowHistory.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getYearAndMonthToDisplay.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getZopeInfo.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/getZopeInfo.py.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/global_contentmenu.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/global_contentviews.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/global_logo.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/global_pathbar.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/global_personalbar.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/global_searchbox.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/global_sections.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/global_siteactions.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/global_skinswitcher.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/hide_columns.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/isDefaultPageInFolder.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/isRightToLeft.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/is_folderish.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/keyFilteredActions.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/login.js
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/navigationCurrent.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/navigationLocalRelated.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/old_folder_contents.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/old_folder_factories.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/old_folder_factories.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/plone_minwidth.js.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/plone_minwidth.js.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/plonifyActions.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_calendar.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_events.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_languages.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_login.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_navigation.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_navtree_macro.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_news.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_recent.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_related.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/portlet_review.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/prepare_slots.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/presentation.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/presentation.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/rejectAnonymous.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/review_history.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/review_history.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/showEditableBorder.py
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/viewThreadsAtBottom.pt
+${PLONE_BASE}/CMFPlone/skins/plone_deprecated/visibleIdsEnabled.py
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/accessibility.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/calendar_formfield.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/calendarpopup.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/collapsiblesections.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/cookie_functions.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/dragdropreorder.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/dropdown.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/first_input_focus.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/formUnload.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/form_tabbing.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/formsubmithelpers.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/fullscreenmode.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/highlightsearchterms.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/ie5fixes.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/input-label.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/livesearch.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/mark_special_links.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/nodeutilities.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/plone_javascript_variables.js.pt
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/register_function.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/select_all.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/styleswitcher.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/table_sorter.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/testBeforeUnload.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/testHighlightsearchterms.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/testNodeutilities.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/test_ecmascripts.pt
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/toc.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/unittestUtilities.js
+${PLONE_BASE}/CMFPlone/skins/plone_ecmascript/unlockOnFormUnload.js
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/change_ownership.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/change_ownership.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/content_status_modify.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/content_status_modify.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/delete_confirmation.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/delete_confirmation.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/disableSyndication.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/disableSyndication.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/discussion_reply.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/document_edit.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/document_edit.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/editSynProperties.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/editSynProperties.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/enableSyndication.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/enableSyndication.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/event_edit.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/event_edit.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/file_edit.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/file_edit.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/folder_edit.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/folder_edit.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/image_edit.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/image_edit.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/link_edit.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/link_edit.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/newsitem_edit.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/newsitem_edit.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/personalize.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/personalize.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/plone_change_password.py
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/portrait_delete.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/portrait_delete.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/saveDefaultPage.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/saveDefaultPage.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/selectViewTemplate.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/selectViewTemplate.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/send_feedback.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/send_feedback.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/send_feedback_site.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/send_feedback_site.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/sendto.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/sendto.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/setConstrainTypes.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/setConstrainTypes.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_content_status_modify.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_document_edit.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_effective_expiry_date.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_emailaddr.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_event_edit.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_feedback.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_file_edit.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_folder_constraintypes.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_folder_edit.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_folder_rename.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_id.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_image_edit.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_link_edit.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_metadata_edit.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_newsitem_edit.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_pas_emailaddr.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_personalize.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_sendto.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_site_feedback.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_start_end_date.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_synPropertiesForm.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_talkback.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_form_scripts/validate_title.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_forms/calendar_popup.pt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/content_status_history.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/content_status_history.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/delete_confirmation_page.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/delete_confirmation_page.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/discussion_reply_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/discussion_reply_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/discussion_reply_preview.pt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/discussion_reply_preview.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/folder_constraintypes_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/folder_constraintypes_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/folder_rename_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/folder_rename_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/history_comparison.pt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/history_form.pt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/member_search_form.pt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/member_search_form.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/member_search_results.pt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/member_search_results.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/ownership_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/ownership_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/search.pt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/search.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/search_form.pt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/search_form.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/select_default_page.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/select_default_page.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/select_default_view.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/select_default_view.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/sendto_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/sendto_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/synPropertiesForm.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/synPropertiesForm.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_forms/undo_form.pt
+${PLONE_BASE}/CMFPlone/skins/plone_forms/undo_form.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/action_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/addFavorite.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/addFavorite.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/add_alternative_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/add_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/add_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowBlank.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowBlank.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowBottom.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowBottom.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowDown.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowDown.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowDownAlternative.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowDownAlternative.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowLeft.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowLeft.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowLeftmost.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowLeftmost.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowRight.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowRight.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowRightmost.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowRightmost.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowTop.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowTop.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowUp.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowUp.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowUpAlternative.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/arrowUpAlternative.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/book_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/book_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/bullet.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/bullet.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/bulletBig.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/bulletBig.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/bullet_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/bullet_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_anybrowser.png
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_anybrowser.png.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_css.png
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_css.png.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_csstableless.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_csstableless.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_sec508.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_sec508.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_wai-aa.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_wai-aa.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_wai-aaa.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_wai-aaa.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_xhtml.png
+${PLONE_BASE}/CMFPlone/skins/plone_images/colophon_xhtml.png.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/confirm_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/confirm_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/contentrules_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/copy_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/copy_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/cut_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/cut_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/defaultUser.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/defaultUser.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/delete_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/delete_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/discussionitem_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/discussionitem_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/document_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/document_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/download_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/download_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/edit.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/edit.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/edit_inline.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/edit_inline.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/error_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/error_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/error_log_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/error_log_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/event_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/event_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/extedit_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/extedit_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/favicon.ico
+${PLONE_BASE}/CMFPlone/skins/plone_images/favorite_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/favorite_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/file_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/file_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/flag-plone.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/flag-plone.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/folder.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/folder.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/folder_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/folder_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/form_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/fullscreencollapse_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/fullscreencollapse_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/fullscreenexpand_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/fullscreenexpand_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/group.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/group.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/htmlfilter_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/htmlfilter_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/image_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/image_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/info.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/info.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/info_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/input_background.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/input_background.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/linkOpaque.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/linkOpaque.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/linkTransparent.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/linkTransparent.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/link_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/link_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/lock_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/lock_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/logo.jpg
+${PLONE_BASE}/CMFPlone/skins/plone_images/logo.jpg.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/logoIcon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/logoIcon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/mail_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/mail_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/maintenance_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/maintenance_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/navigation_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/navigation_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/newsitem_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/newsitem_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/paste_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/paste_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/pdf_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/pdf_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/pencil_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/pencil_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/phone_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/phone_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/plone_powered.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/plone_powered.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/popup_calendar.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/popup_calendar.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/print_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/print_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/product_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/product_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/required.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/required.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/rss.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/rss.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-addFavorite.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-addFavorite.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-favorite_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-favorite_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-linkOpaque.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-linkOpaque.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-linkTransparent.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-linkTransparent.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-site_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/rtl-site_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/save_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/save_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/search_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/search_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/shopping_cart.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/shopping_cart.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/site_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/site_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/sitemap_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/sitemap_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/skins_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/skins_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/spinner.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/spinner.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/subscribe_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/subscribe_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/textsize_huge.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/textsize_huge.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/textsize_large.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/textsize_large.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/textsize_normal.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/textsize_normal.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/textsize_small.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/textsize_small.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/topic_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/topic_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/treeCollapsed.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/treeCollapsed.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/treeExpanded.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/treeExpanded.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/undo_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/undo_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/user.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/user.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/workflow_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/workflow_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/xml.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/xml.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_images/zope_icon.gif
+${PLONE_BASE}/CMFPlone/skins/plone_images/zope_icon.gif.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_kss/kss_generic_macros.pt
+${PLONE_BASE}/CMFPlone/skins/plone_kss/plone.kss
+${PLONE_BASE}/CMFPlone/skins/plone_kss/ploneKss.css
+${PLONE_BASE}/CMFPlone/skins/plone_kss/plone_experimental.kss
+${PLONE_BASE}/CMFPlone/skins/plone_login/failsafe_login_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_login/failsafe_login_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/insufficient_privileges.pt
+${PLONE_BASE}/CMFPlone/skins/plone_login/insufficient_privileges.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/join_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_login/join_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/join_form_validate.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_login/logged_in.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_login/logged_in.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/logged_out.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_login/logged_out.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_change_password.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_change_password.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_failed.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_failed.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_form_validate.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_form_validate.vpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_initial.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_initial.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_next.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_next.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_password.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_password.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_password_validate.vpy
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_success.pt
+${PLONE_BASE}/CMFPlone/skins/plone_login/login_success.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/logout.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_login/register.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_login/register.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/registered.pt
+${PLONE_BASE}/CMFPlone/skins/plone_login/registered.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_login/require_login.py
+${PLONE_BASE}/CMFPlone/skins/plone_portlets/portlet_favorites.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/password_form.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/password_form.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/personalize_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/personalize_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/plone_control_panel.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/plone_control_panel.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/plone_memberprefs_panel.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/plone_memberprefs_panel.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/portlet_prefs.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_error_log_form.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_error_log_form.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_error_log_setProperties.py
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_error_log_showEntry.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_error_log_showEntry.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_error_log_update.py
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_details.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_details.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_edit.py
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_members.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_members.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_members_add.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_members_add.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_members_delete.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_members_delete.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_modify.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_group_modify.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_groups_overview.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_groups_overview.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_install_product_readme.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_install_product_readme.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_install_products_form.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_install_products_form.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_installed_product_overview.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_installed_product_overview.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_main_template.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_main_template.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_navigation_form.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_navigation_form.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_navigation_set.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_navigation_set.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_portrait_delete.py
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_reinstallProducts.py
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_search_macros.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_details.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_details.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_edit.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_edit.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_group_search.py
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_group_search_form.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_group_search_form.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_manage.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_manage.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_membership_edit.py
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_memberships.pt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_user_memberships.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_users_overview.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_users_overview.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_prefs/prefs_valid_search_restriction.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/add_ext_editor.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/addtoFavorites.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/author_find_content.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/browserDefault.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/canConstrainTypes.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/canSelectDefaultPage.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/check_id.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/check_id.py.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/computeRelatedItems.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/createMultiColumnList.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/createObject.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/createObject.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/create_query_string.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/date_components_support.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/deleteDiscussion.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/deleteDiscussion.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/displayContentsTab.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/enableHTTPCompression.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/externalEditorEnabled.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/external_edit.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_copy.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_copy.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_cut.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_cut.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_delete.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_delete.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_moveitem.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_paste.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_paste.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_position.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_position.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_publish.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_publish.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_rename.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/folder_rename.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/formatColumns.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/generateUniqueId.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getAllowedTypes.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getFolderContents.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getGlobalPortalRoles.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getNotAddableTypes.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getObjPositionInParent.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getObjPositionInParent.py.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getObjSize.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getObjectsFromPathList.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getPopupScript.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getPortalTypeList.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getPortalTypeList.py.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getPortalTypes.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getSectionFromURL.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/getSelectableViews.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/hasIndexHtml.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/isExpired.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/isTranslatable.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/livesearch_reply.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/mail_password.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/my_worklist.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/navigationParent.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_copy.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_copy.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_cut.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_cut.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_delete.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_delete.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_paste.cpy
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_paste.cpy.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_rename.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/object_rename.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/plone_log.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/plone_log.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/pretty_title_or_id.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/queryCatalog.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/raiseUnauthorized.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/raiseUnauthorized.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/redirectToDiscussable.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/redirectToDiscussable.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/redirectToReferrer.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/renderBase.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/returnNone.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/reverseList.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/rssAllowed.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/rssAllowed.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/selectedTabs.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/setAuthCookie.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/setAuthCookie.pyc
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/show_id.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/sortObjects.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/sort_modified_ascending.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/spamProtect.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/toLocalizedTime.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/translate.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/undo.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/unique.py
+${PLONE_BASE}/CMFPlone/skins/plone_scripts/utranslate.py
+${PLONE_BASE}/CMFPlone/skins/plone_styles/IEFixes.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/IEFixes.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/NS4.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/NS4.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/RTL.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/RTL.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/authoring.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/authoring.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/base.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/base.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/base_properties.props
+${PLONE_BASE}/CMFPlone/skins/plone_styles/columns.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/columns.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/controlpanel.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/controlpanel.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/deprecated.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/deprecated.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/forms.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/forms.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/generated.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/generated.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/invisibles.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/invisibles.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/member.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/member.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/mobile.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/mobile.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/navtree.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/navtree.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/plone.css.py
+${PLONE_BASE}/CMFPlone/skins/plone_styles/ploneCustom.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/ploneCustom.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/portlets.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/portlets.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/print.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/print.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_styles/public.css.dtml
+${PLONE_BASE}/CMFPlone/skins/plone_styles/public.css.dtml.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/RSS.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/RSS.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/accessibility-info.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/author_feedback_template.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/batch_macros.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/calendar_macros.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/contact-info.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/contact-info.cpt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/default_error_message.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/default_error_message.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/events_listing.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/events_listing.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/global_cache_settings.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/global_defines.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/global_statusmessage.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/homePageText.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/index_html.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/index_html.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/macro_renderer.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/main_template.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/news_listing.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/portlets_fetcher.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/recently_modified.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/recently_modified.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/recently_published.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/recently_published.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/robots.txt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/rss_template.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/rss_template.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/search_rss.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/search_rss.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/send_feedback_confirm.cpt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/sendto_template.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/site_feedback_template.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/sitemap.pt
+${PLONE_BASE}/CMFPlone/skins/plone_templates/sitemap.pt.metadata
+${PLONE_BASE}/CMFPlone/skins/plone_templates/standard_error_message.py
+${PLONE_BASE}/CMFPlone/skins/plone_templates/test_rendering.pt
+${PLONE_BASE}/CMFPlone/skins/plone_wysiwyg/wysiwyg_support.pt
+${PLONE_BASE}/CMFPlone/tests/AddMoveAndDeleteDocument.txt
+${PLONE_BASE}/CMFPlone/tests/LoginAndLogout.txt
+${PLONE_BASE}/CMFPlone/tests/PloneTestCase.py
+${PLONE_BASE}/CMFPlone/tests/PloneTestCase.pyc
+${PLONE_BASE}/CMFPlone/tests/__init__.py
+${PLONE_BASE}/CMFPlone/tests/__init__.pyc
+${PLONE_BASE}/CMFPlone/tests/dummy.py
+${PLONE_BASE}/CMFPlone/tests/dummy.pyc
+${PLONE_BASE}/CMFPlone/tests/images/test.gif
+${PLONE_BASE}/CMFPlone/tests/images/test.jpg
+${PLONE_BASE}/CMFPlone/tests/images/test.png
+${PLONE_BASE}/CMFPlone/tests/mails.txt
+${PLONE_BASE}/CMFPlone/tests/messages.txt
+${PLONE_BASE}/CMFPlone/tests/scripts.txt
+${PLONE_BASE}/CMFPlone/tests/testActionIconsTool.py
+${PLONE_BASE}/CMFPlone/tests/testActionIconsTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testActionsTool.py
+${PLONE_BASE}/CMFPlone/tests/testActionsTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testBrowserDefault.py
+${PLONE_BASE}/CMFPlone/tests/testBrowserDefault.pyc
+${PLONE_BASE}/CMFPlone/tests/testBrowserDefaultScripts.py
+${PLONE_BASE}/CMFPlone/tests/testBrowserDefaultScripts.pyc
+${PLONE_BASE}/CMFPlone/tests/testCSSandJSRegistry.py
+${PLONE_BASE}/CMFPlone/tests/testCSSandJSRegistry.pyc
+${PLONE_BASE}/CMFPlone/tests/testCalendarView.py
+${PLONE_BASE}/CMFPlone/tests/testCalendarView.pyc
+${PLONE_BASE}/CMFPlone/tests/testCatalogTool.py
+${PLONE_BASE}/CMFPlone/tests/testCatalogTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testCheckId.py
+${PLONE_BASE}/CMFPlone/tests/testCheckId.pyc
+${PLONE_BASE}/CMFPlone/tests/testContentPublishing.py
+${PLONE_BASE}/CMFPlone/tests/testContentPublishing.pyc
+${PLONE_BASE}/CMFPlone/tests/testContentSecurity.py
+${PLONE_BASE}/CMFPlone/tests/testContentSecurity.pyc
+${PLONE_BASE}/CMFPlone/tests/testContentTypeScripts.py
+${PLONE_BASE}/CMFPlone/tests/testContentTypeScripts.pyc
+${PLONE_BASE}/CMFPlone/tests/testContentTypes.py
+${PLONE_BASE}/CMFPlone/tests/testContentTypes.pyc
+${PLONE_BASE}/CMFPlone/tests/testControlPanel.py
+${PLONE_BASE}/CMFPlone/tests/testControlPanel.pyc
+${PLONE_BASE}/CMFPlone/tests/testControlPanelScripts.py
+${PLONE_BASE}/CMFPlone/tests/testControlPanelScripts.pyc
+${PLONE_BASE}/CMFPlone/tests/testCookieAuth.py
+${PLONE_BASE}/CMFPlone/tests/testCookieAuth.pyc
+${PLONE_BASE}/CMFPlone/tests/testCutPasteSecurity.py
+${PLONE_BASE}/CMFPlone/tests/testCutPasteSecurity.pyc
+${PLONE_BASE}/CMFPlone/tests/testDateComponentsSupport.py
+${PLONE_BASE}/CMFPlone/tests/testDateComponentsSupport.pyc
+${PLONE_BASE}/CMFPlone/tests/testDateIndexRanges.py
+${PLONE_BASE}/CMFPlone/tests/testDateIndexRanges.pyc
+${PLONE_BASE}/CMFPlone/tests/testDisplayContentsTab.py
+${PLONE_BASE}/CMFPlone/tests/testDisplayContentsTab.pyc
+${PLONE_BASE}/CMFPlone/tests/testExternalEditorEnabled.py
+${PLONE_BASE}/CMFPlone/tests/testExternalEditorEnabled.pyc
+${PLONE_BASE}/CMFPlone/tests/testFolderButtons.py
+${PLONE_BASE}/CMFPlone/tests/testFolderButtons.pyc
+${PLONE_BASE}/CMFPlone/tests/testFolderLocalRoleForm.py
+${PLONE_BASE}/CMFPlone/tests/testFolderLocalRoleForm.pyc
+${PLONE_BASE}/CMFPlone/tests/testGetObjectSize.py
+${PLONE_BASE}/CMFPlone/tests/testGetObjectSize.pyc
+${PLONE_BASE}/CMFPlone/tests/testGroupDataTool.py
+${PLONE_BASE}/CMFPlone/tests/testGroupDataTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testGroupUserFolder.py
+${PLONE_BASE}/CMFPlone/tests/testGroupUserFolder.pyc
+${PLONE_BASE}/CMFPlone/tests/testGroupsTool.py
+${PLONE_BASE}/CMFPlone/tests/testGroupsTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testInterfaceTool.py
+${PLONE_BASE}/CMFPlone/tests/testInterfaceTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testInterfaces.py
+${PLONE_BASE}/CMFPlone/tests/testInterfaces.pyc
+${PLONE_BASE}/CMFPlone/tests/testLoggedIn.py
+${PLONE_BASE}/CMFPlone/tests/testLoggedIn.pyc
+${PLONE_BASE}/CMFPlone/tests/testMemberDataTool.py
+${PLONE_BASE}/CMFPlone/tests/testMemberDataTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testMembershipTool.py
+${PLONE_BASE}/CMFPlone/tests/testMembershipTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testMigrationTool.py
+${PLONE_BASE}/CMFPlone/tests/testMigrationTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testMigrations.py
+${PLONE_BASE}/CMFPlone/tests/testMigrations.pyc
+${PLONE_BASE}/CMFPlone/tests/testNavTree.py
+${PLONE_BASE}/CMFPlone/tests/testNavTree.pyc
+${PLONE_BASE}/CMFPlone/tests/testNavigationParent.py
+${PLONE_BASE}/CMFPlone/tests/testNavigationParent.pyc
+${PLONE_BASE}/CMFPlone/tests/testNavigationView.py
+${PLONE_BASE}/CMFPlone/tests/testNavigationView.pyc
+${PLONE_BASE}/CMFPlone/tests/testNewsPortletView.py
+${PLONE_BASE}/CMFPlone/tests/testNewsPortletView.pyc
+${PLONE_BASE}/CMFPlone/tests/testNextPrevious.py
+${PLONE_BASE}/CMFPlone/tests/testNextPrevious.pyc
+${PLONE_BASE}/CMFPlone/tests/testOrderSupport.py
+${PLONE_BASE}/CMFPlone/tests/testOrderSupport.pyc
+${PLONE_BASE}/CMFPlone/tests/testPloneFolder.py
+${PLONE_BASE}/CMFPlone/tests/testPloneFolder.pyc
+${PLONE_BASE}/CMFPlone/tests/testPloneTestCase.py
+${PLONE_BASE}/CMFPlone/tests/testPloneTestCase.pyc
+${PLONE_BASE}/CMFPlone/tests/testPloneTool.py
+${PLONE_BASE}/CMFPlone/tests/testPloneTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testPloneView.py
+${PLONE_BASE}/CMFPlone/tests/testPloneView.pyc
+${PLONE_BASE}/CMFPlone/tests/testPortalCreation.py
+${PLONE_BASE}/CMFPlone/tests/testPortalCreation.pyc
+${PLONE_BASE}/CMFPlone/tests/testPortalFactory.py
+${PLONE_BASE}/CMFPlone/tests/testPortalFactory.pyc
+${PLONE_BASE}/CMFPlone/tests/testQueryCatalog.py
+${PLONE_BASE}/CMFPlone/tests/testQueryCatalog.pyc
+${PLONE_BASE}/CMFPlone/tests/testQuickInstallerTool.py
+${PLONE_BASE}/CMFPlone/tests/testQuickInstallerTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testRecentView.py
+${PLONE_BASE}/CMFPlone/tests/testRecentView.pyc
+${PLONE_BASE}/CMFPlone/tests/testRegistrationTool.py
+${PLONE_BASE}/CMFPlone/tests/testRegistrationTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testRelatedItems.py
+${PLONE_BASE}/CMFPlone/tests/testRelatedItems.pyc
+${PLONE_BASE}/CMFPlone/tests/testRenderBase.py
+${PLONE_BASE}/CMFPlone/tests/testRenderBase.pyc
+${PLONE_BASE}/CMFPlone/tests/testRestrictedAcquisition.py
+${PLONE_BASE}/CMFPlone/tests/testRestrictedAcquisition.pyc
+${PLONE_BASE}/CMFPlone/tests/testS5.py
+${PLONE_BASE}/CMFPlone/tests/testS5.pyc
+${PLONE_BASE}/CMFPlone/tests/testSecurityDeclarations.py
+${PLONE_BASE}/CMFPlone/tests/testSecurityDeclarations.pyc
+${PLONE_BASE}/CMFPlone/tests/testSkeleton.py
+${PLONE_BASE}/CMFPlone/tests/testSkeleton.pyc
+${PLONE_BASE}/CMFPlone/tests/testSortObjects.py
+${PLONE_BASE}/CMFPlone/tests/testSortObjects.pyc
+${PLONE_BASE}/CMFPlone/tests/testSyndicationTool.py
+${PLONE_BASE}/CMFPlone/tests/testSyndicationTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testTranslationServiceTool.py
+${PLONE_BASE}/CMFPlone/tests/testTranslationServiceTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testURLTool.py
+${PLONE_BASE}/CMFPlone/tests/testURLTool.pyc
+${PLONE_BASE}/CMFPlone/tests/testUnicodeNormalizer.py
+${PLONE_BASE}/CMFPlone/tests/testUnicodeNormalizer.pyc
+${PLONE_BASE}/CMFPlone/tests/testUnicodeSplitter.py
+${PLONE_BASE}/CMFPlone/tests/testUnicodeSplitter.pyc
+${PLONE_BASE}/CMFPlone/tests/testUserFolderBasics.py
+${PLONE_BASE}/CMFPlone/tests/testUserFolderBasics.pyc
+${PLONE_BASE}/CMFPlone/tests/testUtilities.py
+${PLONE_BASE}/CMFPlone/tests/testUtilities.pyc
+${PLONE_BASE}/CMFPlone/tests/testWebDAV.py
+${PLONE_BASE}/CMFPlone/tests/testWebDAV.pyc
+${PLONE_BASE}/CMFPlone/tests/testWorkflowTool.py
+${PLONE_BASE}/CMFPlone/tests/testWorkflowTool.pyc
+${PLONE_BASE}/CMFPlone/tests/test_doctests.py
+${PLONE_BASE}/CMFPlone/tests/test_doctests.pyc
+${PLONE_BASE}/CMFPlone/tests/test_functional.py
+${PLONE_BASE}/CMFPlone/tests/test_functional.pyc
+${PLONE_BASE}/CMFPlone/tests/test_mails.py
+${PLONE_BASE}/CMFPlone/tests/test_mails.pyc
+${PLONE_BASE}/CMFPlone/tests/timeBreadCrumbs.py
+${PLONE_BASE}/CMFPlone/tests/timeBreadCrumbs.pyc
+${PLONE_BASE}/CMFPlone/tests/utils.py
+${PLONE_BASE}/CMFPlone/tests/utils.pyc
+${PLONE_BASE}/CMFPlone/tests/webdav_index_html_put.txt
+${PLONE_BASE}/CMFPlone/tests/zcheck.py
+${PLONE_BASE}/CMFPlone/tests/zcheck.pyc
+${PLONE_BASE}/CMFPlone/tool.gif
+${PLONE_BASE}/CMFPlone/unicodeconflictresolver.py
+${PLONE_BASE}/CMFPlone/unicodeconflictresolver.pyc
+${PLONE_BASE}/CMFPlone/utils.py
+${PLONE_BASE}/CMFPlone/utils.pyc
+${PLONE_BASE}/CMFPlone/version.txt
+${PLONE_BASE}/CMFPlone/www/addConfigletForm.pt
+${PLONE_BASE}/CMFPlone/www/addPropertySheet.zpt
+${PLONE_BASE}/CMFPlone/www/addSite.zpt
+${PLONE_BASE}/CMFPlone/www/catalogAdvanced.dtml
+${PLONE_BASE}/CMFPlone/www/editPloneConfiglets.dtml
+${PLONE_BASE}/CMFPlone/www/membershipRolemapping.dtml
+${PLONE_BASE}/CMFPlone/www/migrationResults.dtml
+${PLONE_BASE}/CMFPlone/www/migrationRun.dtml
+${PLONE_BASE}/CMFPlone/www/migrationTool.dtml
+${PLONE_BASE}/CMFPlone/www/portal_factory_docs.stx
+${PLONE_BASE}/CMFPlone/www/portal_factory_manage_docs.zpt
+${PLONE_BASE}/CMFPlone/www/portal_factory_manage_overview.zpt
+${PLONE_BASE}/CMFPlone/www/portal_factory_manage_types.zpt
+${PLONE_BASE}/CMFPlone/www/portrait_fix.dtml
+${PLONE_BASE}/CMFQuickInstallerTool/Extensions/Install.py
+${PLONE_BASE}/CMFQuickInstallerTool/Extensions/Install.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/Extensions/__init__.py
+${PLONE_BASE}/CMFQuickInstallerTool/Extensions/__init__.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/HISTORY.txt
+${PLONE_BASE}/CMFQuickInstallerTool/InstalledProduct.py
+${PLONE_BASE}/CMFQuickInstallerTool/InstalledProduct.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/QuickInstallerTool.py
+${PLONE_BASE}/CMFQuickInstallerTool/QuickInstallerTool.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/__init__.py
+${PLONE_BASE}/CMFQuickInstallerTool/__init__.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/configure.zcml
+${PLONE_BASE}/CMFQuickInstallerTool/forms/install_products_form.zpt
+${PLONE_BASE}/CMFQuickInstallerTool/forms/installed_product_overview.zpt
+${PLONE_BASE}/CMFQuickInstallerTool/interfaces/__init__.py
+${PLONE_BASE}/CMFQuickInstallerTool/interfaces/__init__.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/interfaces/installable.py
+${PLONE_BASE}/CMFQuickInstallerTool/interfaces/installable.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/interfaces/portal_quickinstaller.py
+${PLONE_BASE}/CMFQuickInstallerTool/interfaces/portal_quickinstaller.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/profiles/default/metadata.xml
+${PLONE_BASE}/CMFQuickInstallerTool/profiles/default/toolset.xml
+${PLONE_BASE}/CMFQuickInstallerTool/profiles/test/actions.xml
+${PLONE_BASE}/CMFQuickInstallerTool/profiles.zcml
+${PLONE_BASE}/CMFQuickInstallerTool/tests/__init__.py
+${PLONE_BASE}/CMFQuickInstallerTool/tests/__init__.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/tests/actions.txt
+${PLONE_BASE}/CMFQuickInstallerTool/tests/install.txt
+${PLONE_BASE}/CMFQuickInstallerTool/tests/testSetup.py
+${PLONE_BASE}/CMFQuickInstallerTool/tests/testSetup.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/tests/test_doctests.py
+${PLONE_BASE}/CMFQuickInstallerTool/tests/test_doctests.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/tests/test_install.py
+${PLONE_BASE}/CMFQuickInstallerTool/tests/test_install.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/tool.gif
+${PLONE_BASE}/CMFQuickInstallerTool/utils.py
+${PLONE_BASE}/CMFQuickInstallerTool/utils.pyc
+${PLONE_BASE}/CMFQuickInstallerTool/version.txt
+${PLONE_BASE}/CMFTestCase/CHANGES.txt
+${PLONE_BASE}/CMFTestCase/CMFTestCase.py
+${PLONE_BASE}/CMFTestCase/CMFTestCase.pyc
+${PLONE_BASE}/CMFTestCase/INSTALL.txt
+${PLONE_BASE}/CMFTestCase/README.txt
+${PLONE_BASE}/CMFTestCase/VERSION.txt
+${PLONE_BASE}/CMFTestCase/__init__.py
+${PLONE_BASE}/CMFTestCase/__init__.pyc
+${PLONE_BASE}/CMFTestCase/ctc.py
+${PLONE_BASE}/CMFTestCase/ctc.pyc
+${PLONE_BASE}/CMFTestCase/five.py
+${PLONE_BASE}/CMFTestCase/five.pyc
+${PLONE_BASE}/CMFTestCase/framework.py
+${PLONE_BASE}/CMFTestCase/framework.pyc
+${PLONE_BASE}/CMFTestCase/interfaces.py
+${PLONE_BASE}/CMFTestCase/interfaces.pyc
+${PLONE_BASE}/CMFTestCase/layer.py
+${PLONE_BASE}/CMFTestCase/layer.pyc
+${PLONE_BASE}/CMFTestCase/runalltests.py
+${PLONE_BASE}/CMFTestCase/runalltests.pyc
+${PLONE_BASE}/CMFTestCase/setup.py
+${PLONE_BASE}/CMFTestCase/setup.pyc
+${PLONE_BASE}/CMFTestCase/testCMFCalendar.py
+${PLONE_BASE}/CMFTestCase/testCMFCalendar.pyc
+${PLONE_BASE}/CMFTestCase/testCMFTestCase.py
+${PLONE_BASE}/CMFTestCase/testCMFTestCase.pyc
+${PLONE_BASE}/CMFTestCase/testDocument.py
+${PLONE_BASE}/CMFTestCase/testDocument.pyc
+${PLONE_BASE}/CMFTestCase/testInterfaces.py
+${PLONE_BASE}/CMFTestCase/testInterfaces.pyc
+${PLONE_BASE}/CMFTestCase/testMembershipTool.py
+${PLONE_BASE}/CMFTestCase/testMembershipTool.pyc
+${PLONE_BASE}/CMFTestCase/testSkeleton.py
+${PLONE_BASE}/CMFTestCase/testSkeleton.pyc
+${PLONE_BASE}/CMFTestCase/tests.py
+${PLONE_BASE}/CMFTestCase/tests.pyc
+${PLONE_BASE}/CMFTestCase/utils.py
+${PLONE_BASE}/CMFTestCase/utils.pyc
+${PLONE_BASE}/CMFTopic/AbstractCriterion.py
+${PLONE_BASE}/CMFTopic/AbstractCriterion.pyc
+${PLONE_BASE}/CMFTopic/DEPENDENCIES.txt
+${PLONE_BASE}/CMFTopic/DateCriteria.py
+${PLONE_BASE}/CMFTopic/DateCriteria.pyc
+${PLONE_BASE}/CMFTopic/ListCriterion.py
+${PLONE_BASE}/CMFTopic/ListCriterion.pyc
+${PLONE_BASE}/CMFTopic/SimpleIntCriterion.py
+${PLONE_BASE}/CMFTopic/SimpleIntCriterion.pyc
+${PLONE_BASE}/CMFTopic/SimpleStringCriterion.py
+${PLONE_BASE}/CMFTopic/SimpleStringCriterion.pyc
+${PLONE_BASE}/CMFTopic/SortCriterion.py
+${PLONE_BASE}/CMFTopic/SortCriterion.pyc
+${PLONE_BASE}/CMFTopic/Topic.py
+${PLONE_BASE}/CMFTopic/Topic.pyc
+${PLONE_BASE}/CMFTopic/__init__.py
+${PLONE_BASE}/CMFTopic/__init__.pyc
+${PLONE_BASE}/CMFTopic/configure.zcml
+${PLONE_BASE}/CMFTopic/exportimport.py
+${PLONE_BASE}/CMFTopic/exportimport.pyc
+${PLONE_BASE}/CMFTopic/help/Overview.stx
+${PLONE_BASE}/CMFTopic/help/Topics.stx
+${PLONE_BASE}/CMFTopic/interfaces/Criterion.py
+${PLONE_BASE}/CMFTopic/interfaces/Criterion.pyc
+${PLONE_BASE}/CMFTopic/interfaces/__init__.py
+${PLONE_BASE}/CMFTopic/interfaces/__init__.pyc
+${PLONE_BASE}/CMFTopic/permissions.py
+${PLONE_BASE}/CMFTopic/permissions.pyc
+${PLONE_BASE}/CMFTopic/profiles/default/skins.xml
+${PLONE_BASE}/CMFTopic/profiles/default/types/Topic.xml
+${PLONE_BASE}/CMFTopic/profiles/default/types.xml
+${PLONE_BASE}/CMFTopic/profiles/default/workflows.xml
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/friendlydatec_editform.pt
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/listc_edit.pt
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/sic_edit.pt
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/sort_edit.pt
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/ssc_edit.pt
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_addCriterion.py
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_addCriterion.pyc
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_criteria_form.pt
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_deleteCriteria.py
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_deleteCriteria.pyc
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_editCriteria.py
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_editCriteria.pyc
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_edit_control.py
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_edit_form.py
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_edit_template.pt
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_icon.gif
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_view.py
+${PLONE_BASE}/CMFTopic/skins/zpt_topic/topic_view_template.pt
+${PLONE_BASE}/CMFTopic/tests/__init__.py
+${PLONE_BASE}/CMFTopic/tests/__init__.pyc
+${PLONE_BASE}/CMFTopic/tests/common.py
+${PLONE_BASE}/CMFTopic/tests/common.pyc
+${PLONE_BASE}/CMFTopic/tests/test_DateC.py
+${PLONE_BASE}/CMFTopic/tests/test_DateC.pyc
+${PLONE_BASE}/CMFTopic/tests/test_ListC.py
+${PLONE_BASE}/CMFTopic/tests/test_ListC.pyc
+${PLONE_BASE}/CMFTopic/tests/test_SIC.py
+${PLONE_BASE}/CMFTopic/tests/test_SIC.pyc
+${PLONE_BASE}/CMFTopic/tests/test_SSC.py
+${PLONE_BASE}/CMFTopic/tests/test_SSC.pyc
+${PLONE_BASE}/CMFTopic/tests/test_SortC.py
+${PLONE_BASE}/CMFTopic/tests/test_SortC.pyc
+${PLONE_BASE}/CMFTopic/tests/test_Topic.py
+${PLONE_BASE}/CMFTopic/tests/test_Topic.pyc
+${PLONE_BASE}/CMFTopic/tests/test_exportimport.py
+${PLONE_BASE}/CMFTopic/tests/test_exportimport.pyc
+${PLONE_BASE}/CMFTopic/version.txt
+${PLONE_BASE}/CMFTopic/xml/criteria.xml
+${PLONE_BASE}/CMFUid/DEPENDENCIES.txt
+${PLONE_BASE}/CMFUid/README.txt
+${PLONE_BASE}/CMFUid/UniqueIdAnnotationTool.py
+${PLONE_BASE}/CMFUid/UniqueIdAnnotationTool.pyc
+${PLONE_BASE}/CMFUid/UniqueIdGeneratorTool.py
+${PLONE_BASE}/CMFUid/UniqueIdGeneratorTool.pyc
+${PLONE_BASE}/CMFUid/UniqueIdHandlerTool.py
+${PLONE_BASE}/CMFUid/UniqueIdHandlerTool.pyc
+${PLONE_BASE}/CMFUid/__init__.py
+${PLONE_BASE}/CMFUid/__init__.pyc
+${PLONE_BASE}/CMFUid/configure.zcml
+${PLONE_BASE}/CMFUid/event.zcml
+${PLONE_BASE}/CMFUid/interfaces.py
+${PLONE_BASE}/CMFUid/interfaces.pyc
+${PLONE_BASE}/CMFUid/profiles/default/catalog.xml
+${PLONE_BASE}/CMFUid/profiles/default/componentregistry.xml
+${PLONE_BASE}/CMFUid/profiles/default/toolset.xml
+${PLONE_BASE}/CMFUid/testing.py
+${PLONE_BASE}/CMFUid/testing.pyc
+${PLONE_BASE}/CMFUid/tests/__init__.py
+${PLONE_BASE}/CMFUid/tests/__init__.pyc
+${PLONE_BASE}/CMFUid/tests/test_uidannotation.py
+${PLONE_BASE}/CMFUid/tests/test_uidannotation.pyc
+${PLONE_BASE}/CMFUid/tests/test_uidgeneration.py
+${PLONE_BASE}/CMFUid/tests/test_uidgeneration.pyc
+${PLONE_BASE}/CMFUid/tests/test_uidhandling.py
+${PLONE_BASE}/CMFUid/tests/test_uidhandling.pyc
+${PLONE_BASE}/CMFUid/tool.gif
+${PLONE_BASE}/CMFUid/version.txt
+${PLONE_BASE}/CMFUid/www/queryUID.pt
+${PLONE_BASE}/DCWorkflow/ContainerTab.py
+${PLONE_BASE}/DCWorkflow/ContainerTab.pyc
+${PLONE_BASE}/DCWorkflow/DCWorkflow.py
+${PLONE_BASE}/DCWorkflow/DCWorkflow.pyc
+${PLONE_BASE}/DCWorkflow/DEPENDENCIES.txt
+${PLONE_BASE}/DCWorkflow/Expression.py
+${PLONE_BASE}/DCWorkflow/Expression.pyc
+${PLONE_BASE}/DCWorkflow/Extensions/test_method.py
+${PLONE_BASE}/DCWorkflow/Extensions/test_method.pyc
+${PLONE_BASE}/DCWorkflow/Guard.py
+${PLONE_BASE}/DCWorkflow/Guard.pyc
+${PLONE_BASE}/DCWorkflow/README.txt
+${PLONE_BASE}/DCWorkflow/Scripts.py
+${PLONE_BASE}/DCWorkflow/Scripts.pyc
+${PLONE_BASE}/DCWorkflow/States.py
+${PLONE_BASE}/DCWorkflow/States.pyc
+${PLONE_BASE}/DCWorkflow/Transitions.py
+${PLONE_BASE}/DCWorkflow/Transitions.pyc
+${PLONE_BASE}/DCWorkflow/Variables.py
+${PLONE_BASE}/DCWorkflow/Variables.pyc
+${PLONE_BASE}/DCWorkflow/WorkflowUIMixin.py
+${PLONE_BASE}/DCWorkflow/WorkflowUIMixin.pyc
+${PLONE_BASE}/DCWorkflow/Worklists.py
+${PLONE_BASE}/DCWorkflow/Worklists.pyc
+${PLONE_BASE}/DCWorkflow/__init__.py
+${PLONE_BASE}/DCWorkflow/__init__.pyc
+${PLONE_BASE}/DCWorkflow/browser/__init__.py
+${PLONE_BASE}/DCWorkflow/browser/__init__.pyc
+${PLONE_BASE}/DCWorkflow/browser/configure.zcml
+${PLONE_BASE}/DCWorkflow/browser/workflow.py
+${PLONE_BASE}/DCWorkflow/browser/workflow.pyc
+${PLONE_BASE}/DCWorkflow/configure.zcml
+${PLONE_BASE}/DCWorkflow/doc/actbox.stx
+${PLONE_BASE}/DCWorkflow/doc/basics.stx
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/checkin.py
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/checkin.pyc
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/checkout.py
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/checkout.pyc
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/retractStages.py
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/retractStages.pyc
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/updateProductionStage.py
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/updateProductionStage.pyc
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/updateReviewStage.py
+${PLONE_BASE}/DCWorkflow/doc/examples/staging/updateReviewStage.pyc
+${PLONE_BASE}/DCWorkflow/doc/expressions.stx
+${PLONE_BASE}/DCWorkflow/doc/howto.stx
+${PLONE_BASE}/DCWorkflow/doc/worklists.stx
+${PLONE_BASE}/DCWorkflow/dtml/guard.dtml
+${PLONE_BASE}/DCWorkflow/dtml/state_groups.pt
+${PLONE_BASE}/DCWorkflow/dtml/state_permissions.dtml
+${PLONE_BASE}/DCWorkflow/dtml/state_properties.dtml
+${PLONE_BASE}/DCWorkflow/dtml/state_variables.dtml
+${PLONE_BASE}/DCWorkflow/dtml/states.dtml
+${PLONE_BASE}/DCWorkflow/dtml/transition_properties.dtml
+${PLONE_BASE}/DCWorkflow/dtml/transition_variables.dtml
+${PLONE_BASE}/DCWorkflow/dtml/transitions.dtml
+${PLONE_BASE}/DCWorkflow/dtml/variable_properties.dtml
+${PLONE_BASE}/DCWorkflow/dtml/variables.dtml
+${PLONE_BASE}/DCWorkflow/dtml/workflow_groups.pt
+${PLONE_BASE}/DCWorkflow/dtml/workflow_permissions.dtml
+${PLONE_BASE}/DCWorkflow/dtml/workflow_properties.dtml
+${PLONE_BASE}/DCWorkflow/dtml/worklist_properties.dtml
+${PLONE_BASE}/DCWorkflow/dtml/worklists.dtml
+${PLONE_BASE}/DCWorkflow/events.py
+${PLONE_BASE}/DCWorkflow/events.pyc
+${PLONE_BASE}/DCWorkflow/exportimport.py
+${PLONE_BASE}/DCWorkflow/exportimport.pyc
+${PLONE_BASE}/DCWorkflow/exportimport.zcml
+${PLONE_BASE}/DCWorkflow/help/001-overview.stx
+${PLONE_BASE}/DCWorkflow/help/002-expressions.stx
+${PLONE_BASE}/DCWorkflow/help/003-guards.stx
+${PLONE_BASE}/DCWorkflow/help/004-actionbox.stx
+${PLONE_BASE}/DCWorkflow/help/011-states.stx
+${PLONE_BASE}/DCWorkflow/help/021-transition.stx
+${PLONE_BASE}/DCWorkflow/help/031-variables.stx
+${PLONE_BASE}/DCWorkflow/help/041-worklists.stx
+${PLONE_BASE}/DCWorkflow/help/051-scripts.stx
+${PLONE_BASE}/DCWorkflow/help/061-permissions.stx
+${PLONE_BASE}/DCWorkflow/images/script.gif
+${PLONE_BASE}/DCWorkflow/images/state.gif
+${PLONE_BASE}/DCWorkflow/images/transition.gif
+${PLONE_BASE}/DCWorkflow/images/variable.gif
+${PLONE_BASE}/DCWorkflow/images/workflow.gif
+${PLONE_BASE}/DCWorkflow/images/worklist.gif
+${PLONE_BASE}/DCWorkflow/interfaces.py
+${PLONE_BASE}/DCWorkflow/interfaces.pyc
+${PLONE_BASE}/DCWorkflow/permissions.py
+${PLONE_BASE}/DCWorkflow/permissions.pyc
+${PLONE_BASE}/DCWorkflow/profiles/revision2/workflows/default_workflow/definition.xml
+${PLONE_BASE}/DCWorkflow/profiles/revision2/workflows.xml
+${PLONE_BASE}/DCWorkflow/testing.py
+${PLONE_BASE}/DCWorkflow/testing.pyc
+${PLONE_BASE}/DCWorkflow/tests/__init__.py
+${PLONE_BASE}/DCWorkflow/tests/__init__.pyc
+${PLONE_BASE}/DCWorkflow/tests/test_DCWorkflow.py
+${PLONE_BASE}/DCWorkflow/tests/test_DCWorkflow.pyc
+${PLONE_BASE}/DCWorkflow/tests/test_exportimport.py
+${PLONE_BASE}/DCWorkflow/tests/test_exportimport.pyc
+${PLONE_BASE}/DCWorkflow/tests/test_guard.py
+${PLONE_BASE}/DCWorkflow/tests/test_guard.pyc
+${PLONE_BASE}/DCWorkflow/tests/test_roles.py
+${PLONE_BASE}/DCWorkflow/tests/test_roles.pyc
+${PLONE_BASE}/DCWorkflow/tool.zcml
+${PLONE_BASE}/DCWorkflow/utils.py
+${PLONE_BASE}/DCWorkflow/utils.pyc
+${PLONE_BASE}/DCWorkflow/version.txt
+${PLONE_BASE}/DCWorkflow/xml/wtcWorkflowExport.xml
+${PLONE_BASE}/ExtendedPathIndex/ExtendedPathIndex.py
+${PLONE_BASE}/ExtendedPathIndex/ExtendedPathIndex.pyc
+${PLONE_BASE}/ExtendedPathIndex/HISTORY.txt
+${PLONE_BASE}/ExtendedPathIndex/README.txt
+${PLONE_BASE}/ExtendedPathIndex/__init__.py
+${PLONE_BASE}/ExtendedPathIndex/__init__.pyc
+${PLONE_BASE}/ExtendedPathIndex/dtml/addExtendedPathIndex.dtml
+${PLONE_BASE}/ExtendedPathIndex/dtml/manageExtendedPathIndex.dtml
+${PLONE_BASE}/ExtendedPathIndex/help/ExtendedPathIndex_searchResults.stx
+${PLONE_BASE}/ExtendedPathIndex/ptests/__init__.py
+${PLONE_BASE}/ExtendedPathIndex/ptests/__init__.pyc
+${PLONE_BASE}/ExtendedPathIndex/ptests/common.py
+${PLONE_BASE}/ExtendedPathIndex/ptests/common.pyc
+${PLONE_BASE}/ExtendedPathIndex/ptests/createData.py
+${PLONE_BASE}/ExtendedPathIndex/ptests/createData.pyc
+${PLONE_BASE}/ExtendedPathIndex/ptests/testProfiling.py
+${PLONE_BASE}/ExtendedPathIndex/ptests/testProfiling.pyc
+${PLONE_BASE}/ExtendedPathIndex/ptests/testQuery.py
+${PLONE_BASE}/ExtendedPathIndex/ptests/testQuery.pyc
+${PLONE_BASE}/ExtendedPathIndex/tests/__init__.py
+${PLONE_BASE}/ExtendedPathIndex/tests/__init__.pyc
+${PLONE_BASE}/ExtendedPathIndex/tests/epitc.py
+${PLONE_BASE}/ExtendedPathIndex/tests/epitc.pyc
+${PLONE_BASE}/ExtendedPathIndex/tests/framework.py
+${PLONE_BASE}/ExtendedPathIndex/tests/framework.pyc
+${PLONE_BASE}/ExtendedPathIndex/tests/runalltests.py
+${PLONE_BASE}/ExtendedPathIndex/tests/runalltests.pyc
+${PLONE_BASE}/ExtendedPathIndex/tests/testExtendedPathIndex.py
+${PLONE_BASE}/ExtendedPathIndex/tests/testExtendedPathIndex.pyc
+${PLONE_BASE}/ExtendedPathIndex/tests/testIndexedAttrs.py
+${PLONE_BASE}/ExtendedPathIndex/tests/testIndexedAttrs.pyc
+${PLONE_BASE}/ExtendedPathIndex/tests/testSetup.py
+${PLONE_BASE}/ExtendedPathIndex/tests/testSetup.pyc
+${PLONE_BASE}/ExtendedPathIndex/tests/testSkeleton.py
+${PLONE_BASE}/ExtendedPathIndex/tests/testSkeleton.pyc
+${PLONE_BASE}/ExtendedPathIndex/version.txt
+${PLONE_BASE}/ExtendedPathIndex/www/index.gif
+${PLONE_BASE}/ExternalEditor/CHANGES.txt
+${PLONE_BASE}/ExternalEditor/ExternalEditor.py
+${PLONE_BASE}/ExternalEditor/ExternalEditor.pyc
+${PLONE_BASE}/ExternalEditor/INSTALL-UNIX.txt
+${PLONE_BASE}/ExternalEditor/INSTALL-WIN32.txt
+${PLONE_BASE}/ExternalEditor/LICENSE.txt
+${PLONE_BASE}/ExternalEditor/MANIFEST.in
+${PLONE_BASE}/ExternalEditor/Plugins/__init__.py
+${PLONE_BASE}/ExternalEditor/Plugins/__init__.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/dreamweaver.py
+${PLONE_BASE}/ExternalEditor/Plugins/dreamweaver.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/excel.py
+${PLONE_BASE}/ExternalEditor/Plugins/excel.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/homesite.py
+${PLONE_BASE}/ExternalEditor/Plugins/homesite.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/homesite5.py
+${PLONE_BASE}/ExternalEditor/Plugins/homesite5.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/msohtmed.py
+${PLONE_BASE}/ExternalEditor/Plugins/msohtmed.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/photoshop.py
+${PLONE_BASE}/ExternalEditor/Plugins/photoshop.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/photoshp.py
+${PLONE_BASE}/ExternalEditor/Plugins/photoshp.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/powerpnt.py
+${PLONE_BASE}/ExternalEditor/Plugins/powerpnt.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/powerpoint.py
+${PLONE_BASE}/ExternalEditor/Plugins/powerpoint.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/winword.py
+${PLONE_BASE}/ExternalEditor/Plugins/winword.pyc
+${PLONE_BASE}/ExternalEditor/Plugins/word.py
+${PLONE_BASE}/ExternalEditor/Plugins/word.pyc
+${PLONE_BASE}/ExternalEditor/README.txt
+${PLONE_BASE}/ExternalEditor/__init__.py
+${PLONE_BASE}/ExternalEditor/__init__.pyc
+${PLONE_BASE}/ExternalEditor/edit_icon.gif
+${PLONE_BASE}/ExternalEditor/findResult.dtml
+${PLONE_BASE}/ExternalEditor/man/zopeedit.1
+${PLONE_BASE}/ExternalEditor/manage_main.dtml
+${PLONE_BASE}/ExternalEditor/manage_tabs.dtml
+${PLONE_BASE}/ExternalEditor/setup.py
+${PLONE_BASE}/ExternalEditor/setup.pyc
+${PLONE_BASE}/ExternalEditor/tests/__init__.py
+${PLONE_BASE}/ExternalEditor/tests/__init__.pyc
+${PLONE_BASE}/ExternalEditor/tests/edit.txt
+${PLONE_BASE}/ExternalEditor/tests/link.txt
+${PLONE_BASE}/ExternalEditor/tests/test_functional.py
+${PLONE_BASE}/ExternalEditor/tests/test_functional.pyc
+${PLONE_BASE}/ExternalEditor/version.txt
+${PLONE_BASE}/ExternalEditor/win32/Python-License.txt
+${PLONE_BASE}/ExternalEditor/win32/Pythonwin-License.txt
+${PLONE_BASE}/ExternalEditor/win32/ZopeEdit.ini
+${PLONE_BASE}/ExternalEditor/win32/ZopeExtEditDummyOCX.ocx
+${PLONE_BASE}/ExternalEditor/win32/buildexe.bat
+${PLONE_BASE}/ExternalEditor/win32/ocx.txt
+${PLONE_BASE}/ExternalEditor/win32/setup.iss
+${PLONE_BASE}/ExternalEditor/zopeedit.py
+${PLONE_BASE}/ExternalEditor/zopeedit.pyc
+${PLONE_BASE}/GenericSetup/CHANGES.txt
+${PLONE_BASE}/GenericSetup/CREDITS.txt
+${PLONE_BASE}/GenericSetup/DEPENDENCIES.txt
+${PLONE_BASE}/GenericSetup/MailHost/__init__.py
+${PLONE_BASE}/GenericSetup/MailHost/__init__.pyc
+${PLONE_BASE}/GenericSetup/MailHost/configure.zcml
+${PLONE_BASE}/GenericSetup/MailHost/exportimport.py
+${PLONE_BASE}/GenericSetup/MailHost/exportimport.pyc
+${PLONE_BASE}/GenericSetup/MailHost/tests/__init__.py
+${PLONE_BASE}/GenericSetup/MailHost/tests/__init__.pyc
+${PLONE_BASE}/GenericSetup/MailHost/tests/test_exportimport.py
+${PLONE_BASE}/GenericSetup/MailHost/tests/test_exportimport.pyc
+${PLONE_BASE}/GenericSetup/OFSP/__init__.py
+${PLONE_BASE}/GenericSetup/OFSP/__init__.pyc
+${PLONE_BASE}/GenericSetup/OFSP/configure.zcml
+${PLONE_BASE}/GenericSetup/OFSP/exportimport.py
+${PLONE_BASE}/GenericSetup/OFSP/exportimport.pyc
+${PLONE_BASE}/GenericSetup/OFSP/tests/__init__.py
+${PLONE_BASE}/GenericSetup/OFSP/tests/__init__.pyc
+${PLONE_BASE}/GenericSetup/OFSP/tests/test_exportimport.py
+${PLONE_BASE}/GenericSetup/OFSP/tests/test_exportimport.pyc
+${PLONE_BASE}/GenericSetup/PageTemplates/__init__.py
+${PLONE_BASE}/GenericSetup/PageTemplates/__init__.pyc
+${PLONE_BASE}/GenericSetup/PageTemplates/configure.zcml
+${PLONE_BASE}/GenericSetup/PageTemplates/exportimport.py
+${PLONE_BASE}/GenericSetup/PageTemplates/exportimport.pyc
+${PLONE_BASE}/GenericSetup/PageTemplates/interfaces.py
+${PLONE_BASE}/GenericSetup/PageTemplates/interfaces.pyc
+${PLONE_BASE}/GenericSetup/PageTemplates/tests/__init__.py
+${PLONE_BASE}/GenericSetup/PageTemplates/tests/__init__.pyc
+${PLONE_BASE}/GenericSetup/PageTemplates/tests/test_exportimport.py
+${PLONE_BASE}/GenericSetup/PageTemplates/tests/test_exportimport.pyc
+${PLONE_BASE}/GenericSetup/PluginIndexes/__init__.py
+${PLONE_BASE}/GenericSetup/PluginIndexes/__init__.pyc
+${PLONE_BASE}/GenericSetup/PluginIndexes/configure.zcml
+${PLONE_BASE}/GenericSetup/PluginIndexes/exportimport.py
+${PLONE_BASE}/GenericSetup/PluginIndexes/exportimport.pyc
+${PLONE_BASE}/GenericSetup/PluginIndexes/tests/__init__.py
+${PLONE_BASE}/GenericSetup/PluginIndexes/tests/__init__.pyc
+${PLONE_BASE}/GenericSetup/PluginIndexes/tests/test_exportimport.py
+${PLONE_BASE}/GenericSetup/PluginIndexes/tests/test_exportimport.pyc
+${PLONE_BASE}/GenericSetup/PythonScripts/__init__.py
+${PLONE_BASE}/GenericSetup/PythonScripts/__init__.pyc
+${PLONE_BASE}/GenericSetup/PythonScripts/configure.zcml
+${PLONE_BASE}/GenericSetup/PythonScripts/exportimport.py
+${PLONE_BASE}/GenericSetup/PythonScripts/exportimport.pyc
+${PLONE_BASE}/GenericSetup/PythonScripts/interfaces.py
+${PLONE_BASE}/GenericSetup/PythonScripts/interfaces.pyc
+${PLONE_BASE}/GenericSetup/PythonScripts/tests/__init__.py
+${PLONE_BASE}/GenericSetup/PythonScripts/tests/__init__.pyc
+${PLONE_BASE}/GenericSetup/PythonScripts/tests/test_exportimport.py
+${PLONE_BASE}/GenericSetup/PythonScripts/tests/test_exportimport.pyc
+${PLONE_BASE}/GenericSetup/README.txt
+${PLONE_BASE}/GenericSetup/ZCTextIndex/__init__.py
+${PLONE_BASE}/GenericSetup/ZCTextIndex/__init__.pyc
+${PLONE_BASE}/GenericSetup/ZCTextIndex/configure.zcml
+${PLONE_BASE}/GenericSetup/ZCTextIndex/exportimport.py
+${PLONE_BASE}/GenericSetup/ZCTextIndex/exportimport.pyc
+${PLONE_BASE}/GenericSetup/ZCTextIndex/tests/__init__.py
+${PLONE_BASE}/GenericSetup/ZCTextIndex/tests/__init__.pyc
+${PLONE_BASE}/GenericSetup/ZCTextIndex/tests/test_exportimport.py
+${PLONE_BASE}/GenericSetup/ZCTextIndex/tests/test_exportimport.pyc
+${PLONE_BASE}/GenericSetup/ZCatalog/__init__.py
+${PLONE_BASE}/GenericSetup/ZCatalog/__init__.pyc
+${PLONE_BASE}/GenericSetup/ZCatalog/configure.zcml
+${PLONE_BASE}/GenericSetup/ZCatalog/exportimport.py
+${PLONE_BASE}/GenericSetup/ZCatalog/exportimport.pyc
+${PLONE_BASE}/GenericSetup/ZCatalog/tests/__init__.py
+${PLONE_BASE}/GenericSetup/ZCatalog/tests/__init__.pyc
+${PLONE_BASE}/GenericSetup/ZCatalog/tests/test_exportimport.py
+${PLONE_BASE}/GenericSetup/ZCatalog/tests/test_exportimport.pyc
+${PLONE_BASE}/GenericSetup/__init__.py
+${PLONE_BASE}/GenericSetup/__init__.pyc
+${PLONE_BASE}/GenericSetup/bbb/__init__.py
+${PLONE_BASE}/GenericSetup/bbb/__init__.pyc
+${PLONE_BASE}/GenericSetup/bbb/registry.py
+${PLONE_BASE}/GenericSetup/bbb/registry.pyc
+${PLONE_BASE}/GenericSetup/bbb/tool.py
+${PLONE_BASE}/GenericSetup/bbb/tool.pyc
+${PLONE_BASE}/GenericSetup/browser/__init__.py
+${PLONE_BASE}/GenericSetup/browser/__init__.pyc
+${PLONE_BASE}/GenericSetup/browser/addWithPresettings.pt
+${PLONE_BASE}/GenericSetup/browser/components.pt
+${PLONE_BASE}/GenericSetup/browser/components.py
+${PLONE_BASE}/GenericSetup/browser/components.pyc
+${PLONE_BASE}/GenericSetup/browser/configure.zcml
+${PLONE_BASE}/GenericSetup/browser/utils.py
+${PLONE_BASE}/GenericSetup/browser/utils.pyc
+${PLONE_BASE}/GenericSetup/components.py
+${PLONE_BASE}/GenericSetup/components.pyc
+${PLONE_BASE}/GenericSetup/configure.zcml
+${PLONE_BASE}/GenericSetup/content.py
+${PLONE_BASE}/GenericSetup/content.pyc
+${PLONE_BASE}/GenericSetup/context.py
+${PLONE_BASE}/GenericSetup/context.pyc
+${PLONE_BASE}/GenericSetup/differ.py
+${PLONE_BASE}/GenericSetup/differ.pyc
+${PLONE_BASE}/GenericSetup/doc/SampleSite/README.txt
+${PLONE_BASE}/GenericSetup/doc/SampleSite/__init__.py
+${PLONE_BASE}/GenericSetup/doc/SampleSite/__init__.pyc
+${PLONE_BASE}/GenericSetup/doc/SampleSite/configure.zcml
+${PLONE_BASE}/GenericSetup/doc/SampleSite/exportimport.py
+${PLONE_BASE}/GenericSetup/doc/SampleSite/exportimport.pyc
+${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/export_steps.xml
+${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/import_steps.xml
+${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/rolemap.xml
+${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/siteroot/bar.py
+${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/siteroot/catalog.xml
+${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/siteroot/foo.xml
+${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/siteroot/index_html.pt
+${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/siteroot/mailhost.xml
+${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/siteroot.xml
+${PLONE_BASE}/GenericSetup/doc/configurators.txt
+${PLONE_BASE}/GenericSetup/doc/handlers.txt
+${PLONE_BASE}/GenericSetup/doc/profiles.txt
+${PLONE_BASE}/GenericSetup/exceptions.py
+${PLONE_BASE}/GenericSetup/exceptions.pyc
+${PLONE_BASE}/GenericSetup/interfaces.py
+${PLONE_BASE}/GenericSetup/interfaces.pyc
+${PLONE_BASE}/GenericSetup/meta.zcml
+${PLONE_BASE}/GenericSetup/metadata.py
+${PLONE_BASE}/GenericSetup/metadata.pyc
+${PLONE_BASE}/GenericSetup/permissions.py
+${PLONE_BASE}/GenericSetup/permissions.pyc
+${PLONE_BASE}/GenericSetup/registry.py
+${PLONE_BASE}/GenericSetup/registry.pyc
+${PLONE_BASE}/GenericSetup/rolemap.py
+${PLONE_BASE}/GenericSetup/rolemap.pyc
+${PLONE_BASE}/GenericSetup/testing.py
+${PLONE_BASE}/GenericSetup/testing.pyc
+${PLONE_BASE}/GenericSetup/tests/__init__.py
+${PLONE_BASE}/GenericSetup/tests/__init__.pyc
+${PLONE_BASE}/GenericSetup/tests/common.py
+${PLONE_BASE}/GenericSetup/tests/common.pyc
+${PLONE_BASE}/GenericSetup/tests/conformance.py
+${PLONE_BASE}/GenericSetup/tests/conformance.pyc
+${PLONE_BASE}/GenericSetup/tests/default_profile/export_steps.xml
+${PLONE_BASE}/GenericSetup/tests/default_profile/import_steps.xml
+${PLONE_BASE}/GenericSetup/tests/default_profile/toolset.xml
+${PLONE_BASE}/GenericSetup/tests/faux_objects.py
+${PLONE_BASE}/GenericSetup/tests/faux_objects.pyc
+${PLONE_BASE}/GenericSetup/tests/simple.png
+${PLONE_BASE}/GenericSetup/tests/test_components.py
+${PLONE_BASE}/GenericSetup/tests/test_components.pyc
+${PLONE_BASE}/GenericSetup/tests/test_content.py
+${PLONE_BASE}/GenericSetup/tests/test_content.pyc
+${PLONE_BASE}/GenericSetup/tests/test_context.py
+${PLONE_BASE}/GenericSetup/tests/test_context.pyc
+${PLONE_BASE}/GenericSetup/tests/test_differ.py
+${PLONE_BASE}/GenericSetup/tests/test_differ.pyc
+${PLONE_BASE}/GenericSetup/tests/test_profile_metadata.py
+${PLONE_BASE}/GenericSetup/tests/test_profile_metadata.pyc
+${PLONE_BASE}/GenericSetup/tests/test_registry.py
+${PLONE_BASE}/GenericSetup/tests/test_registry.pyc
+${PLONE_BASE}/GenericSetup/tests/test_rolemap.py
+${PLONE_BASE}/GenericSetup/tests/test_rolemap.pyc
+${PLONE_BASE}/GenericSetup/tests/test_tool.py
+${PLONE_BASE}/GenericSetup/tests/test_tool.pyc
+${PLONE_BASE}/GenericSetup/tests/test_utils.py
+${PLONE_BASE}/GenericSetup/tests/test_utils.pyc
+${PLONE_BASE}/GenericSetup/tests/test_zcml.py
+${PLONE_BASE}/GenericSetup/tests/test_zcml.pyc
+${PLONE_BASE}/GenericSetup/tests/versioned_profile/export_steps.xml
+${PLONE_BASE}/GenericSetup/tests/versioned_profile/import_steps.xml
+${PLONE_BASE}/GenericSetup/tests/versioned_profile/metadata.xml
+${PLONE_BASE}/GenericSetup/tests/versioned_profile/toolset.xml
+${PLONE_BASE}/GenericSetup/tool.py
+${PLONE_BASE}/GenericSetup/tool.pyc
+${PLONE_BASE}/GenericSetup/upgrade.py
+${PLONE_BASE}/GenericSetup/upgrade.pyc
+${PLONE_BASE}/GenericSetup/utils.py
+${PLONE_BASE}/GenericSetup/utils.pyc
+${PLONE_BASE}/GenericSetup/version.txt
+${PLONE_BASE}/GenericSetup/www/setup_upgrades.zpt
+${PLONE_BASE}/GenericSetup/www/sutCompare.zpt
+${PLONE_BASE}/GenericSetup/www/sutExportSteps.zpt
+${PLONE_BASE}/GenericSetup/www/sutImportSteps.zpt
+${PLONE_BASE}/GenericSetup/www/sutProperties.zpt
+${PLONE_BASE}/GenericSetup/www/sutSnapshots.zpt
+${PLONE_BASE}/GenericSetup/www/tool.png
+${PLONE_BASE}/GenericSetup/www/toolAdd.zpt
+${PLONE_BASE}/GenericSetup/www/upgradeStep.zpt
+${PLONE_BASE}/GenericSetup/xml/esrExport.xml
+${PLONE_BASE}/GenericSetup/xml/isrExport.xml
+${PLONE_BASE}/GenericSetup/xml/rmeExport.xml
+${PLONE_BASE}/GenericSetup/xml/tscExport.xml
+${PLONE_BASE}/GenericSetup/zcml.py
+${PLONE_BASE}/GenericSetup/zcml.pyc
+${PLONE_BASE}/GroupUserFolder/ABOUT
+${PLONE_BASE}/GroupUserFolder/CHANGES
+${PLONE_BASE}/GroupUserFolder/CONTRIBUTORS
+${PLONE_BASE}/GroupUserFolder/DynaList.py
+${PLONE_BASE}/GroupUserFolder/DynaList.pyc
+${PLONE_BASE}/GroupUserFolder/Extensions/Install.py
+${PLONE_BASE}/GroupUserFolder/Extensions/Install.pyc
+${PLONE_BASE}/GroupUserFolder/Extensions/__init__.py
+${PLONE_BASE}/GroupUserFolder/Extensions/__init__.pyc
+${PLONE_BASE}/GroupUserFolder/GRUFFolder.py
+${PLONE_BASE}/GroupUserFolder/GRUFFolder.pyc
+${PLONE_BASE}/GroupUserFolder/GRUFUser.py
+${PLONE_BASE}/GroupUserFolder/GRUFUser.pyc
+${PLONE_BASE}/GroupUserFolder/GroupDataTool.py
+${PLONE_BASE}/GroupUserFolder/GroupDataTool.pyc
+${PLONE_BASE}/GroupUserFolder/GroupUserFolder.py
+${PLONE_BASE}/GroupUserFolder/GroupUserFolder.pyc
+${PLONE_BASE}/GroupUserFolder/GroupsTool.py
+${PLONE_BASE}/GroupUserFolder/GroupsTool.pyc
+${PLONE_BASE}/GroupUserFolder/GroupsToolPermissions.py
+${PLONE_BASE}/GroupUserFolder/GroupsToolPermissions.pyc
+${PLONE_BASE}/GroupUserFolder/INSTALL.txt
+${PLONE_BASE}/GroupUserFolder/Installation.py
+${PLONE_BASE}/GroupUserFolder/Installation.pyc
+${PLONE_BASE}/GroupUserFolder/LDAPGroupFolder.py
+${PLONE_BASE}/GroupUserFolder/LDAPGroupFolder.pyc
+${PLONE_BASE}/GroupUserFolder/LDAPUserFolderAdapter.py
+${PLONE_BASE}/GroupUserFolder/LDAPUserFolderAdapter.pyc
+${PLONE_BASE}/GroupUserFolder/LICENSE
+${PLONE_BASE}/GroupUserFolder/LICENSE.txt
+${PLONE_BASE}/GroupUserFolder/Log.py
+${PLONE_BASE}/GroupUserFolder/Log.pyc
+${PLONE_BASE}/GroupUserFolder/PRODUCT_NAME
+${PLONE_BASE}/GroupUserFolder/PloneFeaturePreview.py
+${PLONE_BASE}/GroupUserFolder/PloneFeaturePreview.pyc
+${PLONE_BASE}/GroupUserFolder/README.txt
+${PLONE_BASE}/GroupUserFolder/TESTED_WITH
+${PLONE_BASE}/GroupUserFolder/TODO
+${PLONE_BASE}/GroupUserFolder/__init__.py
+${PLONE_BASE}/GroupUserFolder/__init__.pyc
+${PLONE_BASE}/GroupUserFolder/class_utility.py
+${PLONE_BASE}/GroupUserFolder/class_utility.pyc
+${PLONE_BASE}/GroupUserFolder/cvs2cl.pl
+${PLONE_BASE}/GroupUserFolder/debian/changelog
+${PLONE_BASE}/GroupUserFolder/debian/config
+${PLONE_BASE}/GroupUserFolder/debian/control
+${PLONE_BASE}/GroupUserFolder/debian/copyright
+${PLONE_BASE}/GroupUserFolder/debian/postinst
+${PLONE_BASE}/GroupUserFolder/debian/prerm
+${PLONE_BASE}/GroupUserFolder/debian/rules
+${PLONE_BASE}/GroupUserFolder/debian/templates
+${PLONE_BASE}/GroupUserFolder/debian/watch
+${PLONE_BASE}/GroupUserFolder/design.txt
+${PLONE_BASE}/GroupUserFolder/doc/FAQ
+${PLONE_BASE}/GroupUserFolder/doc/GRUF3.0.stx
+${PLONE_BASE}/GroupUserFolder/doc/GRUFLogo.png
+${PLONE_BASE}/GroupUserFolder/doc/SCREENSHOTS
+${PLONE_BASE}/GroupUserFolder/doc/folder_contents.png
+${PLONE_BASE}/GroupUserFolder/doc/icon.png
+${PLONE_BASE}/GroupUserFolder/doc/interview.txt
+${PLONE_BASE}/GroupUserFolder/doc/menu.png
+${PLONE_BASE}/GroupUserFolder/doc/tab_audit.png
+${PLONE_BASE}/GroupUserFolder/doc/tab_groups.png
+${PLONE_BASE}/GroupUserFolder/doc/tab_overview.png
+${PLONE_BASE}/GroupUserFolder/doc/tab_sources.png
+${PLONE_BASE}/GroupUserFolder/doc/tab_users.png
+${PLONE_BASE}/GroupUserFolder/doc/user_edit.png
+${PLONE_BASE}/GroupUserFolder/dtml/GRUFFolder_main.dtml
+${PLONE_BASE}/GroupUserFolder/dtml/GRUF_audit.zpt
+${PLONE_BASE}/GroupUserFolder/dtml/GRUF_contents.zpt
+${PLONE_BASE}/GroupUserFolder/dtml/GRUF_groups.zpt
+${PLONE_BASE}/GroupUserFolder/dtml/GRUF_newusers.zpt
+${PLONE_BASE}/GroupUserFolder/dtml/GRUF_overview.zpt
+${PLONE_BASE}/GroupUserFolder/dtml/GRUF_user.zpt
+${PLONE_BASE}/GroupUserFolder/dtml/GRUF_users.zpt
+${PLONE_BASE}/GroupUserFolder/dtml/GRUF_wizard.zpt
+${PLONE_BASE}/GroupUserFolder/dtml/addLDAPGroupFolder.dtml
+${PLONE_BASE}/GroupUserFolder/dtml/configureGroupsTool.dtml
+${PLONE_BASE}/GroupUserFolder/dtml/explainGroupDataTool.dtml
+${PLONE_BASE}/GroupUserFolder/dtml/explainGroupsTool.dtml
+${PLONE_BASE}/GroupUserFolder/dtml/groups.dtml
+${PLONE_BASE}/GroupUserFolder/dtml/roles.png
+${PLONE_BASE}/GroupUserFolder/global_symbols.py
+${PLONE_BASE}/GroupUserFolder/global_symbols.pyc
+${PLONE_BASE}/GroupUserFolder/interfaces/IUserFolder.py
+${PLONE_BASE}/GroupUserFolder/interfaces/IUserFolder.pyc
+${PLONE_BASE}/GroupUserFolder/interfaces/__init__.py
+${PLONE_BASE}/GroupUserFolder/interfaces/__init__.pyc
+${PLONE_BASE}/GroupUserFolder/interfaces/portal_groupdata.py
+${PLONE_BASE}/GroupUserFolder/interfaces/portal_groupdata.pyc
+${PLONE_BASE}/GroupUserFolder/interfaces/portal_groups.py
+${PLONE_BASE}/GroupUserFolder/interfaces/portal_groups.pyc
+${PLONE_BASE}/GroupUserFolder/product.txt
+${PLONE_BASE}/GroupUserFolder/skins/gruf/GroupSpaceFolderishType_view.pt.old
+${PLONE_BASE}/GroupUserFolder/skins/gruf/change_password.py
+${PLONE_BASE}/GroupUserFolder/skins/gruf/defaultGroup.gif
+${PLONE_BASE}/GroupUserFolder/skins/gruf/folder_localrole_form_plone1.pt
+${PLONE_BASE}/GroupUserFolder/skins/gruf/getUsersInGroup.py
+${PLONE_BASE}/GroupUserFolder/skins/gruf/gruf_ldap_required_fields.py
+${PLONE_BASE}/GroupUserFolder/skins/gruf/prefs_group_manage.cpy
+${PLONE_BASE}/GroupUserFolder/skins/gruf/prefs_group_manage.cpy.metadata
+${PLONE_BASE}/GroupUserFolder/skins/gruf_plone_2_0/README.txt
+${PLONE_BASE}/GroupUserFolder/skins/gruf_plone_2_0/folder_localrole_form.pt
+${PLONE_BASE}/GroupUserFolder/tests/GRUFTestCase.py
+${PLONE_BASE}/GroupUserFolder/tests/GRUFTestCase.pyc
+${PLONE_BASE}/GroupUserFolder/tests/Log.py
+${PLONE_BASE}/GroupUserFolder/tests/Log.pyc
+${PLONE_BASE}/GroupUserFolder/tests/README
+${PLONE_BASE}/GroupUserFolder/tests/__init__.py
+${PLONE_BASE}/GroupUserFolder/tests/__init__.pyc
+${PLONE_BASE}/GroupUserFolder/tests/framework.py
+${PLONE_BASE}/GroupUserFolder/tests/framework.pyc
+${PLONE_BASE}/GroupUserFolder/tests/runalltests.py
+${PLONE_BASE}/GroupUserFolder/tests/runalltests.pyc
+${PLONE_BASE}/GroupUserFolder/tests/runtests.sh
+${PLONE_BASE}/GroupUserFolder/tests/runtests_std_zope.sh
+${PLONE_BASE}/GroupUserFolder/tests/testGroupUserFolder.py
+${PLONE_BASE}/GroupUserFolder/tests/testGroupUserFolder.pyc
+${PLONE_BASE}/GroupUserFolder/tests/testGroupUserFolderAPI.py
+${PLONE_BASE}/GroupUserFolder/tests/testGroupUserFolderAPI.pyc
+${PLONE_BASE}/GroupUserFolder/tests/testInterface.py
+${PLONE_BASE}/GroupUserFolder/tests/testInterface.pyc
+${PLONE_BASE}/GroupUserFolder/tests/testLDAPGroupFolder.py
+${PLONE_BASE}/GroupUserFolder/tests/testLDAPGroupFolder.pyc
+${PLONE_BASE}/GroupUserFolder/tests/testLDAPUserFolder.py
+${PLONE_BASE}/GroupUserFolder/tests/testLDAPUserFolder.pyc
+${PLONE_BASE}/GroupUserFolder/tests/testMultipleSources.py
+${PLONE_BASE}/GroupUserFolder/tests/testMultipleSources.pyc
+${PLONE_BASE}/GroupUserFolder/tests/testPloneInterface.py
+${PLONE_BASE}/GroupUserFolder/tests/testPloneInterface.pyc
+${PLONE_BASE}/GroupUserFolder/tests/testPloneTools.py
+${PLONE_BASE}/GroupUserFolder/tests/testPloneTools.pyc
+${PLONE_BASE}/GroupUserFolder/tests/testUserAPI.py
+${PLONE_BASE}/GroupUserFolder/tests/testUserAPI.pyc
+${PLONE_BASE}/GroupUserFolder/tool.gif
+${PLONE_BASE}/GroupUserFolder/version.txt
+${PLONE_BASE}/GroupUserFolder/www/GRUFGroups.gif
+${PLONE_BASE}/GroupUserFolder/www/GRUFUsers.gif
+${PLONE_BASE}/GroupUserFolder/www/GroupUserFolder.gif
+${PLONE_BASE}/GroupUserFolder/www/LDAPGroupFolder.gif
+${PLONE_BASE}/GroupUserFolder/www/down_arrow.gif
+${PLONE_BASE}/GroupUserFolder/www/down_arrow_grey.gif
+${PLONE_BASE}/GroupUserFolder/www/up_arrow.gif
+${PLONE_BASE}/GroupUserFolder/www/up_arrow_grey.gif
+${PLONE_BASE}/Marshall/COPYRIGHT.txt
+${PLONE_BASE}/Marshall/Extensions/Install.py
+${PLONE_BASE}/Marshall/Extensions/Install.pyc
+${PLONE_BASE}/Marshall/Extensions/__init__.py
+${PLONE_BASE}/Marshall/Extensions/__init__.pyc
+${PLONE_BASE}/Marshall/Extensions/export.py
+${PLONE_BASE}/Marshall/Extensions/export.pyc
+${PLONE_BASE}/Marshall/HISTORY.txt
+${PLONE_BASE}/Marshall/INSTALL.txt
+${PLONE_BASE}/Marshall/LICENSE.txt
+${PLONE_BASE}/Marshall/README.txt
+${PLONE_BASE}/Marshall/TODO.txt
+${PLONE_BASE}/Marshall/__init__.py
+${PLONE_BASE}/Marshall/__init__.pyc
+${PLONE_BASE}/Marshall/config.py
+${PLONE_BASE}/Marshall/config.pyc
+${PLONE_BASE}/Marshall/doc/ATETREE.txt
+${PLONE_BASE}/Marshall/doc/README.txt
+${PLONE_BASE}/Marshall/exceptions.py
+${PLONE_BASE}/Marshall/exceptions.pyc
+${PLONE_BASE}/Marshall/export.py
+${PLONE_BASE}/Marshall/export.pyc
+${PLONE_BASE}/Marshall/expression.py
+${PLONE_BASE}/Marshall/expression.pyc
+${PLONE_BASE}/Marshall/handlers/__init__.py
+${PLONE_BASE}/Marshall/handlers/__init__.pyc
+${PLONE_BASE}/Marshall/handlers/atxml.py
+${PLONE_BASE}/Marshall/handlers/atxml.pyc
+${PLONE_BASE}/Marshall/handlers/base.py
+${PLONE_BASE}/Marshall/handlers/base.pyc
+${PLONE_BASE}/Marshall/handlers/primaryfield.py
+${PLONE_BASE}/Marshall/handlers/primaryfield.pyc
+${PLONE_BASE}/Marshall/handlers/rfc822header.py
+${PLONE_BASE}/Marshall/handlers/rfc822header.pyc
+${PLONE_BASE}/Marshall/handlers/simple.py
+${PLONE_BASE}/Marshall/handlers/simple.pyc
+${PLONE_BASE}/Marshall/interfaces/__init__.py
+${PLONE_BASE}/Marshall/interfaces/__init__.pyc
+${PLONE_BASE}/Marshall/interfaces/predicate.py
+${PLONE_BASE}/Marshall/interfaces/predicate.pyc
+${PLONE_BASE}/Marshall/makefile.in
+${PLONE_BASE}/Marshall/marshaller.py
+${PLONE_BASE}/Marshall/marshaller.pyc
+${PLONE_BASE}/Marshall/namespaces/__init__.py
+${PLONE_BASE}/Marshall/namespaces/__init__.pyc
+${PLONE_BASE}/Marshall/namespaces/adobens.py
+${PLONE_BASE}/Marshall/namespaces/adobens.pyc
+${PLONE_BASE}/Marshall/namespaces/atns.py
+${PLONE_BASE}/Marshall/namespaces/atns.pyc
+${PLONE_BASE}/Marshall/namespaces/cmfns.py
+${PLONE_BASE}/Marshall/namespaces/cmfns.pyc
+${PLONE_BASE}/Marshall/namespaces/dcns.py
+${PLONE_BASE}/Marshall/namespaces/dcns.pyc
+${PLONE_BASE}/Marshall/namespaces/uuns.py
+${PLONE_BASE}/Marshall/namespaces/uuns.pyc
+${PLONE_BASE}/Marshall/predicates/__init__.py
+${PLONE_BASE}/Marshall/predicates/__init__.pyc
+${PLONE_BASE}/Marshall/predicates/_base.py
+${PLONE_BASE}/Marshall/predicates/_base.pyc
+${PLONE_BASE}/Marshall/predicates/_xmlns.py
+${PLONE_BASE}/Marshall/predicates/_xmlns.pyc
+${PLONE_BASE}/Marshall/registry.py
+${PLONE_BASE}/Marshall/registry.pyc
+${PLONE_BASE}/Marshall/setup.py
+${PLONE_BASE}/Marshall/setup.pyc
+${PLONE_BASE}/Marshall/tests/__init__.py
+${PLONE_BASE}/Marshall/tests/__init__.pyc
+${PLONE_BASE}/Marshall/tests/base.py
+${PLONE_BASE}/Marshall/tests/base.pyc
+${PLONE_BASE}/Marshall/tests/data/file.html
+${PLONE_BASE}/Marshall/tests/data/file.pdf
+${PLONE_BASE}/Marshall/tests/data/file.txt
+${PLONE_BASE}/Marshall/tests/data/image.gif
+${PLONE_BASE}/Marshall/tests/examples/__init__.py
+${PLONE_BASE}/Marshall/tests/examples/__init__.pyc
+${PLONE_BASE}/Marshall/tests/examples/blob.py
+${PLONE_BASE}/Marshall/tests/examples/blob.pyc
+${PLONE_BASE}/Marshall/tests/examples/person.py
+${PLONE_BASE}/Marshall/tests/examples/person.pyc
+${PLONE_BASE}/Marshall/tests/export/atxml/.metadata/test
+${PLONE_BASE}/Marshall/tests/export/atxml/test
+${PLONE_BASE}/Marshall/tests/framework.py
+${PLONE_BASE}/Marshall/tests/framework.pyc
+${PLONE_BASE}/Marshall/tests/input/atxml/Document.xml
+${PLONE_BASE}/Marshall/tests/input/primary_field/Document.txt
+${PLONE_BASE}/Marshall/tests/input/rfc822/Document.txt
+${PLONE_BASE}/Marshall/tests/input/simple_xml/Document.xml
+${PLONE_BASE}/Marshall/tests/runalltests.py
+${PLONE_BASE}/Marshall/tests/runalltests.pyc
+${PLONE_BASE}/Marshall/tests/test_export.py
+${PLONE_BASE}/Marshall/tests/test_export.pyc
+${PLONE_BASE}/Marshall/tests/test_marshall.py
+${PLONE_BASE}/Marshall/tests/test_marshall.pyc
+${PLONE_BASE}/Marshall/tests/test_predicate.py
+${PLONE_BASE}/Marshall/tests/test_predicate.pyc
+${PLONE_BASE}/Marshall/utils/upload.py
+${PLONE_BASE}/Marshall/utils/upload.pyc
+${PLONE_BASE}/Marshall/utils.py
+${PLONE_BASE}/Marshall/utils.pyc
+${PLONE_BASE}/Marshall/validation/atxml/atxml.rnc
+${PLONE_BASE}/Marshall/validation/atxml/atxml.rng
+${PLONE_BASE}/Marshall/version.txt
+${PLONE_BASE}/Marshall/www/atxml.zpt
+${PLONE_BASE}/Marshall/www/predicateAdd.zpt
+${PLONE_BASE}/Marshall/www/predicateChange.zpt
+${PLONE_BASE}/Marshall/www/registry.png
+${PLONE_BASE}/Marshall/www/xmlnsSettings.zpt
+${PLONE_BASE}/MimetypesRegistry/ChangeLog
+${PLONE_BASE}/MimetypesRegistry/HISTORY.txt
+${PLONE_BASE}/MimetypesRegistry/LICENSE.txt
+${PLONE_BASE}/MimetypesRegistry/MimeTypeItem.py
+${PLONE_BASE}/MimetypesRegistry/MimeTypeItem.pyc
+${PLONE_BASE}/MimetypesRegistry/MimeTypesRegistry.py
+${PLONE_BASE}/MimetypesRegistry/MimeTypesRegistry.pyc
+${PLONE_BASE}/MimetypesRegistry/MimeTypesTool.py
+${PLONE_BASE}/MimetypesRegistry/MimeTypesTool.pyc
+${PLONE_BASE}/MimetypesRegistry/README
+${PLONE_BASE}/MimetypesRegistry/__init__.py
+${PLONE_BASE}/MimetypesRegistry/__init__.pyc
+${PLONE_BASE}/MimetypesRegistry/__pkginfo__.py
+${PLONE_BASE}/MimetypesRegistry/__pkginfo__.pyc
+${PLONE_BASE}/MimetypesRegistry/base_zope.py
+${PLONE_BASE}/MimetypesRegistry/base_zope.pyc
+${PLONE_BASE}/MimetypesRegistry/bridge.zcml
+${PLONE_BASE}/MimetypesRegistry/common.py
+${PLONE_BASE}/MimetypesRegistry/common.pyc
+${PLONE_BASE}/MimetypesRegistry/configure.zcml
+${PLONE_BASE}/MimetypesRegistry/encoding.py
+${PLONE_BASE}/MimetypesRegistry/encoding.pyc
+${PLONE_BASE}/MimetypesRegistry/implements.zcml
+${PLONE_BASE}/MimetypesRegistry/interfaces.py
+${PLONE_BASE}/MimetypesRegistry/interfaces.pyc
+${PLONE_BASE}/MimetypesRegistry/mime_types/__init__.py
+${PLONE_BASE}/MimetypesRegistry/mime_types/__init__.pyc
+${PLONE_BASE}/MimetypesRegistry/mime_types/freedesktop.org.xml
+${PLONE_BASE}/MimetypesRegistry/mime_types/magic.py
+${PLONE_BASE}/MimetypesRegistry/mime_types/magic.pyc
+${PLONE_BASE}/MimetypesRegistry/mime_types/mime.types
+${PLONE_BASE}/MimetypesRegistry/mime_types/mtr_mimetypes.py
+${PLONE_BASE}/MimetypesRegistry/mime_types/mtr_mimetypes.pyc
+${PLONE_BASE}/MimetypesRegistry/mime_types/py_mimetypes.py
+${PLONE_BASE}/MimetypesRegistry/mime_types/py_mimetypes.pyc
+${PLONE_BASE}/MimetypesRegistry/mime_types/smi_mimetypes.py
+${PLONE_BASE}/MimetypesRegistry/mime_types/smi_mimetypes.pyc
+${PLONE_BASE}/MimetypesRegistry/mime_types/suppl_mimetypes.py
+${PLONE_BASE}/MimetypesRegistry/mime_types/suppl_mimetypes.pyc
+${PLONE_BASE}/MimetypesRegistry/mime_types/windows_mimetypes.py
+${PLONE_BASE}/MimetypesRegistry/mime_types/windows_mimetypes.pyc
+${PLONE_BASE}/MimetypesRegistry/profiles/default/componentregistry.xml
+${PLONE_BASE}/MimetypesRegistry/profiles/default/import_steps.xml
+${PLONE_BASE}/MimetypesRegistry/profiles/default/mimetypes-registry-various.txt
+${PLONE_BASE}/MimetypesRegistry/profiles/default/skins.xml
+${PLONE_BASE}/MimetypesRegistry/profiles/default/toolset.xml
+${PLONE_BASE}/MimetypesRegistry/profiles.zcml
+${PLONE_BASE}/MimetypesRegistry/setuphandlers.py
+${PLONE_BASE}/MimetypesRegistry/setuphandlers.pyc
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/application.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/audio.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/avi.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/c.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/core.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/cpp.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/deb.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/doc.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/down.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/dvi.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/exe.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/f.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/font.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/gf.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/h.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/html.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/image.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/info.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/iso.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/java.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/log.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/man.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/message.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/midi.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/mime.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/o.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/pdf.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/pk.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/pl.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/png.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/ppt.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/ps.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/py.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/quicktime.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/rar.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/rpm.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/sh.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/sxc.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/sxd.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/sxg.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/sxi.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/sxm.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/sxw.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/tar.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/tex.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/text.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/tgz.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/txt.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/unknown.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/up.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/vcal.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/vcard.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/video.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/wav.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/xls.png
+${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons/zip.png
+${PLONE_BASE}/MimetypesRegistry/tests/__init__.py
+${PLONE_BASE}/MimetypesRegistry/tests/__init__.pyc
+${PLONE_BASE}/MimetypesRegistry/tests/input/OOoCalc
+${PLONE_BASE}/MimetypesRegistry/tests/input/OOoWriter
+${PLONE_BASE}/MimetypesRegistry/tests/input/rest1.rst
+${PLONE_BASE}/MimetypesRegistry/tests/input/simplezip
+${PLONE_BASE}/MimetypesRegistry/tests/input/sxw-ooo-trolltech
+${PLONE_BASE}/MimetypesRegistry/tests/test_encoding.py
+${PLONE_BASE}/MimetypesRegistry/tests/test_encoding.pyc
+${PLONE_BASE}/MimetypesRegistry/tests/test_magic.py
+${PLONE_BASE}/MimetypesRegistry/tests/test_magic.pyc
+${PLONE_BASE}/MimetypesRegistry/tests/test_mimetypes.py
+${PLONE_BASE}/MimetypesRegistry/tests/test_mimetypes.pyc
+${PLONE_BASE}/MimetypesRegistry/tests/utils.py
+${PLONE_BASE}/MimetypesRegistry/tests/utils.pyc
+${PLONE_BASE}/MimetypesRegistry/tool.gif
+${PLONE_BASE}/MimetypesRegistry/version.txt
+${PLONE_BASE}/MimetypesRegistry/www/addMimeType.zpt
+${PLONE_BASE}/MimetypesRegistry/www/editMimeType.zpt
+${PLONE_BASE}/MimetypesRegistry/www/listMimeTypes.zpt
+${PLONE_BASE}/MimetypesRegistry/z3/__init__.py
+${PLONE_BASE}/MimetypesRegistry/z3/__init__.pyc
+${PLONE_BASE}/MimetypesRegistry/z3/interfaces.py
+${PLONE_BASE}/MimetypesRegistry/z3/interfaces.pyc
+${PLONE_BASE}/NuPlone/Extensions/__init__.py
+${PLONE_BASE}/NuPlone/Extensions/__init__.pyc
+${PLONE_BASE}/NuPlone/HISTORY.txt
+${PLONE_BASE}/NuPlone/LICENSE.txt
+${PLONE_BASE}/NuPlone/README.txt
+${PLONE_BASE}/NuPlone/__init__.py
+${PLONE_BASE}/NuPlone/__init__.pyc
+${PLONE_BASE}/NuPlone/config.py
+${PLONE_BASE}/NuPlone/config.pyc
+${PLONE_BASE}/NuPlone/configure.zcml
+${PLONE_BASE}/NuPlone/profiles/default/cssregistry.xml
+${PLONE_BASE}/NuPlone/profiles/default/import_steps.xml
+${PLONE_BASE}/NuPlone/profiles/default/nuplone_various.txt
+${PLONE_BASE}/NuPlone/profiles/default/skins.xml
+${PLONE_BASE}/NuPlone/profiles.zcml
+${PLONE_BASE}/NuPlone/refresh.txt
+${PLONE_BASE}/NuPlone/setuphandlers.py
+${PLONE_BASE}/NuPlone/setuphandlers.pyc
+${PLONE_BASE}/NuPlone/skins/nuplone_images/body.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/breadCrumbDivider.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/bulletLeft.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/bulletRight.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/buttonBack-over.png
+${PLONE_BASE}/NuPlone/skins/nuplone_images/buttonBack.png
+${PLONE_BASE}/NuPlone/skins/nuplone_images/buttonForward-over.png
+${PLONE_BASE}/NuPlone/skins/nuplone_images/buttonForward.png
+${PLONE_BASE}/NuPlone/skins/nuplone_images/contentViewsColour.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/currentNav.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/edgeColour.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/header.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/listBox-bottom.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/listBox-header-left.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/listBox-header-right.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/listBox-top.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/logo.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-bottom-left-over.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-bottom-left-selected.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-bottom-left.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-bottom-right-over.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-bottom-right-selected.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-bottom-right.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-top-left-over.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-top-left-selected.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-top-left.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-top-right-over.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-top-right-selected.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/pageTabs-top-right.gif
+${PLONE_BASE}/NuPlone/skins/nuplone_images/searchField.png
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/IEFixes.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/authoring.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/base.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/base_properties.props
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/columns.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/forms.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/generated.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/member.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/mobile.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/navtree.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/nuplone.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/portlets.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/presentation.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/print.css
+${PLONE_BASE}/NuPlone/skins/nuplone_styles/public.css
+${PLONE_BASE}/NuPlone/tests/__init__.py
+${PLONE_BASE}/NuPlone/tests/__init__.pyc
+${PLONE_BASE}/NuPlone/tests/framework.py
+${PLONE_BASE}/NuPlone/tests/framework.pyc
+${PLONE_BASE}/NuPlone/tests/runalltests.py
+${PLONE_BASE}/NuPlone/tests/runalltests.pyc
+${PLONE_BASE}/NuPlone/tests/testSkeleton.py
+${PLONE_BASE}/NuPlone/tests/testSkeleton.pyc
+${PLONE_BASE}/NuPlone/tests/testStyleInstallation.py
+${PLONE_BASE}/NuPlone/tests/testStyleInstallation.pyc
+${PLONE_BASE}/NuPlone/version.txt
+${PLONE_BASE}/PasswordResetTool/CHANGES.txt
+${PLONE_BASE}/PasswordResetTool/CREDITS.txt
+${PLONE_BASE}/PasswordResetTool/Extensions/Install.py
+${PLONE_BASE}/PasswordResetTool/Extensions/Install.pyc
+${PLONE_BASE}/PasswordResetTool/INSTALL.txt
+${PLONE_BASE}/PasswordResetTool/LICENSE.GPL
+${PLONE_BASE}/PasswordResetTool/LICENSE.txt
+${PLONE_BASE}/PasswordResetTool/PasswordResetTool.py
+${PLONE_BASE}/PasswordResetTool/PasswordResetTool.pyc
+${PLONE_BASE}/PasswordResetTool/README.txt
+${PLONE_BASE}/PasswordResetTool/TODO
+${PLONE_BASE}/PasswordResetTool/__init__.py
+${PLONE_BASE}/PasswordResetTool/__init__.pyc
+${PLONE_BASE}/PasswordResetTool/dtml/explainPWResetTool.dtml
+${PLONE_BASE}/PasswordResetTool/i18n/README.txt
+${PLONE_BASE}/PasswordResetTool/interfaces/__init__.py
+${PLONE_BASE}/PasswordResetTool/interfaces/__init__.pyc
+${PLONE_BASE}/PasswordResetTool/interfaces/portal_password_reset.py
+${PLONE_BASE}/PasswordResetTool/interfaces/portal_password_reset.pyc
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/mail_password_form.pt
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/mail_password_form.pt.metadata
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/mail_password_response.pt
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/mail_password_template.pt
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/passwordreset.cpy
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/passwordreset.cpy.metadata
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_action.cpy
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_action.cpy.metadata
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.py
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_expired.pt
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_expired.pt.metadata
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_finish.pt
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_finish.pt.metadata
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_form.cpt
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_form.cpt.metadata
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_invalid.pt
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/pwreset_invalid.pt.metadata
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/registered_notify_template.pt
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/registered_notify_template.pt.metadata
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/validate_pwreset_password.vpy
+${PLONE_BASE}/PasswordResetTool/skins/PasswordReset/validate_pwreset_userid.vpy
+${PLONE_BASE}/PasswordResetTool/tests/__init__.py
+${PLONE_BASE}/PasswordResetTool/tests/__init__.pyc
+${PLONE_BASE}/PasswordResetTool/tests/browser.txt
+${PLONE_BASE}/PasswordResetTool/tests/test_doctests.py
+${PLONE_BASE}/PasswordResetTool/tests/test_doctests.pyc
+${PLONE_BASE}/PasswordResetTool/tests/utils.py
+${PLONE_BASE}/PasswordResetTool/tests/utils.pyc
+${PLONE_BASE}/PasswordResetTool/tool.gif
+${PLONE_BASE}/PasswordResetTool/version.txt
+${PLONE_BASE}/PlacelessTranslationService/Domain.py
+${PLONE_BASE}/PlacelessTranslationService/Domain.pyc
+${PLONE_BASE}/PlacelessTranslationService/GettextMessageCatalog.py
+${PLONE_BASE}/PlacelessTranslationService/GettextMessageCatalog.pyc
+${PLONE_BASE}/PlacelessTranslationService/HISTORY.txt
+${PLONE_BASE}/PlacelessTranslationService/Negotiator.py
+${PLONE_BASE}/PlacelessTranslationService/Negotiator.pyc
+${PLONE_BASE}/PlacelessTranslationService/PlacelessTranslationService.py
+${PLONE_BASE}/PlacelessTranslationService/PlacelessTranslationService.pyc
+${PLONE_BASE}/PlacelessTranslationService/__init__.py
+${PLONE_BASE}/PlacelessTranslationService/__init__.pyc
+${PLONE_BASE}/PlacelessTranslationService/bin/convertToLocales.py
+${PLONE_BASE}/PlacelessTranslationService/bin/convertToLocales.pyc
+${PLONE_BASE}/PlacelessTranslationService/configure.zcml
+${PLONE_BASE}/PlacelessTranslationService/interfaces.py
+${PLONE_BASE}/PlacelessTranslationService/interfaces.pyc
+${PLONE_BASE}/PlacelessTranslationService/lazycatalog.py
+${PLONE_BASE}/PlacelessTranslationService/lazycatalog.pyc
+${PLONE_BASE}/PlacelessTranslationService/locales/PlacelessTranslationService.pot
+${PLONE_BASE}/PlacelessTranslationService/locales/cs/LC_MESSAGES/PlacelessTranslationService.po
+${PLONE_BASE}/PlacelessTranslationService/locales/de/LC_MESSAGES/PlacelessTranslationService.po
+${PLONE_BASE}/PlacelessTranslationService/locales/el/LC_MESSAGES/PlacelessTranslationService.po
+${PLONE_BASE}/PlacelessTranslationService/locales/pt_BR/LC_MESSAGES/PlacelessTranslationService.po
+${PLONE_BASE}/PlacelessTranslationService/memoize.py
+${PLONE_BASE}/PlacelessTranslationService/memoize.pyc
+${PLONE_BASE}/PlacelessTranslationService/msgfmt.py
+${PLONE_BASE}/PlacelessTranslationService/msgfmt.pyc
+${PLONE_BASE}/PlacelessTranslationService/tests/__init__.py
+${PLONE_BASE}/PlacelessTranslationService/tests/__init__.pyc
+${PLONE_BASE}/PlacelessTranslationService/tests/testPTS.py
+${PLONE_BASE}/PlacelessTranslationService/tests/testPTS.pyc
+${PLONE_BASE}/PlacelessTranslationService/utility.py
+${PLONE_BASE}/PlacelessTranslationService/utility.pyc
+${PLONE_BASE}/PlacelessTranslationService/utils.py
+${PLONE_BASE}/PlacelessTranslationService/utils.pyc
+${PLONE_BASE}/PlacelessTranslationService/version.txt
+${PLONE_BASE}/PlacelessTranslationService/www/GettextMessageCatalog.png
+${PLONE_BASE}/PlacelessTranslationService/www/PlacelessTranslationService-32.png
+${PLONE_BASE}/PlacelessTranslationService/www/PlacelessTranslationService.png
+${PLONE_BASE}/PlacelessTranslationService/www/catalog_broken.pt
+${PLONE_BASE}/PlacelessTranslationService/www/catalog_info.pt
+${PLONE_BASE}/PlacelessTranslationService/www/catalog_test.pt
+${PLONE_BASE}/PloneLanguageTool/HISTORY.txt
+${PLONE_BASE}/PloneLanguageTool/LanguageTool.py
+${PLONE_BASE}/PloneLanguageTool/LanguageTool.pyc
+${PLONE_BASE}/PloneLanguageTool/__init__.py
+${PLONE_BASE}/PloneLanguageTool/__init__.pyc
+${PLONE_BASE}/PloneLanguageTool/configure.zcml
+${PLONE_BASE}/PloneLanguageTool/exportimport.py
+${PLONE_BASE}/PloneLanguageTool/exportimport.pyc
+${PLONE_BASE}/PloneLanguageTool/interfaces.py
+${PLONE_BASE}/PloneLanguageTool/interfaces.pyc
+${PLONE_BASE}/PloneLanguageTool/profiles/default/export_steps.xml
+${PLONE_BASE}/PloneLanguageTool/profiles/default/import_steps.xml
+${PLONE_BASE}/PloneLanguageTool/profiles/default/portal_languages.xml
+${PLONE_BASE}/PloneLanguageTool/profiles/default/skins.xml
+${PLONE_BASE}/PloneLanguageTool/profiles/default/toolset.xml
+${PLONE_BASE}/PloneLanguageTool/profiles.zcml
+${PLONE_BASE}/PloneLanguageTool/skins/LanguageTool/isTranslatable.py
+${PLONE_BASE}/PloneLanguageTool/skins/LanguageTool/switchLanguage.py
+${PLONE_BASE}/PloneLanguageTool/skins/LanguageTool/switchLanguage.pyc
+${PLONE_BASE}/PloneLanguageTool/tests/__init__.py
+${PLONE_BASE}/PloneLanguageTool/tests/__init__.pyc
+${PLONE_BASE}/PloneLanguageTool/tests/test_languagetool.py
+${PLONE_BASE}/PloneLanguageTool/tests/test_languagetool.pyc
+${PLONE_BASE}/PloneLanguageTool/tests/test_negotiation.py
+${PLONE_BASE}/PloneLanguageTool/tests/test_negotiation.pyc
+${PLONE_BASE}/PloneLanguageTool/tool.gif
+${PLONE_BASE}/PloneLanguageTool/version.txt
+${PLONE_BASE}/PloneLanguageTool/www/config.zpt
+${PLONE_BASE}/PlonePAS/Extensions/Install.py
+${PLONE_BASE}/PlonePAS/Extensions/Install.pyc
+${PLONE_BASE}/PlonePAS/Extensions/Migrate.py
+${PLONE_BASE}/PlonePAS/Extensions/Migrate.pyc
+${PLONE_BASE}/PlonePAS/Extensions/__init__.py
+${PLONE_BASE}/PlonePAS/Extensions/__init__.pyc
+${PLONE_BASE}/PlonePAS/HISTORY.txt
+${PLONE_BASE}/PlonePAS/MigrationCheck.py
+${PLONE_BASE}/PlonePAS/MigrationCheck.pyc
+${PLONE_BASE}/PlonePAS/__init__.py
+${PLONE_BASE}/PlonePAS/__init__.pyc
+${PLONE_BASE}/PlonePAS/browser/__init__.py
+${PLONE_BASE}/PlonePAS/browser/__init__.pyc
+${PLONE_BASE}/PlonePAS/browser/configure.zcml
+${PLONE_BASE}/PlonePAS/browser/info.py
+${PLONE_BASE}/PlonePAS/browser/info.pyc
+${PLONE_BASE}/PlonePAS/browser/search.py
+${PLONE_BASE}/PlonePAS/browser/search.pyc
+${PLONE_BASE}/PlonePAS/browser/search.txt
+${PLONE_BASE}/PlonePAS/config.py
+${PLONE_BASE}/PlonePAS/config.pyc
+${PLONE_BASE}/PlonePAS/configure.zcml
+${PLONE_BASE}/PlonePAS/events.py
+${PLONE_BASE}/PlonePAS/events.pyc
+${PLONE_BASE}/PlonePAS/exportimport.zcml
+${PLONE_BASE}/PlonePAS/gruf_support.py
+${PLONE_BASE}/PlonePAS/gruf_support.pyc
+${PLONE_BASE}/PlonePAS/interfaces/__init__.py
+${PLONE_BASE}/PlonePAS/interfaces/__init__.pyc
+${PLONE_BASE}/PlonePAS/interfaces/browser.py
+${PLONE_BASE}/PlonePAS/interfaces/browser.pyc
+${PLONE_BASE}/PlonePAS/interfaces/capabilities.py
+${PLONE_BASE}/PlonePAS/interfaces/capabilities.pyc
+${PLONE_BASE}/PlonePAS/interfaces/events.py
+${PLONE_BASE}/PlonePAS/interfaces/events.pyc
+${PLONE_BASE}/PlonePAS/interfaces/group.py
+${PLONE_BASE}/PlonePAS/interfaces/group.pyc
+${PLONE_BASE}/PlonePAS/interfaces/plugins.py
+${PLONE_BASE}/PlonePAS/interfaces/plugins.pyc
+${PLONE_BASE}/PlonePAS/interfaces/propertysheets.py
+${PLONE_BASE}/PlonePAS/interfaces/propertysheets.pyc
+${PLONE_BASE}/PlonePAS/ldapmp.py
+${PLONE_BASE}/PlonePAS/ldapmp.pyc
+${PLONE_BASE}/PlonePAS/odict.py
+${PLONE_BASE}/PlonePAS/odict.pyc
+${PLONE_BASE}/PlonePAS/pas.py
+${PLONE_BASE}/PlonePAS/pas.pyc
+${PLONE_BASE}/PlonePAS/patch.py
+${PLONE_BASE}/PlonePAS/patch.pyc
+${PLONE_BASE}/PlonePAS/plugins/__init__.py
+${PLONE_BASE}/PlonePAS/plugins/__init__.pyc
+${PLONE_BASE}/PlonePAS/plugins/autogroup.py
+${PLONE_BASE}/PlonePAS/plugins/autogroup.pyc
+${PLONE_BASE}/PlonePAS/plugins/cookie_handler.py
+${PLONE_BASE}/PlonePAS/plugins/cookie_handler.pyc
+${PLONE_BASE}/PlonePAS/plugins/crumbler.py
+${PLONE_BASE}/PlonePAS/plugins/crumbler.pyc
+${PLONE_BASE}/PlonePAS/plugins/group.py
+${PLONE_BASE}/PlonePAS/plugins/group.pyc
+${PLONE_BASE}/PlonePAS/plugins/gruf.py
+${PLONE_BASE}/PlonePAS/plugins/gruf.pyc
+${PLONE_BASE}/PlonePAS/plugins/local_role.py
+${PLONE_BASE}/PlonePAS/plugins/local_role.pyc
+${PLONE_BASE}/PlonePAS/plugins/property.py
+${PLONE_BASE}/PlonePAS/plugins/property.pyc
+${PLONE_BASE}/PlonePAS/plugins/role.py
+${PLONE_BASE}/PlonePAS/plugins/role.pyc
+${PLONE_BASE}/PlonePAS/plugins/ufactory.py
+${PLONE_BASE}/PlonePAS/plugins/ufactory.pyc
+${PLONE_BASE}/PlonePAS/plugins/user.py
+${PLONE_BASE}/PlonePAS/plugins/user.pyc
+${PLONE_BASE}/PlonePAS/profiles/default/import_steps.xml
+${PLONE_BASE}/PlonePAS/profiles/default/plone-pas.txt
+${PLONE_BASE}/PlonePAS/profiles.zcml
+${PLONE_BASE}/PlonePAS/setuphandlers.py
+${PLONE_BASE}/PlonePAS/setuphandlers.pyc
+${PLONE_BASE}/PlonePAS/sheet.py
+${PLONE_BASE}/PlonePAS/sheet.pyc
+${PLONE_BASE}/PlonePAS/storage.py
+${PLONE_BASE}/PlonePAS/storage.pyc
+${PLONE_BASE}/PlonePAS/tests/PlonePASTestCase.py
+${PLONE_BASE}/PlonePAS/tests/PlonePASTestCase.pyc
+${PLONE_BASE}/PlonePAS/tests/__init__.py
+${PLONE_BASE}/PlonePAS/tests/__init__.pyc
+${PLONE_BASE}/PlonePAS/tests/cookie_auth.txt
+${PLONE_BASE}/PlonePAS/tests/failures_needing attention.txt
+${PLONE_BASE}/PlonePAS/tests/test_basic_ops.py
+${PLONE_BASE}/PlonePAS/tests/test_basic_ops.pyc
+${PLONE_BASE}/PlonePAS/tests/test_caching.py
+${PLONE_BASE}/PlonePAS/tests/test_caching.pyc
+${PLONE_BASE}/PlonePAS/tests/test_doctests.py
+${PLONE_BASE}/PlonePAS/tests/test_doctests.pyc
+${PLONE_BASE}/PlonePAS/tests/test_groups_tool.py
+${PLONE_BASE}/PlonePAS/tests/test_groups_tool.pyc
+${PLONE_BASE}/PlonePAS/tests/test_membership.py
+${PLONE_BASE}/PlonePAS/tests/test_membership.pyc
+${PLONE_BASE}/PlonePAS/tests/test_membership_tool.py
+${PLONE_BASE}/PlonePAS/tests/test_membership_tool.pyc
+${PLONE_BASE}/PlonePAS/tests/test_migration.py
+${PLONE_BASE}/PlonePAS/tests/test_migration.pyc
+${PLONE_BASE}/PlonePAS/tests/test_properties.py
+${PLONE_BASE}/PlonePAS/tests/test_properties.pyc
+${PLONE_BASE}/PlonePAS/tests/test_view.py
+${PLONE_BASE}/PlonePAS/tests/test_view.pyc
+${PLONE_BASE}/PlonePAS/tool.gif
+${PLONE_BASE}/PlonePAS/tools/__init__.py
+${PLONE_BASE}/PlonePAS/tools/__init__.pyc
+${PLONE_BASE}/PlonePAS/tools/groupdata.py
+${PLONE_BASE}/PlonePAS/tools/groupdata.pyc
+${PLONE_BASE}/PlonePAS/tools/groups.py
+${PLONE_BASE}/PlonePAS/tools/groups.pyc
+${PLONE_BASE}/PlonePAS/tools/memberdata.py
+${PLONE_BASE}/PlonePAS/tools/memberdata.pyc
+${PLONE_BASE}/PlonePAS/tools/membership.py
+${PLONE_BASE}/PlonePAS/tools/membership.pyc
+${PLONE_BASE}/PlonePAS/tools/plonetool.py
+${PLONE_BASE}/PlonePAS/tools/plonetool.pyc
+${PLONE_BASE}/PlonePAS/utils.py
+${PLONE_BASE}/PlonePAS/utils.pyc
+${PLONE_BASE}/PlonePAS/version.txt
+${PLONE_BASE}/PlonePAS/zmi/AutoGroupForm.zpt
+${PLONE_BASE}/PlonePAS/zmi/CookieCrumblingPluginForm.dtml
+${PLONE_BASE}/PlonePAS/zmi/ExtendedCookieAuthHelperForm.dtml
+${PLONE_BASE}/PlonePAS/zmi/GRUFBridgeForm.dtml
+${PLONE_BASE}/PlonePAS/zmi/GroupAwareRoleManagerForm.dtml
+${PLONE_BASE}/PlonePAS/zmi/GroupManagerForm.dtml
+${PLONE_BASE}/PlonePAS/zmi/LocalRolesManagerForm.dtml
+${PLONE_BASE}/PlonePAS/zmi/MutablePropertyProviderForm.dtml
+${PLONE_BASE}/PlonePAS/zmi/PloneUserFactoryForm.dtml
+${PLONE_BASE}/PlonePAS/zmi/UserManagerForm.dtml
+${PLONE_BASE}/PloneTestCase/CHANGES.txt
+${PLONE_BASE}/PloneTestCase/INSTALL.txt
+${PLONE_BASE}/PloneTestCase/PloneTestCase.py
+${PLONE_BASE}/PloneTestCase/PloneTestCase.pyc
+${PLONE_BASE}/PloneTestCase/README.txt
+${PLONE_BASE}/PloneTestCase/VERSION.txt
+${PLONE_BASE}/PloneTestCase/__init__.py
+${PLONE_BASE}/PloneTestCase/__init__.pyc
+${PLONE_BASE}/PloneTestCase/five.py
+${PLONE_BASE}/PloneTestCase/five.pyc
+${PLONE_BASE}/PloneTestCase/framework.py
+${PLONE_BASE}/PloneTestCase/framework.pyc
+${PLONE_BASE}/PloneTestCase/interfaces.py
+${PLONE_BASE}/PloneTestCase/interfaces.pyc
+${PLONE_BASE}/PloneTestCase/layer.py
+${PLONE_BASE}/PloneTestCase/layer.pyc
+${PLONE_BASE}/PloneTestCase/ptc.py
+${PLONE_BASE}/PloneTestCase/ptc.pyc
+${PLONE_BASE}/PloneTestCase/runalltests.py
+${PLONE_BASE}/PloneTestCase/runalltests.pyc
+${PLONE_BASE}/PloneTestCase/setup.py
+${PLONE_BASE}/PloneTestCase/setup.pyc
+${PLONE_BASE}/PloneTestCase/testDocument.py
+${PLONE_BASE}/PloneTestCase/testDocument.pyc
+${PLONE_BASE}/PloneTestCase/testInterfaces.py
+${PLONE_BASE}/PloneTestCase/testInterfaces.pyc
+${PLONE_BASE}/PloneTestCase/testMembershipTool.py
+${PLONE_BASE}/PloneTestCase/testMembershipTool.pyc
+${PLONE_BASE}/PloneTestCase/testPloneTestCase.py
+${PLONE_BASE}/PloneTestCase/testPloneTestCase.pyc
+${PLONE_BASE}/PloneTestCase/testSkeleton.py
+${PLONE_BASE}/PloneTestCase/testSkeleton.pyc
+${PLONE_BASE}/PloneTestCase/tests.py
+${PLONE_BASE}/PloneTestCase/tests.pyc
+${PLONE_BASE}/PloneTestCase/utils.py
+${PLONE_BASE}/PloneTestCase/utils.pyc
+${PLONE_BASE}/PloneTranslations/ChangeLog
+${PLONE_BASE}/PloneTranslations/HISTORY.txt
+${PLONE_BASE}/PloneTranslations/README.txt
+${PLONE_BASE}/PloneTranslations/VERSION.txt
+${PLONE_BASE}/PloneTranslations/__init__.py
+${PLONE_BASE}/PloneTranslations/__init__.pyc
+${PLONE_BASE}/PloneTranslations/configure.zcml
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-af.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-ar.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-bg.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-bn.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-ca.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-cs.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-cy.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-da.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-de.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-el.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-eo.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-es.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-et.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-eu.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-fa.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-fi.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-fr.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-fu.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-he.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-hi.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-hr.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-hu.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-hy.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-id.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-it.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-ja.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-ka.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-kn.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-ko.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-lt.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-manual.pot
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-mi.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-my.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-nl.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-nn.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-no.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-pl.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-pt-br.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-pt.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-ro.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-ru.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-sk.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-sl.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-sm.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-sq.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-sr-Latn.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-sr.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-sv.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-ta.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-te.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-to.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-tr.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-uk.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-vi.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-zh-cn.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-zh-hk.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-zh-tw.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes-zh.po
+${PLONE_BASE}/PloneTranslations/i18n/atcontenttypes.pot
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-af.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-ar.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-bg.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-bn.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-ca.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-cs.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-cy.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-da.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-de.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-el.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-eo.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-es.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-et.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-eu.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-fa.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-fi.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-fr.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-fu.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-he.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-hi.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-hr.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-hu.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-hy.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-id.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-it.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-ja.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-ka.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-kn.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-ko.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-lt.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-manual.pot
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-mi.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-my.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-nl.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-nn.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-no.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-pl.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-pt-br.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-pt.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-ro.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-ru.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-sk.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-sl.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-sm.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-sq.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-sr-Latn.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-sr.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-sv.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-ta.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-te.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-to.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-tr.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-uk.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-vi.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-zh-cn.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-zh-hk.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-zh-tw.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget-zh.po
+${PLONE_BASE}/PloneTranslations/i18n/atreferencebrowserwidget.pot
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-af.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-ar.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-bg.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-bn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-ca.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-cs.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-cy.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-da.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-de.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-el.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-eo.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-es.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-et.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-eu.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-fa.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-fi.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-fr.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-fu.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-he.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-hi.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-hr.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-hu.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-hy.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-id.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-it.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-ja.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-ka.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-kn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-ko.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-lt.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-manual.pot
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-mi.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-my.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-nl.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-nn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-no.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-pl.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-pt-br.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-pt.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-rm.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-ro.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-ru.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-sk.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-sl.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-sm.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-sq.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-sr-Latn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-sr.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-sv.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-ta.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-te.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-to.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-tr.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-uk.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-vi.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-zh-cn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-zh-hk.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-zh-tw.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions-zh.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfeditions.pot
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-af.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-ar.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-bg.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-bn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-ca.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-cs.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-cy.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-da.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-de.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-el.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-eo.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-es.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-et.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-eu.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-fa.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-fi.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-fr.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-fu.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-he.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-hi.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-hr.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-hu.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-hy.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-id.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-it.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-ja.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-ka.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-kn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-ko.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-lt.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-manual.pot
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-mi.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-my.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-nl.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-nn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-no.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-pl.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-pt-br.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-pt.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-ro.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-ru.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-sk.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-sl.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-sm.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-sq.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-sr-Latn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-sr.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-sv.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-ta.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-te.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-to.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-tr.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-uk.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-vi.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-zh-cn.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-zh-hk.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-zh-tw.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow-zh.po
+${PLONE_BASE}/PloneTranslations/i18n/cmfplacefulworkflow.pot
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-af.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-ar.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-bg.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-bn.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-ca.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-cs.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-da.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-de.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-el.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-eo.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-es.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-et.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-eu.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-fa.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-fi.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-fr.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-fu.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-he.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-hi.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-hr.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-hu.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-hy.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-id.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-it.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-ja.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-ka.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-kn.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-ko.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-lt.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-manual.pot
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-mi.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-my.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-nl.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-nn.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-no.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-pl.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-pt-br.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-pt.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-rm.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-ro.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-ru.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-sk.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-sl.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-sm.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-sq.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-sr-Latn.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-sr.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-sv.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-ta.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-te.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-to.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-tr.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-uk.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-vi.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-zh-cn.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-zh-hk.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-zh-tw.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone-zh.po
+${PLONE_BASE}/PloneTranslations/i18n/linguaplone.pot
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-af.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-ar.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-bg.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-bn.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-ca.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-cs.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-cy.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-da.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-de.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-el.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-eo.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-es.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-et.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-eu.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-fa.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-fi.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-fr.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-fu.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-he.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-hi.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-hr.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-hu.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-hy.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-id.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-it.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-ja.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-ka.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-kn.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-ko.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-lt.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-manual.pot
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-mi.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-my.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-nl.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-nn.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-no.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-pl.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-pt-br.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-pt.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-ro.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-ru.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-sk.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-sl.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-sm.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-sq.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-sr-Latn.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-sr.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-sv.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-ta.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-te.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-to.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-tr.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-uk.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-vi.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-zh-cn.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-zh-hk.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-zh-tw.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool-zh.po
+${PLONE_BASE}/PloneTranslations/i18n/passwordresettool.pot
+${PLONE_BASE}/PloneTranslations/i18n/plone-af.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-ar.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-bg.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-bn.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-ca.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-cs.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-cy.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-da.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-de.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-el.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-en.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-eo.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-es.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-et.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-eu.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-fa.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-fi.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-fr.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-fu.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-generated.pot
+${PLONE_BASE}/PloneTranslations/i18n/plone-he.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-hi.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-hr.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-hu.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-hy.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-id.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-it.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-ja.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-ka.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-kn.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-ko.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-lt.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-manual.pot
+${PLONE_BASE}/PloneTranslations/i18n/plone-mi.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-my.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-nl.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-nn.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-no.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-pl.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-pt-br.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-pt.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-rm.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-ro.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-ru.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-sk.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-sl.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-sm.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-sq.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-sr-Latn.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-sr.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-sv.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-ta.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-te.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-to.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-tr.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-uk.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-vi.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-zh-cn.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-zh-hk.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-zh-tw.po
+${PLONE_BASE}/PloneTranslations/i18n/plone-zh.po
+${PLONE_BASE}/PloneTranslations/i18n/plone.pot
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-af.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-ar.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-bg.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-bn.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-ca.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-cs.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-cy.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-da.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-de.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-el.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-eo.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-es.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-et.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-eu.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-fa.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-fi.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-fr.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-fu.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-he.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-hi.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-hr.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-hu.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-hy.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-id.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-it.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-ja.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-ka.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-kn.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-ko.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-lt.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-manual.pot
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-mi.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-my.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-nl.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-nn.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-no.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-pl.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-pt-br.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-pt.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-ro.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-ru.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-sk.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-sl.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-sm.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-sq.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-sr-Latn.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-sr.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-sv.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-ta.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-te.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-to.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-tr.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-uk.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-vi.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-zh-cn.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-zh-hk.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-zh-tw.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool-zh.po
+${PLONE_BASE}/PloneTranslations/i18n/plonelanguagetool.pot
+${PLONE_BASE}/PloneTranslations/locales/af/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/ar/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/bg/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/bn/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/ca/LC_MESSAGES/plonefrontpage-ca.po
+${PLONE_BASE}/PloneTranslations/locales/ca/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/cs/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/cs/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/cy/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/da/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/de/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/de/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/el/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/en/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/eo/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/eo/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/es/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/es/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/et/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/eu/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/eu/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/fa/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/fi/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/fr/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/fr/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/fu/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/he/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/he/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/hi/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/hr/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/hu/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/hy/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/id/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/it/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/it/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/ja/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/ja/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/ka/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/kn/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/ko/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/lt/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/mi/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/my/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/nl/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/nl/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/nn/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/no/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/no/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/pl/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/plonefrontpage.pot
+${PLONE_BASE}/PloneTranslations/locales/plonelocales.pot
+${PLONE_BASE}/PloneTranslations/locales/pt/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/pt/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/pt_BR/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/rm/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/ro/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/ru/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/sk/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/sk/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/sl/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/sm/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/sq/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/sr/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/sr_Latn/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/sv/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/ta/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/te/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/to/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/tr/LC_MESSAGES/plonefrontpage.po
+${PLONE_BASE}/PloneTranslations/locales/tr/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/uk/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/vi/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/zh/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/zh_CN/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/zh_HK/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/locales/zh_TW/LC_MESSAGES/plonelocales.po
+${PLONE_BASE}/PloneTranslations/tests/README.txt
+${PLONE_BASE}/PloneTranslations/tests/__init__.py
+${PLONE_BASE}/PloneTranslations/tests/__init__.pyc
+${PLONE_BASE}/PloneTranslations/tests/framework.py
+${PLONE_BASE}/PloneTranslations/tests/framework.pyc
+${PLONE_BASE}/PloneTranslations/tests/i18ngenerator.py
+${PLONE_BASE}/PloneTranslations/tests/i18ngenerator.pyc
+${PLONE_BASE}/PloneTranslations/tests/runalltests.py
+${PLONE_BASE}/PloneTranslations/tests/runalltests.pyc
+${PLONE_BASE}/PloneTranslations/tests/test_i18n.py
+${PLONE_BASE}/PloneTranslations/tests/test_i18n.pyc
+${PLONE_BASE}/PloneTranslations/utils/admix.py
+${PLONE_BASE}/PloneTranslations/utils/admix.pyc
+${PLONE_BASE}/PloneTranslations/utils/chart.py
+${PLONE_BASE}/PloneTranslations/utils/chart.pyc
+${PLONE_BASE}/PloneTranslations/utils/create.py
+${PLONE_BASE}/PloneTranslations/utils/create.pyc
+${PLONE_BASE}/PloneTranslations/utils/fillmsgstr.py
+${PLONE_BASE}/PloneTranslations/utils/fillmsgstr.pyc
+${PLONE_BASE}/PloneTranslations/utils/filter.py
+${PLONE_BASE}/PloneTranslations/utils/filter.pyc
+${PLONE_BASE}/PloneTranslations/utils/i18ngenerate.py
+${PLONE_BASE}/PloneTranslations/utils/i18ngenerate.pyc
+${PLONE_BASE}/PloneTranslations/utils/rebuild-pot.py
+${PLONE_BASE}/PloneTranslations/utils/rebuild-pot.pyc
+${PLONE_BASE}/PloneTranslations/utils/relocate.py
+${PLONE_BASE}/PloneTranslations/utils/relocate.pyc
+${PLONE_BASE}/PloneTranslations/utils/setcomment.py
+${PLONE_BASE}/PloneTranslations/utils/setcomment.pyc
+${PLONE_BASE}/PloneTranslations/utils/setdomain.py
+${PLONE_BASE}/PloneTranslations/utils/setdomain.pyc
+${PLONE_BASE}/PloneTranslations/utils/setprojid.py
+${PLONE_BASE}/PloneTranslations/utils/setprojid.pyc
+${PLONE_BASE}/PloneTranslations/utils/sync.py
+${PLONE_BASE}/PloneTranslations/utils/sync.pyc
+${PLONE_BASE}/PloneTranslations/utils/utils.py
+${PLONE_BASE}/PloneTranslations/utils/utils.pyc
+${PLONE_BASE}/PluggableAuthService/COPYRIGHT.txt
+${PLONE_BASE}/PluggableAuthService/Extensions/README.txt
+${PLONE_BASE}/PluggableAuthService/Extensions/__init__.py
+${PLONE_BASE}/PluggableAuthService/Extensions/__init__.pyc
+${PLONE_BASE}/PluggableAuthService/Extensions/basic_auth.py
+${PLONE_BASE}/PluggableAuthService/Extensions/basic_auth.pyc
+${PLONE_BASE}/PluggableAuthService/Extensions/upgrade.py
+${PLONE_BASE}/PluggableAuthService/Extensions/upgrade.pyc
+${PLONE_BASE}/PluggableAuthService/LICENSE.txt
+${PLONE_BASE}/PluggableAuthService/PluggableAuthService.py
+${PLONE_BASE}/PluggableAuthService/PluggableAuthService.pyc
+${PLONE_BASE}/PluggableAuthService/PropertiedUser.py
+${PLONE_BASE}/PluggableAuthService/PropertiedUser.pyc
+${PLONE_BASE}/PluggableAuthService/README.txt
+${PLONE_BASE}/PluggableAuthService/UserPropertySheet.py
+${PLONE_BASE}/PluggableAuthService/UserPropertySheet.pyc
+${PLONE_BASE}/PluggableAuthService/__init__.py
+${PLONE_BASE}/PluggableAuthService/__init__.pyc
+${PLONE_BASE}/PluggableAuthService/configure.zcml
+${PLONE_BASE}/PluggableAuthService/doc/CHANGES.txt
+${PLONE_BASE}/PluggableAuthService/doc/DEPENDENCIES.txt
+${PLONE_BASE}/PluggableAuthService/doc/TODO.txt
+${PLONE_BASE}/PluggableAuthService/doc/caching.stx
+${PLONE_BASE}/PluggableAuthService/doc/framework_overview.stx
+${PLONE_BASE}/PluggableAuthService/doc/plugin_map.stx
+${PLONE_BASE}/PluggableAuthService/events.py
+${PLONE_BASE}/PluggableAuthService/events.pyc
+${PLONE_BASE}/PluggableAuthService/events.zcml
+${PLONE_BASE}/PluggableAuthService/exportimport.py
+${PLONE_BASE}/PluggableAuthService/exportimport.pyc
+${PLONE_BASE}/PluggableAuthService/exportimport.zcml
+${PLONE_BASE}/PluggableAuthService/interfaces/__init__.py
+${PLONE_BASE}/PluggableAuthService/interfaces/__init__.pyc
+${PLONE_BASE}/PluggableAuthService/interfaces/authservice.py
+${PLONE_BASE}/PluggableAuthService/interfaces/authservice.pyc
+${PLONE_BASE}/PluggableAuthService/interfaces/events.py
+${PLONE_BASE}/PluggableAuthService/interfaces/events.pyc
+${PLONE_BASE}/PluggableAuthService/interfaces/plugins.py
+${PLONE_BASE}/PluggableAuthService/interfaces/plugins.pyc
+${PLONE_BASE}/PluggableAuthService/interfaces/propertysheets.py
+${PLONE_BASE}/PluggableAuthService/interfaces/propertysheets.pyc
+${PLONE_BASE}/PluggableAuthService/interfaces/request.py
+${PLONE_BASE}/PluggableAuthService/interfaces/request.pyc
+${PLONE_BASE}/PluggableAuthService/meta.zcml
+${PLONE_BASE}/PluggableAuthService/permissions.py
+${PLONE_BASE}/PluggableAuthService/permissions.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/BasePlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/BasePlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/ChallengeProtocolChooser.py
+${PLONE_BASE}/PluggableAuthService/plugins/ChallengeProtocolChooser.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/CookieAuthHelper.py
+${PLONE_BASE}/PluggableAuthService/plugins/CookieAuthHelper.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/DelegatingMultiPlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/DelegatingMultiPlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/DomainAuthHelper.py
+${PLONE_BASE}/PluggableAuthService/plugins/DomainAuthHelper.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/DynamicGroupsPlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/DynamicGroupsPlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/HTTPBasicAuthHelper.py
+${PLONE_BASE}/PluggableAuthService/plugins/HTTPBasicAuthHelper.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/InlineAuthHelper.py
+${PLONE_BASE}/PluggableAuthService/plugins/InlineAuthHelper.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/LocalRolePlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/LocalRolePlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/RecursiveGroupsPlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/RecursiveGroupsPlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/RequestTypeSniffer.py
+${PLONE_BASE}/PluggableAuthService/plugins/RequestTypeSniffer.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/ScriptablePlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/ScriptablePlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/SearchPrincipalsPlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/SearchPrincipalsPlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/SessionAuthHelper.py
+${PLONE_BASE}/PluggableAuthService/plugins/SessionAuthHelper.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/ZODBGroupManager.py
+${PLONE_BASE}/PluggableAuthService/plugins/ZODBGroupManager.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/ZODBRoleManager.py
+${PLONE_BASE}/PluggableAuthService/plugins/ZODBRoleManager.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/ZODBUserManager.py
+${PLONE_BASE}/PluggableAuthService/plugins/ZODBUserManager.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/__init__.py
+${PLONE_BASE}/PluggableAuthService/plugins/__init__.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/exportimport.py
+${PLONE_BASE}/PluggableAuthService/plugins/exportimport.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/ChallengeProtocolChooser.txt
+${PLONE_BASE}/PluggableAuthService/plugins/tests/__init__.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/__init__.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/helpers.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/helpers.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ChallengeProtocolChooser.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ChallengeProtocolChooser.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_CookieAuthHelper.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_CookieAuthHelper.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_DomainAuthHelper.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_DomainAuthHelper.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_DynamicGroupsPlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_DynamicGroupsPlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_HTTPBasicAuthHelper.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_HTTPBasicAuthHelper.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_InlineAuthHelper.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_InlineAuthHelper.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_LocalRolePlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_LocalRolePlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_RecursiveGroupsPlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_RecursiveGroupsPlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_RequestTypeSniffer.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_RequestTypeSniffer.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ScriptablePlugin.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ScriptablePlugin.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ZODBGroupManager.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ZODBGroupManager.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ZODBRoleManager.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ZODBRoleManager.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ZODBUserManager.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_ZODBUserManager.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_doctests.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_doctests.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_exportimport.py
+${PLONE_BASE}/PluggableAuthService/plugins/tests/test_exportimport.pyc
+${PLONE_BASE}/PluggableAuthService/plugins/www/CookieAuthHelper.gif
+${PLONE_BASE}/PluggableAuthService/plugins/www/DelegatingMultiPlugin.png
+${PLONE_BASE}/PluggableAuthService/plugins/www/DomainAuthHelper.png
+${PLONE_BASE}/PluggableAuthService/plugins/www/DynamicGroupsPlugin.png
+${PLONE_BASE}/PluggableAuthService/plugins/www/HTTPBasicAuthHelper.png
+${PLONE_BASE}/PluggableAuthService/plugins/www/InlineAuthHelper.png
+${PLONE_BASE}/PluggableAuthService/plugins/www/RecursiveGroupsPlugin.png
+${PLONE_BASE}/PluggableAuthService/plugins/www/ScriptablePlugin.png
+${PLONE_BASE}/PluggableAuthService/plugins/www/SessionAuthHelper.gif
+${PLONE_BASE}/PluggableAuthService/plugins/www/ZODBGroupManager.gif
+${PLONE_BASE}/PluggableAuthService/plugins/www/ZODBRoleManager.gif
+${PLONE_BASE}/PluggableAuthService/plugins/www/ZODBUserManager.gif
+${PLONE_BASE}/PluggableAuthService/plugins/www/bpActivateInterfaces.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/caAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/cpcAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/cpcEdit.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/daAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/daGeneric.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/daMatches.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/dgpAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/dgpGroups.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/dmpAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/hbAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/iaAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/lrpAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/rgpAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/rtsAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/saAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/spAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/spEditInterfaces.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/sppAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/zgAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/zgGroups.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/zrAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/zrRoles.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/zuAdd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/zuPasswd.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/zuUsers.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/www/zuWidgets.zpt
+${PLONE_BASE}/PluggableAuthService/plugins/xml/cookieauth.xml
+${PLONE_BASE}/PluggableAuthService/plugins/xml/delegatepath.xml
+${PLONE_BASE}/PluggableAuthService/plugins/xml/domainauth.xml
+${PLONE_BASE}/PluggableAuthService/plugins/xml/dynamicgroups.xml
+${PLONE_BASE}/PluggableAuthService/plugins/xml/titleonly.xml
+${PLONE_BASE}/PluggableAuthService/plugins/xml/zodbgroups.xml
+${PLONE_BASE}/PluggableAuthService/plugins/xml/zodbroles.xml
+${PLONE_BASE}/PluggableAuthService/plugins/xml/zodbusers.xml
+${PLONE_BASE}/PluggableAuthService/profiles/empty/PAS/.objects
+${PLONE_BASE}/PluggableAuthService/profiles/empty/PAS/pluginregistry.xml
+${PLONE_BASE}/PluggableAuthService/profiles/empty/export_steps.xml
+${PLONE_BASE}/PluggableAuthService/profiles/empty/import_steps.xml
+${PLONE_BASE}/PluggableAuthService/profiles/simple/PAS/.objects
+${PLONE_BASE}/PluggableAuthService/profiles/simple/PAS/basic_auth.xml
+${PLONE_BASE}/PluggableAuthService/profiles/simple/PAS/dynamic_groups.xml
+${PLONE_BASE}/PluggableAuthService/profiles/simple/PAS/groups.xml
+${PLONE_BASE}/PluggableAuthService/profiles/simple/PAS/pluginregistry.xml
+${PLONE_BASE}/PluggableAuthService/profiles/simple/PAS/recursive_groups.xml
+${PLONE_BASE}/PluggableAuthService/profiles/simple/PAS/roles.xml
+${PLONE_BASE}/PluggableAuthService/profiles/simple/PAS/users.xml
+${PLONE_BASE}/PluggableAuthService/profiles/simple/export_steps.xml
+${PLONE_BASE}/PluggableAuthService/profiles/simple/import_steps.xml
+${PLONE_BASE}/PluggableAuthService/tests/__init__.py
+${PLONE_BASE}/PluggableAuthService/tests/__init__.pyc
+${PLONE_BASE}/PluggableAuthService/tests/conformance.py
+${PLONE_BASE}/PluggableAuthService/tests/conformance.pyc
+${PLONE_BASE}/PluggableAuthService/tests/image.gif
+${PLONE_BASE}/PluggableAuthService/tests/pastc.py
+${PLONE_BASE}/PluggableAuthService/tests/pastc.pyc
+${PLONE_BASE}/PluggableAuthService/tests/test_Caching.py
+${PLONE_BASE}/PluggableAuthService/tests/test_Caching.pyc
+${PLONE_BASE}/PluggableAuthService/tests/test_MoreCaching.py
+${PLONE_BASE}/PluggableAuthService/tests/test_MoreCaching.pyc
+${PLONE_BASE}/PluggableAuthService/tests/test_PluggableAuthService.py
+${PLONE_BASE}/PluggableAuthService/tests/test_PluggableAuthService.pyc
+${PLONE_BASE}/PluggableAuthService/tests/test_PropertiedUser.py
+${PLONE_BASE}/PluggableAuthService/tests/test_PropertiedUser.pyc
+${PLONE_BASE}/PluggableAuthService/tests/test_UserFolder.py
+${PLONE_BASE}/PluggableAuthService/tests/test_UserFolder.pyc
+${PLONE_BASE}/PluggableAuthService/tests/test_UserPropertySheet.py
+${PLONE_BASE}/PluggableAuthService/tests/test_UserPropertySheet.pyc
+${PLONE_BASE}/PluggableAuthService/tests/test_exportimport.py
+${PLONE_BASE}/PluggableAuthService/tests/test_exportimport.pyc
+${PLONE_BASE}/PluggableAuthService/tests/test_utils.py
+${PLONE_BASE}/PluggableAuthService/tests/test_utils.pyc
+${PLONE_BASE}/PluggableAuthService/tests/utils.py
+${PLONE_BASE}/PluggableAuthService/tests/utils.pyc
+${PLONE_BASE}/PluggableAuthService/utils.py
+${PLONE_BASE}/PluggableAuthService/utils.pyc
+${PLONE_BASE}/PluggableAuthService/version.txt
+${PLONE_BASE}/PluggableAuthService/www/PluggableAuthService.png
+${PLONE_BASE}/PluggableAuthService/www/arrow-down.gif
+${PLONE_BASE}/PluggableAuthService/www/arrow-left.gif
+${PLONE_BASE}/PluggableAuthService/www/arrow-right.gif
+${PLONE_BASE}/PluggableAuthService/www/arrow-up.gif
+${PLONE_BASE}/PluggableAuthService/www/pasAddForm.zpt
+${PLONE_BASE}/PluggableAuthService/www/pasSearch.zpt
+${PLONE_BASE}/PluggableAuthService/www/two_lists.zpt
+${PLONE_BASE}/PluggableAuthService/zcml.py
+${PLONE_BASE}/PluggableAuthService/zcml.pyc
+${PLONE_BASE}/PluginRegistry/CHANGES.txt
+${PLONE_BASE}/PluginRegistry/COPYRIGHT.txt
+${PLONE_BASE}/PluginRegistry/LICENSE.txt
+${PLONE_BASE}/PluginRegistry/PluginRegistry.py
+${PLONE_BASE}/PluginRegistry/PluginRegistry.pyc
+${PLONE_BASE}/PluginRegistry/__init__.py
+${PLONE_BASE}/PluginRegistry/__init__.pyc
+${PLONE_BASE}/PluginRegistry/configure.zcml
+${PLONE_BASE}/PluginRegistry/exportimport.py
+${PLONE_BASE}/PluginRegistry/exportimport.pyc
+${PLONE_BASE}/PluginRegistry/interfaces.py
+${PLONE_BASE}/PluginRegistry/interfaces.pyc
+${PLONE_BASE}/PluginRegistry/tests/__init__.py
+${PLONE_BASE}/PluginRegistry/tests/__init__.pyc
+${PLONE_BASE}/PluginRegistry/tests/test_PluginRegistry.py
+${PLONE_BASE}/PluginRegistry/tests/test_PluginRegistry.pyc
+${PLONE_BASE}/PluginRegistry/tests/test_exportimport.py
+${PLONE_BASE}/PluginRegistry/tests/test_exportimport.pyc
+${PLONE_BASE}/PluginRegistry/utils.py
+${PLONE_BASE}/PluginRegistry/utils.pyc
+${PLONE_BASE}/PluginRegistry/version.txt
+${PLONE_BASE}/PluginRegistry/www/PluginRegistry.png
+${PLONE_BASE}/PluginRegistry/www/active_plugins.zpt
+${PLONE_BASE}/PluginRegistry/www/arrow-down.gif
+${PLONE_BASE}/PluginRegistry/www/arrow-left.gif
+${PLONE_BASE}/PluginRegistry/www/arrow-right.gif
+${PLONE_BASE}/PluginRegistry/www/arrow-up.gif
+${PLONE_BASE}/PluginRegistry/www/export_import.zpt
+${PLONE_BASE}/PluginRegistry/www/plugins.zpt
+${PLONE_BASE}/PluginRegistry/www/two_lists.zpt
+${PLONE_BASE}/PluginRegistry/xml/pirExport.xml
+${PLONE_BASE}/PortalTransforms/ChangeLog
+${PLONE_BASE}/PortalTransforms/DEPENDS
+${PLONE_BASE}/PortalTransforms/HISTORY.txt
+${PLONE_BASE}/PortalTransforms/LICENSE.txt
+${PLONE_BASE}/PortalTransforms/MANIFEST.in
+${PLONE_BASE}/PortalTransforms/Makefile
+${PLONE_BASE}/PortalTransforms/README
+${PLONE_BASE}/PortalTransforms/SUGGESTS
+${PLONE_BASE}/PortalTransforms/TODO
+${PLONE_BASE}/PortalTransforms/Transform.py
+${PLONE_BASE}/PortalTransforms/Transform.pyc
+${PLONE_BASE}/PortalTransforms/TransformEngine.py
+${PLONE_BASE}/PortalTransforms/TransformEngine.pyc
+${PLONE_BASE}/PortalTransforms/TransformTool.py
+${PLONE_BASE}/PortalTransforms/TransformTool.pyc
+${PLONE_BASE}/PortalTransforms/TransformsChain.py
+${PLONE_BASE}/PortalTransforms/TransformsChain.pyc
+${PLONE_BASE}/PortalTransforms/__init__.py
+${PLONE_BASE}/PortalTransforms/__init__.pyc
+${PLONE_BASE}/PortalTransforms/__pkginfo__.py
+${PLONE_BASE}/PortalTransforms/__pkginfo__.pyc
+${PLONE_BASE}/PortalTransforms/bridge.zcml
+${PLONE_BASE}/PortalTransforms/cache.py
+${PLONE_BASE}/PortalTransforms/cache.pyc
+${PLONE_BASE}/PortalTransforms/chain.py
+${PLONE_BASE}/PortalTransforms/chain.pyc
+${PLONE_BASE}/PortalTransforms/configure.zcml
+${PLONE_BASE}/PortalTransforms/data.py
+${PLONE_BASE}/PortalTransforms/data.pyc
+${PLONE_BASE}/PortalTransforms/debian/changelog
+${PLONE_BASE}/PortalTransforms/debian/config
+${PLONE_BASE}/PortalTransforms/debian/control
+${PLONE_BASE}/PortalTransforms/debian/copyright
+${PLONE_BASE}/PortalTransforms/debian/debianizerc
+${PLONE_BASE}/PortalTransforms/debian/dirs
+${PLONE_BASE}/PortalTransforms/debian/files
+${PLONE_BASE}/PortalTransforms/debian/postinst
+${PLONE_BASE}/PortalTransforms/debian/prerm
+${PLONE_BASE}/PortalTransforms/debian/rules
+${PLONE_BASE}/PortalTransforms/debian/templates
+${PLONE_BASE}/PortalTransforms/debian/zope-cmftransforms-test.dirs
+${PLONE_BASE}/PortalTransforms/docs/dev_manual.rst
+${PLONE_BASE}/PortalTransforms/docs/makefile
+${PLONE_BASE}/PortalTransforms/docs/uno_setup.rst
+${PLONE_BASE}/PortalTransforms/docs/user_manual.rst
+${PLONE_BASE}/PortalTransforms/implements.zcml
+${PLONE_BASE}/PortalTransforms/interfaces.py
+${PLONE_BASE}/PortalTransforms/interfaces.pyc
+${PLONE_BASE}/PortalTransforms/libtransforms/__init__.py
+${PLONE_BASE}/PortalTransforms/libtransforms/__init__.pyc
+${PLONE_BASE}/PortalTransforms/libtransforms/commandtransform.py
+${PLONE_BASE}/PortalTransforms/libtransforms/commandtransform.pyc
+${PLONE_BASE}/PortalTransforms/libtransforms/piltransform.py
+${PLONE_BASE}/PortalTransforms/libtransforms/piltransform.pyc
+${PLONE_BASE}/PortalTransforms/libtransforms/retransform.py
+${PLONE_BASE}/PortalTransforms/libtransforms/retransform.pyc
+${PLONE_BASE}/PortalTransforms/libtransforms/utils.py
+${PLONE_BASE}/PortalTransforms/libtransforms/utils.pyc
+${PLONE_BASE}/PortalTransforms/profiles/default/componentregistry.xml
+${PLONE_BASE}/PortalTransforms/profiles/default/import_steps.xml
+${PLONE_BASE}/PortalTransforms/profiles/default/portal-transforms-various.txt
+${PLONE_BASE}/PortalTransforms/profiles/default/toolset.xml
+${PLONE_BASE}/PortalTransforms/profiles.zcml
+${PLONE_BASE}/PortalTransforms/setuphandlers.py
+${PLONE_BASE}/PortalTransforms/setuphandlers.pyc
+${PLONE_BASE}/PortalTransforms/tests/__init__.py
+${PLONE_BASE}/PortalTransforms/tests/__init__.pyc
+${PLONE_BASE}/PortalTransforms/tests/input/demo1.pdf
+${PLONE_BASE}/PortalTransforms/tests/input/input.textile
+${PLONE_BASE}/PortalTransforms/tests/input/logo.bmp
+${PLONE_BASE}/PortalTransforms/tests/input/logo.gif
+${PLONE_BASE}/PortalTransforms/tests/input/logo.jpg
+${PLONE_BASE}/PortalTransforms/tests/input/logo.png
+${PLONE_BASE}/PortalTransforms/tests/input/markdown.txt
+${PLONE_BASE}/PortalTransforms/tests/input/org-news.xml
+${PLONE_BASE}/PortalTransforms/tests/input/rest1.rst
+${PLONE_BASE}/PortalTransforms/tests/input/rest2.rst
+${PLONE_BASE}/PortalTransforms/tests/input/rest3.rst
+${PLONE_BASE}/PortalTransforms/tests/input/rss2html.xslt
+${PLONE_BASE}/PortalTransforms/tests/input/test.doc
+${PLONE_BASE}/PortalTransforms/tests/input/test_lynx.html
+${PLONE_BASE}/PortalTransforms/tests/input/test_python.py
+${PLONE_BASE}/PortalTransforms/tests/input/test_python.pyc
+${PLONE_BASE}/PortalTransforms/tests/input/test_safehtml.html
+${PLONE_BASE}/PortalTransforms/tests/output/demo1.html
+${PLONE_BASE}/PortalTransforms/tests/output/demo1.html.nofilename
+${PLONE_BASE}/PortalTransforms/tests/output/logo.bmp
+${PLONE_BASE}/PortalTransforms/tests/output/logo.gif
+${PLONE_BASE}/PortalTransforms/tests/output/logo.jpg
+${PLONE_BASE}/PortalTransforms/tests/output/logo.pcx
+${PLONE_BASE}/PortalTransforms/tests/output/logo.png
+${PLONE_BASE}/PortalTransforms/tests/output/logo.ppm
+${PLONE_BASE}/PortalTransforms/tests/output/logo.tiff
+${PLONE_BASE}/PortalTransforms/tests/output/markdown.html
+${PLONE_BASE}/PortalTransforms/tests/output/org-news.html
+${PLONE_BASE}/PortalTransforms/tests/output/rest1.html
+${PLONE_BASE}/PortalTransforms/tests/output/rest1.out
+${PLONE_BASE}/PortalTransforms/tests/output/rest1.rst
+${PLONE_BASE}/PortalTransforms/tests/output/rest2.out
+${PLONE_BASE}/PortalTransforms/tests/output/rest3.out
+${PLONE_BASE}/PortalTransforms/tests/output/test_html_to_text.txt
+${PLONE_BASE}/PortalTransforms/tests/output/test_lynx.txt
+${PLONE_BASE}/PortalTransforms/tests/output/test_python.out
+${PLONE_BASE}/PortalTransforms/tests/output/test_safe.html
+${PLONE_BASE}/PortalTransforms/tests/output/test_word.html
+${PLONE_BASE}/PortalTransforms/tests/output/textile.html
+${PLONE_BASE}/PortalTransforms/tests/test_doctests.py
+${PLONE_BASE}/PortalTransforms/tests/test_doctests.pyc
+${PLONE_BASE}/PortalTransforms/tests/test_engine.py
+${PLONE_BASE}/PortalTransforms/tests/test_engine.pyc
+${PLONE_BASE}/PortalTransforms/tests/test_graph.py
+${PLONE_BASE}/PortalTransforms/tests/test_graph.pyc
+${PLONE_BASE}/PortalTransforms/tests/test_intelligenttext.py
+${PLONE_BASE}/PortalTransforms/tests/test_intelligenttext.pyc
+${PLONE_BASE}/PortalTransforms/tests/test_transforms.py
+${PLONE_BASE}/PortalTransforms/tests/test_transforms.pyc
+${PLONE_BASE}/PortalTransforms/tests/test_xss.py
+${PLONE_BASE}/PortalTransforms/tests/test_xss.pyc
+${PLONE_BASE}/PortalTransforms/tests/utils.py
+${PLONE_BASE}/PortalTransforms/tests/utils.pyc
+${PLONE_BASE}/PortalTransforms/tests/word.py
+${PLONE_BASE}/PortalTransforms/tests/word.pyc
+${PLONE_BASE}/PortalTransforms/tool.gif
+${PLONE_BASE}/PortalTransforms/transforms/__init__.py
+${PLONE_BASE}/PortalTransforms/transforms/__init__.pyc
+${PLONE_BASE}/PortalTransforms/transforms/broken.py
+${PLONE_BASE}/PortalTransforms/transforms/broken.pyc
+${PLONE_BASE}/PortalTransforms/transforms/html_body.py
+${PLONE_BASE}/PortalTransforms/transforms/html_body.pyc
+${PLONE_BASE}/PortalTransforms/transforms/html_to_text.py
+${PLONE_BASE}/PortalTransforms/transforms/html_to_text.pyc
+${PLONE_BASE}/PortalTransforms/transforms/html_to_web_intelligent_plain_text.py
+${PLONE_BASE}/PortalTransforms/transforms/html_to_web_intelligent_plain_text.pyc
+${PLONE_BASE}/PortalTransforms/transforms/identity.py
+${PLONE_BASE}/PortalTransforms/transforms/identity.pyc
+${PLONE_BASE}/PortalTransforms/transforms/image_to_bmp.py
+${PLONE_BASE}/PortalTransforms/transforms/image_to_bmp.pyc
+${PLONE_BASE}/PortalTransforms/transforms/image_to_gif.py
+${PLONE_BASE}/PortalTransforms/transforms/image_to_gif.pyc
+${PLONE_BASE}/PortalTransforms/transforms/image_to_html.py
+${PLONE_BASE}/PortalTransforms/transforms/image_to_html.pyc
+${PLONE_BASE}/PortalTransforms/transforms/image_to_jpeg.py
+${PLONE_BASE}/PortalTransforms/transforms/image_to_jpeg.pyc
+${PLONE_BASE}/PortalTransforms/transforms/image_to_pcx.py
+${PLONE_BASE}/PortalTransforms/transforms/image_to_pcx.pyc
+${PLONE_BASE}/PortalTransforms/transforms/image_to_png.py
+${PLONE_BASE}/PortalTransforms/transforms/image_to_png.pyc
+${PLONE_BASE}/PortalTransforms/transforms/image_to_ppm.py
+${PLONE_BASE}/PortalTransforms/transforms/image_to_ppm.pyc
+${PLONE_BASE}/PortalTransforms/transforms/image_to_tiff.py
+${PLONE_BASE}/PortalTransforms/transforms/image_to_tiff.pyc
+${PLONE_BASE}/PortalTransforms/transforms/lynx_dump.py
+${PLONE_BASE}/PortalTransforms/transforms/lynx_dump.pyc
+${PLONE_BASE}/PortalTransforms/transforms/markdown_to_html.py
+${PLONE_BASE}/PortalTransforms/transforms/markdown_to_html.pyc
+${PLONE_BASE}/PortalTransforms/transforms/office_com.py
+${PLONE_BASE}/PortalTransforms/transforms/office_com.pyc
+${PLONE_BASE}/PortalTransforms/transforms/office_uno.py
+${PLONE_BASE}/PortalTransforms/transforms/office_uno.pyc
+${PLONE_BASE}/PortalTransforms/transforms/office_wvware.py
+${PLONE_BASE}/PortalTransforms/transforms/office_wvware.pyc
+${PLONE_BASE}/PortalTransforms/transforms/pdf_to_html.py
+${PLONE_BASE}/PortalTransforms/transforms/pdf_to_html.pyc
+${PLONE_BASE}/PortalTransforms/transforms/pdf_to_text.py
+${PLONE_BASE}/PortalTransforms/transforms/pdf_to_text.pyc
+${PLONE_BASE}/PortalTransforms/transforms/python.py
+${PLONE_BASE}/PortalTransforms/transforms/python.pyc
+${PLONE_BASE}/PortalTransforms/transforms/rest.py
+${PLONE_BASE}/PortalTransforms/transforms/rest.pyc
+${PLONE_BASE}/PortalTransforms/transforms/rtf_to_html.py
+${PLONE_BASE}/PortalTransforms/transforms/rtf_to_html.pyc
+${PLONE_BASE}/PortalTransforms/transforms/rtf_to_xml.py
+${PLONE_BASE}/PortalTransforms/transforms/rtf_to_xml.pyc
+${PLONE_BASE}/PortalTransforms/transforms/safe_html.py
+${PLONE_BASE}/PortalTransforms/transforms/safe_html.pyc
+${PLONE_BASE}/PortalTransforms/transforms/st.py
+${PLONE_BASE}/PortalTransforms/transforms/st.pyc
+${PLONE_BASE}/PortalTransforms/transforms/text_pre_to_html.py
+${PLONE_BASE}/PortalTransforms/transforms/text_pre_to_html.pyc
+${PLONE_BASE}/PortalTransforms/transforms/text_to_html.py
+${PLONE_BASE}/PortalTransforms/transforms/text_to_html.pyc
+${PLONE_BASE}/PortalTransforms/transforms/textile_to_html.py
+${PLONE_BASE}/PortalTransforms/transforms/textile_to_html.pyc
+${PLONE_BASE}/PortalTransforms/transforms/web_intelligent_plain_text_to_html.py
+${PLONE_BASE}/PortalTransforms/transforms/web_intelligent_plain_text_to_html.pyc
+${PLONE_BASE}/PortalTransforms/transforms/word_to_html.py
+${PLONE_BASE}/PortalTransforms/transforms/word_to_html.pyc
+${PLONE_BASE}/PortalTransforms/unsafe_transforms/build_transforms.py
+${PLONE_BASE}/PortalTransforms/unsafe_transforms/build_transforms.pyc
+${PLONE_BASE}/PortalTransforms/unsafe_transforms/command.py
+${PLONE_BASE}/PortalTransforms/unsafe_transforms/command.pyc
+${PLONE_BASE}/PortalTransforms/unsafe_transforms/xml.py
+${PLONE_BASE}/PortalTransforms/unsafe_transforms/xml.pyc
+${PLONE_BASE}/PortalTransforms/utils.py
+${PLONE_BASE}/PortalTransforms/utils.pyc
+${PLONE_BASE}/PortalTransforms/version.txt
+${PLONE_BASE}/PortalTransforms/www/addTransform.zpt
+${PLONE_BASE}/PortalTransforms/www/addTransformsChain.zpt
+${PLONE_BASE}/PortalTransforms/www/configureTransform.zpt
+${PLONE_BASE}/PortalTransforms/www/editTransformationPolicy.zpt
+${PLONE_BASE}/PortalTransforms/www/editTransformsChain.zpt
+${PLONE_BASE}/PortalTransforms/www/reloadAllTransforms.zpt
+${PLONE_BASE}/PortalTransforms/www/reloadTransform.zpt
+${PLONE_BASE}/PortalTransforms/www/setCacheTime.zpt
+${PLONE_BASE}/PortalTransforms/www/tr_widgets.zpt
+${PLONE_BASE}/PortalTransforms/z3/__init__.py
+${PLONE_BASE}/PortalTransforms/z3/__init__.pyc
+${PLONE_BASE}/PortalTransforms/z3/interfaces.py
+${PLONE_BASE}/PortalTransforms/z3/interfaces.pyc
+${PLONE_BASE}/ResourceRegistries/LICENSE.GPL
+${PLONE_BASE}/ResourceRegistries/LICENSE.txt
+${PLONE_BASE}/ResourceRegistries/README.txt
+${PLONE_BASE}/ResourceRegistries/__init__.py
+${PLONE_BASE}/ResourceRegistries/__init__.pyc
+${PLONE_BASE}/ResourceRegistries/browser/__init__.py
+${PLONE_BASE}/ResourceRegistries/browser/__init__.pyc
+${PLONE_BASE}/ResourceRegistries/browser/configure.zcml
+${PLONE_BASE}/ResourceRegistries/browser/interfaces.py
+${PLONE_BASE}/ResourceRegistries/browser/interfaces.pyc
+${PLONE_BASE}/ResourceRegistries/browser/kss.pt
+${PLONE_BASE}/ResourceRegistries/browser/kss.py
+${PLONE_BASE}/ResourceRegistries/browser/kss.pyc
+${PLONE_BASE}/ResourceRegistries/browser/resourceregistries.pt
+${PLONE_BASE}/ResourceRegistries/browser/scripts.pt
+${PLONE_BASE}/ResourceRegistries/browser/scripts.py
+${PLONE_BASE}/ResourceRegistries/browser/scripts.pyc
+${PLONE_BASE}/ResourceRegistries/browser/styles.pt
+${PLONE_BASE}/ResourceRegistries/browser/styles.py
+${PLONE_BASE}/ResourceRegistries/browser/styles.pyc
+${PLONE_BASE}/ResourceRegistries/config.py
+${PLONE_BASE}/ResourceRegistries/config.pyc
+${PLONE_BASE}/ResourceRegistries/configure.zcml
+${PLONE_BASE}/ResourceRegistries/doc/HISTORY.txt
+${PLONE_BASE}/ResourceRegistries/doc/INSTALL.txt
+${PLONE_BASE}/ResourceRegistries/doc/TODO.txt
+${PLONE_BASE}/ResourceRegistries/exportimport/__init__.py
+${PLONE_BASE}/ResourceRegistries/exportimport/__init__.pyc
+${PLONE_BASE}/ResourceRegistries/exportimport/configure.zcml
+${PLONE_BASE}/ResourceRegistries/exportimport/cssregistry.py
+${PLONE_BASE}/ResourceRegistries/exportimport/cssregistry.pyc
+${PLONE_BASE}/ResourceRegistries/exportimport/jsregistry.py
+${PLONE_BASE}/ResourceRegistries/exportimport/jsregistry.pyc
+${PLONE_BASE}/ResourceRegistries/exportimport/kssregistry.py
+${PLONE_BASE}/ResourceRegistries/exportimport/kssregistry.pyc
+${PLONE_BASE}/ResourceRegistries/exportimport/resourceregistry.py
+${PLONE_BASE}/ResourceRegistries/exportimport/resourceregistry.pyc
+${PLONE_BASE}/ResourceRegistries/interfaces/__init__.py
+${PLONE_BASE}/ResourceRegistries/interfaces/__init__.pyc
+${PLONE_BASE}/ResourceRegistries/interfaces/registries.py
+${PLONE_BASE}/ResourceRegistries/interfaces/registries.pyc
+${PLONE_BASE}/ResourceRegistries/interfaces/viewletmanagers.py
+${PLONE_BASE}/ResourceRegistries/interfaces/viewletmanagers.pyc
+${PLONE_BASE}/ResourceRegistries/permissions.py
+${PLONE_BASE}/ResourceRegistries/permissions.pyc
+${PLONE_BASE}/ResourceRegistries/skins/ResourceRegistries/test_rr_1.css
+${PLONE_BASE}/ResourceRegistries/skins/ResourceRegistries/test_rr_1.js.pt
+${PLONE_BASE}/ResourceRegistries/skins/ResourceRegistries/test_rr_1.kss
+${PLONE_BASE}/ResourceRegistries/skins/ResourceRegistries/test_rr_2.css
+${PLONE_BASE}/ResourceRegistries/skins/ResourceRegistries/test_rr_2.js.dtml
+${PLONE_BASE}/ResourceRegistries/skins/ResourceRegistries/test_rr_2.kss
+${PLONE_BASE}/ResourceRegistries/skins/ResourceRegistries/test_rr_3.js
+${PLONE_BASE}/ResourceRegistries/tests/RegistryTestCase.py
+${PLONE_BASE}/ResourceRegistries/tests/RegistryTestCase.pyc
+${PLONE_BASE}/ResourceRegistries/tests/__init__.py
+${PLONE_BASE}/ResourceRegistries/tests/__init__.pyc
+${PLONE_BASE}/ResourceRegistries/tests/test.zcml
+${PLONE_BASE}/ResourceRegistries/tests/testBaseRegistry.py
+${PLONE_BASE}/ResourceRegistries/tests/testBaseRegistry.pyc
+${PLONE_BASE}/ResourceRegistries/tests/testCSSRegistry.py
+${PLONE_BASE}/ResourceRegistries/tests/testCSSRegistry.pyc
+${PLONE_BASE}/ResourceRegistries/tests/testHTTPHeaders.py
+${PLONE_BASE}/ResourceRegistries/tests/testHTTPHeaders.pyc
+${PLONE_BASE}/ResourceRegistries/tests/testJSRegistry.py
+${PLONE_BASE}/ResourceRegistries/tests/testJSRegistry.pyc
+${PLONE_BASE}/ResourceRegistries/tests/testKSSRegistry.py
+${PLONE_BASE}/ResourceRegistries/tests/testKSSRegistry.pyc
+${PLONE_BASE}/ResourceRegistries/tests/testPacker.py
+${PLONE_BASE}/ResourceRegistries/tests/testPacker.pyc
+${PLONE_BASE}/ResourceRegistries/tests/test_rr_1.css
+${PLONE_BASE}/ResourceRegistries/tests/test_rr_1.js
+${PLONE_BASE}/ResourceRegistries/tests/test_rr_1.kss
+${PLONE_BASE}/ResourceRegistries/tool.gif
+${PLONE_BASE}/ResourceRegistries/tools/BaseRegistry.py
+${PLONE_BASE}/ResourceRegistries/tools/BaseRegistry.pyc
+${PLONE_BASE}/ResourceRegistries/tools/CSSRegistry.py
+${PLONE_BASE}/ResourceRegistries/tools/CSSRegistry.pyc
+${PLONE_BASE}/ResourceRegistries/tools/JSRegistry.py
+${PLONE_BASE}/ResourceRegistries/tools/JSRegistry.pyc
+${PLONE_BASE}/ResourceRegistries/tools/KSSRegistry.py
+${PLONE_BASE}/ResourceRegistries/tools/KSSRegistry.pyc
+${PLONE_BASE}/ResourceRegistries/tools/__init__.py
+${PLONE_BASE}/ResourceRegistries/tools/__init__.pyc
+${PLONE_BASE}/ResourceRegistries/tools/packer.py
+${PLONE_BASE}/ResourceRegistries/tools/packer.pyc
+${PLONE_BASE}/ResourceRegistries/version.txt
+${PLONE_BASE}/ResourceRegistries/www/csscomposition.zpt
+${PLONE_BASE}/ResourceRegistries/www/cssconfig.zpt
+${PLONE_BASE}/ResourceRegistries/www/jscomposition.zpt
+${PLONE_BASE}/ResourceRegistries/www/jsconfig.zpt
+${PLONE_BASE}/ResourceRegistries/www/ksscomposition.zpt
+${PLONE_BASE}/ResourceRegistries/www/kssconfig.zpt
+${PLONE_BASE}/SecureMailHost/HISTORY.txt
+${PLONE_BASE}/SecureMailHost/LICENSE.txt
+${PLONE_BASE}/SecureMailHost/README.txt
+${PLONE_BASE}/SecureMailHost/SecureMailHost.py
+${PLONE_BASE}/SecureMailHost/SecureMailHost.pyc
+${PLONE_BASE}/SecureMailHost/__init__.py
+${PLONE_BASE}/SecureMailHost/__init__.pyc
+${PLONE_BASE}/SecureMailHost/config.py
+${PLONE_BASE}/SecureMailHost/config.pyc
+${PLONE_BASE}/SecureMailHost/mail.py
+${PLONE_BASE}/SecureMailHost/mail.pyc
+${PLONE_BASE}/SecureMailHost/tests/__init__.py
+${PLONE_BASE}/SecureMailHost/tests/__init__.pyc
+${PLONE_BASE}/SecureMailHost/tests/common.py
+${PLONE_BASE}/SecureMailHost/tests/common.pyc
+${PLONE_BASE}/SecureMailHost/tests/framework.py
+${PLONE_BASE}/SecureMailHost/tests/framework.pyc
+${PLONE_BASE}/SecureMailHost/tests/in/buergschaft.txt
+${PLONE_BASE}/SecureMailHost/tests/in/loremipsum.txt
+${PLONE_BASE}/SecureMailHost/tests/out/buergschaft.txt
+${PLONE_BASE}/SecureMailHost/tests/out/buergschaft_latin1.txt
+${PLONE_BASE}/SecureMailHost/tests/out/buergschaft_utf8.txt
+${PLONE_BASE}/SecureMailHost/tests/out/buergschaft_utf8_to.txt
+${PLONE_BASE}/SecureMailHost/tests/out/loremipsum.txt
+${PLONE_BASE}/SecureMailHost/tests/runalltests.py
+${PLONE_BASE}/SecureMailHost/tests/runalltests.pyc
+${PLONE_BASE}/SecureMailHost/tests/test_headerparsing.py
+${PLONE_BASE}/SecureMailHost/tests/test_headerparsing.pyc
+${PLONE_BASE}/SecureMailHost/tests/test_messages.py
+${PLONE_BASE}/SecureMailHost/tests/test_messages.pyc
+${PLONE_BASE}/SecureMailHost/tests/test_validateEmail.py
+${PLONE_BASE}/SecureMailHost/tests/test_validateEmail.pyc
+${PLONE_BASE}/SecureMailHost/version.txt
+${PLONE_BASE}/SecureMailHost/www/MailHost_icon.gif
+${PLONE_BASE}/SecureMailHost/www/addMailHost_form.dtml
+${PLONE_BASE}/SecureMailHost/www/manageMailHost.dtml
+${PLONE_BASE}/ZopeVersionControl/CHANGES.txt
+${PLONE_BASE}/ZopeVersionControl/EventLog.py
+${PLONE_BASE}/ZopeVersionControl/EventLog.pyc
+${PLONE_BASE}/ZopeVersionControl/IVersionControl.py
+${PLONE_BASE}/ZopeVersionControl/IVersionControl.pyc
+${PLONE_BASE}/ZopeVersionControl/Repository.py
+${PLONE_BASE}/ZopeVersionControl/Repository.pyc
+${PLONE_BASE}/ZopeVersionControl/SequenceWrapper.py
+${PLONE_BASE}/ZopeVersionControl/SequenceWrapper.pyc
+${PLONE_BASE}/ZopeVersionControl/Utility.py
+${PLONE_BASE}/ZopeVersionControl/Utility.pyc
+${PLONE_BASE}/ZopeVersionControl/Version.py
+${PLONE_BASE}/ZopeVersionControl/Version.pyc
+${PLONE_BASE}/ZopeVersionControl/VersionHistory.py
+${PLONE_BASE}/ZopeVersionControl/VersionHistory.pyc
+${PLONE_BASE}/ZopeVersionControl/VersionSupport.py
+${PLONE_BASE}/ZopeVersionControl/VersionSupport.pyc
+${PLONE_BASE}/ZopeVersionControl/ZopeRepository.py
+${PLONE_BASE}/ZopeVersionControl/ZopeRepository.pyc
+${PLONE_BASE}/ZopeVersionControl/ZopeVersion.py
+${PLONE_BASE}/ZopeVersionControl/ZopeVersion.pyc
+${PLONE_BASE}/ZopeVersionControl/ZopeVersionHistory.py
+${PLONE_BASE}/ZopeVersionControl/ZopeVersionHistory.pyc
+${PLONE_BASE}/ZopeVersionControl/__init__.py
+${PLONE_BASE}/ZopeVersionControl/__init__.pyc
+${PLONE_BASE}/ZopeVersionControl/dtml/RepositoryAddForm.dtml
+${PLONE_BASE}/ZopeVersionControl/dtml/RepositoryManageMain.dtml
+${PLONE_BASE}/ZopeVersionControl/dtml/RepositoryProperties.dtml
+${PLONE_BASE}/ZopeVersionControl/dtml/VersionControlLog.dtml
+${PLONE_BASE}/ZopeVersionControl/dtml/VersionControlMain.dtml
+${PLONE_BASE}/ZopeVersionControl/dtml/VersionHistoryManageMain.dtml
+${PLONE_BASE}/ZopeVersionControl/dtml/VersionHistoryProperties.dtml
+${PLONE_BASE}/ZopeVersionControl/dtml/VersionManageMain.dtml
+${PLONE_BASE}/ZopeVersionControl/dtml/VersionProperties.dtml
+${PLONE_BASE}/ZopeVersionControl/help/Repository-Add.stx
+${PLONE_BASE}/ZopeVersionControl/help/Repository-Manage.stx
+${PLONE_BASE}/ZopeVersionControl/help/Repository-Properties.stx
+${PLONE_BASE}/ZopeVersionControl/help/Version-Manage.stx
+${PLONE_BASE}/ZopeVersionControl/help/Version-Properties.stx
+${PLONE_BASE}/ZopeVersionControl/help/VersionControl.stx
+${PLONE_BASE}/ZopeVersionControl/help/VersionHistory-Manage.stx
+${PLONE_BASE}/ZopeVersionControl/help/VersionHistory-Properties.stx
+${PLONE_BASE}/ZopeVersionControl/issues.txt
+${PLONE_BASE}/ZopeVersionControl/nonversioned.py
+${PLONE_BASE}/ZopeVersionControl/nonversioned.pyc
+${PLONE_BASE}/ZopeVersionControl/tests/__init__.py
+${PLONE_BASE}/ZopeVersionControl/tests/__init__.pyc
+${PLONE_BASE}/ZopeVersionControl/tests/common.py
+${PLONE_BASE}/ZopeVersionControl/tests/common.pyc
+${PLONE_BASE}/ZopeVersionControl/tests/testReferenceVersioning.py
+${PLONE_BASE}/ZopeVersionControl/tests/testReferenceVersioning.pyc
+${PLONE_BASE}/ZopeVersionControl/tests/testVersionControl.py
+${PLONE_BASE}/ZopeVersionControl/tests/testVersionControl.pyc
+${PLONE_BASE}/ZopeVersionControl/tests/test_all.py
+${PLONE_BASE}/ZopeVersionControl/tests/test_all.pyc
+${PLONE_BASE}/ZopeVersionControl/version.txt
+${PLONE_BASE}/ZopeVersionControl/www/Repository.gif
+${PLONE_BASE}/ZopeVersionControl/www/Version.gif
+${PLONE_BASE}/ZopeVersionControl/www/VersionHistory.gif
+${PLONE_BASE}/kupu/Extensions/Install.py
+${PLONE_BASE}/kupu/Extensions/Install.pyc
+${PLONE_BASE}/kupu/Makefile
+${PLONE_BASE}/kupu/__init__.py
+${PLONE_BASE}/kupu/__init__.pyc
+${PLONE_BASE}/kupu/apache-lenya/README.txt
+${PLONE_BASE}/kupu/apache-lenya/kupu/body.kupu
+${PLONE_BASE}/kupu/apache-lenya/kupu/exit.kupu
+${PLONE_BASE}/kupu/apache-lenya/kupu/include.kupu
+${PLONE_BASE}/kupu/apache-lenya/kupu/kupudrawerstyles.css
+${PLONE_BASE}/kupu/apache-lenya/kupu/kupumacros.html
+${PLONE_BASE}/kupu/apache-lenya/kupu/kupustyles.css
+${PLONE_BASE}/kupu/apache-lenya/kupu/lenya.js
+${PLONE_BASE}/kupu/apache-lenya/kupu/lenya.kupu
+${PLONE_BASE}/kupu/apache-lenya/kupu/toolbar.kupu
+${PLONE_BASE}/kupu/apache-lenya/kupu/toolboxes.kupu
+${PLONE_BASE}/kupu/apache-lenya/kupu/wire.kupu
+${PLONE_BASE}/kupu/apache-lenya/kupu/xmlconfig.kupu
+${PLONE_BASE}/kupu/apache-lenya/lenya/content2edit.xsl
+${PLONE_BASE}/kupu/apache-lenya/lenya/drawers/imagedrawer.xsl
+${PLONE_BASE}/kupu/apache-lenya/lenya/drawers/imagelibraries.xml.jx
+${PLONE_BASE}/kupu/apache-lenya/lenya/drawers/kupudrawerstyles.css
+${PLONE_BASE}/kupu/apache-lenya/lenya/drawers/libraries.xml.jx
+${PLONE_BASE}/kupu/apache-lenya/lenya/drawers/linkdrawer.xsl
+${PLONE_BASE}/kupu/apache-lenya/lenya/drawers/linklibraries.xml.jx
+${PLONE_BASE}/kupu/apache-lenya/lenya/drawers/publication_image_library.xml.jx
+${PLONE_BASE}/kupu/apache-lenya/lenya/drawers/sitetree_link_library.xml.jx
+${PLONE_BASE}/kupu/apache-lenya/lenya/i18n.xsl
+${PLONE_BASE}/kupu/apache-lenya/lenya/images/emblem-generic.png
+${PLONE_BASE}/kupu/apache-lenya/lenya/images/exit.gif
+${PLONE_BASE}/kupu/apache-lenya/lenya/images/page-image.png
+${PLONE_BASE}/kupu/apache-lenya/lenya/images/pub-image.png
+${PLONE_BASE}/kupu/apache-lenya/lenya/images/right_arrow.png
+${PLONE_BASE}/kupu/apache-lenya/lenya/images/sitetree-link.png
+${PLONE_BASE}/kupu/apache-lenya/lenya/kupumacros.xsl
+${PLONE_BASE}/kupu/apache-lenya/lenya/kupusave.xsl
+${PLONE_BASE}/kupu/apache-lenya/lenya/page2kupu.xsl
+${PLONE_BASE}/kupu/apache-lenya/lenya/pageassets2kupulibrary.xsl
+${PLONE_BASE}/kupu/apache-lenya/lenya/sitetree2kupulibrary.xsl
+${PLONE_BASE}/kupu/cnf/head.kupu
+${PLONE_BASE}/kupu/cnf/include.kupu
+${PLONE_BASE}/kupu/cnf/toolboxes.kupu
+${PLONE_BASE}/kupu/cnf/wire.kupu
+${PLONE_BASE}/kupu/cnf/xmlconfig.kupu
+${PLONE_BASE}/kupu/common/fulldoc.html
+${PLONE_BASE}/kupu/common/kupu-pox.cgi
+${PLONE_BASE}/kupu/common/kupu.cgi
+${PLONE_BASE}/kupu/common/kupu.html
+${PLONE_BASE}/kupu/common/kupu.pox
+${PLONE_BASE}/kupu/common/kupu.pox.jspx
+${PLONE_BASE}/kupu/common/kupu_kjax.js
+${PLONE_BASE}/kupu/common/kupubasetools.js
+${PLONE_BASE}/kupu/common/kupubeforeunload.js
+${PLONE_BASE}/kupu/common/kupublank.html
+${PLONE_BASE}/kupu/common/kupucleanupexpressions.js
+${PLONE_BASE}/kupu/common/kupucnf.html
+${PLONE_BASE}/kupu/common/kupucnftable.js
+${PLONE_BASE}/kupu/common/kupucontentfilters.js
+${PLONE_BASE}/kupu/common/kupucontentstyles.css
+${PLONE_BASE}/kupu/common/kupucontextmenu.js
+${PLONE_BASE}/kupu/common/kupudrawers/.objects
+${PLONE_BASE}/kupu/common/kupudrawers/allimages.xml
+${PLONE_BASE}/kupu/common/kupudrawers/drawer.xsl
+${PLONE_BASE}/kupu/common/kupudrawers/drawer.xsl.metadata
+${PLONE_BASE}/kupu/common/kupudrawers/imagelibrary.xml
+${PLONE_BASE}/kupu/common/kupudrawers/kupubuttons.xml
+${PLONE_BASE}/kupu/common/kupudrawers/libraries.rng
+${PLONE_BASE}/kupu/common/kupudrawers/linklibrary.xml
+${PLONE_BASE}/kupu/common/kupudrawers/logos/bitflux_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/bitflux_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/bubnbros.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/bubnbros_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/codespeak_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/codespeak_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/diver_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/diver_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/eth_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/eth_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/infrae_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/infrae_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/kupu_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/kupu_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/lenya_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/lenya_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/opensource.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/opensource_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/oscom4_banner.gif
+${PLONE_BASE}/kupu/common/kupudrawers/logos/oscom4_banner_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/oscom_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/oscom_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/plone_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/plone_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/pypy_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/pypy_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/silva_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/silva_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/twiki_logo.gif
+${PLONE_BASE}/kupu/common/kupudrawers/logos/twiki_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/zea_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/zea_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/zope_logo.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos/zope_logo_preview.png
+${PLONE_BASE}/kupu/common/kupudrawers/logos.xml
+${PLONE_BASE}/kupu/common/kupudrawers/test-drawer.xsl
+${PLONE_BASE}/kupu/common/kupudrawers.js
+${PLONE_BASE}/kupu/common/kupudrawerstyles.css
+${PLONE_BASE}/kupu/common/kupueditor.js
+${PLONE_BASE}/kupu/common/kupuform.html
+${PLONE_BASE}/kupu/common/kupuhelpers.js
+${PLONE_BASE}/kupu/common/kupuimages/anchor.png
+${PLONE_BASE}/kupu/common/kupuimages/anchor.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/background-color.png
+${PLONE_BASE}/kupu/common/kupuimages/background-color.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/bold.gif
+${PLONE_BASE}/kupu/common/kupuimages/bold.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/bold.png
+${PLONE_BASE}/kupu/common/kupuimages/bold.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/bookmark.png
+${PLONE_BASE}/kupu/common/kupuimages/bookmark.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/buttons.png
+${PLONE_BASE}/kupu/common/kupuimages/buttons.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/caret.png
+${PLONE_BASE}/kupu/common/kupuimages/caret.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/closed.png
+${PLONE_BASE}/kupu/common/kupuimages/closed.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/copy.png
+${PLONE_BASE}/kupu/common/kupuimages/copy.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/create-new.png
+${PLONE_BASE}/kupu/common/kupuimages/create-new.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/cut.png
+${PLONE_BASE}/kupu/common/kupuimages/cut.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/definitionlist.png
+${PLONE_BASE}/kupu/common/kupuimages/definitionlist.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/document.png
+${PLONE_BASE}/kupu/common/kupuimages/document.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/exit.gif
+${PLONE_BASE}/kupu/common/kupuimages/exit.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/exthyperlink.png
+${PLONE_BASE}/kupu/common/kupuimages/exthyperlink.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/folder.png
+${PLONE_BASE}/kupu/common/kupuimages/folder.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/fonts.png
+${PLONE_BASE}/kupu/common/kupuimages/fonts.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/format.png
+${PLONE_BASE}/kupu/common/kupuimages/format.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/hr.png
+${PLONE_BASE}/kupu/common/kupuimages/hr.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/image.png
+${PLONE_BASE}/kupu/common/kupuimages/image.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/indent.gif
+${PLONE_BASE}/kupu/common/kupuimages/indent.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/indent.png
+${PLONE_BASE}/kupu/common/kupuimages/indent.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/inthyperlink.png
+${PLONE_BASE}/kupu/common/kupuimages/inthyperlink.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/italic.gif
+${PLONE_BASE}/kupu/common/kupuimages/italic.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/italic.png
+${PLONE_BASE}/kupu/common/kupuimages/italic.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/justify-center.png
+${PLONE_BASE}/kupu/common/kupuimages/justify-center.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/justify-full.png
+${PLONE_BASE}/kupu/common/kupuimages/justify-full.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/justify-left.png
+${PLONE_BASE}/kupu/common/kupuimages/justify-left.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/justify-right.png
+${PLONE_BASE}/kupu/common/kupuimages/justify-right.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/kupu_icon.gif
+${PLONE_BASE}/kupu/common/kupuimages/kupu_icon.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/kupulibrary.png
+${PLONE_BASE}/kupu/common/kupuimages/kupulibrary.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/kupusearch_icon.gif
+${PLONE_BASE}/kupu/common/kupuimages/kupusearch_icon.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/larger-text.png
+${PLONE_BASE}/kupu/common/kupuimages/larger-text.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/link.png
+${PLONE_BASE}/kupu/common/kupuimages/link.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/opened.png
+${PLONE_BASE}/kupu/common/kupuimages/opened.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/ordered-list.png
+${PLONE_BASE}/kupu/common/kupuimages/ordered-list.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/outdent.png
+${PLONE_BASE}/kupu/common/kupuimages/outdent.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/paste.png
+${PLONE_BASE}/kupu/common/kupuimages/paste.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/redo-disabled.png
+${PLONE_BASE}/kupu/common/kupuimages/redo-disabled.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/redo.png
+${PLONE_BASE}/kupu/common/kupuimages/redo.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/remove.png
+${PLONE_BASE}/kupu/common/kupuimages/remove.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/save.png
+${PLONE_BASE}/kupu/common/kupuimages/save.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/size.png
+${PLONE_BASE}/kupu/common/kupuimages/size.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/smaller-text.png
+${PLONE_BASE}/kupu/common/kupuimages/smaller-text.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/space.gif
+${PLONE_BASE}/kupu/common/kupuimages/space.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/strikethrough.png
+${PLONE_BASE}/kupu/common/kupuimages/strikethrough.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/subscript.png
+${PLONE_BASE}/kupu/common/kupuimages/subscript.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/superscript.png
+${PLONE_BASE}/kupu/common/kupuimages/superscript.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/table.png
+${PLONE_BASE}/kupu/common/kupuimages/table.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/text-check.png
+${PLONE_BASE}/kupu/common/kupuimages/text-check.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/text-color.png
+${PLONE_BASE}/kupu/common/kupuimages/text-color.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/toolbarbg_blue.png
+${PLONE_BASE}/kupu/common/kupuimages/toolbarbg_blue.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/toolbarbg_green.png
+${PLONE_BASE}/kupu/common/kupuimages/toolbarbg_green.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/toolbarbg_purple.png
+${PLONE_BASE}/kupu/common/kupuimages/toolbarbg_purple.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/toolbarbg_wood.png
+${PLONE_BASE}/kupu/common/kupuimages/toolbarbg_wood.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/treeCollapsed.gif
+${PLONE_BASE}/kupu/common/kupuimages/treeCollapsed.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/underline.gif
+${PLONE_BASE}/kupu/common/kupuimages/underline.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/underline.png
+${PLONE_BASE}/kupu/common/kupuimages/underline.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/undo-disabled.png
+${PLONE_BASE}/kupu/common/kupuimages/undo-disabled.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/undo.png
+${PLONE_BASE}/kupu/common/kupuimages/undo.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/unlink.png
+${PLONE_BASE}/kupu/common/kupuimages/unlink.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/unordered-list.png
+${PLONE_BASE}/kupu/common/kupuimages/unordered-list.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/view-source.png
+${PLONE_BASE}/kupu/common/kupuimages/view-source.png.metadata
+${PLONE_BASE}/kupu/common/kupuimages/zoom-in.gif
+${PLONE_BASE}/kupu/common/kupuimages/zoom-in.gif.metadata
+${PLONE_BASE}/kupu/common/kupuimages/zoom-out.gif
+${PLONE_BASE}/kupu/common/kupuimages/zoom-out.gif.metadata
+${PLONE_BASE}/kupu/common/kupuinit.js
+${PLONE_BASE}/kupu/common/kupuinit_experimental.js
+${PLONE_BASE}/kupu/common/kupuinit_form.js
+${PLONE_BASE}/kupu/common/kupuinit_genericelements.js
+${PLONE_BASE}/kupu/common/kupuinit_multi.js
+${PLONE_BASE}/kupu/common/kupuinspector.js
+${PLONE_BASE}/kupu/common/kupuloggers.js
+${PLONE_BASE}/kupu/common/kupumacros.html
+${PLONE_BASE}/kupu/common/kupumulti.html
+${PLONE_BASE}/kupu/common/kupumultieditor.js
+${PLONE_BASE}/kupu/common/kupunoi18n.js
+${PLONE_BASE}/kupu/common/kupupopups/image.html
+${PLONE_BASE}/kupu/common/kupupopups/link.html
+${PLONE_BASE}/kupu/common/kupusaveonpart.js
+${PLONE_BASE}/kupu/common/kupusourceedit.js
+${PLONE_BASE}/kupu/common/kupuspellchecker.js
+${PLONE_BASE}/kupu/common/kupustart.js
+${PLONE_BASE}/kupu/common/kupustart_form.js
+${PLONE_BASE}/kupu/common/kupustart_multi.js
+${PLONE_BASE}/kupu/common/kupustyles.css
+${PLONE_BASE}/kupu/common/kuputoolcollapser.js
+${PLONE_BASE}/kupu/common/sarissa.js
+${PLONE_BASE}/kupu/common/sarissa_ieemu_xpath.js
+${PLONE_BASE}/kupu/common/spellcheck.cgi
+${PLONE_BASE}/kupu/config.py
+${PLONE_BASE}/kupu/config.pyc
+${PLONE_BASE}/kupu/configure.zcml
+${PLONE_BASE}/kupu/default/body.kupu
+${PLONE_BASE}/kupu/default/colorchooser.kupu
+${PLONE_BASE}/kupu/default/contextmenu.kupu
+${PLONE_BASE}/kupu/default/drawers.kupu
+${PLONE_BASE}/kupu/default/form.kupu
+${PLONE_BASE}/kupu/default/head.kupu
+${PLONE_BASE}/kupu/default/html.kupu
+${PLONE_BASE}/kupu/default/include.kupu
+${PLONE_BASE}/kupu/default/save.kupu
+${PLONE_BASE}/kupu/default/saveonpart.kupu
+${PLONE_BASE}/kupu/default/sourceedit.kupu
+${PLONE_BASE}/kupu/default/spellchecker.kupu
+${PLONE_BASE}/kupu/default/toolbar.kupu
+${PLONE_BASE}/kupu/default/toolboxes.kupu
+${PLONE_BASE}/kupu/default/wire.kupu
+${PLONE_BASE}/kupu/default/xmlconfig.kupu
+${PLONE_BASE}/kupu/dist-apache-lenya.kupu
+${PLONE_BASE}/kupu/dist-cnf.kupu
+${PLONE_BASE}/kupu/dist-form.kupu
+${PLONE_BASE}/kupu/dist-multi.kupu
+${PLONE_BASE}/kupu/dist-plone.kupu
+${PLONE_BASE}/kupu/dist-zope2.kupu
+${PLONE_BASE}/kupu/dist.kupu
+${PLONE_BASE}/kupu/doc/BEFOREUNLOAD.txt
+${PLONE_BASE}/kupu/doc/CHANGES.txt
+${PLONE_BASE}/kupu/doc/CONTRIBUTING.txt
+${PLONE_BASE}/kupu/doc/CREDITS.txt
+${PLONE_BASE}/kupu/doc/CUSTOMIZING.txt
+${PLONE_BASE}/kupu/doc/EXTENDING.txt
+${PLONE_BASE}/kupu/doc/FAQ.txt
+${PLONE_BASE}/kupu/doc/IMAGEUPLOADER.txt
+${PLONE_BASE}/kupu/doc/INSTALL.txt
+${PLONE_BASE}/kupu/doc/JSAPI.txt
+${PLONE_BASE}/kupu/doc/LIBRARIES.txt
+${PLONE_BASE}/kupu/doc/LICENSE.txt
+${PLONE_BASE}/kupu/doc/OLDBROWSERS.txt
+${PLONE_BASE}/kupu/doc/PLONE2.txt
+${PLONE_BASE}/kupu/doc/README.txt
+${PLONE_BASE}/kupu/doc/SPELLCHECKER.txt
+${PLONE_BASE}/kupu/doc/STYLEGUIDE.txt
+${PLONE_BASE}/kupu/doc/TEMPLATE-SYSTEM.txt
+${PLONE_BASE}/kupu/doc/TODO.txt
+${PLONE_BASE}/kupu/doc/ZOPE2.txt
+${PLONE_BASE}/kupu/doc/default.css
+${PLONE_BASE}/kupu/doc/docutils.conf
+${PLONE_BASE}/kupu/doc/file-template
+${PLONE_BASE}/kupu/doc/reference/errors.txt
+${PLONE_BASE}/kupu/doc/reference/glossary.txt
+${PLONE_BASE}/kupu/doc/reference/kupuconfig.txt
+${PLONE_BASE}/kupu/doc/reference/readme.txt
+${PLONE_BASE}/kupu/form/body.kupu
+${PLONE_BASE}/kupu/form/head.kupu
+${PLONE_BASE}/kupu/form/include.kupu
+${PLONE_BASE}/kupu/form/save.kupu
+${PLONE_BASE}/kupu/i18n/README.txt
+${PLONE_BASE}/kupu/i18n/kupu-cs.po
+${PLONE_BASE}/kupu/i18n/kupu-da.po
+${PLONE_BASE}/kupu/i18n/kupu-de.po
+${PLONE_BASE}/kupu/i18n/kupu-el.po
+${PLONE_BASE}/kupu/i18n/kupu-eo.po
+${PLONE_BASE}/kupu/i18n/kupu-es.po
+${PLONE_BASE}/kupu/i18n/kupu-eu.po
+${PLONE_BASE}/kupu/i18n/kupu-fi.po
+${PLONE_BASE}/kupu/i18n/kupu-fr.po
+${PLONE_BASE}/kupu/i18n/kupu-he.po
+${PLONE_BASE}/kupu/i18n/kupu-hu.po
+${PLONE_BASE}/kupu/i18n/kupu-it.po
+${PLONE_BASE}/kupu/i18n/kupu-ja.po
+${PLONE_BASE}/kupu/i18n/kupu-nl.po
+${PLONE_BASE}/kupu/i18n/kupu-pl.po
+${PLONE_BASE}/kupu/i18n/kupu-pt-br.po
+${PLONE_BASE}/kupu/i18n/kupu-pt.po
+${PLONE_BASE}/kupu/i18n/kupu-sk.po
+${PLONE_BASE}/kupu/i18n/kupu-sr-Latn.po
+${PLONE_BASE}/kupu/i18n/kupu-sr.po
+${PLONE_BASE}/kupu/i18n/kupu-tr.po
+${PLONE_BASE}/kupu/i18n/kupu-vi.po
+${PLONE_BASE}/kupu/i18n/kupu-zh-cn.po
+${PLONE_BASE}/kupu/i18n/kupu-zh-tw.po
+${PLONE_BASE}/kupu/i18n/kupu-zh.po
+${PLONE_BASE}/kupu/i18n/kupu.pot
+${PLONE_BASE}/kupu/i18n/kupuconfig-cs.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-da.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-es.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-eu.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-fr.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-it.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-ja.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-pl.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-pt.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-sk.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-tr.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-vi.po
+${PLONE_BASE}/kupu/i18n/kupuconfig-zh-tw.po
+${PLONE_BASE}/kupu/i18n/kupuconfig.pot
+${PLONE_BASE}/kupu/i18n/kupupox-cs.po
+${PLONE_BASE}/kupu/i18n/kupupox-da.po
+${PLONE_BASE}/kupu/i18n/kupupox-de.po
+${PLONE_BASE}/kupu/i18n/kupupox-el.po
+${PLONE_BASE}/kupu/i18n/kupupox-eo.po
+${PLONE_BASE}/kupu/i18n/kupupox-es.po
+${PLONE_BASE}/kupu/i18n/kupupox-eu.po
+${PLONE_BASE}/kupu/i18n/kupupox-fi.po
+${PLONE_BASE}/kupu/i18n/kupupox-fr.po
+${PLONE_BASE}/kupu/i18n/kupupox-he.po
+${PLONE_BASE}/kupu/i18n/kupupox-it.po
+${PLONE_BASE}/kupu/i18n/kupupox-ja.po
+${PLONE_BASE}/kupu/i18n/kupupox-nl.po
+${PLONE_BASE}/kupu/i18n/kupupox-pl.po
+${PLONE_BASE}/kupu/i18n/kupupox-pt-br.po
+${PLONE_BASE}/kupu/i18n/kupupox-pt.po
+${PLONE_BASE}/kupu/i18n/kupupox-sk.po
+${PLONE_BASE}/kupu/i18n/kupupox-sr-Latn.po
+${PLONE_BASE}/kupu/i18n/kupupox-sr.po
+${PLONE_BASE}/kupu/i18n/kupupox-tr.po
+${PLONE_BASE}/kupu/i18n/kupupox-vi.po
+${PLONE_BASE}/kupu/i18n/kupupox-zh-cn.po
+${PLONE_BASE}/kupu/i18n/kupupox-zh-tw.po
+${PLONE_BASE}/kupu/i18n/kupupox-zh.po
+${PLONE_BASE}/kupu/i18n/kupupox.pot
+${PLONE_BASE}/kupu/i18n.bat
+${PLONE_BASE}/kupu/include.kupu
+${PLONE_BASE}/kupu/jslint.js
+${PLONE_BASE}/kupu/jslint.opts
+${PLONE_BASE}/kupu/kupu-i18nextract-sa-diff.patch
+${PLONE_BASE}/kupu/kupu.xpr
+${PLONE_BASE}/kupu/kupu_icon.gif
+${PLONE_BASE}/kupu/lint.py
+${PLONE_BASE}/kupu/lint.pyc
+${PLONE_BASE}/kupu/make-jspx.xsl
+${PLONE_BASE}/kupu/make.bat
+${PLONE_BASE}/kupu/make.xsl
+${PLONE_BASE}/kupu/mmbase/Makefile
+${PLONE_BASE}/kupu/mmbase/body-mmbase.kupu
+${PLONE_BASE}/kupu/mmbase/body.kupu
+${PLONE_BASE}/kupu/mmbase/contextmenu.kupu
+${PLONE_BASE}/kupu/mmbase/cross-browser.js
+${PLONE_BASE}/kupu/mmbase/dist-mmbase.kupu
+${PLONE_BASE}/kupu/mmbase/drawers/attachments.items.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/collection.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/drawer.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/drawer.xsl.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/images.items.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/kupudrawerstyles.css
+${PLONE_BASE}/kupu/mmbase/drawers/kupuimages/kupublank.html
+${PLONE_BASE}/kupu/mmbase/drawers/kupuimages/kupulibrary.png
+${PLONE_BASE}/kupu/mmbase/drawers/libraries.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/library.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/search.constraints.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/search.library.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/segments.items.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/test.post.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/texts.items.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/upload.jspx
+${PLONE_BASE}/kupu/mmbase/drawers/urls.items.jspx
+${PLONE_BASE}/kupu/mmbase/drawers.kupu
+${PLONE_BASE}/kupu/mmbase/error.jspx
+${PLONE_BASE}/kupu/mmbase/head-mmbase.kupu
+${PLONE_BASE}/kupu/mmbase/head.kupu
+${PLONE_BASE}/kupu/mmbase/html.kupu
+${PLONE_BASE}/kupu/mmbase/i18n/de.po
+${PLONE_BASE}/kupu/mmbase/i18n/en.po
+${PLONE_BASE}/kupu/mmbase/i18n/eo.po
+${PLONE_BASE}/kupu/mmbase/i18n/fr.po
+${PLONE_BASE}/kupu/mmbase/i18n/it.po
+${PLONE_BASE}/kupu/mmbase/i18n/nl.po
+${PLONE_BASE}/kupu/mmbase/icons/map-open.gif
+${PLONE_BASE}/kupu/mmbase/icons/map.gif
+${PLONE_BASE}/kupu/mmbase/include.kupu
+${PLONE_BASE}/kupu/mmbase/index.kupu
+${PLONE_BASE}/kupu/mmbase/kupuinit.js
+${PLONE_BASE}/kupu/mmbase/kupustyle.css
+${PLONE_BASE}/kupu/mmbase/layout.css
+${PLONE_BASE}/kupu/mmbase/layout.js
+${PLONE_BASE}/kupu/mmbase/make.jspx
+${PLONE_BASE}/kupu/mmbase/mmbase.css
+${PLONE_BASE}/kupu/mmbase/mmbase.js
+${PLONE_BASE}/kupu/mmbase/mmbase.kupu
+${PLONE_BASE}/kupu/mmbase/mmbase.png
+${PLONE_BASE}/kupu/mmbase/mmbasedrawers.js
+${PLONE_BASE}/kupu/mmbase/mmbasetools.js
+${PLONE_BASE}/kupu/mmbase/mymessages.jspx
+${PLONE_BASE}/kupu/mmbase/node.body.jspx
+${PLONE_BASE}/kupu/mmbase/node.jspx
+${PLONE_BASE}/kupu/mmbase/override.js
+${PLONE_BASE}/kupu/mmbase/preview.jspx
+${PLONE_BASE}/kupu/mmbase/receive.jspx
+${PLONE_BASE}/kupu/mmbase/saveonpart.kupu
+${PLONE_BASE}/kupu/mmbase/spellcheck.jspx
+${PLONE_BASE}/kupu/mmbase/start.jspx
+${PLONE_BASE}/kupu/mmbase/test.kupu
+${PLONE_BASE}/kupu/mmbase/toolbar.kupu
+${PLONE_BASE}/kupu/mmbase/toolboxes.kupu
+${PLONE_BASE}/kupu/mmbase/tools/create-subnode.jspx
+${PLONE_BASE}/kupu/mmbase/tools/empty.jspx
+${PLONE_BASE}/kupu/mmbase/tools/related-type.jspx
+${PLONE_BASE}/kupu/mmbase/tools/related.jspx
+${PLONE_BASE}/kupu/mmbase/tools/search-node.jspx
+${PLONE_BASE}/kupu/mmbase/tools/test.jspx
+${PLONE_BASE}/kupu/mmbase/tools/tree.jspx
+${PLONE_BASE}/kupu/mmbase/wire.kupu
+${PLONE_BASE}/kupu/mmbase/xmlconfig.kupu
+${PLONE_BASE}/kupu/multi/body.kupu
+${PLONE_BASE}/kupu/multi/head.kupu
+${PLONE_BASE}/kupu/multi/include.kupu
+${PLONE_BASE}/kupu/multi/save.kupu
+${PLONE_BASE}/kupu/multi/toolboxes.kupu
+${PLONE_BASE}/kupu/plone/ReftextField.py
+${PLONE_BASE}/kupu/plone/ReftextField.pyc
+${PLONE_BASE}/kupu/plone/TODO.txt
+${PLONE_BASE}/kupu/plone/__init__.py
+${PLONE_BASE}/kupu/plone/__init__.pyc
+${PLONE_BASE}/kupu/plone/beforeunload.kupu
+${PLONE_BASE}/kupu/plone/body.kupu
+${PLONE_BASE}/kupu/plone/config.py
+${PLONE_BASE}/kupu/plone/config.pyc
+${PLONE_BASE}/kupu/plone/colorchooser.kupu
+${PLONE_BASE}/kupu/plone/configure.zcml
+${PLONE_BASE}/kupu/plone/drawers.kupu
+${PLONE_BASE}/kupu/plone/exportimport.py
+${PLONE_BASE}/kupu/plone/exportimport.pyc
+${PLONE_BASE}/kupu/plone/head.kupu
+${PLONE_BASE}/kupu/plone/helpers.py
+${PLONE_BASE}/kupu/plone/helpers.pyc
+${PLONE_BASE}/kupu/plone/html2captioned.py
+${PLONE_BASE}/kupu/plone/html2captioned.pyc
+${PLONE_BASE}/kupu/plone/include.kupu
+${PLONE_BASE}/kupu/plone/interfaces.py
+${PLONE_BASE}/kupu/plone/interfaces.pyc
+${PLONE_BASE}/kupu/plone/kupu2html.py
+${PLONE_BASE}/kupu/plone/kupu2html.pyc
+${PLONE_BASE}/kupu/plone/kupu_config.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/contentUsesKupu.py
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/convertContentForKupu.py
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/emptypage.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/emptypageresources.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupuUploadImage.py
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupuUploadImage.py.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupu_captioned_image.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupu_kjax_support.xml.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupu_migration.xml.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupu_wysiwyg_support.html
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupublank.html.html
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupucollection.xml.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupucollection.xml.pt.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupulibraries.xml.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupulocate.xml.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupumyitems.xml.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupuplone.css.dtml
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupuploneeditor.js
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupuploneinit.js
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupuploneui.js
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupurecentitems.xml.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupusaveonpart.js
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupusearch.xml.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/kupuselection.xml.pt
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/anchor.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/anchor.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/bgcolor.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/bgcolor.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/bold.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/bold.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/center.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/center.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/definitionlist.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/definitionlist.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/delete_icon.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/delete_icon.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/flash-placeholder.png
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/flash-placeholder.png.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/fullscreencollapse_icon.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/fullscreencollapse_icon.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/fullscreenexpand_icon.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/fullscreenexpand_icon.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/hr.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/hr.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/hyperlink.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/hyperlink.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/image.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/image.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/indent.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/indent.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/italic.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/italic.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/kupu_sprite.png
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/kupu_sprite.png.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/kupu_sprite.pxi
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/left_just.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/left_just.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/link_icon.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/link_icon.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/list.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/list.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/numbered_list.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/numbered_list.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/outdent.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/outdent.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/redo.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/redo.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/right_just.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/right_just.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/space.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/space.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/strikethrough.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/strikethrough.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/subscript.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/subscript.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/superscript.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/superscript.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/table.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/table.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/textcolor.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/textcolor.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/tools.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/tools.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/underline.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/underline.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/undo.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/undo.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/unformat.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/unformat.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/view-source.gif
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages/view-source.gif.metadata
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/resolveuid.py
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/sample-kupu-customisation-policy.py
+${PLONE_BASE}/kupu/plone/kupu_plone_layer/wysiwyg_support.pt
+${PLONE_BASE}/kupu/plone/kupu_references/referencebrowser.js
+${PLONE_BASE}/kupu/plone/kupu_references/referencebrowser.pt
+${PLONE_BASE}/kupu/plone/libraries.pt
+${PLONE_BASE}/kupu/plone/librarytool.py
+${PLONE_BASE}/kupu/plone/librarytool.pyc
+${PLONE_BASE}/kupu/plone/permissions.py
+${PLONE_BASE}/kupu/plone/permissions.pyc
+${PLONE_BASE}/kupu/plone/plonedrawers.py
+${PLONE_BASE}/kupu/plone/plonedrawers.pyc
+${PLONE_BASE}/kupu/plone/plonelibrarytool.py
+${PLONE_BASE}/kupu/plone/plonelibrarytool.pyc
+${PLONE_BASE}/kupu/plone/profiles/default/actionicons.xml
+${PLONE_BASE}/kupu/plone/profiles/default/controlpanel.xml
+${PLONE_BASE}/kupu/plone/profiles/default/cssregistry.xml
+${PLONE_BASE}/kupu/plone/profiles/default/export_steps.xml
+${PLONE_BASE}/kupu/plone/profiles/default/import_steps.xml
+${PLONE_BASE}/kupu/plone/profiles/default/jsregistry.xml
+${PLONE_BASE}/kupu/plone/profiles/default/kupu.xml
+${PLONE_BASE}/kupu/plone/profiles/default/skins.xml
+${PLONE_BASE}/kupu/plone/profiles/default/toolset.xml
+${PLONE_BASE}/kupu/plone/resource_types.pt
+${PLONE_BASE}/kupu/plone/save.kupu
+${PLONE_BASE}/kupu/plone/scanner.py
+${PLONE_BASE}/kupu/plone/scanner.pyc
+${PLONE_BASE}/kupu/plone/sourceedit.kupu
+${PLONE_BASE}/kupu/plone/spellchecker.kupu
+${PLONE_BASE}/kupu/plone/tests/TestContent.py
+${PLONE_BASE}/kupu/plone/tests/TestContent.pyc
+${PLONE_BASE}/kupu/plone/tests/__init__.py
+${PLONE_BASE}/kupu/plone/tests/__init__.pyc
+${PLONE_BASE}/kupu/plone/tests/framework.py
+${PLONE_BASE}/kupu/plone/tests/framework.pyc
+${PLONE_BASE}/kupu/plone/tests/image.jpg
+${PLONE_BASE}/kupu/plone/tests/input/baduid.in
+${PLONE_BASE}/kupu/plone/tests/input/linked.in
+${PLONE_BASE}/kupu/plone/tests/input/minimal.in
+${PLONE_BASE}/kupu/plone/tests/input/notcaptioned.in
+${PLONE_BASE}/kupu/plone/tests/input/notquoted.in
+${PLONE_BASE}/kupu/plone/tests/input/simple.in
+${PLONE_BASE}/kupu/plone/tests/kuputestcase.py
+${PLONE_BASE}/kupu/plone/tests/kuputestcase.pyc
+${PLONE_BASE}/kupu/plone/tests/output/baduid.out
+${PLONE_BASE}/kupu/plone/tests/output/linked.out
+${PLONE_BASE}/kupu/plone/tests/output/minimal.out
+${PLONE_BASE}/kupu/plone/tests/output/notcaptioned.out
+${PLONE_BASE}/kupu/plone/tests/output/notquoted.out
+${PLONE_BASE}/kupu/plone/tests/output/simple.out
+${PLONE_BASE}/kupu/plone/tests/runalltests.py
+${PLONE_BASE}/kupu/plone/tests/runalltests.pyc
+${PLONE_BASE}/kupu/plone/tests/runme.cmd
+${PLONE_BASE}/kupu/plone/tests/test_browserSupportsKupu.py
+${PLONE_BASE}/kupu/plone/tests/test_browserSupportsKupu.pyc
+${PLONE_BASE}/kupu/plone/tests/test_html2captioned.py
+${PLONE_BASE}/kupu/plone/tests/test_html2captioned.pyc
+${PLONE_BASE}/kupu/plone/tests/test_librarymanager.py
+${PLONE_BASE}/kupu/plone/tests/test_librarymanager.pyc
+${PLONE_BASE}/kupu/plone/tests/test_links.py
+${PLONE_BASE}/kupu/plone/tests/test_links.pyc
+${PLONE_BASE}/kupu/plone/tests/test_plonedrawer.py
+${PLONE_BASE}/kupu/plone/tests/test_plonedrawer.pyc
+${PLONE_BASE}/kupu/plone/tests/test_resourcetypemapper.py
+${PLONE_BASE}/kupu/plone/tests/test_resourcetypemapper.pyc
+${PLONE_BASE}/kupu/plone/tests/test_urls.py
+${PLONE_BASE}/kupu/plone/tests/test_urls.pyc
+${PLONE_BASE}/kupu/plone/toolbar.kupu
+${PLONE_BASE}/kupu/plone/util.py
+${PLONE_BASE}/kupu/plone/util.pyc
+${PLONE_BASE}/kupu/plone/wire.kupu
+${PLONE_BASE}/kupu/plone/wysiwyg_support.kupu
+${PLONE_BASE}/kupu/plone/xml/kupuExport.xml
+${PLONE_BASE}/kupu/plone/xmlconfig.kupu
+${PLONE_BASE}/kupu/plone/z3interfaces.py
+${PLONE_BASE}/kupu/plone/z3interfaces.pyc
+${PLONE_BASE}/kupu/plone/zmi_docs.pt
+${PLONE_BASE}/kupu/plone/zmi_links.pt
+${PLONE_BASE}/kupu/plone/zmi_toolbar.pt
+${PLONE_BASE}/kupu/python/__init__.py
+${PLONE_BASE}/kupu/python/__init__.pyc
+${PLONE_BASE}/kupu/python/nationalizer.py
+${PLONE_BASE}/kupu/python/nationalizer.pyc
+${PLONE_BASE}/kupu/python/spellcheck.py
+${PLONE_BASE}/kupu/python/spellcheck.pyc
+${PLONE_BASE}/kupu/refresh.txt
+${PLONE_BASE}/kupu/roundup/kupuinit.js
+${PLONE_BASE}/kupu/roundup/kupustyles.css
+${PLONE_BASE}/kupu/tests/run_tests.html
+${PLONE_BASE}/kupu/tests/test_beforeunload.js
+${PLONE_BASE}/kupu/tests/test_kupubasetools.js
+${PLONE_BASE}/kupu/tests/test_kupueditor.js
+${PLONE_BASE}/kupu/tests/test_kupuhelpers.js
+${PLONE_BASE}/kupu/tests/test_kupuinit.js
+${PLONE_BASE}/kupu/tests/test_plone.js
+${PLONE_BASE}/kupu/tests/test_xhtml.js
+${PLONE_BASE}/kupu/tools/compress.py
+${PLONE_BASE}/kupu/tools/compress.pyc
+${PLONE_BASE}/kupu/tools/convert_to_utf-8.py
+${PLONE_BASE}/kupu/tools/convert_to_utf-8.pyc
+${PLONE_BASE}/kupu/tools/makepox.py
+${PLONE_BASE}/kupu/tools/makepox.pyc
+${PLONE_BASE}/kupu/version.txt
+${PLONE_BASE}/kupu/widgeteer/Makefile
+${PLONE_BASE}/kupu/widgeteer/body.kupu
+${PLONE_BASE}/kupu/widgeteer/browser.kupu
+${PLONE_BASE}/kupu/widgeteer/dist.kupu
+${PLONE_BASE}/kupu/widgeteer/empty.html
+${PLONE_BASE}/kupu/widgeteer/head.kupu
+${PLONE_BASE}/kupu/widgeteer/include.kupu
+${PLONE_BASE}/kupu/widgeteer/kupuinit.js
+${PLONE_BASE}/kupu/widgeteer/kupustart.js
+${PLONE_BASE}/kupu/widgeteer/kupustyles.css
+${PLONE_BASE}/kupu/widgeteer/make.bat
+${PLONE_BASE}/kupu/widgeteer/wire.kupu
+${PLONE_BASE}/kupu/widgeteer/xmlconfig.kupu
+${PLONE_BASE}/kupu/zope2/__init__.py
+${PLONE_BASE}/kupu/zope2/__init__.pyc
+${PLONE_BASE}/kupu/zope2/addKupuEditor.pt
+${PLONE_BASE}/kupu/zope2/body.kupu
+${PLONE_BASE}/kupu/zope2/contextmenu.kupu
+${PLONE_BASE}/kupu/zope2/drawers.kupu
+${PLONE_BASE}/kupu/zope2/example.pt
+${PLONE_BASE}/kupu/zope2/head.kupu
+${PLONE_BASE}/kupu/zope2/html.kupu
+${PLONE_BASE}/kupu/zope2/include.kupu
+${PLONE_BASE}/kupu/zope2/saveonpart.kupu
+${PLONE_BASE}/kupu/zope2/sourceedit.kupu
+${PLONE_BASE}/kupu/zope2/wire.kupu
+${PLONE_BASE}/kupu/zope2/xmlconfig.kupu
+${PLONE_BASE}/kupu/zope3/__init__.py
+${PLONE_BASE}/kupu/zope3/__init__.pyc
+${PLONE_BASE}/kupu/zope3/browser/__init__.py
+${PLONE_BASE}/kupu/zope3/browser/__init__.pyc
+${PLONE_BASE}/kupu/zope3/browser/configure.zcml
+${PLONE_BASE}/kupu/zope3/configure.zcml
+${PLONE_BASE}/kupu/zope3/field.py
+${PLONE_BASE}/kupu/zope3/field.pyc
+${PLONE_BASE}/kupu/zope3/interfaces.py
+${PLONE_BASE}/kupu/zope3/interfaces.pyc
+${PLONE_BASE}/statusmessages/HISTORY.txt
+${PLONE_BASE}/statusmessages/__init__.py
+${PLONE_BASE}/statusmessages/__init__.pyc
+${PLONE_BASE}/statusmessages/adapter.py
+${PLONE_BASE}/statusmessages/adapter.pyc
+${PLONE_BASE}/statusmessages/configure.zcml
+${PLONE_BASE}/statusmessages/interfaces.py
+${PLONE_BASE}/statusmessages/interfaces.pyc
+${PLONE_BASE}/statusmessages/message.py
+${PLONE_BASE}/statusmessages/message.pyc
+${PLONE_BASE}/statusmessages/tests/__init__.py
+${PLONE_BASE}/statusmessages/tests/__init__.pyc
+${PLONE_BASE}/statusmessages/tests/test_adapter.py
+${PLONE_BASE}/statusmessages/tests/test_adapter.pyc
+${PLONE_BASE}/statusmessages/tests/test_doctests.py
+${PLONE_BASE}/statusmessages/tests/test_doctests.pyc
+${PLONE_BASE}/statusmessages/tests/test_encoding.py
+${PLONE_BASE}/statusmessages/tests/test_encoding.pyc
+${PLONE_BASE}/statusmessages/version.txt
+${PLONE_BASE}/validation/ChangeLog
+${PLONE_BASE}/validation/HISTORY.txt
+${PLONE_BASE}/validation/LICENSE.txt
+${PLONE_BASE}/validation/MANIFEST.in
+${PLONE_BASE}/validation/README
+${PLONE_BASE}/validation/ZService.py
+${PLONE_BASE}/validation/ZService.pyc
+${PLONE_BASE}/validation/__init__.py
+${PLONE_BASE}/validation/__init__.pyc
+${PLONE_BASE}/validation/__pkginfo__.py
+${PLONE_BASE}/validation/__pkginfo__.pyc
+${PLONE_BASE}/validation/chain.py
+${PLONE_BASE}/validation/chain.pyc
+${PLONE_BASE}/validation/config.py
+${PLONE_BASE}/validation/config.pyc
+${PLONE_BASE}/validation/debian/changelog
+${PLONE_BASE}/validation/debian/config
+${PLONE_BASE}/validation/debian/control
+${PLONE_BASE}/validation/debian/copyright
+${PLONE_BASE}/validation/debian/docs
+${PLONE_BASE}/validation/debian/postinst
+${PLONE_BASE}/validation/debian/prerm
+${PLONE_BASE}/validation/debian/rules
+${PLONE_BASE}/validation/debian/templates
+${PLONE_BASE}/validation/exceptions.py
+${PLONE_BASE}/validation/exceptions.pyc
+${PLONE_BASE}/validation/interfaces/IValidationService.py
+${PLONE_BASE}/validation/interfaces/IValidationService.pyc
+${PLONE_BASE}/validation/interfaces/IValidator.py
+${PLONE_BASE}/validation/interfaces/IValidator.pyc
+${PLONE_BASE}/validation/interfaces/__init__.py
+${PLONE_BASE}/validation/interfaces/__init__.pyc
+${PLONE_BASE}/validation/interfaces/interface.py
+${PLONE_BASE}/validation/interfaces/interface.pyc
+${PLONE_BASE}/validation/service.py
+${PLONE_BASE}/validation/service.pyc
+${PLONE_BASE}/validation/tests/__init__.py
+${PLONE_BASE}/validation/tests/__init__.pyc
+${PLONE_BASE}/validation/tests/test_validation.py
+${PLONE_BASE}/validation/tests/test_validation.pyc
+${PLONE_BASE}/validation/validators/BaseValidators.py
+${PLONE_BASE}/validation/validators/BaseValidators.pyc
+${PLONE_BASE}/validation/validators/EmptyValidator.py
+${PLONE_BASE}/validation/validators/EmptyValidator.pyc
+${PLONE_BASE}/validation/validators/ExpressionValidator.py
+${PLONE_BASE}/validation/validators/ExpressionValidator.pyc
+${PLONE_BASE}/validation/validators/IdValidator.py
+${PLONE_BASE}/validation/validators/IdValidator.pyc
+${PLONE_BASE}/validation/validators/RangeValidator.py
+${PLONE_BASE}/validation/validators/RangeValidator.pyc
+${PLONE_BASE}/validation/validators/RegexValidator.py
+${PLONE_BASE}/validation/validators/RegexValidator.pyc
+${PLONE_BASE}/validation/validators/SupplValidators.py
+${PLONE_BASE}/validation/validators/SupplValidators.pyc
+${PLONE_BASE}/validation/validators/__init__.py
+${PLONE_BASE}/validation/validators/__init__.pyc
+${PLONE_BASE}/validation/validators/validator.py
+${PLONE_BASE}/validation/validators/validator.pyc
+${PLONE_BASE}/validation/version.txt
+${ZOPE_BASE}/lib/python/archetypes/__init__.py
+${ZOPE_BASE}/lib/python/archetypes/__init__.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/__init__.py
+${ZOPE_BASE}/lib/python/archetypes/kss/__init__.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/browser/edit_field_wrapper.pt
+${ZOPE_BASE}/lib/python/archetypes/kss/browser/view_field_wrapper.pt
+${ZOPE_BASE}/lib/python/archetypes/kss/commands/__init__.py
+${ZOPE_BASE}/lib/python/archetypes/kss/commands/__init__.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/commands/configure.zcml
+${ZOPE_BASE}/lib/python/archetypes/kss/commands/interfaces.py
+${ZOPE_BASE}/lib/python/archetypes/kss/commands/interfaces.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/commands/validation.py
+${ZOPE_BASE}/lib/python/archetypes/kss/commands/validation.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/config.py
+${ZOPE_BASE}/lib/python/archetypes/kss/config.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/configure.zcml
+${ZOPE_BASE}/lib/python/archetypes/kss/events.py
+${ZOPE_BASE}/lib/python/archetypes/kss/events.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/fields.py
+${ZOPE_BASE}/lib/python/archetypes/kss/fields.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/fields_versioning.py
+${ZOPE_BASE}/lib/python/archetypes/kss/fields_versioning.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/interfaces.py
+${ZOPE_BASE}/lib/python/archetypes/kss/interfaces.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/tests/__init__.py
+${ZOPE_BASE}/lib/python/archetypes/kss/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/tests/selenium_tests/plone_inline_editing.html
+${ZOPE_BASE}/lib/python/archetypes/kss/tests/test_events.py
+${ZOPE_BASE}/lib/python/archetypes/kss/tests/test_events.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/tests/test_fields.py
+${ZOPE_BASE}/lib/python/archetypes/kss/tests/test_fields.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/tests/test_validation.py
+${ZOPE_BASE}/lib/python/archetypes/kss/tests/test_validation.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/utils.py
+${ZOPE_BASE}/lib/python/archetypes/kss/utils.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/validation.py
+${ZOPE_BASE}/lib/python/archetypes/kss/validation.pyc
+${ZOPE_BASE}/lib/python/archetypes/kss/version.txt
+${ZOPE_BASE}/lib/python/five/__init__.py
+${ZOPE_BASE}/lib/python/five/__init__.pyc
+${ZOPE_BASE}/lib/python/five/customerize/__init__.py
+${ZOPE_BASE}/lib/python/five/customerize/__init__.pyc
+${ZOPE_BASE}/lib/python/five/customerize/browser.py
+${ZOPE_BASE}/lib/python/five/customerize/browser.pyc
+${ZOPE_BASE}/lib/python/five/customerize/browser.txt
+${ZOPE_BASE}/lib/python/five/customerize/configure.zcml
+${ZOPE_BASE}/lib/python/five/customerize/customerize.txt
+${ZOPE_BASE}/lib/python/five/customerize/customize.pt
+${ZOPE_BASE}/lib/python/five/customerize/interfaces.py
+${ZOPE_BASE}/lib/python/five/customerize/interfaces.pyc
+${ZOPE_BASE}/lib/python/five/customerize/registrations.pt
+${ZOPE_BASE}/lib/python/five/customerize/tests.py
+${ZOPE_BASE}/lib/python/five/customerize/tests.pyc
+${ZOPE_BASE}/lib/python/five/customerize/testviewtemplate.pt
+${ZOPE_BASE}/lib/python/five/customerize/utils.py
+${ZOPE_BASE}/lib/python/five/customerize/utils.pyc
+${ZOPE_BASE}/lib/python/five/customerize/version.txt
+${ZOPE_BASE}/lib/python/five/customerize/zpt.py
+${ZOPE_BASE}/lib/python/five/customerize/zpt.pyc
+${ZOPE_BASE}/lib/python/five/customerize/zpt.txt
+${ZOPE_BASE}/lib/python/five/customerize/zptviews.pt
+${ZOPE_BASE}/lib/python/five/localsitemanager/__init__.py
+${ZOPE_BASE}/lib/python/five/localsitemanager/__init__.pyc
+${ZOPE_BASE}/lib/python/five/localsitemanager/browser.py
+${ZOPE_BASE}/lib/python/five/localsitemanager/browser.pyc
+${ZOPE_BASE}/lib/python/five/localsitemanager/browser.txt
+${ZOPE_BASE}/lib/python/five/localsitemanager/components.pt
+${ZOPE_BASE}/lib/python/five/localsitemanager/configure.zcml
+${ZOPE_BASE}/lib/python/five/localsitemanager/localsitemanager.txt
+${ZOPE_BASE}/lib/python/five/localsitemanager/overrides.zcml
+${ZOPE_BASE}/lib/python/five/localsitemanager/registry.py
+${ZOPE_BASE}/lib/python/five/localsitemanager/registry.pyc
+${ZOPE_BASE}/lib/python/five/localsitemanager/tests.py
+${ZOPE_BASE}/lib/python/five/localsitemanager/tests.pyc
+${ZOPE_BASE}/lib/python/five/localsitemanager/utils.py
+${ZOPE_BASE}/lib/python/five/localsitemanager/utils.pyc
+${ZOPE_BASE}/lib/python/kss/__init__.py
+${ZOPE_BASE}/lib/python/kss/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/BeautifulSoup.py
+${ZOPE_BASE}/lib/python/kss/core/BeautifulSoup.pyc
+${ZOPE_BASE}/lib/python/kss/core/EXTERNALS.TXT
+${ZOPE_BASE}/lib/python/kss/core/INSTALL.txt
+${ZOPE_BASE}/lib/python/kss/core/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/actionwrapper.py
+${ZOPE_BASE}/lib/python/kss/core/actionwrapper.pyc
+${ZOPE_BASE}/lib/python/kss/core/browser/errorresponse.pt
+${ZOPE_BASE}/lib/python/kss/core/browser/kukitresponse.pt
+${ZOPE_BASE}/lib/python/kss/core/browserview.py
+${ZOPE_BASE}/lib/python/kss/core/browserview.pyc
+${ZOPE_BASE}/lib/python/kss/core/commands.py
+${ZOPE_BASE}/lib/python/kss/core/commands.pyc
+${ZOPE_BASE}/lib/python/kss/core/concatresource.zcml
+${ZOPE_BASE}/lib/python/kss/core/config.py
+${ZOPE_BASE}/lib/python/kss/core/config.pyc
+${ZOPE_BASE}/lib/python/kss/core/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/deprecated.py
+${ZOPE_BASE}/lib/python/kss/core/deprecated.pyc
+${ZOPE_BASE}/lib/python/kss/core/docs/CREDITS.txt
+${ZOPE_BASE}/lib/python/kss/core/docs/HISTORY.txt
+${ZOPE_BASE}/lib/python/kss/core/docs/INSTALL.txt
+${ZOPE_BASE}/lib/python/kss/core/docs/LICENSE.GPL
+${ZOPE_BASE}/lib/python/kss/core/docs/LICENSE.txt
+${ZOPE_BASE}/lib/python/kss/core/docs/TODO.txt
+${ZOPE_BASE}/lib/python/kss/core/docs/tutorial_part2.rst
+${ZOPE_BASE}/lib/python/kss/core/dtds/xhtml-lat1.ent
+${ZOPE_BASE}/lib/python/kss/core/dtds/xhtml-special.ent
+${ZOPE_BASE}/lib/python/kss/core/dtds/xhtml-symbol.ent
+${ZOPE_BASE}/lib/python/kss/core/dtds/xhtml1-transitional.dtd
+${ZOPE_BASE}/lib/python/kss/core/interfaces.py
+${ZOPE_BASE}/lib/python/kss/core/interfaces.pyc
+${ZOPE_BASE}/lib/python/kss/core/kss.core-configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/kss.core-meta.zcml
+${ZOPE_BASE}/lib/python/kss/core/kssview.py
+${ZOPE_BASE}/lib/python/kss/core/kssview.pyc
+${ZOPE_BASE}/lib/python/kss/core/kssview.txt
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/LICENSE.txt
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/MochiKit.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/base2-dom-fp.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/cssQuery.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/firebuglite/errorIcon.png
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/firebuglite/firebug.css
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/firebuglite/firebug.html
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/firebuglite/firebug.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/firebuglite/firebugx.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/firebuglite/infoIcon.png
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/firebuglite/warningIcon.png
+${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/sarissa.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/doc/CREDITS.txt
+${ZOPE_BASE}/lib/python/kss/core/kukit/doc/HISTORY.txt
+${ZOPE_BASE}/lib/python/kss/core/kukit/doc/LICENSE.txt
+${ZOPE_BASE}/lib/python/kss/core/kukit/doc/README.txt
+${ZOPE_BASE}/lib/python/kss/core/kukit/doc/TODO.txt
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/actionreg.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/commandprocessor.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/commandreg.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/dom.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/errors.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/eventreg.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/forms.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/kssparser.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/kukit.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/oper.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/plugin.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/providerreg.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/requestmanager.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/resourcedata.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/selectorreg.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/serveraction.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/tokenizer.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/kukit/utils.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/ecmaunit-license.txt
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/ecmaunit.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/runner.html
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/runtests.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/runtests.sh
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/testStyleParse.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/test_kssparser.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/test_requestmanager.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/test_tokenizer.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/test_utils.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests/unittestUtilities.js
+${ZOPE_BASE}/lib/python/kss/core/kukit/tests.bat
+${ZOPE_BASE}/lib/python/kss/core/kukit/utils/kss.vim
+${ZOPE_BASE}/lib/python/kss/core/kukit/version.txt
+${ZOPE_BASE}/lib/python/kss/core/meta.zcml
+${ZOPE_BASE}/lib/python/kss/core/parsers.py
+${ZOPE_BASE}/lib/python/kss/core/parsers.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/EXTERNALS.TXT
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/cachingadapter.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/cachingadapter.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/css.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/css.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/javascript.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/javascript.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/thirdparty/LICENSE
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/thirdparty/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/thirdparty/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/thirdparty/packer.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/thirdparty/packer.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/concatfileresource.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/concatfileresource.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/directives.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/directives.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/fields.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/fields.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/fileresource.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/fileresource.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/interfaces.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/interfaces.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/kss.concatresource-configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/kss.concatresource-meta.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/meta.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/meta.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/meta.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/resource.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/resource.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/test/README
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/test/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/test/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/test/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/test/test1.js
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/test/test2.js
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/version.txt
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/action.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/action.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/develui.css
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/develui.js
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/develui.kss
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/develui.pt
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/develview.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/develview.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/interfaces.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser/interfaces.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/command.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/command.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/commandset.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/commandset.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/configure.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/configure.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/deprecated/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/deprecated/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/deprecated/configure.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/deprecated/configure.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/deprecated/directives.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/deprecated/directives.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/deprecated/meta.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/directives.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/directives.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/event_type.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/event_type.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/interfaces.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/interfaces.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/browser/jsonkukit.js
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/config.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/config.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/interfaces.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/interfaces.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/utils.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/utils.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/meta.zcml
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/plugin.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/plugin.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/pprovider.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/pprovider.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/registry.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/registry.pyc
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/selector_type.py
+${ZOPE_BASE}/lib/python/kss/core/pluginregistry/selector_type.pyc
+${ZOPE_BASE}/lib/python/kss/core/plugins/README
+${ZOPE_BASE}/lib/python/kss/core/plugins/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/plugins/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/plugins/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/plugins/core/README
+${ZOPE_BASE}/lib/python/kss/core/plugins/core/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/plugins/core/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/plugins/core/commands.py
+${ZOPE_BASE}/lib/python/kss/core/plugins/core/commands.pyc
+${ZOPE_BASE}/lib/python/kss/core/plugins/core/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/plugins/core/interfaces.py
+${ZOPE_BASE}/lib/python/kss/core/plugins/core/interfaces.pyc
+${ZOPE_BASE}/lib/python/kss/core/plugins/draganddrop/3rd_party/dragdrop.js
+${ZOPE_BASE}/lib/python/kss/core/plugins/draganddrop/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/plugins/draganddrop/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/plugins/draganddrop/browser/kss_dragdrop.js
+${ZOPE_BASE}/lib/python/kss/core/plugins/draganddrop/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/3rd_party/effects.js
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/3rd_party/prototype.js
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/browser/plugin.js
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/commands.py
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/commands.pyc
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/configure.zcml
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/interfaces.py
+${ZOPE_BASE}/lib/python/kss/core/plugins/effects/interfaces.pyc
+${ZOPE_BASE}/lib/python/kss/core/selectors.py
+${ZOPE_BASE}/lib/python/kss/core/selectors.pyc
+${ZOPE_BASE}/lib/python/kss/core/siteview.txt
+${ZOPE_BASE}/lib/python/kss/core/svnignore
+${ZOPE_BASE}/lib/python/kss/core/tests/__init__.py
+${ZOPE_BASE}/lib/python/kss/core/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/base.py
+${ZOPE_BASE}/lib/python/kss/core/tests/base.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/commandinspector.py
+${ZOPE_BASE}/lib/python/kss/core/tests/commandinspector.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/configure-online.zcml
+${ZOPE_BASE}/lib/python/kss/core/tests/configure-unittest.zcml
+${ZOPE_BASE}/lib/python/kss/core/tests/ecmaview.py
+${ZOPE_BASE}/lib/python/kss/core/tests/ecmaview.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/help_ttwapi.py
+${ZOPE_BASE}/lib/python/kss/core/tests/help_ttwapi.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/kukitresponse_test.pt
+${ZOPE_BASE}/lib/python/kss/core/tests/test_browserview.py
+${ZOPE_BASE}/lib/python/kss/core/tests/test_browserview.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/test_kssview.py
+${ZOPE_BASE}/lib/python/kss/core/tests/test_kssview.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/test_kssview_core.py
+${ZOPE_BASE}/lib/python/kss/core/tests/test_kssview_core.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/test_kssview_functional.py
+${ZOPE_BASE}/lib/python/kss/core/tests/test_kssview_functional.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/test_siteview.py
+${ZOPE_BASE}/lib/python/kss/core/tests/test_siteview.pyc
+${ZOPE_BASE}/lib/python/kss/core/tests/test_ttwapi.py
+${ZOPE_BASE}/lib/python/kss/core/tests/test_ttwapi.pyc
+${ZOPE_BASE}/lib/python/kss/core/ttwapi.py
+${ZOPE_BASE}/lib/python/kss/core/ttwapi.pyc
+${ZOPE_BASE}/lib/python/kss/core/unicode_quirks.py
+${ZOPE_BASE}/lib/python/kss/core/unicode_quirks.pyc
+${ZOPE_BASE}/lib/python/kss/core/version.txt
+${ZOPE_BASE}/lib/python/plone/__init__.py
+${ZOPE_BASE}/lib/python/plone/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/content/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/basecontent.txt
+${ZOPE_BASE}/lib/python/plone/app/content/batching.py
+${ZOPE_BASE}/lib/python/plone/app/content/batching.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/batching.txt
+${ZOPE_BASE}/lib/python/plone/app/content/browser/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/browser/adding.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/adding.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/browser/batching.pt
+${ZOPE_BASE}/lib/python/plone/app/content/browser/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/content/browser/foldercontents.pt
+${ZOPE_BASE}/lib/python/plone/app/content/browser/foldercontents.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/foldercontents.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/browser/foldercontents_table.pt
+${ZOPE_BASE}/lib/python/plone/app/content/browser/folderfactories.pt
+${ZOPE_BASE}/lib/python/plone/app/content/browser/folderfactories.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/folderfactories.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/browser/full_review_list.pt
+${ZOPE_BASE}/lib/python/plone/app/content/browser/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/browser/reviewlist.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/reviewlist.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/browser/table.pt
+${ZOPE_BASE}/lib/python/plone/app/content/browser/table.txt
+${ZOPE_BASE}/lib/python/plone/app/content/browser/tableview.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/tableview.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/browser/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/browser/tests/foldercontents.txt
+${ZOPE_BASE}/lib/python/plone/app/content/browser/tests/test_doctests.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/tests/test_doctests.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/browser/tests/test_table.py
+${ZOPE_BASE}/lib/python/plone/app/content/browser/tests/test_table.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/catalog.py
+${ZOPE_BASE}/lib/python/plone/app/content/catalog.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/content/container.py
+${ZOPE_BASE}/lib/python/plone/app/content/container.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/content/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/item.py
+${ZOPE_BASE}/lib/python/plone/app/content/item.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/namechooser.py
+${ZOPE_BASE}/lib/python/plone/app/content/namechooser.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/namechooser.txt
+${ZOPE_BASE}/lib/python/plone/app/content/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/content/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/content/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/tests/test_basecontent.py
+${ZOPE_BASE}/lib/python/plone/app/content/tests/test_basecontent.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/tests/test_batching.py
+${ZOPE_BASE}/lib/python/plone/app/content/tests/test_batching.pyc
+${ZOPE_BASE}/lib/python/plone/app/content/tests/test_namechooser.py
+${ZOPE_BASE}/lib/python/plone/app/content/tests/test_namechooser.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/contentmenu.pt
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/displayviewsmenu.py
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/displayviewsmenu.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/menu.py
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/menu.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/tests.py
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/tests.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/tests.zcml
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/view.py
+${ZOPE_BASE}/lib/python/plone/app/contentmenu/view.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/TODO.txt
+${ZOPE_BASE}/lib/python/plone/app/contentrules/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/copy.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/copy.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/delete.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/delete.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/logger.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/logger.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/mail.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/mail.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/move.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/move.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/notify.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/notify.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/workflow.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/actions/workflow.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/adding.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/adding.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/assignments.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/assignments.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/contentrules.kss
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/controlpanel.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/controlpanel.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/elements.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/elements.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/formhelper.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/formhelper.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/info.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/info.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/kss.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/kss.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/rule.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/rule.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/templates/contentrules-pageform.pt
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/templates/controlpanel.pt
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/templates/manage-assignments.pt
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/templates/manage-elements.pt
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/traversal.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/traversal.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/fileextension.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/fileextension.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/group.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/group.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/portaltype.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/portaltype.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/role.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/role.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/wfstate.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/wfstate.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/wftransition.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions/wftransition.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/contentrules/handlers.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/handlers.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/namechooser.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/namechooser.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/rule.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/rule.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/dummy.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/dummy.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/multipublish.txt
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/simplepublish.txt
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_copy.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_copy.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_delete.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_delete.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_logger.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_logger.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_mail.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_mail.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_move.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_move.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_notify.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_notify.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_workflow.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_action_workflow.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_browser.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_browser.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_group.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_group.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_portal_type.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_portal_type.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_role.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_role.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_wfstate.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_wfstate.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_wftransition.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_condition_wftransition.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_events.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_events.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_kss.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_kss.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_rule_assignment_mapping.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_rule_assignment_mapping.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_rule_management_views.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_rule_management_views.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_setup.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_setup.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_traversal.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/test_traversal.pyc
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/utils.py
+${ZOPE_BASE}/lib/python/plone/app/contentrules/tests/utils.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/calendar.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/calendar.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/control-panel.pt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/filter.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/filter.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/form.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/form.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/language.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/language.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/mail.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/mail.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/maintenance.pt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/maintenance.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/maintenance.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/markup.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/markup.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/ram.pt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/ram.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/ram.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/search.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/search.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/security.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/security.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/site.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/site.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/skins.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/skins.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/calendar.txt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/cptc.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/cptc.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/filter.txt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/mail.txt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/maintenance.txt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/markup.txt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/search.txt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/site.txt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/skins.txt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/test_doctests.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/test_doctests.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests/types.txt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/types.pt
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/types.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/types.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/usergroups.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/usergroups.pyc
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/widgets.py
+${ZOPE_BASE}/lib/python/plone/app/controlpanel/widgets.pyc
+${ZOPE_BASE}/lib/python/plone/app/customerize/README.txt
+${ZOPE_BASE}/lib/python/plone/app/customerize/TODO.txt
+${ZOPE_BASE}/lib/python/plone/app/customerize/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/customerize/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/customerize/browser.py
+${ZOPE_BASE}/lib/python/plone/app/customerize/browser.pyc
+${ZOPE_BASE}/lib/python/plone/app/customerize/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/customerize/customize.pt
+${ZOPE_BASE}/lib/python/plone/app/customerize/dependencies.zcml
+${ZOPE_BASE}/lib/python/plone/app/customerize/docs/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/customerize/docs/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/customerize/docs/failing-testCustomizeView.txt
+${ZOPE_BASE}/lib/python/plone/app/customerize/registration.py
+${ZOPE_BASE}/lib/python/plone/app/customerize/registration.pyc
+${ZOPE_BASE}/lib/python/plone/app/customerize/registrations.pt
+${ZOPE_BASE}/lib/python/plone/app/customerize/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/customerize/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/customerize/tests/layer.py
+${ZOPE_BASE}/lib/python/plone/app/customerize/tests/layer.pyc
+${ZOPE_BASE}/lib/python/plone/app/customerize/tests/testDocTests.py
+${ZOPE_BASE}/lib/python/plone/app/customerize/tests/testDocTests.pyc
+${ZOPE_BASE}/lib/python/plone/app/customerize/tool.gif
+${ZOPE_BASE}/lib/python/plone/app/customerize/tool.py
+${ZOPE_BASE}/lib/python/plone/app/customerize/tool.pyc
+${ZOPE_BASE}/lib/python/plone/app/customerize/version.txt
+${ZOPE_BASE}/lib/python/plone/app/form/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/form/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/_named.py
+${ZOPE_BASE}/lib/python/plone/app/form/_named.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/_patches.py
+${ZOPE_BASE}/lib/python/plone/app/form/_patches.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/addingpageform.pt
+${ZOPE_BASE}/lib/python/plone/app/form/base.py
+${ZOPE_BASE}/lib/python/plone/app/form/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/form/events.py
+${ZOPE_BASE}/lib/python/plone/app/form/events.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/exception.py
+${ZOPE_BASE}/lib/python/plone/app/form/exception.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/formlib.txt
+${ZOPE_BASE}/lib/python/plone/app/form/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/form/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/overrides.zcml
+${ZOPE_BASE}/lib/python/plone/app/form/pageform.pt
+${ZOPE_BASE}/lib/python/plone/app/form/subpageform.pt
+${ZOPE_BASE}/lib/python/plone/app/form/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/form/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/form/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/tests/test_doctests.py
+${ZOPE_BASE}/lib/python/plone/app/form/tests/test_doctests.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/tests/test_widgets.py
+${ZOPE_BASE}/lib/python/plone/app/form/tests/test_widgets.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/validators.py
+${ZOPE_BASE}/lib/python/plone/app/form/validators.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/checkboxwidget.py
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/checkboxwidget.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/datecomponents.py
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/datecomponents.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/overrides.zcml
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/selectionwidget.py
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/selectionwidget.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/ubermultiselectionwidget.pt
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/uberselectionwidget.pt
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/uberselectionwidget.py
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/uberselectionwidget.pyc
+${ZOPE_BASE}/lib/python/plone/app/form/widgets/uberselectionwidget.txt
+${ZOPE_BASE}/lib/python/plone/app/i18n/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/i18n/dependencies.zcml
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/languageselector.pt
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/selector.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser/selector.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/countries.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/countries.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/languages.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/languages.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/tests/countries.txt
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/tests/languages.txt
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/tests/test_doctests.py
+${ZOPE_BASE}/lib/python/plone/app/i18n/locales/tests/test_doctests.pyc
+${ZOPE_BASE}/lib/python/plone/app/i18n/tool.gif
+${ZOPE_BASE}/lib/python/plone/app/iterate/LICENSE.GPL
+${ZOPE_BASE}/lib/python/plone/app/iterate/README.txt
+${ZOPE_BASE}/lib/python/plone/app/iterate/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/archiver.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/archiver.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/cancel.png
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/cancel.pt
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/cancel.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/cancel.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/checkin.png
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/checkin.pt
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/checkin.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/checkin.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/checkout.png
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/checkout.pt
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/checkout.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/checkout.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/control.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/control.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/diff.pt
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/diff.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/diff.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/info.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/info.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/info_baseline.pt
+${ZOPE_BASE}/lib/python/plone/app/iterate/browser/info_checkout.pt
+${ZOPE_BASE}/lib/python/plone/app/iterate/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/iterate/containers.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/containers.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/copier.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/copier.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/docs/developer.txt
+${ZOPE_BASE}/lib/python/plone/app/iterate/docs/install.txt
+${ZOPE_BASE}/lib/python/plone/app/iterate/docs/references.txt
+${ZOPE_BASE}/lib/python/plone/app/iterate/docs/todo.txt
+${ZOPE_BASE}/lib/python/plone/app/iterate/docs/workflow.txt
+${ZOPE_BASE}/lib/python/plone/app/iterate/event.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/event.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/lock.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/lock.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/permissions.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/permissions.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/policy.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/policy.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/profiles/default/actionicons.xml
+${ZOPE_BASE}/lib/python/plone/app/iterate/profiles/default/actions.xml
+${ZOPE_BASE}/lib/python/plone/app/iterate/profiles/default/propertiestool.xml
+${ZOPE_BASE}/lib/python/plone/app/iterate/relation.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/relation.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/locking.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/locking.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/marker.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/marker.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/metadata.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/metadata.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/versioning.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/versioning.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/workflow.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers/workflow.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/tests/browser.txt
+${ZOPE_BASE}/lib/python/plone/app/iterate/tests/test_iterate.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/tests/test_iterate.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/tests/utils.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/tests/utils.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/util.py
+${ZOPE_BASE}/lib/python/plone/app/iterate/util.pyc
+${ZOPE_BASE}/lib/python/plone/app/iterate/version.txt
+${ZOPE_BASE}/lib/python/plone/app/kss/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/kss/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/browser/macro_wrapper.pt
+${ZOPE_BASE}/lib/python/plone/app/kss/browser/main_template_standalone.pt
+${ZOPE_BASE}/lib/python/plone/app/kss/calendar.py
+${ZOPE_BASE}/lib/python/plone/app/kss/calendar.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/issueportalmessage.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/issueportalmessage.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/legacycommands.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/legacycommands.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/plonecommands.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/plonecommands.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/portlets.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/portlets.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/refreshContentMenu.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/refreshContentMenu.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/refreshViewlet.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/refreshViewlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/refreshportlet.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/refreshportlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/refreshprovider.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/refreshprovider.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/replacecontentmenu.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/replacecontentmenu.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/zopecommands.py
+${ZOPE_BASE}/lib/python/plone/app/kss/commands/zopecommands.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/config.py
+${ZOPE_BASE}/lib/python/plone/app/kss/config.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/kss/content_replacer.py
+${ZOPE_BASE}/lib/python/plone/app/kss/content_replacer.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/doc/process.txt.OBSOLETE
+${ZOPE_BASE}/lib/python/plone/app/kss/exportimport/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/kss/exportimport/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/exportimport/setup.py
+${ZOPE_BASE}/lib/python/plone/app/kss/exportimport/setup.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/globalui.py
+${ZOPE_BASE}/lib/python/plone/app/kss/globalui.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/headerviewlet.py
+${ZOPE_BASE}/lib/python/plone/app/kss/headerviewlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/kss/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/kupu.py
+${ZOPE_BASE}/lib/python/plone/app/kss/kupu.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/lock.py
+${ZOPE_BASE}/lib/python/plone/app/kss/lock.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/macro_replacer.py
+${ZOPE_BASE}/lib/python/plone/app/kss/macro_replacer.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/plonekssview.py
+${ZOPE_BASE}/lib/python/plone/app/kss/plonekssview.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/legacy/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/legacy/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/legacy/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/legacy/reload/bindextlinks.js
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/legacy/reload/bindmenus.js
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/legacy/reload/createTableOfContents.js
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/legacy/reload/initializeCollapsible.js
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/plone/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/plone/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/plone/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/kss/plugins/plone/plugin.js
+${ZOPE_BASE}/lib/python/plone/app/kss/portlet_refresher.py
+${ZOPE_BASE}/lib/python/plone/app/kss/portlet_refresher.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/portlets.py
+${ZOPE_BASE}/lib/python/plone/app/kss/portlets.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/refresh_content_menu.py
+${ZOPE_BASE}/lib/python/plone/app/kss/refresh_content_menu.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/configure-part_reloading.zcml
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/kss_and_plone_layer.py
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/kss_and_plone_layer.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/selenium.zcml
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/selenium_tests/changeWorkflowState.html
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/selenium_tests/contentmenu_change_tab.html
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/selenium_tests/contentmenu_change_workflow.html
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/selenium_tests/contentmenu_presence.html
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/selenium_tests/selenium_test_breadcrumbs.html
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/selenium_tests/selenium_test_folder_contents.html
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/selenium_tests/selenium_test_portlets.html
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/site_creation_view.py
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/site_creation_view.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/test_kss_attributes.py
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/test_kss_attributes.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/test_menus.py
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/test_menus.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/test_part_reloading.py
+${ZOPE_BASE}/lib/python/plone/app/kss/tests/test_part_reloading.pyc
+${ZOPE_BASE}/lib/python/plone/app/kss/version.txt
+${ZOPE_BASE}/lib/python/plone/app/layout/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/alias/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/alias/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/alias/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/alias/login.py
+${ZOPE_BASE}/lib/python/plone/app/layout/alias/login.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/alias/sharing.py
+${ZOPE_BASE}/lib/python/plone/app/layout/alias/sharing.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/README.txt
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/tests/analytics.txt
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/tests/test_doctests.py
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/tests/test_doctests.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/view.py
+${ZOPE_BASE}/lib/python/plone/app/layout/analytics/view.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/dashboard/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/dashboard/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/dashboard/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/dashboard/dashboard.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/dashboard/dashboard.py
+${ZOPE_BASE}/lib/python/plone/app/layout/dashboard/dashboard.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/context.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/context.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/interface.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/interface.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/portal.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/portal.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/test_context.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/test_context.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/test_interface.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/test_interface.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/test_portal.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/test_portal.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/test_tools.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests/test_tools.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tools.py
+${ZOPE_BASE}/lib/python/plone/app/layout/globals/tools.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/icons/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/icons/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/icons/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/icons/icons.py
+${ZOPE_BASE}/lib/python/plone/app/layout/icons/icons.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/icons/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/layout/icons/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/links/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/links/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/links/author.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/links/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/links/favicon.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/links/navigation.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/links/search.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/links/viewlets.py
+${ZOPE_BASE}/lib/python/plone/app/layout/links/viewlets.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/defaultpage.py
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/defaultpage.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/navtree.py
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/navtree.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/root.py
+${ZOPE_BASE}/lib/python/plone/app/layout/navigation/root.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious/links.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious/nextprevious.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious/view.py
+${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious/view.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/presentation/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/presentation/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/presentation/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/presentation/presentation.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/presentation/presentation.py
+${ZOPE_BASE}/lib/python/plone/app/layout/presentation/presentation.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/README.txt
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/sitemap.py
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/sitemap.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/sitemap.xml
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/tests/sitemap.txt
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/tests/test_doctests.py
+${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/tests/test_doctests.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/colophon.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/comments.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/comments.py
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/comments.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/common.py
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/common.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/content.py
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/content.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/contentactions.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/contentactions_blank.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/contentviews.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/document_actions.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/document_byline.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/footer.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/keywords.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/logo.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/path_bar.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/personal_bar.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/portal_header.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/review_history.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/searchbox.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/sections.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/site_actions.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/skip_links.pt
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/tests/test_content.py
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/tests/test_content.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/tests/test_history.py
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/tests/test_history.pyc
+${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/toc.pt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/NOTES.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/README.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/TODO.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/confirmation.pt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/confirmation.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/confirmation.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/remove.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/remove.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/update.pt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/update.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser/update.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testCancelDuringMultiRemoval.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testCircularReferences.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testCircularReferencesWithHelper.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testConfirmationPageIntegration.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testInterReferences.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testMultipleFilesRemoval.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testMultipleFilesRemovalWithHelper.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testMultipleReferences.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testOnOffSwitch.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testProgrammaticallyRemoval.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testReferalToPrivateFiles.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testReferenceCreation.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testReferenceInRestructuredText.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testReferenceUpdate.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testRemovalInReferenceChain.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testRemovalInSubfolder.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testRemovalWithCookieAuth.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testRemovalOfReferenceChain.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testRemovalTriggersConfirmation.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testRemovalViaZMI.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testRemovalsWithYesToAll.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs/testRenamingReferencedItem.txt
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/exceptions.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/exceptions.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/handlers.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/handlers.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/httpresponse.patch
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/info.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/info.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/monkey.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/monkey.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/parser.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/parser.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/tests/layer.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/tests/layer.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/tests/testDocTests.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/tests/testDocTests.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/utils.py
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/utils.pyc
+${ZOPE_BASE}/lib/python/plone/app/linkintegrity/version.txt
+${ZOPE_BASE}/lib/python/plone/app/openid/README.txt
+${ZOPE_BASE}/lib/python/plone/app/openid/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/openid/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/openid/config.py
+${ZOPE_BASE}/lib/python/plone/app/openid/config.pyc
+${ZOPE_BASE}/lib/python/plone/app/openid/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/openid/portlets/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/openid/portlets/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/openid/portlets/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/openid/portlets/login.pt
+${ZOPE_BASE}/lib/python/plone/app/openid/portlets/login.py
+${ZOPE_BASE}/lib/python/plone/app/openid/portlets/login.pyc
+${ZOPE_BASE}/lib/python/plone/app/openid/profiles/default/import_steps.xml
+${ZOPE_BASE}/lib/python/plone/app/openid/profiles/default/openid-pas.txt
+${ZOPE_BASE}/lib/python/plone/app/openid/profiles/default/portlets.xml
+${ZOPE_BASE}/lib/python/plone/app/openid/profiles/default/skins.xml
+${ZOPE_BASE}/lib/python/plone/app/openid/setuphandlers.py
+${ZOPE_BASE}/lib/python/plone/app/openid/setuphandlers.pyc
+${ZOPE_BASE}/lib/python/plone/app/openid/skins/ploneopenid/logged_out.cpt
+${ZOPE_BASE}/lib/python/plone/app/openid/skins/ploneopenid/logged_out.cpt.metadata
+${ZOPE_BASE}/lib/python/plone/app/openid/skins/ploneopenid/login_form.cpt
+${ZOPE_BASE}/lib/python/plone/app/openid/skins/ploneopenid/login_form.cpt.metadata
+${ZOPE_BASE}/lib/python/plone/app/openid/skins/ploneopenid/openid-icon.gif
+${ZOPE_BASE}/lib/python/plone/app/openid/skins/ploneopenid/openid_login_validate.vpy
+${ZOPE_BASE}/lib/python/plone/app/openid/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/openid/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/openid/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/openid/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/openid/tests/test_view.py
+${ZOPE_BASE}/lib/python/plone/app/openid/tests/test_view.pyc
+${ZOPE_BASE}/lib/python/plone/app/openid/version.txt
+${ZOPE_BASE}/lib/python/plone/app/portlets/TODO.txt
+${ZOPE_BASE}/lib/python/plone/app/portlets/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/assignable.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/assignable.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/adding.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/adding.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/editmanager.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/editmanager.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/formhelper.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/formhelper.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/kss.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/kss.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/manage.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/manage.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/portlets.kss
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/column.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/dashboard-column.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/edit-manager-contextual.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/edit-manager-macros.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/edit-manager.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/error_message.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/manage-content-type.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/manage-contextual.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/manage-dashboard.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/manage-group.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates/portlets-pageform.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/traversal.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/browser/traversal.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/cache.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/cache.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/checker.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/checker.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/portlets/dashboard.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/dashboard.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/exportimport/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/exportimport/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/exportimport/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/portlets/exportimport/portlets.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/exportimport/portlets.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/manager.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/manager.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/meta.zcml
+${ZOPE_BASE}/lib/python/plone/app/portlets/metaconfigure.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/metaconfigure.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/metadirectives.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/metadirectives.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/overrides.zcml
+${ZOPE_BASE}/lib/python/plone/app/portlets/permissions.zcml
+${ZOPE_BASE}/lib/python/plone/app/portlets/portletcontext.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portletcontext.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/base.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/calendar.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/calendar.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/calendar.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/classic.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/classic.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/classic.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/deferred_portlet.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/events.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/events.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/events.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/feedparser.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/feedparser.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/language.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/language.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/language.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/login.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/login.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/login.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/navigation.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/navigation.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/navigation.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/navigation_recurse.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/news.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/news.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/news.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/recent.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/recent.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/recent.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/review.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/review.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/review.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/rss.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/rss.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/rss.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/search.pt
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/search.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/portlets/search.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/storage.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/storage.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_calendar_portlet.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_calendar_portlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_classic_portlet.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_classic_portlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_context.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_context.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_dashboard.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_dashboard.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_events_portlet.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_events_portlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_login_portlet.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_login_portlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_manage_views.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_manage_views.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_mapping.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_mapping.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_navigation_portlet.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_navigation_portlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_news_portlet.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_news_portlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_recent_portlet.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_recent_portlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_review_portlet.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_review_portlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_rss_portlet.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_rss_portlet.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_setup.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_setup.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_traversal.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_traversal.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_utils.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/test_utils.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/utils.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/tests/utils.pyc
+${ZOPE_BASE}/lib/python/plone/app/portlets/utils.py
+${ZOPE_BASE}/lib/python/plone/app/portlets/utils.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/README.txt
+${ZOPE_BASE}/lib/python/plone/app/redirector/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/browser.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/browser.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/redirector/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/policy.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/policy.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/storage.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/storage.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/subscribers.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/subscribers.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/test_events.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/test_events.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/test_setup.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/test_setup.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/test_storage.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/test_storage.pyc
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/test_view.py
+${ZOPE_BASE}/lib/python/plone/app/redirector/tests/test_view.pyc
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/README.txt
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/exportimport/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/exportimport/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/exportimport/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/exportimport/storage.py
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/exportimport/storage.pyc
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/manage-viewletmanager.pt
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/manage-viewlets.pt
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/manager.py
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/manager.pyc
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/storage.py
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/storage.pyc
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/tests/manager.txt
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/tests/storage.txt
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/tests/test_exportimport.py
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/tests/test_exportimport.pyc
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/tests/tests.py
+${ZOPE_BASE}/lib/python/plone/app/viewletmanager/tests/tests.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/catalog.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/catalog.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/groups.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/groups.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/language.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/language.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/searchabletextsource.pt
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/security.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/security.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/skins.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/skins.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/terms.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/terms.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/test_catalog.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests/test_catalog.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/types.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/types.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/users.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/users.pyc
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/workflow.py
+${ZOPE_BASE}/lib/python/plone/app/vocabularies/workflow.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/TODO.txt
+${ZOPE_BASE}/lib/python/plone/app/workflow/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/browser/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/browser/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/workflow/browser/kss_sharing.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/browser/kss_sharing.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/browser/macro_wrapper.pt
+${ZOPE_BASE}/lib/python/plone/app/workflow/browser/sharing.pt
+${ZOPE_BASE}/lib/python/plone/app/workflow/browser/sharing.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/browser/sharing.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/configure.zcml
+${ZOPE_BASE}/lib/python/plone/app/workflow/interfaces.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/localroles.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/localroles.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/permissions.zcml
+${ZOPE_BASE}/lib/python/plone/app/workflow/remap.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/remap.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/base.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/base.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/onestateworkflow.txt
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_folder_workflow.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_folder_workflow.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_functional.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_functional.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_one_state_workflow.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_one_state_workflow.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_plone_workflow.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_plone_workflow.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_remap.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_remap.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_simple_publication_workflow.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/test_simple_publication_workflow.pyc
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/utils.py
+${ZOPE_BASE}/lib/python/plone/app/workflow/tests/utils.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/DIRECTIVES.txt
+${ZOPE_BASE}/lib/python/plone/contentrules/README.txt
+${ZOPE_BASE}/lib/python/plone/contentrules/__init__.py
+${ZOPE_BASE}/lib/python/plone/contentrules/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/configure.zcml
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/__init__.py
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/assignments.py
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/assignments.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/configure.zcml
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/executor.py
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/executor.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/interfaces.py
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/storage.py
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/storage.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/utils.py
+${ZOPE_BASE}/lib/python/plone/contentrules/engine/utils.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/meta.zcml
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/__init__.py
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/configure.zcml
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/element.py
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/element.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/eventvocab.py
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/eventvocab.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/interfaces.py
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/meta.zcml
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/metaconfigure.py
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/metaconfigure.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/metadirectives.py
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/metadirectives.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/rule.py
+${ZOPE_BASE}/lib/python/plone/contentrules/rule/rule.pyc
+${ZOPE_BASE}/lib/python/plone/contentrules/tests.py
+${ZOPE_BASE}/lib/python/plone/contentrules/tests.pyc
+${ZOPE_BASE}/lib/python/plone/fieldsets/__init__.py
+${ZOPE_BASE}/lib/python/plone/fieldsets/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/fieldsets/fieldsets.py
+${ZOPE_BASE}/lib/python/plone/fieldsets/fieldsets.pyc
+${ZOPE_BASE}/lib/python/plone/fieldsets/fieldsets.txt
+${ZOPE_BASE}/lib/python/plone/fieldsets/form.py
+${ZOPE_BASE}/lib/python/plone/fieldsets/form.pyc
+${ZOPE_BASE}/lib/python/plone/fieldsets/interfaces.py
+${ZOPE_BASE}/lib/python/plone/fieldsets/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/fieldsets/tests.py
+${ZOPE_BASE}/lib/python/plone/fieldsets/tests.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/__init__.py
+${ZOPE_BASE}/lib/python/plone/i18n/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/configure.zcml
+${ZOPE_BASE}/lib/python/plone/i18n/locales/README.txt
+${ZOPE_BASE}/lib/python/plone/i18n/locales/__init__.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/__init__.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/configure.zcml
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ad.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ae.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/af.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ag.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ai.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/al.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/am.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/an.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ao.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/aq.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ar.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/as.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/at.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/au.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/aw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/az.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ba.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bb.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bd.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/be.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bf.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bg.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bh.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bi.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bj.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bo.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/br.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bs.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bt.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bv.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/by.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/bz.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ca.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cc.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cd.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cf.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cg.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ch.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ci.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ck.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cl.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/co.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cs.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cu.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cv.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cx.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/cz.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/de.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/dj.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/dk.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/dm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/do.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/dz.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ec.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ee.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/eg.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/eh.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/er.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/es.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/et.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/fi.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/fj.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/fk.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/fm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/fo.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/fr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ga.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gb.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gd.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ge.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gf.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gh.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gi.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gl.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gp.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gq.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gt.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gu.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/gy.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/hk.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/hm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/hn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/hr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ht.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/hu.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/id.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ie.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/il.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/in.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/io.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/iq.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ir.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/is.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/it.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/jm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/jo.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/jp.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ke.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/kg.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/kh.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ki.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/km.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/kn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/kp.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/kr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/kw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ky.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/kz.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/la.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/lb.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/lc.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/li.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/lk.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/lr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ls.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/lt.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/lu.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/lv.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ly.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ma.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mc.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/md.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mg.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mh.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mk.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ml.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mo.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mp.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mq.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ms.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mt.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mu.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mv.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mx.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/my.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/mz.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/na.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/nc.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ne.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/nf.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ng.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ni.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/nl.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/no.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/nr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/nu.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/nz.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/om.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pa.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pe.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pf.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pg.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ph.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pk.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pl.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ps.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pt.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/pw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/py.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/qa.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/re.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ro.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ru.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/rw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sa.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sb.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sc.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sd.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/se.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sg.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sh.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/si.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sj.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sk.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sl.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/so.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/st.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sv.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sy.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/sz.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tc.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/td.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tf.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tg.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/th.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tj.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tk.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tl.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/to.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tt.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tv.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/tz.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ua.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ug.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/um.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/us.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/uy.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/uz.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/va.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/vc.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ve.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/vg.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/vi.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/vn.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/vu.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/wf.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ws.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/ye.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/yt.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/za.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/zm.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags/zw.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/language-flags/cy.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/language-flags/eo.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/language-flags/eu.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/unknown-flags/missing.txt
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/unknown-flags/nt.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/unknown-flags/qc.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/unknown-flags/su.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/unknown-flags/uk.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/unknown-flags/un.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/unknown-flags/yu.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/unknown-flags/zr.gif
+${ZOPE_BASE}/lib/python/plone/i18n/locales/cctld.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/cctld.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/locales/configure.zcml
+${ZOPE_BASE}/lib/python/plone/i18n/locales/countries.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/countries.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/locales/interfaces.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/locales/languages.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/languages.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/locales/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/locales/tests/test_cctlds.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/tests/test_cctlds.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/locales/tests/test_countries.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/tests/test_countries.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/locales/tests/test_languages.py
+${ZOPE_BASE}/lib/python/plone/i18n/locales/tests/test_languages.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/__init__.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/configure.zcml
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/cookie.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/cookie.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/default.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/default.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/fallback.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/fallback.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/interfaces.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/negotiator.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/negotiator.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/path.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/path.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/test_cookie.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/test_cookie.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/test_negotiator.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/test_negotiator.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/test_path.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/test_path.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/test_tld.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests/test_tld.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tld.py
+${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tld.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/__init__.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/adapters.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/adapters.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/base.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/base.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/configure.zcml
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/de.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/de.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/el.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/el.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/interfaces.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/pl.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/pl.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/ru.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/ru.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/test_normalizer.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests/test_normalizer.pyc
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tr.py
+${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tr.pyc
+${ZOPE_BASE}/lib/python/plone/intelligenttext/README.txt
+${ZOPE_BASE}/lib/python/plone/intelligenttext/__init__.py
+${ZOPE_BASE}/lib/python/plone/intelligenttext/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/intelligenttext/tests.py
+${ZOPE_BASE}/lib/python/plone/intelligenttext/tests.pyc
+${ZOPE_BASE}/lib/python/plone/intelligenttext/transforms.py
+${ZOPE_BASE}/lib/python/plone/intelligenttext/transforms.pyc
+${ZOPE_BASE}/lib/python/plone/locking/README.txt
+${ZOPE_BASE}/lib/python/plone/locking/__init__.py
+${ZOPE_BASE}/lib/python/plone/locking/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/locking/browser/__init__.py
+${ZOPE_BASE}/lib/python/plone/locking/browser/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/locking/browser/info.pt
+${ZOPE_BASE}/lib/python/plone/locking/browser/info.py
+${ZOPE_BASE}/lib/python/plone/locking/browser/info.pyc
+${ZOPE_BASE}/lib/python/plone/locking/browser/locking.py
+${ZOPE_BASE}/lib/python/plone/locking/browser/locking.pyc
+${ZOPE_BASE}/lib/python/plone/locking/configure.zcml
+${ZOPE_BASE}/lib/python/plone/locking/events.py
+${ZOPE_BASE}/lib/python/plone/locking/events.pyc
+${ZOPE_BASE}/lib/python/plone/locking/interfaces.py
+${ZOPE_BASE}/lib/python/plone/locking/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/locking/lockable.py
+${ZOPE_BASE}/lib/python/plone/locking/lockable.pyc
+${ZOPE_BASE}/lib/python/plone/locking/tests.py
+${ZOPE_BASE}/lib/python/plone/locking/tests.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/README.txt
+${ZOPE_BASE}/lib/python/plone/memoize/__init__.py
+${ZOPE_BASE}/lib/python/plone/memoize/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/compress.py
+${ZOPE_BASE}/lib/python/plone/memoize/compress.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/configure.zcml
+${ZOPE_BASE}/lib/python/plone/memoize/forever.py
+${ZOPE_BASE}/lib/python/plone/memoize/forever.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/forever.txt
+${ZOPE_BASE}/lib/python/plone/memoize/instance.py
+${ZOPE_BASE}/lib/python/plone/memoize/instance.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/instance.txt
+${ZOPE_BASE}/lib/python/plone/memoize/interfaces.py
+${ZOPE_BASE}/lib/python/plone/memoize/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/ram.py
+${ZOPE_BASE}/lib/python/plone/memoize/ram.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/request.py
+${ZOPE_BASE}/lib/python/plone/memoize/request.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/tests.py
+${ZOPE_BASE}/lib/python/plone/memoize/tests.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/view.py
+${ZOPE_BASE}/lib/python/plone/memoize/view.pyc
+${ZOPE_BASE}/lib/python/plone/memoize/view.txt
+${ZOPE_BASE}/lib/python/plone/memoize/volatile.py
+${ZOPE_BASE}/lib/python/plone/memoize/volatile.pyc
+${ZOPE_BASE}/lib/python/plone/openid/__init__.py
+${ZOPE_BASE}/lib/python/plone/openid/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/openid/config.py
+${ZOPE_BASE}/lib/python/plone/openid/config.pyc
+${ZOPE_BASE}/lib/python/plone/openid/configure.zcml
+${ZOPE_BASE}/lib/python/plone/openid/interfaces.py
+${ZOPE_BASE}/lib/python/plone/openid/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/openid/plugins/__init__.py
+${ZOPE_BASE}/lib/python/plone/openid/plugins/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/openid/plugins/oid.py
+${ZOPE_BASE}/lib/python/plone/openid/plugins/oid.pyc
+${ZOPE_BASE}/lib/python/plone/openid/store.py
+${ZOPE_BASE}/lib/python/plone/openid/store.pyc
+${ZOPE_BASE}/lib/python/plone/openid/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/openid/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/openid/tests/consumer.py
+${ZOPE_BASE}/lib/python/plone/openid/tests/consumer.pyc
+${ZOPE_BASE}/lib/python/plone/openid/tests/layer.py
+${ZOPE_BASE}/lib/python/plone/openid/tests/layer.pyc
+${ZOPE_BASE}/lib/python/plone/openid/tests/oitestcase.py
+${ZOPE_BASE}/lib/python/plone/openid/tests/oitestcase.pyc
+${ZOPE_BASE}/lib/python/plone/openid/tests/pas.txt
+${ZOPE_BASE}/lib/python/plone/openid/tests/store.txt
+${ZOPE_BASE}/lib/python/plone/openid/tests/testAuthentication.py
+${ZOPE_BASE}/lib/python/plone/openid/tests/testAuthentication.pyc
+${ZOPE_BASE}/lib/python/plone/openid/tests/testDocTests.py
+${ZOPE_BASE}/lib/python/plone/openid/tests/testDocTests.pyc
+${ZOPE_BASE}/lib/python/plone/openid/tests/testExtraction.py
+${ZOPE_BASE}/lib/python/plone/openid/tests/testExtraction.pyc
+${ZOPE_BASE}/lib/python/plone/openid/util.py
+${ZOPE_BASE}/lib/python/plone/openid/util.pyc
+${ZOPE_BASE}/lib/python/plone/openid/www/openid.png
+${ZOPE_BASE}/lib/python/plone/openid/www/openidAdd.zpt
+${ZOPE_BASE}/lib/python/plone/portlets/CREDITS.txt
+${ZOPE_BASE}/lib/python/plone/portlets/README.txt
+${ZOPE_BASE}/lib/python/plone/portlets/TODO.txt
+${ZOPE_BASE}/lib/python/plone/portlets/__init__.py
+${ZOPE_BASE}/lib/python/plone/portlets/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/assignable.py
+${ZOPE_BASE}/lib/python/plone/portlets/assignable.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/configure.zcml
+${ZOPE_BASE}/lib/python/plone/portlets/constants.py
+${ZOPE_BASE}/lib/python/plone/portlets/constants.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/events.py
+${ZOPE_BASE}/lib/python/plone/portlets/events.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/interfaces.py
+${ZOPE_BASE}/lib/python/plone/portlets/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/manager.py
+${ZOPE_BASE}/lib/python/plone/portlets/manager.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/registration.py
+${ZOPE_BASE}/lib/python/plone/portlets/registration.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/retriever.py
+${ZOPE_BASE}/lib/python/plone/portlets/retriever.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/storage.py
+${ZOPE_BASE}/lib/python/plone/portlets/storage.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/tests.py
+${ZOPE_BASE}/lib/python/plone/portlets/tests.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/uisupport.txt
+${ZOPE_BASE}/lib/python/plone/portlets/utils.py
+${ZOPE_BASE}/lib/python/plone/portlets/utils.pyc
+${ZOPE_BASE}/lib/python/plone/portlets/utils.txt
+${ZOPE_BASE}/lib/python/plone/session/__init__.py
+${ZOPE_BASE}/lib/python/plone/session/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/session/configure.zcml
+${ZOPE_BASE}/lib/python/plone/session/interfaces.py
+${ZOPE_BASE}/lib/python/plone/session/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/session/plugins/__init__.py
+${ZOPE_BASE}/lib/python/plone/session/plugins/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/session/plugins/session.py
+${ZOPE_BASE}/lib/python/plone/session/plugins/session.pyc
+${ZOPE_BASE}/lib/python/plone/session/plugins/session.zpt
+${ZOPE_BASE}/lib/python/plone/session/sources/__init__.py
+${ZOPE_BASE}/lib/python/plone/session/sources/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/session/sources/base.py
+${ZOPE_BASE}/lib/python/plone/session/sources/base.pyc
+${ZOPE_BASE}/lib/python/plone/session/sources/configure.zcml
+${ZOPE_BASE}/lib/python/plone/session/sources/hash.pt
+${ZOPE_BASE}/lib/python/plone/session/sources/hash.py
+${ZOPE_BASE}/lib/python/plone/session/sources/hash.pyc
+${ZOPE_BASE}/lib/python/plone/session/sources/userid.py
+${ZOPE_BASE}/lib/python/plone/session/sources/userid.pyc
+${ZOPE_BASE}/lib/python/plone/session/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/session/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/session/tests/adapters.txt
+${ZOPE_BASE}/lib/python/plone/session/tests/hash.txt
+${ZOPE_BASE}/lib/python/plone/session/tests/layer.py
+${ZOPE_BASE}/lib/python/plone/session/tests/layer.pyc
+${ZOPE_BASE}/lib/python/plone/session/tests/sessioncase.py
+${ZOPE_BASE}/lib/python/plone/session/tests/sessioncase.pyc
+${ZOPE_BASE}/lib/python/plone/session/tests/testDocTests.py
+${ZOPE_BASE}/lib/python/plone/session/tests/testDocTests.pyc
+${ZOPE_BASE}/lib/python/plone/session/tests/testPAS.py
+${ZOPE_BASE}/lib/python/plone/session/tests/testPAS.pyc
+${ZOPE_BASE}/lib/python/plone/theme/README.txt
+${ZOPE_BASE}/lib/python/plone/theme/__init__.py
+${ZOPE_BASE}/lib/python/plone/theme/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/theme/configure.zcml
+${ZOPE_BASE}/lib/python/plone/theme/interfaces.py
+${ZOPE_BASE}/lib/python/plone/theme/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/theme/layer.py
+${ZOPE_BASE}/lib/python/plone/theme/layer.pyc
+${ZOPE_BASE}/lib/python/plone/theme/tests/__init__.py
+${ZOPE_BASE}/lib/python/plone/theme/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/plone/theme/tests/default.pt
+${ZOPE_BASE}/lib/python/plone/theme/tests/interfaces.py
+${ZOPE_BASE}/lib/python/plone/theme/tests/interfaces.pyc
+${ZOPE_BASE}/lib/python/plone/theme/tests/mytheme.pt
+${ZOPE_BASE}/lib/python/plone/theme/tests/test_doctest.py
+${ZOPE_BASE}/lib/python/plone/theme/tests/test_doctest.pyc
+${ZOPE_BASE}/lib/python/plone/theme/tests/tests.zcml
+${ZOPE_BASE}/lib/python/wicked/README.txt
+${ZOPE_BASE}/lib/python/wicked/TODO.txt
+${ZOPE_BASE}/lib/python/wicked/__init__.py
+${ZOPE_BASE}/lib/python/wicked/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/at/Extensions/Install.py
+${ZOPE_BASE}/lib/python/wicked/at/Extensions/Install.pyc
+${ZOPE_BASE}/lib/python/wicked/at/Extensions/__init__.py
+${ZOPE_BASE}/lib/python/wicked/at/Extensions/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/at/Extensions/upgrade.py
+${ZOPE_BASE}/lib/python/wicked/at/Extensions/upgrade.pyc
+${ZOPE_BASE}/lib/python/wicked/at/README.txt
+${ZOPE_BASE}/lib/python/wicked/at/__init__.py
+${ZOPE_BASE}/lib/python/wicked/at/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/at/add.txt
+${ZOPE_BASE}/lib/python/wicked/at/backlink.py
+${ZOPE_BASE}/lib/python/wicked/at/backlink.pyc
+${ZOPE_BASE}/lib/python/wicked/at/config.py
+${ZOPE_BASE}/lib/python/wicked/at/config.pyc
+${ZOPE_BASE}/lib/python/wicked/at/configure.zcml
+${ZOPE_BASE}/lib/python/wicked/at/field.py
+${ZOPE_BASE}/lib/python/wicked/at/field.pyc
+${ZOPE_BASE}/lib/python/wicked/at/interfaces.py
+${ZOPE_BASE}/lib/python/wicked/at/interfaces.pyc
+${ZOPE_BASE}/lib/python/wicked/at/link.py
+${ZOPE_BASE}/lib/python/wicked/at/link.pyc
+${ZOPE_BASE}/lib/python/wicked/at/objectevents.zcml
+${ZOPE_BASE}/lib/python/wicked/at/relation.py
+${ZOPE_BASE}/lib/python/wicked/at/relation.pyc
+${ZOPE_BASE}/lib/python/wicked/at/renderer.txt
+${ZOPE_BASE}/lib/python/wicked/at/seeker.py
+${ZOPE_BASE}/lib/python/wicked/at/seeker.pyc
+${ZOPE_BASE}/lib/python/wicked/at/subscriber.py
+${ZOPE_BASE}/lib/python/wicked/at/subscriber.pyc
+${ZOPE_BASE}/lib/python/wicked/at/tests/__init__.py
+${ZOPE_BASE}/lib/python/wicked/at/tests/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/at/tests/test_cache.py
+${ZOPE_BASE}/lib/python/wicked/at/tests/test_cache.pyc
+${ZOPE_BASE}/lib/python/wicked/at/tests/test_linking.py
+${ZOPE_BASE}/lib/python/wicked/at/tests/test_linking.pyc
+${ZOPE_BASE}/lib/python/wicked/at/tests/test_rendering.py
+${ZOPE_BASE}/lib/python/wicked/at/tests/test_rendering.pyc
+${ZOPE_BASE}/lib/python/wicked/at/tests/test_scope.py
+${ZOPE_BASE}/lib/python/wicked/at/tests/test_scope.pyc
+${ZOPE_BASE}/lib/python/wicked/at/tests/wickedtestcase.py
+${ZOPE_BASE}/lib/python/wicked/at/tests/wickedtestcase.pyc
+${ZOPE_BASE}/lib/python/wicked/at/zope2.py
+${ZOPE_BASE}/lib/python/wicked/at/zope2.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/Extensions/Install.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/Extensions/Install.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/Extensions/__init__.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/Extensions/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/Extensions/migrate_atdoc_wickeddoc.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/Extensions/migrate_atdoc_wickeddoc.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/README.txt
+${ZOPE_BASE}/lib/python/wicked/atcontent/__init__.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/configure.zcml
+${ZOPE_BASE}/lib/python/wicked/atcontent/interfaces.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/interfaces.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/ironicwiki.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/ironicwiki.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/migration/__init__.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/migration/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/migration/migrator.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/migration/migrator.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/permissions.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/permissions.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/tests.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/tests.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/wickeddoc.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/wickeddoc.pyc
+${ZOPE_BASE}/lib/python/wicked/atcontent/zope2.py
+${ZOPE_BASE}/lib/python/wicked/atcontent/zope2.pyc
+${ZOPE_BASE}/lib/python/wicked/backlink.txt
+${ZOPE_BASE}/lib/python/wicked/basic-example.zcml
+${ZOPE_BASE}/lib/python/wicked/cache.py
+${ZOPE_BASE}/lib/python/wicked/cache.pyc
+${ZOPE_BASE}/lib/python/wicked/cache.txt
+${ZOPE_BASE}/lib/python/wicked/config.py
+${ZOPE_BASE}/lib/python/wicked/config.pyc
+${ZOPE_BASE}/lib/python/wicked/configure.zcml
+${ZOPE_BASE}/lib/python/wicked/decorator_intro.txt
+${ZOPE_BASE}/lib/python/wicked/event.py
+${ZOPE_BASE}/lib/python/wicked/event.pyc
+${ZOPE_BASE}/lib/python/wicked/fieldevent/README.txt
+${ZOPE_BASE}/lib/python/wicked/fieldevent/__init__.py
+${ZOPE_BASE}/lib/python/wicked/fieldevent/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/fieldevent/configure.zcml
+${ZOPE_BASE}/lib/python/wicked/fieldevent/interfaces.py
+${ZOPE_BASE}/lib/python/wicked/fieldevent/interfaces.pyc
+${ZOPE_BASE}/lib/python/wicked/fieldevent/meta.py
+${ZOPE_BASE}/lib/python/wicked/fieldevent/meta.pyc
+${ZOPE_BASE}/lib/python/wicked/fieldevent/meta.txt
+${ZOPE_BASE}/lib/python/wicked/fieldevent/meta.zcml
+${ZOPE_BASE}/lib/python/wicked/fieldevent/tests.py
+${ZOPE_BASE}/lib/python/wicked/fieldevent/tests.pyc
+${ZOPE_BASE}/lib/python/wicked/fieldevent/txtfilter.py
+${ZOPE_BASE}/lib/python/wicked/fieldevent/txtfilter.pyc
+${ZOPE_BASE}/lib/python/wicked/interfaces.py
+${ZOPE_BASE}/lib/python/wicked/interfaces.pyc
+${ZOPE_BASE}/lib/python/wicked/link.py
+${ZOPE_BASE}/lib/python/wicked/link.pyc
+${ZOPE_BASE}/lib/python/wicked/link.txt
+${ZOPE_BASE}/lib/python/wicked/normalize.py
+${ZOPE_BASE}/lib/python/wicked/normalize.pyc
+${ZOPE_BASE}/lib/python/wicked/plone/__init__.py
+${ZOPE_BASE}/lib/python/wicked/plone/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/plone/all-at.zcml
+${ZOPE_BASE}/lib/python/wicked/plone/configure.zcml
+${ZOPE_BASE}/lib/python/wicked/plone/document-only.zcml
+${ZOPE_BASE}/lib/python/wicked/plone/registration.py
+${ZOPE_BASE}/lib/python/wicked/plone/registration.pyc
+${ZOPE_BASE}/lib/python/wicked/plone/selective-atct.zcml
+${ZOPE_BASE}/lib/python/wicked/plone/tests.py
+${ZOPE_BASE}/lib/python/wicked/plone/tests.pyc
+${ZOPE_BASE}/lib/python/wicked/registration.py
+${ZOPE_BASE}/lib/python/wicked/registration.pyc
+${ZOPE_BASE}/lib/python/wicked/site.py
+${ZOPE_BASE}/lib/python/wicked/site.pyc
+${ZOPE_BASE}/lib/python/wicked/testing/__init__.py
+${ZOPE_BASE}/lib/python/wicked/testing/__init__.pyc
+${ZOPE_BASE}/lib/python/wicked/testing/cache.py
+${ZOPE_BASE}/lib/python/wicked/testing/cache.pyc
+${ZOPE_BASE}/lib/python/wicked/testing/filtercore.py
+${ZOPE_BASE}/lib/python/wicked/testing/filtercore.pyc
+${ZOPE_BASE}/lib/python/wicked/testing/general.py
+${ZOPE_BASE}/lib/python/wicked/testing/general.pyc
+${ZOPE_BASE}/lib/python/wicked/testing/interfaces.py
+${ZOPE_BASE}/lib/python/wicked/testing/interfaces.pyc
+${ZOPE_BASE}/lib/python/wicked/testing/strip.xsl
+${ZOPE_BASE}/lib/python/wicked/testing/traversal.zcml
+${ZOPE_BASE}/lib/python/wicked/testing/xml.py
+${ZOPE_BASE}/lib/python/wicked/testing/xml.pyc
+${ZOPE_BASE}/lib/python/wicked/tests.py
+${ZOPE_BASE}/lib/python/wicked/tests.pyc
+${ZOPE_BASE}/lib/python/wicked/txtfilter-example.zcml
+${ZOPE_BASE}/lib/python/wicked/txtfilter.py
+${ZOPE_BASE}/lib/python/wicked/txtfilter.pyc
+${ZOPE_BASE}/lib/python/wicked/utils.py
+${ZOPE_BASE}/lib/python/wicked/utils.pyc
+${ZOPE_BASE}/lib/python/wicked/vocabularies.zcml
+${ZOPE_BASE}/lib/python/wicked/wicked_link.pt
diff --git a/www/plone3/PLIST.common_end b/www/plone3/PLIST.common_end
new file mode 100644
index 00000000000..958a01ac4e4
--- /dev/null
+++ b/www/plone3/PLIST.common_end
@@ -0,0 +1,805 @@
+@comment $NetBSD: PLIST.common_end,v 1.1.1.1 2007/12/18 15:47:05 taca Exp $
+@dirrm ${ZOPE_BASE}/lib/python/wicked/testing
+@dirrm ${ZOPE_BASE}/lib/python/wicked/plone
+@dirrm ${ZOPE_BASE}/lib/python/wicked/fieldevent
+@dirrm ${ZOPE_BASE}/lib/python/wicked/atcontent/migration
+@dirrm ${ZOPE_BASE}/lib/python/wicked/atcontent/Extensions
+@dirrm ${ZOPE_BASE}/lib/python/wicked/atcontent
+@dirrm ${ZOPE_BASE}/lib/python/wicked/at/tests
+@dirrm ${ZOPE_BASE}/lib/python/wicked/at/Extensions
+@dirrm ${ZOPE_BASE}/lib/python/wicked/at
+@dirrm ${ZOPE_BASE}/lib/python/wicked
+@dirrm ${ZOPE_BASE}/lib/python/plone/theme/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/theme
+@dirrm ${ZOPE_BASE}/lib/python/plone/session/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/session/sources
+@dirrm ${ZOPE_BASE}/lib/python/plone/session/plugins
+@dirrm ${ZOPE_BASE}/lib/python/plone/session
+@dirrm ${ZOPE_BASE}/lib/python/plone/portlets
+@dirrm ${ZOPE_BASE}/lib/python/plone/openid/www
+@dirrm ${ZOPE_BASE}/lib/python/plone/openid/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/openid/plugins
+@dirrm ${ZOPE_BASE}/lib/python/plone/openid
+@dirrm ${ZOPE_BASE}/lib/python/plone/memoize
+@dirrm ${ZOPE_BASE}/lib/python/plone/locking/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/locking
+@dirrm ${ZOPE_BASE}/lib/python/plone/intelligenttext
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/normalizer/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/normalizer
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/negotiator/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/negotiator
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/locales/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/unknown-flags
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/language-flags
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser/country-flags
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/locales/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n/locales
+@dirrm ${ZOPE_BASE}/lib/python/plone/i18n
+@dirrm ${ZOPE_BASE}/lib/python/plone/fieldsets
+@dirrm ${ZOPE_BASE}/lib/python/plone/contentrules/rule
+@dirrm ${ZOPE_BASE}/lib/python/plone/contentrules/engine
+@dirrm ${ZOPE_BASE}/lib/python/plone/contentrules
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/workflow/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/workflow/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/workflow
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/vocabularies/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/vocabularies
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/viewletmanager/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/viewletmanager/exportimport
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/viewletmanager
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/redirector/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/redirector
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/portlets/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/portlets/portlets
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/portlets/exportimport
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/portlets/browser/templates
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/portlets/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/portlets
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/openid/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/openid/skins/ploneopenid
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/openid/skins
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/openid/profiles/default
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/openid/profiles
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/openid/portlets
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/openid
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/linkintegrity/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/linkintegrity/docs
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/linkintegrity/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/linkintegrity
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/viewlets/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/viewlets
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/sitemap/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/sitemap
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/presentation
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/nextprevious
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/navigation
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/links
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/icons
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/globals/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/globals
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/dashboard
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/analytics/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/analytics
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout/alias
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/layout
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/tests/selenium_tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/plugins/plone
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/plugins/legacy/reload
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/plugins/legacy
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/plugins
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/exportimport
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/doc
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/commands
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/kss
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/iterate/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/iterate/subscribers
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/iterate/profiles/default
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/iterate/profiles
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/iterate/docs
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/iterate/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/iterate
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/i18n/locales/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/i18n/locales/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/i18n/locales
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/i18n
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/form/widgets
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/form/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/form
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/customerize/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/customerize/docs
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/customerize
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/controlpanel/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/controlpanel
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/contentrules/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/contentrules/conditions
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/contentrules/browser/templates
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/contentrules/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/contentrules/actions
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/contentrules
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/contentmenu
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/content/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/content/browser/tests
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/content/browser
+@dirrm ${ZOPE_BASE}/lib/python/plone/app/content
+@dirrm ${ZOPE_BASE}/lib/python/plone/app
+@dirrm ${ZOPE_BASE}/lib/python/plone
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/tests
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/plugins/effects/browser
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/plugins/effects/3rd_party
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/plugins/effects
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/plugins/draganddrop/browser
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/plugins/draganddrop/3rd_party
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/plugins/draganddrop
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/plugins/core
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/plugins
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json/browser
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/pluginregistry/json
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/pluginregistry/deprecated
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/pluginregistry/browser
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/test
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression/thirdparty
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource/compression
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/pluginregistry/_concatresource
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/pluginregistry
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/kukit/utils
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/kukit/tests
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/kukit/kukit
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/kukit/doc
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party/firebuglite
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/kukit/3rd_party
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/kukit
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/dtds
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/docs
+@dirrm ${ZOPE_BASE}/lib/python/kss/core/browser
+@dirrm ${ZOPE_BASE}/lib/python/kss/core
+@dirrm ${ZOPE_BASE}/lib/python/kss
+@dirrm ${ZOPE_BASE}/lib/python/five/localsitemanager
+@dirrm ${ZOPE_BASE}/lib/python/five/customerize
+@dirrm ${ZOPE_BASE}/lib/python/five
+@dirrm ${ZOPE_BASE}/lib/python/archetypes/kss/tests/selenium_tests
+@dirrm ${ZOPE_BASE}/lib/python/archetypes/kss/tests
+@dirrm ${ZOPE_BASE}/lib/python/archetypes/kss/commands
+@dirrm ${ZOPE_BASE}/lib/python/archetypes/kss/browser
+@dirrm ${ZOPE_BASE}/lib/python/archetypes/kss
+@dirrm ${ZOPE_BASE}/lib/python/archetypes
+@dirrm ${PLONE_BASE}/validation/validators
+@dirrm ${PLONE_BASE}/validation/tests
+@dirrm ${PLONE_BASE}/validation/interfaces
+@dirrm ${PLONE_BASE}/validation/debian
+@dirrm ${PLONE_BASE}/validation
+@dirrm ${PLONE_BASE}/statusmessages/tests
+@dirrm ${PLONE_BASE}/statusmessages
+@dirrm ${PLONE_BASE}/kupu/zope3/browser
+@dirrm ${PLONE_BASE}/kupu/zope3
+@dirrm ${PLONE_BASE}/kupu/zope2
+@dirrm ${PLONE_BASE}/kupu/widgeteer
+@dirrm ${PLONE_BASE}/kupu/tools
+@dirrm ${PLONE_BASE}/kupu/tests
+@dirrm ${PLONE_BASE}/kupu/roundup
+@dirrm ${PLONE_BASE}/kupu/python
+@dirrm ${PLONE_BASE}/kupu/plone/xml
+@dirrm ${PLONE_BASE}/kupu/plone/tests/output
+@dirrm ${PLONE_BASE}/kupu/plone/tests/input
+@dirrm ${PLONE_BASE}/kupu/plone/tests
+@dirrm ${PLONE_BASE}/kupu/plone/profiles/default
+@dirrm ${PLONE_BASE}/kupu/plone/profiles
+@dirrm ${PLONE_BASE}/kupu/plone/kupu_references
+@dirrm ${PLONE_BASE}/kupu/plone/kupu_plone_layer/plonekupuimages
+@dirrm ${PLONE_BASE}/kupu/plone/kupu_plone_layer
+@dirrm ${PLONE_BASE}/kupu/plone
+@dirrm ${PLONE_BASE}/kupu/multi
+@dirrm ${PLONE_BASE}/kupu/mmbase/tools
+@dirrm ${PLONE_BASE}/kupu/mmbase/icons
+@dirrm ${PLONE_BASE}/kupu/mmbase/i18n
+@dirrm ${PLONE_BASE}/kupu/mmbase/drawers/kupuimages
+@dirrm ${PLONE_BASE}/kupu/mmbase/drawers
+@dirrm ${PLONE_BASE}/kupu/mmbase
+@dirrm ${PLONE_BASE}/kupu/i18n
+@dirrm ${PLONE_BASE}/kupu/form
+@dirrm ${PLONE_BASE}/kupu/doc/reference
+@dirrm ${PLONE_BASE}/kupu/doc
+@dirrm ${PLONE_BASE}/kupu/default
+@dirrm ${PLONE_BASE}/kupu/common/kupupopups
+@dirrm ${PLONE_BASE}/kupu/common/kupuimages
+@dirrm ${PLONE_BASE}/kupu/common/kupudrawers/logos
+@dirrm ${PLONE_BASE}/kupu/common/kupudrawers
+@dirrm ${PLONE_BASE}/kupu/common
+@dirrm ${PLONE_BASE}/kupu/cnf
+@dirrm ${PLONE_BASE}/kupu/apache-lenya/lenya/images
+@dirrm ${PLONE_BASE}/kupu/apache-lenya/lenya/drawers
+@dirrm ${PLONE_BASE}/kupu/apache-lenya/lenya
+@dirrm ${PLONE_BASE}/kupu/apache-lenya/kupu
+@dirrm ${PLONE_BASE}/kupu/apache-lenya
+@dirrm ${PLONE_BASE}/kupu/Extensions
+@dirrm ${PLONE_BASE}/kupu
+@dirrm ${PLONE_BASE}/ZopeVersionControl/www
+@dirrm ${PLONE_BASE}/ZopeVersionControl/tests
+@dirrm ${PLONE_BASE}/ZopeVersionControl/help
+@dirrm ${PLONE_BASE}/ZopeVersionControl/dtml
+@dirrm ${PLONE_BASE}/ZopeVersionControl
+@dirrm ${PLONE_BASE}/SecureMailHost/www
+@dirrm ${PLONE_BASE}/SecureMailHost/tests/out
+@dirrm ${PLONE_BASE}/SecureMailHost/tests/in
+@dirrm ${PLONE_BASE}/SecureMailHost/tests
+@dirrm ${PLONE_BASE}/SecureMailHost
+@dirrm ${PLONE_BASE}/ResourceRegistries/www
+@dirrm ${PLONE_BASE}/ResourceRegistries/tools
+@dirrm ${PLONE_BASE}/ResourceRegistries/tests
+@dirrm ${PLONE_BASE}/ResourceRegistries/skins/ResourceRegistries
+@dirrm ${PLONE_BASE}/ResourceRegistries/skins
+@dirrm ${PLONE_BASE}/ResourceRegistries/interfaces
+@dirrm ${PLONE_BASE}/ResourceRegistries/exportimport
+@dirrm ${PLONE_BASE}/ResourceRegistries/doc
+@dirrm ${PLONE_BASE}/ResourceRegistries/browser
+@dirrm ${PLONE_BASE}/ResourceRegistries
+@dirrm ${PLONE_BASE}/PortalTransforms/z3
+@dirrm ${PLONE_BASE}/PortalTransforms/www
+@dirrm ${PLONE_BASE}/PortalTransforms/unsafe_transforms
+@dirrm ${PLONE_BASE}/PortalTransforms/transforms
+@dirrm ${PLONE_BASE}/PortalTransforms/tests/output
+@dirrm ${PLONE_BASE}/PortalTransforms/tests/input
+@dirrm ${PLONE_BASE}/PortalTransforms/tests
+@dirrm ${PLONE_BASE}/PortalTransforms/profiles/default
+@dirrm ${PLONE_BASE}/PortalTransforms/profiles
+@dirrm ${PLONE_BASE}/PortalTransforms/libtransforms
+@dirrm ${PLONE_BASE}/PortalTransforms/docs
+@dirrm ${PLONE_BASE}/PortalTransforms/debian
+@dirrm ${PLONE_BASE}/PortalTransforms
+@dirrm ${PLONE_BASE}/PluginRegistry/xml
+@dirrm ${PLONE_BASE}/PluginRegistry/www
+@dirrm ${PLONE_BASE}/PluginRegistry/tests
+@dirrm ${PLONE_BASE}/PluginRegistry
+@dirrm ${PLONE_BASE}/PluggableAuthService/www
+@dirrm ${PLONE_BASE}/PluggableAuthService/tests
+@dirrm ${PLONE_BASE}/PluggableAuthService/profiles/simple/PAS
+@dirrm ${PLONE_BASE}/PluggableAuthService/profiles/simple
+@dirrm ${PLONE_BASE}/PluggableAuthService/profiles/empty/PAS
+@dirrm ${PLONE_BASE}/PluggableAuthService/profiles/empty
+@dirrm ${PLONE_BASE}/PluggableAuthService/profiles
+@dirrm ${PLONE_BASE}/PluggableAuthService/plugins/xml
+@dirrm ${PLONE_BASE}/PluggableAuthService/plugins/www
+@dirrm ${PLONE_BASE}/PluggableAuthService/plugins/tests
+@dirrm ${PLONE_BASE}/PluggableAuthService/plugins
+@dirrm ${PLONE_BASE}/PluggableAuthService/interfaces
+@dirrm ${PLONE_BASE}/PluggableAuthService/doc
+@dirrm ${PLONE_BASE}/PluggableAuthService/Extensions
+@dirrm ${PLONE_BASE}/PluggableAuthService
+@dirrm ${PLONE_BASE}/PloneTranslations/utils
+@dirrm ${PLONE_BASE}/PloneTranslations/tests
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/zh_TW/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/zh_TW
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/zh_HK/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/zh_HK
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/zh_CN/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/zh_CN
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/zh/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/zh
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/vi/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/vi
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/uk/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/uk
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/tr/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/tr
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/to/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/to
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/te/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/te
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ta/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ta
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sv/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sv
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sr_Latn/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sr_Latn
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sr/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sr
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sq/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sq
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sm/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sm
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sl/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sl
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sk/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/sk
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ru/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ru
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ro/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ro
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/rm/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/rm
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/pt_BR/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/pt_BR
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/pt/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/pt
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/pl/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/pl
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/no/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/no
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/nn/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/nn
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/nl/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/nl
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/my/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/my
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/mi/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/mi
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/lt/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/lt
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ko/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ko
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/kn/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/kn
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ka/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ka
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ja/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ja
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/it/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/it
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/id/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/id
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/hy/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/hy
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/hu/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/hu
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/hr/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/hr
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/hi/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/hi
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/he/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/he
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/fu/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/fu
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/fr/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/fr
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/fi/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/fi
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/fa/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/fa
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/eu/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/eu
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/et/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/et
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/es/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/es
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/eo/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/eo
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/en/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/en
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/el/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/el
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/de/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/de
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/da/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/da
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/cy/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/cy
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/cs/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/cs
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ca/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ca
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/bn/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/bn
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/bg/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/bg
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ar/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/ar
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/af/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PloneTranslations/locales/af
+@dirrm ${PLONE_BASE}/PloneTranslations/locales
+@dirrm ${PLONE_BASE}/PloneTranslations/i18n
+@dirrm ${PLONE_BASE}/PloneTranslations
+@dirrm ${PLONE_BASE}/PloneTestCase
+@dirrm ${PLONE_BASE}/PlonePAS/zmi
+@dirrm ${PLONE_BASE}/PlonePAS/tools
+@dirrm ${PLONE_BASE}/PlonePAS/tests
+@dirrm ${PLONE_BASE}/PlonePAS/profiles/default
+@dirrm ${PLONE_BASE}/PlonePAS/profiles
+@dirrm ${PLONE_BASE}/PlonePAS/plugins
+@dirrm ${PLONE_BASE}/PlonePAS/interfaces
+@dirrm ${PLONE_BASE}/PlonePAS/browser
+@dirrm ${PLONE_BASE}/PlonePAS/Extensions
+@dirrm ${PLONE_BASE}/PlonePAS
+@dirrm ${PLONE_BASE}/PloneLanguageTool/www
+@dirrm ${PLONE_BASE}/PloneLanguageTool/tests
+@dirrm ${PLONE_BASE}/PloneLanguageTool/skins/LanguageTool
+@dirrm ${PLONE_BASE}/PloneLanguageTool/skins
+@dirrm ${PLONE_BASE}/PloneLanguageTool/profiles/default
+@dirrm ${PLONE_BASE}/PloneLanguageTool/profiles
+@dirrm ${PLONE_BASE}/PloneLanguageTool
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/www
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/tests
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/locales/pt_BR/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/locales/pt_BR
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/locales/el/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/locales/el
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/locales/de/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/locales/de
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/locales/cs/LC_MESSAGES
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/locales/cs
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/locales
+@dirrm ${PLONE_BASE}/PlacelessTranslationService/bin
+@dirrm ${PLONE_BASE}/PlacelessTranslationService
+@dirrm ${PLONE_BASE}/PasswordResetTool/tests
+@dirrm ${PLONE_BASE}/PasswordResetTool/skins/PasswordReset
+@dirrm ${PLONE_BASE}/PasswordResetTool/skins
+@dirrm ${PLONE_BASE}/PasswordResetTool/interfaces
+@dirrm ${PLONE_BASE}/PasswordResetTool/i18n
+@dirrm ${PLONE_BASE}/PasswordResetTool/dtml
+@dirrm ${PLONE_BASE}/PasswordResetTool/Extensions
+@dirrm ${PLONE_BASE}/PasswordResetTool
+@dirrm ${PLONE_BASE}/NuPlone/tests
+@dirrm ${PLONE_BASE}/NuPlone/skins/nuplone_styles
+@dirrm ${PLONE_BASE}/NuPlone/skins/nuplone_images
+@dirrm ${PLONE_BASE}/NuPlone/skins
+@dirrm ${PLONE_BASE}/NuPlone/profiles/default
+@dirrm ${PLONE_BASE}/NuPlone/profiles
+@dirrm ${PLONE_BASE}/NuPlone/Extensions
+@dirrm ${PLONE_BASE}/NuPlone
+@dirrm ${PLONE_BASE}/MimetypesRegistry/z3
+@dirrm ${PLONE_BASE}/MimetypesRegistry/www
+@dirrm ${PLONE_BASE}/MimetypesRegistry/tests/input
+@dirrm ${PLONE_BASE}/MimetypesRegistry/tests
+@dirrm ${PLONE_BASE}/MimetypesRegistry/skins/mimetypes_icons
+@dirrm ${PLONE_BASE}/MimetypesRegistry/skins
+@dirrm ${PLONE_BASE}/MimetypesRegistry/profiles/default
+@dirrm ${PLONE_BASE}/MimetypesRegistry/profiles
+@dirrm ${PLONE_BASE}/MimetypesRegistry/mime_types
+@dirrm ${PLONE_BASE}/MimetypesRegistry
+@dirrm ${PLONE_BASE}/Marshall/www
+@dirrm ${PLONE_BASE}/Marshall/validation/atxml
+@dirrm ${PLONE_BASE}/Marshall/validation
+@dirrm ${PLONE_BASE}/Marshall/utils
+@dirrm ${PLONE_BASE}/Marshall/tests/input/simple_xml
+@dirrm ${PLONE_BASE}/Marshall/tests/input/rfc822
+@dirrm ${PLONE_BASE}/Marshall/tests/input/primary_field
+@dirrm ${PLONE_BASE}/Marshall/tests/input/atxml
+@dirrm ${PLONE_BASE}/Marshall/tests/input
+@dirrm ${PLONE_BASE}/Marshall/tests/export/atxml/.metadata
+@dirrm ${PLONE_BASE}/Marshall/tests/export/atxml
+@dirrm ${PLONE_BASE}/Marshall/tests/export
+@dirrm ${PLONE_BASE}/Marshall/tests/examples
+@dirrm ${PLONE_BASE}/Marshall/tests/data
+@dirrm ${PLONE_BASE}/Marshall/tests
+@dirrm ${PLONE_BASE}/Marshall/predicates
+@dirrm ${PLONE_BASE}/Marshall/namespaces
+@dirrm ${PLONE_BASE}/Marshall/interfaces
+@dirrm ${PLONE_BASE}/Marshall/handlers
+@dirrm ${PLONE_BASE}/Marshall/doc
+@dirrm ${PLONE_BASE}/Marshall/Extensions
+@dirrm ${PLONE_BASE}/Marshall
+@dirrm ${PLONE_BASE}/GroupUserFolder/www
+@dirrm ${PLONE_BASE}/GroupUserFolder/tests
+@dirrm ${PLONE_BASE}/GroupUserFolder/skins/gruf_plone_2_0
+@dirrm ${PLONE_BASE}/GroupUserFolder/skins/gruf
+@dirrm ${PLONE_BASE}/GroupUserFolder/skins
+@dirrm ${PLONE_BASE}/GroupUserFolder/interfaces
+@dirrm ${PLONE_BASE}/GroupUserFolder/dtml
+@dirrm ${PLONE_BASE}/GroupUserFolder/doc
+@dirrm ${PLONE_BASE}/GroupUserFolder/debian
+@dirrm ${PLONE_BASE}/GroupUserFolder/Extensions
+@dirrm ${PLONE_BASE}/GroupUserFolder
+@dirrm ${PLONE_BASE}/GenericSetup/xml
+@dirrm ${PLONE_BASE}/GenericSetup/www
+@dirrm ${PLONE_BASE}/GenericSetup/tests/versioned_profile
+@dirrm ${PLONE_BASE}/GenericSetup/tests/default_profile
+@dirrm ${PLONE_BASE}/GenericSetup/tests
+@dirrm ${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default/siteroot
+@dirrm ${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles/default
+@dirrm ${PLONE_BASE}/GenericSetup/doc/SampleSite/profiles
+@dirrm ${PLONE_BASE}/GenericSetup/doc/SampleSite
+@dirrm ${PLONE_BASE}/GenericSetup/doc
+@dirrm ${PLONE_BASE}/GenericSetup/browser
+@dirrm ${PLONE_BASE}/GenericSetup/bbb
+@dirrm ${PLONE_BASE}/GenericSetup/ZCatalog/tests
+@dirrm ${PLONE_BASE}/GenericSetup/ZCatalog
+@dirrm ${PLONE_BASE}/GenericSetup/ZCTextIndex/tests
+@dirrm ${PLONE_BASE}/GenericSetup/ZCTextIndex
+@dirrm ${PLONE_BASE}/GenericSetup/PythonScripts/tests
+@dirrm ${PLONE_BASE}/GenericSetup/PythonScripts
+@dirrm ${PLONE_BASE}/GenericSetup/PluginIndexes/tests
+@dirrm ${PLONE_BASE}/GenericSetup/PluginIndexes
+@dirrm ${PLONE_BASE}/GenericSetup/PageTemplates/tests
+@dirrm ${PLONE_BASE}/GenericSetup/PageTemplates
+@dirrm ${PLONE_BASE}/GenericSetup/OFSP/tests
+@dirrm ${PLONE_BASE}/GenericSetup/OFSP
+@dirrm ${PLONE_BASE}/GenericSetup/MailHost/tests
+@dirrm ${PLONE_BASE}/GenericSetup/MailHost
+@dirrm ${PLONE_BASE}/GenericSetup
+@dirrm ${PLONE_BASE}/ExternalEditor/win32
+@dirrm ${PLONE_BASE}/ExternalEditor/tests
+@dirrm ${PLONE_BASE}/ExternalEditor/man
+@dirrm ${PLONE_BASE}/ExternalEditor/Plugins
+@dirrm ${PLONE_BASE}/ExternalEditor
+@dirrm ${PLONE_BASE}/ExtendedPathIndex/www
+@dirrm ${PLONE_BASE}/ExtendedPathIndex/tests
+@dirrm ${PLONE_BASE}/ExtendedPathIndex/ptests
+@dirrm ${PLONE_BASE}/ExtendedPathIndex/help
+@dirrm ${PLONE_BASE}/ExtendedPathIndex/dtml
+@dirrm ${PLONE_BASE}/ExtendedPathIndex
+@dirrm ${PLONE_BASE}/DCWorkflow/xml
+@dirrm ${PLONE_BASE}/DCWorkflow/tests
+@dirrm ${PLONE_BASE}/DCWorkflow/profiles/revision2/workflows/default_workflow
+@dirrm ${PLONE_BASE}/DCWorkflow/profiles/revision2/workflows
+@dirrm ${PLONE_BASE}/DCWorkflow/profiles/revision2
+@dirrm ${PLONE_BASE}/DCWorkflow/profiles
+@dirrm ${PLONE_BASE}/DCWorkflow/images
+@dirrm ${PLONE_BASE}/DCWorkflow/help
+@dirrm ${PLONE_BASE}/DCWorkflow/dtml
+@dirrm ${PLONE_BASE}/DCWorkflow/doc/examples/staging
+@dirrm ${PLONE_BASE}/DCWorkflow/doc/examples
+@dirrm ${PLONE_BASE}/DCWorkflow/doc
+@dirrm ${PLONE_BASE}/DCWorkflow/browser
+@dirrm ${PLONE_BASE}/DCWorkflow/Extensions
+@dirrm ${PLONE_BASE}/DCWorkflow
+@dirrm ${PLONE_BASE}/CMFUid/www
+@dirrm ${PLONE_BASE}/CMFUid/tests
+@dirrm ${PLONE_BASE}/CMFUid/profiles/default
+@dirrm ${PLONE_BASE}/CMFUid/profiles
+@dirrm ${PLONE_BASE}/CMFUid
+@dirrm ${PLONE_BASE}/CMFTopic/xml
+@dirrm ${PLONE_BASE}/CMFTopic/tests
+@dirrm ${PLONE_BASE}/CMFTopic/skins/zpt_topic
+@dirrm ${PLONE_BASE}/CMFTopic/skins
+@dirrm ${PLONE_BASE}/CMFTopic/profiles/default/types
+@dirrm ${PLONE_BASE}/CMFTopic/profiles/default
+@dirrm ${PLONE_BASE}/CMFTopic/profiles
+@dirrm ${PLONE_BASE}/CMFTopic/interfaces
+@dirrm ${PLONE_BASE}/CMFTopic/help
+@dirrm ${PLONE_BASE}/CMFTopic
+@dirrm ${PLONE_BASE}/CMFTestCase
+@dirrm ${PLONE_BASE}/CMFQuickInstallerTool/tests
+@dirrm ${PLONE_BASE}/CMFQuickInstallerTool/profiles/test
+@dirrm ${PLONE_BASE}/CMFQuickInstallerTool/profiles/default
+@dirrm ${PLONE_BASE}/CMFQuickInstallerTool/profiles
+@dirrm ${PLONE_BASE}/CMFQuickInstallerTool/interfaces
+@dirrm ${PLONE_BASE}/CMFQuickInstallerTool/forms
+@dirrm ${PLONE_BASE}/CMFQuickInstallerTool/Extensions
+@dirrm ${PLONE_BASE}/CMFQuickInstallerTool
+@dirrm ${PLONE_BASE}/CMFPlone/www
+@dirrm ${PLONE_BASE}/CMFPlone/tests/images
+@dirrm ${PLONE_BASE}/CMFPlone/tests
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_wysiwyg
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_templates
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_styles
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_scripts
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_prefs
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_portlets
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_login
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_kss
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_images
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_forms
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_form_scripts
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_ecmascript
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_deprecated
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_content
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_3rdParty/jscalendar
+@dirrm ${PLONE_BASE}/CMFPlone/skins/plone_3rdParty
+@dirrm ${PLONE_BASE}/CMFPlone/skins/cmf_legacy
+@dirrm ${PLONE_BASE}/CMFPlone/skins
+@dirrm ${PLONE_BASE}/CMFPlone/setup
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/testfixture
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/workflows/simple_publication_workflow
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/workflows/plone_workflow
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/workflows/one_state_workflow
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/workflows/intranet_workflow
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/workflows/intranet_folder_workflow
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/workflows/folder_workflow
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/workflows
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/types
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/structure/Members
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default/structure
+@dirrm ${PLONE_BASE}/CMFPlone/profiles/default
+@dirrm ${PLONE_BASE}/CMFPlone/profiles
+@dirrm ${PLONE_BASE}/CMFPlone/patches
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/three03_three04
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/three01_three02
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/rc2_final
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/final_three01
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta3_beta4
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta2_beta3
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles/beta1_beta2
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v3_0/profiles
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v3_0
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v2_5
+@dirrm ${PLONE_BASE}/CMFPlone/migrations/v2_1
+@dirrm ${PLONE_BASE}/CMFPlone/migrations
+@dirrm ${PLONE_BASE}/CMFPlone/interfaces
+@dirrm ${PLONE_BASE}/CMFPlone/exportimport/tests
+@dirrm ${PLONE_BASE}/CMFPlone/exportimport
+@dirrm ${PLONE_BASE}/CMFPlone/docs
+@dirrm ${PLONE_BASE}/CMFPlone/browser/portlets
+@dirrm ${PLONE_BASE}/CMFPlone/browser
+@dirrm ${PLONE_BASE}/CMFPlone/Extensions
+@dirrm ${PLONE_BASE}/CMFPlone
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/www
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/tests
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/skins/CMFPlacefulWorkflow
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/skins
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/patches
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/interfaces
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/images
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/dtml
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/doc
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow/Extensions
+@dirrm ${PLONE_BASE}/CMFPlacefulWorkflow
+@dirrm ${PLONE_BASE}/CMFFormController/www
+@dirrm ${PLONE_BASE}/CMFFormController/tests
+@dirrm ${PLONE_BASE}/CMFFormController/profiles/default
+@dirrm ${PLONE_BASE}/CMFFormController/profiles
+@dirrm ${PLONE_BASE}/CMFFormController/exportimport/xml
+@dirrm ${PLONE_BASE}/CMFFormController/exportimport
+@dirrm ${PLONE_BASE}/CMFFormController/Actions
+@dirrm ${PLONE_BASE}/CMFFormController
+@dirrm ${PLONE_BASE}/CMFEditions/www
+@dirrm ${PLONE_BASE}/CMFEditions/tests/images
+@dirrm ${PLONE_BASE}/CMFEditions/tests/FAQ/skins/faq_public
+@dirrm ${PLONE_BASE}/CMFEditions/tests/FAQ/skins/faq
+@dirrm ${PLONE_BASE}/CMFEditions/tests/FAQ/skins
+@dirrm ${PLONE_BASE}/CMFEditions/tests/FAQ/model
+@dirrm ${PLONE_BASE}/CMFEditions/tests/FAQ/Extensions
+@dirrm ${PLONE_BASE}/CMFEditions/tests/FAQ
+@dirrm ${PLONE_BASE}/CMFEditions/tests
+@dirrm ${PLONE_BASE}/CMFEditions/skins/cmfeditions_views
+@dirrm ${PLONE_BASE}/CMFEditions/skins/CMFEditions
+@dirrm ${PLONE_BASE}/CMFEditions/skins
+@dirrm ${PLONE_BASE}/CMFEditions/profiles/default
+@dirrm ${PLONE_BASE}/CMFEditions/profiles
+@dirrm ${PLONE_BASE}/CMFEditions/interfaces
+@dirrm ${PLONE_BASE}/CMFEditions/exportimport
+@dirrm ${PLONE_BASE}/CMFEditions/doc/presentations
+@dirrm ${PLONE_BASE}/CMFEditions/doc/old
+@dirrm ${PLONE_BASE}/CMFEditions/doc/img
+@dirrm ${PLONE_BASE}/CMFEditions/doc
+@dirrm ${PLONE_BASE}/CMFEditions
+@dirrm ${PLONE_BASE}/CMFDynamicViewFTI/tests
+@dirrm ${PLONE_BASE}/CMFDynamicViewFTI/profiles/sample_types/types
+@dirrm ${PLONE_BASE}/CMFDynamicViewFTI/profiles/sample_types
+@dirrm ${PLONE_BASE}/CMFDynamicViewFTI/profiles
+@dirrm ${PLONE_BASE}/CMFDynamicViewFTI/interface
+@dirrm ${PLONE_BASE}/CMFDynamicViewFTI/images
+@dirrm ${PLONE_BASE}/CMFDynamicViewFTI/browser
+@dirrm ${PLONE_BASE}/CMFDynamicViewFTI
+@dirrm ${PLONE_BASE}/CMFDiffTool/zpt
+@dirrm ${PLONE_BASE}/CMFDiffTool/tests
+@dirrm ${PLONE_BASE}/CMFDiffTool/skins/ChangeSet
+@dirrm ${PLONE_BASE}/CMFDiffTool/skins
+@dirrm ${PLONE_BASE}/CMFDiffTool/profiles/default/types
+@dirrm ${PLONE_BASE}/CMFDiffTool/profiles/default
+@dirrm ${PLONE_BASE}/CMFDiffTool/profiles
+@dirrm ${PLONE_BASE}/CMFDiffTool/libs
+@dirrm ${PLONE_BASE}/CMFDiffTool/interfaces
+@dirrm ${PLONE_BASE}/CMFDiffTool/exportimport
+@dirrm ${PLONE_BASE}/CMFDiffTool
+@dirrm ${PLONE_BASE}/CMFDefault/www
+@dirrm ${PLONE_BASE}/CMFDefault/tests
+@dirrm ${PLONE_BASE}/CMFDefault/skins/zpt_generic
+@dirrm ${PLONE_BASE}/CMFDefault/skins/zpt_control
+@dirrm ${PLONE_BASE}/CMFDefault/skins/zpt_content
+@dirrm ${PLONE_BASE}/CMFDefault/skins/Images
+@dirrm ${PLONE_BASE}/CMFDefault/skins
+@dirrm ${PLONE_BASE}/CMFDefault/skin
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/views_support/types
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/views_support
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/sample_content/structure/subfolder
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/sample_content/structure
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/sample_content
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/default/workflows/default_workflow
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/default/workflows
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/default/types
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/default/skins
+@dirrm ${PLONE_BASE}/CMFDefault/profiles/default
+@dirrm ${PLONE_BASE}/CMFDefault/profiles
+@dirrm ${PLONE_BASE}/CMFDefault/locales
+@dirrm ${PLONE_BASE}/CMFDefault/interfaces
+@dirrm ${PLONE_BASE}/CMFDefault/images
+@dirrm ${PLONE_BASE}/CMFDefault/help
+@dirrm ${PLONE_BASE}/CMFDefault/formlib
+@dirrm ${PLONE_BASE}/CMFDefault/dtml
+@dirrm ${PLONE_BASE}/CMFDefault/browser/templates
+@dirrm ${PLONE_BASE}/CMFDefault/browser
+@dirrm ${PLONE_BASE}/CMFDefault/Extensions
+@dirrm ${PLONE_BASE}/CMFDefault
+@dirrm ${PLONE_BASE}/CMFCore/www
+@dirrm ${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin/test_directory
+@dirrm ${PLONE_BASE}/CMFCore/tests/fake_skins/fake_skin
+@dirrm ${PLONE_BASE}/CMFCore/tests/fake_skins
+@dirrm ${PLONE_BASE}/CMFCore/tests/base
+@dirrm ${PLONE_BASE}/CMFCore/tests
+@dirrm ${PLONE_BASE}/CMFCore/src/five/localsitemanager
+@dirrm ${PLONE_BASE}/CMFCore/src/five
+@dirrm ${PLONE_BASE}/CMFCore/src
+@dirrm ${PLONE_BASE}/CMFCore/interfaces
+@dirrm ${PLONE_BASE}/CMFCore/images
+@dirrm ${PLONE_BASE}/CMFCore/help
+@dirrm ${PLONE_BASE}/CMFCore/exportimport/tests/two
+@dirrm ${PLONE_BASE}/CMFCore/exportimport/tests/three
+@dirrm ${PLONE_BASE}/CMFCore/exportimport/tests/one
+@dirrm ${PLONE_BASE}/CMFCore/exportimport/tests/four
+@dirrm ${PLONE_BASE}/CMFCore/exportimport/tests
+@dirrm ${PLONE_BASE}/CMFCore/exportimport
+@dirrm ${PLONE_BASE}/CMFCore/dtml
+@dirrm ${PLONE_BASE}/CMFCore/browser
+@dirrm ${PLONE_BASE}/CMFCore/Extensions
+@dirrm ${PLONE_BASE}/CMFCore
+@dirrm ${PLONE_BASE}/CMFCalendar/www
+@dirrm ${PLONE_BASE}/CMFCalendar/tests
+@dirrm ${PLONE_BASE}/CMFCalendar/skins/zpt_calendar
+@dirrm ${PLONE_BASE}/CMFCalendar/skins
+@dirrm ${PLONE_BASE}/CMFCalendar/profiles/skins_support/types
+@dirrm ${PLONE_BASE}/CMFCalendar/profiles/skins_support
+@dirrm ${PLONE_BASE}/CMFCalendar/profiles/default/types
+@dirrm ${PLONE_BASE}/CMFCalendar/profiles/default
+@dirrm ${PLONE_BASE}/CMFCalendar/profiles
+@dirrm ${PLONE_BASE}/CMFCalendar/locales
+@dirrm ${PLONE_BASE}/CMFCalendar/interfaces
+@dirrm ${PLONE_BASE}/CMFCalendar/browser/templates
+@dirrm ${PLONE_BASE}/CMFCalendar/browser
+@dirrm ${PLONE_BASE}/CMFCalendar
+@dirrm ${PLONE_BASE}/CMFActionIcons/xml
+@dirrm ${PLONE_BASE}/CMFActionIcons/www
+@dirrm ${PLONE_BASE}/CMFActionIcons/tests
+@dirrm ${PLONE_BASE}/CMFActionIcons/skins/actionicons
+@dirrm ${PLONE_BASE}/CMFActionIcons/skins
+@dirrm ${PLONE_BASE}/CMFActionIcons/profiles/actionicons
+@dirrm ${PLONE_BASE}/CMFActionIcons/profiles
+@dirrm ${PLONE_BASE}/CMFActionIcons/interfaces
+@dirrm ${PLONE_BASE}/CMFActionIcons
+@dirrm ${PLONE_BASE}/Archetypes/www/zmi/icons
+@dirrm ${PLONE_BASE}/Archetypes/www/zmi
+@dirrm ${PLONE_BASE}/Archetypes/www
+@dirrm ${PLONE_BASE}/Archetypes/tests/output
+@dirrm ${PLONE_BASE}/Archetypes/tests/input
+@dirrm ${PLONE_BASE}/Archetypes/tests
+@dirrm ${PLONE_BASE}/Archetypes/skins/archetypes_kss
+@dirrm ${PLONE_BASE}/Archetypes/skins/archetypes/widgets/js
+@dirrm ${PLONE_BASE}/Archetypes/skins/archetypes/widgets
+@dirrm ${PLONE_BASE}/Archetypes/skins/archetypes/archebuilder
+@dirrm ${PLONE_BASE}/Archetypes/skins/archetypes
+@dirrm ${PLONE_BASE}/Archetypes/skins
+@dirrm ${PLONE_BASE}/Archetypes/profiles/sample_types/types
+@dirrm ${PLONE_BASE}/Archetypes/profiles/sample_types
+@dirrm ${PLONE_BASE}/Archetypes/profiles/default
+@dirrm ${PLONE_BASE}/Archetypes/profiles
+@dirrm ${PLONE_BASE}/Archetypes/interfaces
+@dirrm ${PLONE_BASE}/Archetypes/generator
+@dirrm ${PLONE_BASE}/Archetypes/exportimport
+@dirrm ${PLONE_BASE}/Archetypes/examples
+@dirrm ${PLONE_BASE}/Archetypes/docs
+@dirrm ${PLONE_BASE}/Archetypes/debian
+@dirrm ${PLONE_BASE}/Archetypes/browser
+@dirrm ${PLONE_BASE}/Archetypes/Storage
+@dirrm ${PLONE_BASE}/Archetypes/Schema
+@dirrm ${PLONE_BASE}/Archetypes/Extensions
+@dirrm ${PLONE_BASE}/Archetypes
+@dirrm ${PLONE_BASE}/AdvancedQuery/tests
+@dirrm ${PLONE_BASE}/AdvancedQuery/doc
+@dirrm ${PLONE_BASE}/AdvancedQuery
+@dirrm ${PLONE_BASE}/ATReferenceBrowserWidget/skins/ATReferenceBrowserWidget
+@dirrm ${PLONE_BASE}/ATReferenceBrowserWidget/skins
+@dirrm ${PLONE_BASE}/ATReferenceBrowserWidget/Extensions
+@dirrm ${PLONE_BASE}/ATReferenceBrowserWidget
+@dirrm ${PLONE_BASE}/ATContentTypes/z3
+@dirrm ${PLONE_BASE}/ATContentTypes/www
+@comment @dirrm ${PLONE_BASE}/ATContentTypes/utilities
+@dirrm ${PLONE_BASE}/ATContentTypes/tool
+@dirrm ${PLONE_BASE}/ATContentTypes/thirdparty/icalendar-doc
+@dirrm ${PLONE_BASE}/ATContentTypes/thirdparty/icalendar
+@dirrm ${PLONE_BASE}/ATContentTypes/thirdparty
+@dirrm ${PLONE_BASE}/ATContentTypes/tests/input
+@dirrm ${PLONE_BASE}/ATContentTypes/tests
+@dirrm ${PLONE_BASE}/ATContentTypes/skins/ATContentTypes
+@dirrm ${PLONE_BASE}/ATContentTypes/skins
+@dirrm ${PLONE_BASE}/ATContentTypes/migration/v1_2
+@dirrm ${PLONE_BASE}/ATContentTypes/migration
+@dirrm ${PLONE_BASE}/ATContentTypes/lib
+@dirrm ${PLONE_BASE}/ATContentTypes/interface
+@dirrm ${PLONE_BASE}/ATContentTypes/exportimport
+@dirrm ${PLONE_BASE}/ATContentTypes/etc
+@dirrm ${PLONE_BASE}/ATContentTypes/criteria
+@dirrm ${PLONE_BASE}/ATContentTypes/content
+@dirrm ${PLONE_BASE}/ATContentTypes/configuration
+@dirrm ${PLONE_BASE}/ATContentTypes/browser
+@dirrm ${PLONE_BASE}/ATContentTypes/adapters
+@dirrm ${PLONE_BASE}/ATContentTypes
+@dirrm ${PLONE_BASE}
diff --git a/www/plone3/distinfo b/www/plone3/distinfo
new file mode 100644
index 00000000000..9a48b4cb918
--- /dev/null
+++ b/www/plone3/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2007/12/18 15:46:59 taca Exp $
+
+SHA1 (Plone-3.0.4.tar.gz) = 1d46c41c60799f2f5a709e2af53527c9ee463596
+RMD160 (Plone-3.0.4.tar.gz) = fa52b501b38b546a75b9c7a5d68d8546b4ff56cc
+Size (Plone-3.0.4.tar.gz) = 12653500 bytes
+SHA1 (patch-aa) = f4909897e28866bdf74954a02c50d217c3c25f8a
diff --git a/www/plone3/patches/patch-aa b/www/plone3/patches/patch-aa
new file mode 100644
index 00000000000..91de0732b6c
--- /dev/null
+++ b/www/plone3/patches/patch-aa
@@ -0,0 +1,29 @@
+$NetBSD: patch-aa,v 1.1.1.1 2007/12/18 15:47:05 taca Exp $
+
+# Fix close Plone's bug ticket #7492.
+
+--- lib/python/plone/app/vocabularies/workflow.py.orig 2007-12-08 08:43:08.000000000 +0900
++++ lib/python/plone/app/vocabularies/workflow.py
+@@ -5,6 +5,8 @@ from zope.schema.vocabulary import Simpl
+ from zope.i18nmessageid import MessageFactory
+ from zope.i18n import translate
+
++from Acquisition import aq_get
++
+ from Products.CMFCore.utils import getToolByName
+ _ = MessageFactory('plone')
+
+@@ -29,9 +31,12 @@ class WorkflowStatesVocabulary(object):
+
+ def __call__(self, context):
+ context = getattr(context, 'context', context)
++ # XXX This is evil. A vocabulary shouldn't be request specific.
++ # The sorting should go into a separate widget.
++ request = aq_get(context, 'REQUEST', None)
+ wtool = getToolByName(context, 'portal_workflow')
+ items = wtool.listWFStatesByTitle(filter_similar=True)
+- items_dict = dict([(i[1], translate(_(i[0]), context=context)) for i in items])
++ items_dict = dict([(i[1], translate(_(i[0]), context=request)) for i in items])
+ items_list = [(k, v) for k, v in items_dict.items()]
+ items_list.sort(lambda x, y: cmp(x[1], y[1]))
+ terms = [SimpleTerm(k, title=u'%s [%s]' % (v, k)) for k, v in items_list]