From owner-svn-ports-head@FreeBSD.ORG Sat Sep 28 17:44:12 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B65F065C; Sat, 28 Sep 2013 17:44:12 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A2A7328DF; Sat, 28 Sep 2013 17:44:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8SHiCoL049112; Sat, 28 Sep 2013 17:44:12 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8SHiCUH049109; Sat, 28 Sep 2013 17:44:12 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201309281744.r8SHiCUH049109@svn.freebsd.org> From: William Grzybowski Date: Sat, 28 Sep 2013 17:44:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328618 - head/www/zend-framework1 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 17:44:12 -0000 Author: wg Date: Sat Sep 28 17:44:11 2013 New Revision: 328618 URL: http://svnweb.freebsd.org/changeset/ports/328618 Log: www/zend-framework1: allow staging - Allow staging - Remove auto plist target Modified: head/www/zend-framework1/Makefile head/www/zend-framework1/pkg-plist Modified: head/www/zend-framework1/Makefile ============================================================================== --- head/www/zend-framework1/Makefile Sat Sep 28 17:42:10 2013 (r328617) +++ head/www/zend-framework1/Makefile Sat Sep 28 17:44:11 2013 (r328618) @@ -34,7 +34,6 @@ SQLITE_DESC= Enable SQLite v3 PDO suppor REQPHP_DESC= Install required PHP dependencies OPTPHP_DESC= Install optional PHP dependencies -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDOCS} @@ -93,49 +92,21 @@ USE_PHP+= pdo_sqlite .endif do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} "${INSTALL_DIRS}" ${DATADIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DATADIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${DATADIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${DATADIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${DATADIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${DATADIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${DATADIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} - @cd ${WRKSRC}/bin && ${INSTALL_SCRIPT} zf.sh ${PREFIX}/bin/zf - @cd ${WRKSRC}/bin && ${INSTALL_DATA} zf.php ${PREFIX}/bin/zf.php -.if ${PORT_OPTIONS:MEXAMPLES} - @cd ${WRKSRC} && ${COPYTREE_SHARE} "demos tests" ${EXAMPLESDIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${EXAMPLESDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${EXAMPLESDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST} - @${FIND} ${EXAMPLESDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - @${ECHO_CMD} '@exec ${FIND} ${EXAMPLESDIR} -type f -print0 | \ - ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST} - @${FIND} ${EXAMPLESDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @${ECHO_CMD} '@exec ${FIND} ${EXAMPLESDIR} -type d -print0 | \ - ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST} -.endif - -# Maintainer-mode target to speed up fixup of output from genplist -fix-new-plist: - @if [ -f pkg-plist.new ]; then \ - ${PERL} -ni.bak -e \ - 's#^(.*%%DATADIR%%/externals)#%%DOJO%%$$1#g; \ - print;' pkg-plist.new; \ - else \ - ${ECHO_CMD} Please run genplist to create pkg-plist.new; \ - fi + @cd ${WRKSRC} && ${COPYTREE_SHARE} "${INSTALL_DIRS}" ${STAGEDIR}${DATADIR} + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${DATADIR} + @${FIND} ${STAGEDIR}${DATADIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 + @${FIND} ${STAGEDIR}${DATADIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 + @cd ${WRKSRC}/bin && ${INSTALL_SCRIPT} zf.sh ${STAGEDIR}${PREFIX}/bin/zf + @cd ${WRKSRC}/bin && ${INSTALL_DATA} zf.php ${STAGEDIR}${PREFIX}/bin/zf.php + @cd ${WRKSRC} && ${COPYTREE_SHARE} "demos tests" ${STAGEDIR}${EXAMPLESDIR} + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${EXAMPLESDIR} + @${FIND} ${STAGEDIR}${EXAMPLESDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 + @${FIND} ${STAGEDIR}${EXAMPLESDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 post-install: -.if ${PORT_OPTIONS:MDOCS} - @${INSTALL} -d ${DOCSDIR} - @cd ${WRKSRC} && ${COPYTREE_SHARE} "INSTALL.txt README.txt" ${DOCSDIR} - @${INSTALL} -d ${DOCSDIR}/manual + @${MKDIR} ${STAGEDIR}${DOCSDIR}/manual + @cd ${WRKSRC} && ${COPYTREE_SHARE} "INSTALL.txt README.txt" ${STAGEDIR}${DOCSDIR} @cd ${WRKSRC}/documentation/manual/core/en && \ - ${COPYTREE_SHARE} . ${DOCSDIR}/manual -.endif - @${CAT} ${PKGMESSAGE} + ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/manual .include Modified: head/www/zend-framework1/pkg-plist ============================================================================== --- head/www/zend-framework1/pkg-plist Sat Sep 28 17:42:10 2013 (r328617) +++ head/www/zend-framework1/pkg-plist Sat Sep 28 17:44:11 2013 (r328618) @@ -10221,2173 +10221,2139 @@ bin/zf.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/resources/languages/Zend_ValidateTest.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/runalltests.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/runtests.sh -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/resources/languages -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/resources -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/_files/_testDir2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/_files/_testDir1/Class1 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/_files/_testDir1 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/XmlRpc/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/XmlRpc/Server -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/XmlRpc/Request -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/XmlRpc -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Wildfire/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Wildfire -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/_templates -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/_stubs/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/_stubs/HelperDir2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/_stubs/HelperDir1 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/_stubs/FilterDir1 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/_stubs -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/foo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/baz -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/foo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/bar -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/action-foo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/action-bar -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Placeholder -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/mvc/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/mvc/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/mvc -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/helpers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/bc -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View/Helper -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/View -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Validate/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Validate/Sitemap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Validate/File/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Validate/File -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Validate/Db/_files/Db -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Validate/Db/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Validate/Db -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Validate -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Uri/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Uri -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxmltm/en_GB/LC_OTHER -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxmltm/en_GB -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxmltm/de_AT/LC_TEST -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxmltm/de_AT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxmltm -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxliff/en_GB/LC_OTHER -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxliff/en_GB -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxliff/de_AT/LC_TEST -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxliff/de_AT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxliff -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testts/en_GB/LC_OTHER -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testts/en_GB -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testts/de_AT/LC_TEST -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testts/de_AT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtmx/en_GB/LC_OTHER -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtmx/en_GB -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtmx/de_AT/LC_TEST -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtmx/de_AT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtmx -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtbx/en_GB/LC_OTHER -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtbx/en_GB -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtbx/de_AT/LC_TEST -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtbx/de_AT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtbx -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testmo/en_GB/LC_OTHER -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testmo/en_GB -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testmo/de_AT/LC_TEST -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testmo/de_AT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testmo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testini/en_GB/LC_OTHER -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testini/en_GB -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testini/de_AT/LC_TEST -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testini/de_AT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testini -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testcsv/en_GB/LC_OTHER -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testcsv/en_GB -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testcsv/de_AT/LC_TEST -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testcsv/de_AT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testcsv -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testarray/ja -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testarray/en_GB/LC_OTHER -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testarray/en_GB -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testarray/de_AT/LC_TEST -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testarray/de_AT -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testarray -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Translate -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Project/_files/project1 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Project/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Project/Provider -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Project/Context -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Project -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/System -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Metadata -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Loader -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client/Console -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client/Cli -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Action/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Action -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool/Framework -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tool -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Text/Figlet -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Text -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/views/scripts/zend-test-php-unit-foo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/views/scripts/index -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/views/scripts/error -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/plugins -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Operation/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Operation -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Metadata -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Integration/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Integration -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/DataSet -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Constraint -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Test -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/_classes -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/Decorator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tag/Cloud -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Tag -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Stdlib/TestAsset/SignalHandlers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Stdlib/TestAsset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Stdlib -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Soap/schemas -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Soap/_files/fulltests -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Soap/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Soap/Wsdl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Soap/TestAsset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Soap/AutoDiscover -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Soap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Session/Validator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Session/SaveHandler -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Session -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Yahoo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Management/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Management -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Diagnostics -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Credentials -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Twitter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Technorati -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/SqlAzure/Management/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/SqlAzure/Management -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/SqlAzure -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/SlideShare/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/SlideShare -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/ShortUrl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/ReCaptcha -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Rackspace -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Nirvanix/Namespace -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Nirvanix -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/LiveDocx/MailMerge -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/LiveDocx -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Flickr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Ebay/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Ebay -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Delicious -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Amazon/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Sqs -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Amazon/SimpleDb -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Amazon/S3/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Amazon/S3 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Authentication/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Authentication -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service/Amazon -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Service -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Server/Reflection -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Server/Method -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Server -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Serializer/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Serializer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_openXmlDocuments -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Storage/_tempFiles/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Storage/_tempFiles -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Storage/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Storage -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search/Lucene -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Search -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Rest/responses -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Rest -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Reflection/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Reflection/Docblock/Tag -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Reflection/Docblock -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Reflection -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Queue/Stomp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Queue/Message -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Queue/Custom -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Queue/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Queue -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/ProgressBar/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/ProgressBar -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Pdf/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Pdf/Filter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Pdf/Element/String -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Pdf/Element/Object -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Pdf/Element -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Pdf -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Paginator/_files/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Paginator/_files/cachedata -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Paginator/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Paginator/ScrollingStyle -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter/DbTableSelect -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter/DbSelect -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Paginator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/OpenId/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/OpenId/Provider/User -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/OpenId/Provider/Storage/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/OpenId/Provider/Storage -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/OpenId/Provider -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/OpenId/Extension -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/OpenId/Consumer/Storage -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/OpenId/Consumer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/OpenId -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Token -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Signature -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Http -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Oauth -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Navigation/_files/My -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Navigation/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Navigation/Page -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Navigation -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Response -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message/Mpns -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mobile/Push -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mobile -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mime -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Memory/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Memory -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Measure/Viscosity -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Measure/Flow -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Measure/Cooking -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Measure -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Markup/Test/Renderer/Html -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Markup/Test/Renderer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Markup/Test/Parser -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Markup/Test -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Markup -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mail/_files/test.mbox/subfolder -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mail/_files/test.mbox -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mail/_files/test.maildir -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mail/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Mail -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Log/_files/Zfns -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Log/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Log/Writer/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Log/Writer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Log/Formatter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Log/Filter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Log -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Locale -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/_files/Zfns/Foo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/_files/Zfns -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/_files/ZfTest -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/_files/ZendLoaderAutoloader -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/UnusualPrefix -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/TestPrefix -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/TestPlugins -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/Name_Space/Namespaced -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/Name_Space -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/services -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/models -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/forms -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Loader -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Ldap/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Ldap/Node -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Ldap/Ldif -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Ldap/Dn -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Ldap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts/test -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts-basepath/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts-basepath/helpers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts-basepath/filters -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts-basepath -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/views/scripts/zend-layout-functional-test-test -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/views/scripts/zend-layout-functional-test-error -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/layouts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Layout -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Json/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Json/Server/Smd -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Json/Server -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Json -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/InfoCard/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/InfoCard -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/_files/var/cache/mobile -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/_files/var/cache -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/_files/var -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/UserAgent/Features/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/UserAgent/Features -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/UserAgent -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/Device/Browser/Features -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/Device/Browser -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/Device -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/TestAsset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/Header -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/Client/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http/Client -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Http -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/TestUtility -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Photos -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Docs/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Docs -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Books/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Books -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/App -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Analytics/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata/Analytics -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Gdata -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/_files/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/_files/locale -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/_files/decorators -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/_files/config -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/Element/_files/validator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/Element/_files/filter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/Element/_files/TransferAdapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/Element/_files/Captcha -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/Element/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/Element -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form/Decorator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Form -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Filter/_files/_testDir2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Filter/_files/TestNamespace -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Filter/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Filter/Word -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Filter/File -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Filter/Encrypt -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Filter/Compress -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Filter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/File/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/File/Transfer/Adapter/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/File/Transfer/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/File/Transfer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/File/TestAsset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/File -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Renderer/Feed -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Renderer/Entry -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Renderer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Extension/ITunes -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Extension -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Writer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/My/Extension/JungleBooks -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/My/Extension -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/My -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/lastbuilddate/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/lastbuilddate/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/lastbuilddate -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/rdf -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Common -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/title -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/link -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/language -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/id -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/hubs -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/generator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/feedlink -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/description -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/datemodified -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/datecreated -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/copyright -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/category -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/author -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/title/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/title -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/link/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/link -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/language/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/language -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/image/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/image/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/image -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/id/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/id -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/icon/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/icon/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/icon -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/hubs/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/hubs -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/generator/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/generator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/feedlink/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/feedlink -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/description/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/description -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/datemodified/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/datemodified -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/datecreated/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/datecreated -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/copyright/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/copyright -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/author/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/author -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/title -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/enclosure/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/enclosure -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/description -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/wellformedweb -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/thread10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/thread10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/slash10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Common -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/title -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/links -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/link -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/id -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/enclosure -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/description -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/datemodified -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/datecreated -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/content -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/commentlink -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/commentcount -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/category -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/baseurl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/author -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/title/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/title -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/links/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/links -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/link/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/link -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/id/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/id -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/enclosure/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/enclosure -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/description/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/description -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/datemodified/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/datemodified -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/datecreated/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/datecreated -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/content/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/content -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentlink/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentlink -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentcount/plain/thread10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentcount/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentcount/plain/atom10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentcount/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentcount -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain/none -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain/dc11 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain/dc10 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/baseurl/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/baseurl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/author/plain -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/author -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Reader -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/Subscriber/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/Subscriber -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/Model -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/Http -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed/Entry -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Feed -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/EventManager/TestAsset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/EventManager -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dom/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dom/Query -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dom -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dojo/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dojo/View -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/_files/locale -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dojo/Form -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Dojo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/TestUtil -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/cachefiles -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/Rowset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/Row -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/Select -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/Row -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Table -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Statement/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Statement -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Select/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Select -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Profiler/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Profiler -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Testnamespace -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/Mycompany2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/MyCompany1/Db -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/MyCompany1 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Pdo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Db -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Date -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Currency -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Crypt/Rsa/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Crypt/Rsa -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Crypt/Math/BigInteger -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Crypt/Math -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Crypt -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts/view -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts/foo-bar -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts/custom -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/views/helpers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/views/filters -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/views/scripts/admin/index -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/views/scripts/admin -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/views/helpers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/controllers/Admin -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/views/scripts/admin/helper -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/views/scripts/admin -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/views/helpers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/controllers/Admin -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/baz-bat/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/baz-bat -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/scripts/test -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/scripts/index -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/helpers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/filters -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/Helpers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files/Admin -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/Router/Route -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/Router -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/Response -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/Request -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/Plugin -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/Dispatcher -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/Action/HelperBroker -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller/Action -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Controller -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Console -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Config/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Config/Writer/temp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Config/Writer/files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Config/Writer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Config -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/Property -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/Docblock/Tag -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/Docblock -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/CodeGenerator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/_files/data -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/_files/config -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/_files/config -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/DocumentService/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud/DocumentService -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cloud -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Captcha -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Cache -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Barcode/Renderer/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Barcode/Renderer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_fonts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Barcode/Object -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Barcode -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/OpenId/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/OpenId -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Ldap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/Resolver -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Digest/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Digest -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/DbTable/BasicSqliteTest -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/DbTable -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth/Adapter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Auth -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/resources -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/more_modules/foobaz/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/more_modules/foobaz -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/more_modules/bat/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/more_modules/bat -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/more_modules -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/zfappbootstrap/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/zfappbootstrap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/foo/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/foo-bar -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/foo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/default -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/baz/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/baz -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/bar/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/bar -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files/modules -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/Resource/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/Resource/TestAsset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/Resource -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/Module -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application/Bootstrap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Application -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/_files/zf-6130/services -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/_files/zf-6130 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/_files/services/My -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/_files/services -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Value -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Util -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Response -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Resources -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Request -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Adobe/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Adobe/TestAsset -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf/Adobe -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Amf -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/AllTests/StreamWrapper -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/AllTests -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Acl/_files/UseCase1 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Acl/_files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend/Acl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests/Zend -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/public/Boot/Zend-Log-Writer-Firebug -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/public/Boot/Zend-Db-Profiler-Firebug -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/public/Boot -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/public -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-wildfire-plugin-firephp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-log-writer-firebug -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-db-profiler-firebug -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/index -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/error -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/Boot/Zend-Log-Writer-Firebug -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/Boot/Zend-Db-Profiler-Firebug -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/Boot -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire/application -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Wildfire -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/WebServices/Yahoo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/WebServices/Protocols -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/WebServices/Flickr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/WebServices/Amazon -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/WebServices -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/templates -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/telephone-bill -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-formats/cache -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-formats -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-fonts/cache -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-fonts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/pdf-security -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/metafiles -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/license-agreement -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/images -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/convert -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/constructors -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/conference-pass -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/bitmaps -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Service -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Search/Lucene/feed-search -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Search/Lucene -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Search -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/ProgressBar -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Pdf -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId/templates -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/html -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/views/scripts/index -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/views/scripts/error *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***