Index: UPDATING =================================================================== --- UPDATING (revision 321118) +++ UPDATING (working copy) @@ -5,6 +5,19 @@ You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20130618: + AFFECTS: users of www/zend-framework + AUTHOR: wg@FreeBSD.org + + zend-framework has been updated to 2.2.1 and old 1.12.0 has been copied + to www/zend-framework1. If you wish to stay with the older version run: + + # portmaster -o www/zend-framework1 www/zend-framework + or + # portupgrade -fo www/zend-framework1 www/zend-framework + or + # pkg set -o www/zend-framework:www/zend-framework1 + 20130614: AFFECTS: users who set port options in make.conf AUTHOR: tijl@FreeBSD.org Index: www/Makefile =================================================================== --- www/Makefile (revision 321118) +++ www/Makefile (working copy) @@ -2193,6 +2193,7 @@ SUBDIR += yuicompressor SUBDIR += zen-cart SUBDIR += zend-framework + SUBDIR += zend-framework1 SUBDIR += zenphoto SUBDIR += zerowait-httpd SUBDIR += zope213 Index: www/zend-framework/Makefile =================================================================== --- www/zend-framework/Makefile (revision 321118) +++ www/zend-framework/Makefile (working copy) @@ -1,29 +1,27 @@ -# New ports collection makefile for: zend-framework -# Date created: 31 October 2006 -# Whom: Greg Larkin -# +# Created by: Greg Larkin # $FreeBSD$ -# PORTNAME= ZendFramework -PORTVERSION= 1.12.0 -PORTREVISION= 1 +PORTVERSION= 2.2.1 CATEGORIES= www MASTER_SITES= http://packages.zendframework.com/releases/${DISTNAME}/ +EXTRACT_SUFX= .tgz MAINTAINER= glarkin@FreeBSD.org -COMMENT= A framework for developing PHP web applications +COMMENT= Framework for developing PHP web applications +LICENSE= BSD + +CONFLICTS= ZendFramework-1.* + NO_BUILD= yes USE_PHP= spl WANT_PHP_WEB= yes USES= gettext -LICENSE= BSD - SUB_FILES= pkg-message -OPTIONS_DEFINE= DOCS EXAMPLES MYSQL MYSQLI DBLIB PGSQL ODBC SQLITE REQPHP OPTPHP +OPTIONS_DEFINE= DOCS MYSQL MYSQLI DBLIB PGSQL ODBC SQLITE REQPHP OPTPHP OPTIONS_DEFAULT=REQPHP MYSQL_DESC= Enable MySQL PDO support @@ -35,27 +33,15 @@ REQPHP_DESC= Install required PHP dependencies OPTPHP_DESC= Install optional PHP dependencies +PORTDOCS= CHANGELOG.md INSTALL.md README-GIT.md CONTRIBUTING.md README.md + .include -.if ${PORT_OPTIONS:MDOCS} -DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}-${PORTVERSION}-manual-en${EXTRACT_SUFX} -.endif - -INSTALL_DIRS= library extras/library externals/dojo/dijit \ - externals/dojo/dojo externals/dojo/dojox \ - externals/dojo/util - # Add all of the required and/or optional PHP extension dependencies, # if chosen by the user. -# -# See http://framework.zend.com/manual/1.12/en/requirements.introduction.html -# for a table of what PHP extensions are required for what ZF classes. - .if ${PORT_OPTIONS:MREQPHP} USE_PHP+= apc ctype curl dom gd hash iconv mbstring ldap mcrypt \ - pcre pdo session simplexml soap \ - wddx xml zlib + pcre pdo session simplexml soap wddx xml zlib .if ${PHP_VER} == 52 USE_PHP+= sqlite .else @@ -93,48 +79,12 @@ .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 + cd ${WRKSRC} && ${COPYTREE_SHARE} "library bin resources" ${DATADIR} -# 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 - post-install: .if ${PORT_OPTIONS:MDOCS} - @${INSTALL} -d ${DOCSDIR} - @cd ${WRKSRC} && ${COPYTREE_SHARE} "INSTALL.txt README.txt" ${DOCSDIR} - @${INSTALL} -d ${DOCSDIR}/manual - @cd ${WRKSRC}/documentation/manual/core/en && \ - ${COPYTREE_SHARE} . ${DOCSDIR}/manual + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ .endif @${CAT} ${PKGMESSAGE} Index: www/zend-framework/distinfo =================================================================== --- www/zend-framework/distinfo (revision 321118) +++ www/zend-framework/distinfo (working copy) @@ -1,4 +1,4 @@ -SHA256 (ZendFramework-1.12.0.tar.gz) = 99876e3b00fdac4b6a1407119c1691043becaba090dc01d37a49bf6e208f92e0 -SIZE (ZendFramework-1.12.0.tar.gz) = 25258326 -SHA256 (ZendFramework-1.12.0-manual-en.tar.gz) = 495a4ce01bc255e14c7c50e66d4ad2c48229793797d9b0ca5efb493ba5de3c06 -SIZE (ZendFramework-1.12.0-manual-en.tar.gz) = 3488381 +SHA256 (ZendFramework-2.2.1.tgz) = aa11363ac4627e6577f9946acf643734b2423270af588bcb0d6cb596477d680e +SIZE (ZendFramework-2.2.1.tgz) = 1511466 +SHA256 (ZendFramework-2.2.1-manual-en.tgz) = 0f6ff595065bf285e12c9ed89566043fe1508a049714dc85a570ce4b9316a07c +SIZE (ZendFramework-2.2.1-manual-en.tgz) = 5514983 Index: www/zend-framework/files/pkg-message.in =================================================================== --- www/zend-framework/files/pkg-message.in (revision 321118) +++ www/zend-framework/files/pkg-message.in (working copy) @@ -8,21 +8,6 @@ into `%%LOCALBASE%%/etc/php.ini'. -Zend Framework includes the Zend_Tool class and wrapper script -for automating many common framework-related tasks. To use the -zf wrapper script, set the following environment variable: - -Bourne shell: - export ZEND_TOOL_INCLUDE_PATH_PREPEND= \ - %%DATADIR%%/library - -C-shell: - setenv ZEND_TOOL_INCLUDE_PATH_PREPEND \ - %%DATADIR%%/library - -Documentation for the Zend_Tool class is found at: -http://framework.zend.com/manual/1.12/en/zend.tool.framework.introduction.html - For more general information about the Zend Framework, please visit: http://framework.zend.com/ *************************************************************** Index: www/zend-framework/pkg-plist =================================================================== --- www/zend-framework/pkg-plist (revision 321118) +++ www/zend-framework/pkg-plist (working copy) @@ -1,3045 +1,55 @@ -bin/zf -bin/zf.php -%%DATADIR%%/externals/dojo/dijit/Calendar.js -%%DATADIR%%/externals/dojo/dijit/CheckedMenuItem.js -%%DATADIR%%/externals/dojo/dijit/ColorPalette.js -%%DATADIR%%/externals/dojo/dijit/Declaration.js -%%DATADIR%%/externals/dojo/dijit/Dialog.js -%%DATADIR%%/externals/dojo/dijit/DialogUnderlay.js -%%DATADIR%%/externals/dojo/dijit/Editor.js -%%DATADIR%%/externals/dojo/dijit/InlineEditBox.js -%%DATADIR%%/externals/dojo/dijit/LICENSE -%%DATADIR%%/externals/dojo/dijit/Menu.js -%%DATADIR%%/externals/dojo/dijit/MenuBar.js -%%DATADIR%%/externals/dojo/dijit/MenuBarItem.js -%%DATADIR%%/externals/dojo/dijit/MenuItem.js -%%DATADIR%%/externals/dojo/dijit/MenuSeparator.js -%%DATADIR%%/externals/dojo/dijit/PopupMenuBarItem.js -%%DATADIR%%/externals/dojo/dijit/PopupMenuItem.js -%%DATADIR%%/externals/dojo/dijit/ProgressBar.js -%%DATADIR%%/externals/dojo/dijit/TitlePane.js -%%DATADIR%%/externals/dojo/dijit/Toolbar.js -%%DATADIR%%/externals/dojo/dijit/ToolbarSeparator.js -%%DATADIR%%/externals/dojo/dijit/Tooltip.js -%%DATADIR%%/externals/dojo/dijit/TooltipDialog.js -%%DATADIR%%/externals/dojo/dijit/Tree.js -%%DATADIR%%/externals/dojo/dijit/_Calendar.js -%%DATADIR%%/externals/dojo/dijit/_Contained.js -%%DATADIR%%/externals/dojo/dijit/_Container.js -%%DATADIR%%/externals/dojo/dijit/_CssStateMixin.js -%%DATADIR%%/externals/dojo/dijit/_DialogMixin.js -%%DATADIR%%/externals/dojo/dijit/_HasDropDown.js -%%DATADIR%%/externals/dojo/dijit/_KeyNavContainer.js -%%DATADIR%%/externals/dojo/dijit/_PaletteMixin.js -%%DATADIR%%/externals/dojo/dijit/_Templated.js -%%DATADIR%%/externals/dojo/dijit/_TimePicker.js -%%DATADIR%%/externals/dojo/dijit/_Widget.js -%%DATADIR%%/externals/dojo/dijit/_base.js -%%DATADIR%%/externals/dojo/dijit/_base/focus.js -%%DATADIR%%/externals/dojo/dijit/_base/manager.js -%%DATADIR%%/externals/dojo/dijit/_base/place.js -%%DATADIR%%/externals/dojo/dijit/_base/popup.js -%%DATADIR%%/externals/dojo/dijit/_base/scroll.js -%%DATADIR%%/externals/dojo/dijit/_base/sniff.js -%%DATADIR%%/externals/dojo/dijit/_base/typematic.js -%%DATADIR%%/externals/dojo/dijit/_base/wai.js -%%DATADIR%%/externals/dojo/dijit/_base/window.js -%%DATADIR%%/externals/dojo/dijit/_editor/RichText.js -%%DATADIR%%/externals/dojo/dijit/_editor/_Plugin.js -%%DATADIR%%/externals/dojo/dijit/_editor/html.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ar/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ar/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ar/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ca/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ca/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ca/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/cs/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/cs/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/cs/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/da/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/da/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/da/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/de/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/de/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/de/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/el/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/el/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/el/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/es/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/es/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/es/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/fi/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/fi/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/fi/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/fr/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/fr/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/fr/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/he/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/he/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/he/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/hu/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/hu/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/hu/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/it/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/it/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/it/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ja/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ja/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ja/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/kk/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/kk/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/kk/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ko/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ko/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ko/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/nb/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/nb/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/nb/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/nl/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/nl/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/nl/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/pl/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/pl/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/pl/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/pt-pt/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/pt-pt/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/pt-pt/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/pt/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/pt/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/pt/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ro/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ro/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ro/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ru/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ru/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/ru/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/sk/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/sk/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/sk/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/sl/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/sl/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/sl/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/sv/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/sv/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/sv/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/th/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/th/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/th/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/tr/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/tr/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/tr/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/zh-tw/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/zh-tw/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/zh-tw/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/zh/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/zh/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/nls/zh/commands.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/AlwaysShowToolbar.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/EnterKeyHandling.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/FontChoice.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/FullScreen.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/LinkDialog.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/NewPage.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/Print.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/TabIndent.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/TextColor.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/ToggleDir.js -%%DATADIR%%/externals/dojo/dijit/_editor/plugins/ViewSource.js -%%DATADIR%%/externals/dojo/dijit/_editor/range.js -%%DATADIR%%/externals/dojo/dijit/_editor/selection.js -%%DATADIR%%/externals/dojo/dijit/_tree/dndSource.js -%%DATADIR%%/externals/dojo/dijit/dijit-all.js -%%DATADIR%%/externals/dojo/dijit/dijit.js -%%DATADIR%%/externals/dojo/dijit/form/Button.js -%%DATADIR%%/externals/dojo/dijit/form/CheckBox.js -%%DATADIR%%/externals/dojo/dijit/form/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/ComboButton.js -%%DATADIR%%/externals/dojo/dijit/form/CurrencyTextBox.js -%%DATADIR%%/externals/dojo/dijit/form/DateTextBox.js -%%DATADIR%%/externals/dojo/dijit/form/DropDownButton.js -%%DATADIR%%/externals/dojo/dijit/form/FilteringSelect.js -%%DATADIR%%/externals/dojo/dijit/form/Form.js -%%DATADIR%%/externals/dojo/dijit/form/HorizontalRule.js -%%DATADIR%%/externals/dojo/dijit/form/HorizontalRuleLabels.js -%%DATADIR%%/externals/dojo/dijit/form/HorizontalSlider.js -%%DATADIR%%/externals/dojo/dijit/form/MappedTextBox.js -%%DATADIR%%/externals/dojo/dijit/form/MultiSelect.js -%%DATADIR%%/externals/dojo/dijit/form/NumberSpinner.js -%%DATADIR%%/externals/dojo/dijit/form/NumberTextBox.js -%%DATADIR%%/externals/dojo/dijit/form/RadioButton.js -%%DATADIR%%/externals/dojo/dijit/form/RangeBoundTextBox.js -%%DATADIR%%/externals/dojo/dijit/form/Select.js -%%DATADIR%%/externals/dojo/dijit/form/SimpleTextarea.js -%%DATADIR%%/externals/dojo/dijit/form/Slider.js -%%DATADIR%%/externals/dojo/dijit/form/TextBox.js -%%DATADIR%%/externals/dojo/dijit/form/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/TimeTextBox.js -%%DATADIR%%/externals/dojo/dijit/form/ToggleButton.js -%%DATADIR%%/externals/dojo/dijit/form/ValidationTextBox.js -%%DATADIR%%/externals/dojo/dijit/form/VerticalRule.js -%%DATADIR%%/externals/dojo/dijit/form/VerticalRuleLabels.js -%%DATADIR%%/externals/dojo/dijit/form/VerticalSlider.js -%%DATADIR%%/externals/dojo/dijit/form/_DateTimeTextBox.js -%%DATADIR%%/externals/dojo/dijit/form/_FormMixin.js -%%DATADIR%%/externals/dojo/dijit/form/_FormSelectWidget.js -%%DATADIR%%/externals/dojo/dijit/form/_FormWidget.js -%%DATADIR%%/externals/dojo/dijit/form/_Spinner.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ar/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ar/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ar/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ca/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ca/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ca/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/cs/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/cs/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/cs/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/da/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/da/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/da/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/de/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/de/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/de/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/el/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/el/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/el/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/es/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/es/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/es/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/fi/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/fi/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/fi/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/fr/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/fr/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/fr/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/he/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/he/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/he/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/hu/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/hu/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/hu/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/it/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/it/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/it/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ja/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ja/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ja/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/kk/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/kk/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/kk/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ko/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ko/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ko/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/nb/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/nb/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/nb/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/nl/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/nl/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/nl/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/pl/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/pl/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/pl/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/pt-pt/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/pt-pt/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/pt-pt/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/pt/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/pt/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/pt/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ro/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ro/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ro/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ru/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ru/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/ru/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/sk/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/sk/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/sk/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/sl/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/sl/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/sl/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/sv/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/sv/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/sv/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/th/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/th/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/th/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/tr/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/tr/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/tr/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/zh-tw/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/zh-tw/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/zh-tw/validate.js -%%DATADIR%%/externals/dojo/dijit/form/nls/zh/ComboBox.js -%%DATADIR%%/externals/dojo/dijit/form/nls/zh/Textarea.js -%%DATADIR%%/externals/dojo/dijit/form/nls/zh/validate.js -%%DATADIR%%/externals/dojo/dijit/form/templates/Button.html -%%DATADIR%%/externals/dojo/dijit/form/templates/CheckBox.html -%%DATADIR%%/externals/dojo/dijit/form/templates/ComboBox.html -%%DATADIR%%/externals/dojo/dijit/form/templates/ComboButton.html -%%DATADIR%%/externals/dojo/dijit/form/templates/DropDownButton.html -%%DATADIR%%/externals/dojo/dijit/form/templates/HorizontalSlider.html -%%DATADIR%%/externals/dojo/dijit/form/templates/Select.html -%%DATADIR%%/externals/dojo/dijit/form/templates/Spinner.html -%%DATADIR%%/externals/dojo/dijit/form/templates/TextBox.html -%%DATADIR%%/externals/dojo/dijit/form/templates/ValidationTextBox.html -%%DATADIR%%/externals/dojo/dijit/form/templates/VerticalSlider.html -%%DATADIR%%/externals/dojo/dijit/icons/commonIcons.css -%%DATADIR%%/externals/dojo/dijit/icons/commonIcons_rtl.css -%%DATADIR%%/externals/dojo/dijit/icons/editorIcons.css -%%DATADIR%%/externals/dojo/dijit/icons/editorIcons_rtl.css -%%DATADIR%%/externals/dojo/dijit/icons/images/commonIconsObjActDisabled.png -%%DATADIR%%/externals/dojo/dijit/icons/images/commonIconsObjActDisabled_rtl.png -%%DATADIR%%/externals/dojo/dijit/icons/images/commonIconsObjActEnabled.png -%%DATADIR%%/externals/dojo/dijit/icons/images/commonIconsObjActEnabled8bit.png -%%DATADIR%%/externals/dojo/dijit/icons/images/commonIconsObjActEnabled8bit_rtl.png -%%DATADIR%%/externals/dojo/dijit/icons/images/commonIconsObjActEnabled_rtl.png -%%DATADIR%%/externals/dojo/dijit/icons/images/editorIconsDisabled.png -%%DATADIR%%/externals/dojo/dijit/icons/images/editorIconsDisabled_rtl.png -%%DATADIR%%/externals/dojo/dijit/icons/images/editorIconsEnabled.png -%%DATADIR%%/externals/dojo/dijit/icons/images/editorIconsEnabled_rtl.png -%%DATADIR%%/externals/dojo/dijit/icons/images/loadingAnimation_rtl.gif -%%DATADIR%%/externals/dojo/dijit/layout/AccordionContainer.js -%%DATADIR%%/externals/dojo/dijit/layout/AccordionPane.js -%%DATADIR%%/externals/dojo/dijit/layout/BorderContainer.js -%%DATADIR%%/externals/dojo/dijit/layout/ContentPane.js -%%DATADIR%%/externals/dojo/dijit/layout/LayoutContainer.js -%%DATADIR%%/externals/dojo/dijit/layout/LinkPane.js -%%DATADIR%%/externals/dojo/dijit/layout/ScrollingTabController.js -%%DATADIR%%/externals/dojo/dijit/layout/SplitContainer.js -%%DATADIR%%/externals/dojo/dijit/layout/StackContainer.js -%%DATADIR%%/externals/dojo/dijit/layout/StackController.js -%%DATADIR%%/externals/dojo/dijit/layout/TabContainer.js -%%DATADIR%%/externals/dojo/dijit/layout/TabController.js -%%DATADIR%%/externals/dojo/dijit/layout/_LayoutWidget.js -%%DATADIR%%/externals/dojo/dijit/layout/_TabContainerBase.js -%%DATADIR%%/externals/dojo/dijit/layout/templates/AccordionButton.html -%%DATADIR%%/externals/dojo/dijit/layout/templates/ScrollingTabController.html -%%DATADIR%%/externals/dojo/dijit/layout/templates/TabContainer.html -%%DATADIR%%/externals/dojo/dijit/layout/templates/_ScrollingTabControllerButton.html -%%DATADIR%%/externals/dojo/dijit/layout/templates/_TabButton.html -%%DATADIR%%/externals/dojo/dijit/nls/ar/common.js -%%DATADIR%%/externals/dojo/dijit/nls/ar/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/ca/common.js -%%DATADIR%%/externals/dojo/dijit/nls/ca/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/common.js -%%DATADIR%%/externals/dojo/dijit/nls/cs/common.js -%%DATADIR%%/externals/dojo/dijit/nls/cs/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/da/common.js -%%DATADIR%%/externals/dojo/dijit/nls/da/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/de/common.js -%%DATADIR%%/externals/dojo/dijit/nls/de/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/el/common.js -%%DATADIR%%/externals/dojo/dijit/nls/el/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/es/common.js -%%DATADIR%%/externals/dojo/dijit/nls/es/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/fi/common.js -%%DATADIR%%/externals/dojo/dijit/nls/fi/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/fr/common.js -%%DATADIR%%/externals/dojo/dijit/nls/fr/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/he/common.js -%%DATADIR%%/externals/dojo/dijit/nls/he/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/hu/common.js -%%DATADIR%%/externals/dojo/dijit/nls/hu/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/it/common.js -%%DATADIR%%/externals/dojo/dijit/nls/it/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/ja/common.js -%%DATADIR%%/externals/dojo/dijit/nls/ja/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/kk/common.js -%%DATADIR%%/externals/dojo/dijit/nls/kk/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/ko/common.js -%%DATADIR%%/externals/dojo/dijit/nls/ko/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/nb/common.js -%%DATADIR%%/externals/dojo/dijit/nls/nb/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/nl/common.js -%%DATADIR%%/externals/dojo/dijit/nls/nl/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/pl/common.js -%%DATADIR%%/externals/dojo/dijit/nls/pl/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/pt-pt/common.js -%%DATADIR%%/externals/dojo/dijit/nls/pt-pt/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/pt/common.js -%%DATADIR%%/externals/dojo/dijit/nls/pt/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/ro/common.js -%%DATADIR%%/externals/dojo/dijit/nls/ro/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/ru/common.js -%%DATADIR%%/externals/dojo/dijit/nls/ru/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/sk/common.js -%%DATADIR%%/externals/dojo/dijit/nls/sk/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/sl/common.js -%%DATADIR%%/externals/dojo/dijit/nls/sl/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/sv/common.js -%%DATADIR%%/externals/dojo/dijit/nls/sv/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/th/common.js -%%DATADIR%%/externals/dojo/dijit/nls/th/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/tr/common.js -%%DATADIR%%/externals/dojo/dijit/nls/tr/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/zh-tw/common.js -%%DATADIR%%/externals/dojo/dijit/nls/zh-tw/loading.js -%%DATADIR%%/externals/dojo/dijit/nls/zh/common.js -%%DATADIR%%/externals/dojo/dijit/nls/zh/loading.js -%%DATADIR%%/externals/dojo/dijit/resources/_modules.js -%%DATADIR%%/externals/dojo/dijit/robot.js -%%DATADIR%%/externals/dojo/dijit/robotx.js -%%DATADIR%%/externals/dojo/dijit/templates/Calendar.html -%%DATADIR%%/externals/dojo/dijit/templates/CheckedMenuItem.html -%%DATADIR%%/externals/dojo/dijit/templates/ColorPalette.html -%%DATADIR%%/externals/dojo/dijit/templates/Dialog.html -%%DATADIR%%/externals/dojo/dijit/templates/InlineEditBox.html -%%DATADIR%%/externals/dojo/dijit/templates/Menu.html -%%DATADIR%%/externals/dojo/dijit/templates/MenuBar.html -%%DATADIR%%/externals/dojo/dijit/templates/MenuBarItem.html -%%DATADIR%%/externals/dojo/dijit/templates/MenuItem.html -%%DATADIR%%/externals/dojo/dijit/templates/MenuSeparator.html -%%DATADIR%%/externals/dojo/dijit/templates/ProgressBar.html -%%DATADIR%%/externals/dojo/dijit/templates/TimePicker.html -%%DATADIR%%/externals/dojo/dijit/templates/TitlePane.html -%%DATADIR%%/externals/dojo/dijit/templates/Tooltip.html -%%DATADIR%%/externals/dojo/dijit/templates/TooltipDialog.html -%%DATADIR%%/externals/dojo/dijit/templates/Tree.html -%%DATADIR%%/externals/dojo/dijit/templates/TreeNode.html -%%DATADIR%%/externals/dojo/dijit/tests/_data/countries.json -%%DATADIR%%/externals/dojo/dijit/tests/_testCommon.js -%%DATADIR%%/externals/dojo/dijit/themes/a11y/README.txt -%%DATADIR%%/externals/dojo/dijit/themes/a11y/colors3x4-rtl.png -%%DATADIR%%/externals/dojo/dijit/themes/a11y/colors3x4.png -%%DATADIR%%/externals/dojo/dijit/themes/a11y/colors7x10-rtl.png -%%DATADIR%%/externals/dojo/dijit/themes/a11y/colors7x10.png -%%DATADIR%%/externals/dojo/dijit/themes/a11y/indeterminate_progress.gif -%%DATADIR%%/externals/dojo/dijit/themes/claro/Calendar.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Calendar_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/ColorPalette.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Common.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Dialog.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Dialog_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Editor.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Editor_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/InlineEditBox.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Menu.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Menu_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/ProgressBar.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/TimePicker.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/TimePicker_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/TitlePane.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/TitlePane_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Toolbar.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/Tree.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/claro.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/claro_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/document.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/Button.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/Button_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/Checkbox.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/Common.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/Common_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/NumberSpinner.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/RadioButton.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/Select.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/Select_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/Slider.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/Slider_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/button.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/buttonArrows.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/button_grad_d.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/checkboxAndRadioButtons_IE6.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/checkboxRadioButtonStates.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/commonFormArrows.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/error.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/formHighlight.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/shadow.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/sliderHorizontal.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/sliderThumbs.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/sliderVertical.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/form/images/textBox_back.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/calendarArrows.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/calendarArrows8bit.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/calendarContainerImages.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/checkmarkNoBorder.gif -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/checkmarkNoBorder.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/commonHighlight.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/dialogCloseIcon.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/dialogCloseIcon8bit.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/dnd.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/loading.gif -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/loadingAnimation.gif -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/menuHighlight.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/progressBarAnim.gif -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/progressBarEmpty.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/progressBarFull.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/spriteArrows.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/titlebar.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/tooltip.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/tooltip8bit.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/tooltipGradient.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/treeExpandImages.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/treeExpandImages8bit.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/images/treeExpand_loading.gif -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/AccordionContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/BorderContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/ContentPane.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/TabContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/TabContainer_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images/accordion.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images/splitterHorizontalHover.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images/splitterVerticalHover.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images/tabBottom.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images/tabClose.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images/tabLeft.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images/tabNested.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images/tabRight.png -%%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images/tabTop.png -%%DATADIR%%/externals/dojo/dijit/themes/dijit.css -%%DATADIR%%/externals/dojo/dijit/themes/dijit_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Calendar.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Calendar_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/ColorPalette.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Common.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Dialog.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Dialog_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Editor.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Editor_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Menu.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Menu_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/ProgressBar.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/TimePicker.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/TimePicker_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/TitlePane.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/TitlePane_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Toolbar.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Tree.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/Tree_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/form/Button.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/form/Button_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/form/Checkbox.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/form/Common.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/form/RadioButton.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/form/Select.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/form/Slider.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/form/Slider_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/form/TimeTextBox.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/accordionItemActive.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/buttonActive.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/buttonDisabled.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/buttonEnabled.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/buttonHover.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/dndCopy.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/dndMove.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/dndNoCopy.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/dndNoMove.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/no.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/preciseSliderThumb.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/preciseSliderThumb.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/preciseSliderThumbFocus.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/preciseSliderThumbFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/progressBarAnim.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/progressBarEmpty.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/progressBarFull.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderEmpty.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderEmptyVertical.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderFull.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderFullFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderFullVertical.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderFullVerticalFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderThumb.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderThumb.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderThumbFocus.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/sliderThumbFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/splitContainerSizerH-thumb.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/splitContainerSizerH.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/splitContainerSizerV-thumb.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/splitContainerSizerV.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteArrows.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteArrows.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteCheckbox.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteCheckbox.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteDivIcons.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteDivIcons.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteRadio.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteRadio.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteRoundedIconsSmall.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteRoundedIconsSmall.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteTree.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteTree.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteTree_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/spriteTree_rtl.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabBottomActiveC.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabBottomActiveSpriteLR.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabBottomEnabledC.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabBottomEnabledSpriteLR.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabBottomHoverC.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabBottomHoverSpriteLR.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabContainerSprite.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabLeftChecked.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabRightChecked.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabStripe.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabStripeBottom.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabStripeLeft.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tabStripeRight.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/titleBar.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/titleBarActive.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tooltipConnectorDown.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tooltipConnectorDown.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tooltipConnectorLeft.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tooltipConnectorLeft.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tooltipConnectorRight.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tooltipConnectorRight.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tooltipConnectorUp.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/tooltipConnectorUp.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/treeExpand_loading.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/treeHover.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/treeI.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/treeI_half.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/treeI_half_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/treeI_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/validationInputBg.gif -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/validationInputBg.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/images/warning.png -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/layout/AccordionContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/layout/AccordionContainer_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/layout/BorderContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/layout/ContentPane.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/layout/SplitContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/layout/TabContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/layout/TabContainer_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/nihilo.css -%%DATADIR%%/externals/dojo/dijit/themes/nihilo/nihilo_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Calendar.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Calendar_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/ColorPalette.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Common.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Dialog.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Dialog_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Editor.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Editor_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Menu.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Menu_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/ProgressBar.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/TimePicker.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/TimePicker_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/TitlePane.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/TitlePane_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Toolbar.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Tree.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/Tree_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/form/Button.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/form/Button_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/form/Checkbox.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/form/Common.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/form/RadioButton.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/form/Select.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/form/Slider.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/form/Slider_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/form/TimeTextBox.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/accordionItemActive.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/accordionItemActive.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/buttonActive.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/buttonDisabled.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/buttonEnabled.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/buttonHover.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/dndCopy.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/dndMove.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/dndNoCopy.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/dndNoMove.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/preciseSliderThumb.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/preciseSliderThumb.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/preciseSliderThumbFocus.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/preciseSliderThumbFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/progressBarAnim.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/progressBarEmpty.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/progressBarFull.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderEmpty.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderEmptyVertical.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderFull.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderFullFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderFullVertical.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderFullVerticalFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderThumb.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderThumb.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderThumbFocus.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/sliderThumbFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/splitContainerSizerH-thumb.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/splitContainerSizerH.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/splitContainerSizerV-thumb.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/splitContainerSizerV.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteArrows.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteArrows.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteCheckbox.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteCheckbox.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteDivIcons.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteDivIcons.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteRadio.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteRadio.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteRoundedIconsSmall.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteRoundedIconsSmall.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteRoundedIconsSmallBl.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteRoundedIconsSmallBl.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteTree.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteTree.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteTree_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/spriteTree_rtl.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabBottomActiveC.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabBottomActiveSpriteLR.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabBottomEnabledC.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabBottomEnabledSpriteLR.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabBottomHoverC.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabBottomHoverSpriteLR.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabContainerSprite.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabLeftChecked.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabRightChecked.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabStripe.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabStripeBottom.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabStripeLeft.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tabStripeRight.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/titleBar.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/titleBarActive.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tooltipConnectorDown.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tooltipConnectorDown.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tooltipConnectorLeft.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tooltipConnectorLeft.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tooltipConnectorRight.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tooltipConnectorRight.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tooltipConnectorUp.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/tooltipConnectorUp.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/treeExpand_loading.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/treeHover.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/treeI.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/treeI_half.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/treeI_half_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/treeI_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/validationInputBg.gif -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/validationInputBg.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/images/warning.png -%%DATADIR%%/externals/dojo/dijit/themes/soria/layout/AccordionContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/layout/AccordionContainer_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/layout/BorderContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/layout/ContentPane.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/layout/SplitContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/layout/TabContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/layout/TabContainer_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/soria.css -%%DATADIR%%/externals/dojo/dijit/themes/soria/soria_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/themeTester.html -%%DATADIR%%/externals/dojo/dijit/themes/themeTesterImages/blackButtonEnabled.gif -%%DATADIR%%/externals/dojo/dijit/themes/themeTesterImages/blackButtonHover.gif -%%DATADIR%%/externals/dojo/dijit/themes/themeTesterQuirk.html -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Calendar.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Calendar_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/ColorPalette.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Common.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Dialog.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Dialog_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Editor.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Editor_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Menu.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Menu_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/ProgressBar.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/TimePicker.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/TimePicker_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/TitlePane.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/TitlePane_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Toolbar.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Tree.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/Tree_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/form/Button.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/form/Checkbox.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/form/Common.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/form/RadioButton.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/form/Select.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/form/Slider.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/form/Slider_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/accordionItemActive.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/accordionItemHover.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/buttonActive.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/buttonDisabled.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/buttonEnabled.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/buttonHover.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/calendarDayLabel.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/calendarMonthLabel.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/calendarYearLabel.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/checkmark.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/checkmark.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/checkmarkNoBorder.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/checkmarkNoBorder.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/circleIcon.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/circleIcon.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/comboArrowDown.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/dijitProgressBarAnim.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/dijitProgressBarAnim.psd -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/dndCopy.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/dndMove.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/dndNoCopy.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/dndNoMove.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/dojoTundraGradientBg.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/dojoTundraGradientBg.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/doubleArrowDown.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/doubleArrowUp.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/folderClosed.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/folderOpened.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/i.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/i_half.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/i_half_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/i_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/leaf.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/loading.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/menu.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/minusButton.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/no.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/noX.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/plusButton.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/popupMenuBg.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/preciseSliderThumb.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/preciseSliderThumb.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/preciseSliderThumbFocus.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/preciseSliderThumbFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim-1.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim-2.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim-3.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim-4.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim-5.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim-6.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim-7.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim-8.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim-9.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarAnim.psd -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarEmpty.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/progressBarFull.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/radioButtonActive.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/radioButtonActiveDisabled.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/radioButtonActiveHover.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/radioButtonDisabled.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/radioButtonEnabled.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/radioButtonHover.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/sliderEmpty.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/sliderEmptyVertical.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/sliderFull.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/sliderFullFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/sliderFullVertical.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/sliderFullVerticalFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/sliderThumb.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/sliderThumbFocus.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/sliderThumbFocus.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/smallArrowDown.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/smallArrowUp.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/splitContainerSizerH-thumb.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/splitContainerSizerH.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/splitContainerSizerV-thumb.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/splitContainerSizerV.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/spriteArrows.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/spriteArrows.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/spriteRoundedIconsSmall.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/spriteRoundedIconsSmall.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tabActive.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tabClose.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tabClose.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tabCloseHover.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tabCloseHover.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tabDisabled.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tabEnabled.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tabHover.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tabHover.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/titleBar.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/titleBarBg.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tooltipConnectorDown.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tooltipConnectorDown.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tooltipConnectorLeft.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tooltipConnectorLeft.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tooltipConnectorRight.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tooltipConnectorRight.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tooltipConnectorUp.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/tooltipConnectorUp.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/treeExpand_leaf.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/treeExpand_leaf_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/treeExpand_loading.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/treeExpand_minus.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/treeExpand_minus_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/treeExpand_mius.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/treeExpand_plus.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/treeExpand_plus_rtl.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/treeHover.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/validationInputBg.gif -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/validationInputBg.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/images/warning.png -%%DATADIR%%/externals/dojo/dijit/themes/tundra/layout/AccordionContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/layout/BorderContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/layout/ContentPane.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/layout/SplitContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/layout/TabContainer.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/layout/TabContainer_rtl.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/tundra.css -%%DATADIR%%/externals/dojo/dijit/themes/tundra/tundra_rtl.css -%%DATADIR%%/externals/dojo/dijit/tree/ForestStoreModel.js -%%DATADIR%%/externals/dojo/dijit/tree/TreeStoreModel.js -%%DATADIR%%/externals/dojo/dijit/tree/_dndContainer.js -%%DATADIR%%/externals/dojo/dijit/tree/_dndSelector.js -%%DATADIR%%/externals/dojo/dijit/tree/dndSource.js -%%DATADIR%%/externals/dojo/dijit/tree/model.js -%%DATADIR%%/externals/dojo/dojo/AdapterRegistry.js -%%DATADIR%%/externals/dojo/dojo/DeferredList.js -%%DATADIR%%/externals/dojo/dojo/LICENSE -%%DATADIR%%/externals/dojo/dojo/NodeList-fx.js -%%DATADIR%%/externals/dojo/dojo/NodeList-html.js -%%DATADIR%%/externals/dojo/dojo/NodeList-manipulate.js -%%DATADIR%%/externals/dojo/dojo/NodeList-traverse.js -%%DATADIR%%/externals/dojo/dojo/OpenAjax.js -%%DATADIR%%/externals/dojo/dojo/Stateful.js -%%DATADIR%%/externals/dojo/dojo/_base.js -%%DATADIR%%/externals/dojo/dojo/_base/Color.js -%%DATADIR%%/externals/dojo/dojo/_base/Deferred.js -%%DATADIR%%/externals/dojo/dojo/_base/NodeList.js -%%DATADIR%%/externals/dojo/dojo/_base/_loader/bootstrap.js -%%DATADIR%%/externals/dojo/dojo/_base/_loader/hostenv_browser.js -%%DATADIR%%/externals/dojo/dojo/_base/_loader/hostenv_ff_ext.js -%%DATADIR%%/externals/dojo/dojo/_base/_loader/hostenv_rhino.js -%%DATADIR%%/externals/dojo/dojo/_base/_loader/hostenv_spidermonkey.js -%%DATADIR%%/externals/dojo/dojo/_base/_loader/loader.js -%%DATADIR%%/externals/dojo/dojo/_base/_loader/loader_debug.js -%%DATADIR%%/externals/dojo/dojo/_base/_loader/loader_xd.js -%%DATADIR%%/externals/dojo/dojo/_base/array.js -%%DATADIR%%/externals/dojo/dojo/_base/browser.js -%%DATADIR%%/externals/dojo/dojo/_base/connect.js -%%DATADIR%%/externals/dojo/dojo/_base/declare.js -%%DATADIR%%/externals/dojo/dojo/_base/event.js -%%DATADIR%%/externals/dojo/dojo/_base/fx.js -%%DATADIR%%/externals/dojo/dojo/_base/html.js -%%DATADIR%%/externals/dojo/dojo/_base/json.js -%%DATADIR%%/externals/dojo/dojo/_base/lang.js -%%DATADIR%%/externals/dojo/dojo/_base/query-sizzle.js -%%DATADIR%%/externals/dojo/dojo/_base/query.js -%%DATADIR%%/externals/dojo/dojo/_base/window.js -%%DATADIR%%/externals/dojo/dojo/_base/xhr.js -%%DATADIR%%/externals/dojo/dojo/_firebug/LICENSE -%%DATADIR%%/externals/dojo/dojo/_firebug/errorIcon.png -%%DATADIR%%/externals/dojo/dojo/_firebug/firebug.css -%%DATADIR%%/externals/dojo/dojo/_firebug/firebug.js -%%DATADIR%%/externals/dojo/dojo/_firebug/infoIcon.png -%%DATADIR%%/externals/dojo/dojo/_firebug/tab_lft_norm.png -%%DATADIR%%/externals/dojo/dojo/_firebug/tab_lft_over.png -%%DATADIR%%/externals/dojo/dojo/_firebug/tab_rgt_norm.png -%%DATADIR%%/externals/dojo/dojo/_firebug/tab_rgt_over.png -%%DATADIR%%/externals/dojo/dojo/_firebug/warningIcon.png -%%DATADIR%%/externals/dojo/dojo/back.js -%%DATADIR%%/externals/dojo/dojo/behavior.js -%%DATADIR%%/externals/dojo/dojo/cache.js -%%DATADIR%%/externals/dojo/dojo/cldr/LICENSE -%%DATADIR%%/externals/dojo/dojo/cldr/README -%%DATADIR%%/externals/dojo/dojo/cldr/monetary.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ar/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ar/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ar/hebrew.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ar/islamic-civil.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ar/islamic.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ar/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/buddhist.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ca/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ca/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ca/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/cs/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/cs/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/cs/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/da/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/da/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/da/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/de/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/de/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/de/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/el/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/el/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/el/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en-au/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en-au/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en-au/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en-ca/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en-ca/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en-gb/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en-gb/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/en/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/es/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/es/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/es/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/fi/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/fi/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/fi/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/fr/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/fr/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/fr/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/he/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/he/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/he/hebrew.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/he/islamic.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/he/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/hebrew.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/hu/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/hu/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/hu/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/islamic.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/it/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/it/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/it/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ja/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ja/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ja/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ko/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ko/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ko/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/nb/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/nb/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/nb/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/nl/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/nl/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/nl/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/pl/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/pl/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/pl/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/pt-pt/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/pt-pt/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/pt/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/pt/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/pt/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ru/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ru/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/ru/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/sk/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/sk/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/sk/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/sl/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/sl/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/sl/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/sv/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/sv/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/sv/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/th/buddhist.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/th/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/th/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/th/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/tr/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/tr/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/tr/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/zh-tw/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/zh-tw/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/zh/currency.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/zh/gregorian.js -%%DATADIR%%/externals/dojo/dojo/cldr/nls/zh/number.js -%%DATADIR%%/externals/dojo/dojo/cldr/supplemental.js -%%DATADIR%%/externals/dojo/dojo/colors.js -%%DATADIR%%/externals/dojo/dojo/cookie.js -%%DATADIR%%/externals/dojo/dojo/currency.js -%%DATADIR%%/externals/dojo/dojo/data/ItemFileReadStore.js -%%DATADIR%%/externals/dojo/dojo/data/ItemFileWriteStore.js -%%DATADIR%%/externals/dojo/dojo/data/api/Identity.js -%%DATADIR%%/externals/dojo/dojo/data/api/Notification.js -%%DATADIR%%/externals/dojo/dojo/data/api/Read.js -%%DATADIR%%/externals/dojo/dojo/data/api/Request.js -%%DATADIR%%/externals/dojo/dojo/data/api/Write.js -%%DATADIR%%/externals/dojo/dojo/data/util/filter.js -%%DATADIR%%/externals/dojo/dojo/data/util/simpleFetch.js -%%DATADIR%%/externals/dojo/dojo/data/util/sorter.js -%%DATADIR%%/externals/dojo/dojo/date.js -%%DATADIR%%/externals/dojo/dojo/date/locale.js -%%DATADIR%%/externals/dojo/dojo/date/stamp.js -%%DATADIR%%/externals/dojo/dojo/dnd/Avatar.js -%%DATADIR%%/externals/dojo/dojo/dnd/Container.js -%%DATADIR%%/externals/dojo/dojo/dnd/Manager.js -%%DATADIR%%/externals/dojo/dojo/dnd/Moveable.js -%%DATADIR%%/externals/dojo/dojo/dnd/Mover.js -%%DATADIR%%/externals/dojo/dojo/dnd/Selector.js -%%DATADIR%%/externals/dojo/dojo/dnd/Source.js -%%DATADIR%%/externals/dojo/dojo/dnd/TimedMoveable.js -%%DATADIR%%/externals/dojo/dojo/dnd/autoscroll.js -%%DATADIR%%/externals/dojo/dojo/dnd/common.js -%%DATADIR%%/externals/dojo/dojo/dnd/move.js -%%DATADIR%%/externals/dojo/dojo/dojo.js -%%DATADIR%%/externals/dojo/dojo/fx.js -%%DATADIR%%/externals/dojo/dojo/fx/Toggler.js -%%DATADIR%%/externals/dojo/dojo/fx/easing.js -%%DATADIR%%/externals/dojo/dojo/gears.js -%%DATADIR%%/externals/dojo/dojo/hash.js -%%DATADIR%%/externals/dojo/dojo/html.js -%%DATADIR%%/externals/dojo/dojo/i18n.js -%%DATADIR%%/externals/dojo/dojo/io/iframe.js -%%DATADIR%%/externals/dojo/dojo/io/script.js -%%DATADIR%%/externals/dojo/dojo/jaxer.js -%%DATADIR%%/externals/dojo/dojo/nls/ar/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/ca/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/cs/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/da/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/de/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/el/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/es/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/fi/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/fr/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/he/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/hu/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/it/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/ja/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/kk/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/ko/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/nb/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/nl/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/pl/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/pt-pt/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/pt/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/ro/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/ru/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/sk/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/sl/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/sv/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/th/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/tr/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/zh-tw/colors.js -%%DATADIR%%/externals/dojo/dojo/nls/zh/colors.js -%%DATADIR%%/externals/dojo/dojo/number.js -%%DATADIR%%/externals/dojo/dojo/parser.js -%%DATADIR%%/externals/dojo/dojo/regexp.js -%%DATADIR%%/externals/dojo/dojo/resources/LICENSE -%%DATADIR%%/externals/dojo/dojo/resources/_modules.js -%%DATADIR%%/externals/dojo/dojo/resources/blank.gif -%%DATADIR%%/externals/dojo/dojo/resources/blank.html -%%DATADIR%%/externals/dojo/dojo/resources/dnd.css -%%DATADIR%%/externals/dojo/dojo/resources/dojo.css -%%DATADIR%%/externals/dojo/dojo/resources/iframe_history.html -%%DATADIR%%/externals/dojo/dojo/resources/images/dndCopy.png -%%DATADIR%%/externals/dojo/dojo/resources/images/dndMove.png -%%DATADIR%%/externals/dojo/dojo/resources/images/dndNoCopy.png -%%DATADIR%%/externals/dojo/dojo/resources/images/dndNoMove.png -%%DATADIR%%/externals/dojo/dojo/robot.js -%%DATADIR%%/externals/dojo/dojo/robotx.js -%%DATADIR%%/externals/dojo/dojo/rpc/JsonService.js -%%DATADIR%%/externals/dojo/dojo/rpc/JsonpService.js -%%DATADIR%%/externals/dojo/dojo/rpc/RpcService.js -%%DATADIR%%/externals/dojo/dojo/string.js -%%DATADIR%%/externals/dojo/dojo/tests.js -%%DATADIR%%/externals/dojo/dojo/uacss.js -%%DATADIR%%/externals/dojo/dojo/window.js -%%DATADIR%%/externals/dojo/dojox/LICENSE -%%DATADIR%%/externals/dojo/dojox/analytics.js -%%DATADIR%%/externals/dojo/dojox/analytics/README -%%DATADIR%%/externals/dojo/dojox/analytics/Urchin.js -%%DATADIR%%/externals/dojo/dojox/analytics/_base.js -%%DATADIR%%/externals/dojo/dojox/analytics/logger/JSON.php -%%DATADIR%%/externals/dojo/dojox/analytics/logger/dojoxAnalytics.php -%%DATADIR%%/externals/dojo/dojox/analytics/plugins/consoleMessages.js -%%DATADIR%%/externals/dojo/dojox/analytics/plugins/dojo.js -%%DATADIR%%/externals/dojo/dojox/analytics/plugins/idle.js -%%DATADIR%%/externals/dojo/dojox/analytics/plugins/mouseClick.js -%%DATADIR%%/externals/dojo/dojox/analytics/plugins/mouseOver.js -%%DATADIR%%/externals/dojo/dojox/analytics/plugins/window.js -%%DATADIR%%/externals/dojo/dojox/analytics/profiles/analytics.profile.js -%%DATADIR%%/externals/dojo/dojox/analytics/profiles/analyticsInBase.profile.js -%%DATADIR%%/externals/dojo/dojox/atom/README -%%DATADIR%%/externals/dojo/dojox/atom/io/Connection.js -%%DATADIR%%/externals/dojo/dojox/atom/io/model.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/FeedViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ar/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ar/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ar/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ar/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ca/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ca/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ca/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ca/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/cs/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/cs/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/cs/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/cs/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/da/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/da/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/da/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/da/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/de/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/de/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/de/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/de/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/el/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/el/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/el/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/el/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/es/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/es/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/es/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/es/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fi/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fi/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fi/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fi/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fr/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fr/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fr/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fr/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/he/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/he/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/he/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/he/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/hu/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/hu/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/hu/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/hu/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/it/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/it/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/it/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/it/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ja/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ja/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ja/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ja/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/kk/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/kk/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/kk/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/kk/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ko/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ko/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ko/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ko/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nb/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nb/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nb/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nb/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nl/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nl/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nl/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nl/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pl/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pl/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pl/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pl/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt-pt/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt-pt/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt-pt/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt-pt/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ro/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ro/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ro/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ro/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ru/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ru/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ru/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ru/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sk/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sk/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sk/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sk/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sl/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sl/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sl/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sl/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sv/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sv/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sv/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sv/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/th/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/th/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/th/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/th/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/tr/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/tr/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/tr/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/tr/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh-tw/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh-tw/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh-tw/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh-tw/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh/FeedEntryEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh/FeedEntryViewer.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh/FeedViewerEntry.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh/PeopleEditor.js -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/EntryHeader.html -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/FeedEntryEditor.html -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/FeedEntryViewer.html -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/FeedViewer.html -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/FeedViewerEntry.html -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/FeedViewerGrouping.html -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/PeopleEditor.html -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/css/EntryHeader.css -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/css/HtmlFeedEntryEditor.css -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/css/HtmlFeedEntryViewer.css -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/css/HtmlFeedViewer.css -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/css/HtmlFeedViewerEntry.css -%%DATADIR%%/externals/dojo/dojox/atom/widget/templates/css/HtmlFeedViewerGrouping.css -%%DATADIR%%/externals/dojo/dojox/av/FLAudio.js -%%DATADIR%%/externals/dojo/dojox/av/FLVideo.js -%%DATADIR%%/externals/dojo/dojox/av/README -%%DATADIR%%/externals/dojo/dojox/av/_Media.js -%%DATADIR%%/externals/dojo/dojox/av/resources/audio.swf -%%DATADIR%%/externals/dojo/dojox/av/resources/version.mov -%%DATADIR%%/externals/dojo/dojox/av/resources/video.swf -%%DATADIR%%/externals/dojo/dojox/av/widget/PlayButton.js -%%DATADIR%%/externals/dojo/dojox/av/widget/Player.js -%%DATADIR%%/externals/dojo/dojox/av/widget/ProgressSlider.js -%%DATADIR%%/externals/dojo/dojox/av/widget/Status.js -%%DATADIR%%/externals/dojo/dojox/av/widget/VolumeButton.js -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/PlayButton.html -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/Player.css -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/Player.html -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/ProgressSlider.html -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/Status.html -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/VolumeButton.html -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/images/dojoPlayerIcons.png -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/images/playerIcons -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/images/player_sprite.png -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/images/progressLoadedBk.png -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/images/progressPositionBk.png -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/images/sliderHandleNorm.png -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/images/sliderHandleOver.png -%%DATADIR%%/externals/dojo/dojox/av/widget/resources/images/sliderHandleSprite.png -%%DATADIR%%/externals/dojo/dojox/charting/Chart2D.js -%%DATADIR%%/externals/dojo/dojox/charting/Chart3D.js -%%DATADIR%%/externals/dojo/dojox/charting/DataChart.js -%%DATADIR%%/externals/dojo/dojox/charting/DataSeries.js -%%DATADIR%%/externals/dojo/dojox/charting/Element.js -%%DATADIR%%/externals/dojo/dojox/charting/README -%%DATADIR%%/externals/dojo/dojox/charting/Series.js -%%DATADIR%%/externals/dojo/dojox/charting/Theme.js -%%DATADIR%%/externals/dojo/dojox/charting/action2d/Base.js -%%DATADIR%%/externals/dojo/dojox/charting/action2d/Highlight.js -%%DATADIR%%/externals/dojo/dojox/charting/action2d/Magnify.js -%%DATADIR%%/externals/dojo/dojox/charting/action2d/MoveSlice.js -%%DATADIR%%/externals/dojo/dojox/charting/action2d/Shake.js -%%DATADIR%%/externals/dojo/dojox/charting/action2d/Tooltip.js -%%DATADIR%%/externals/dojo/dojox/charting/axis2d/Base.js -%%DATADIR%%/externals/dojo/dojox/charting/axis2d/Default.js -%%DATADIR%%/externals/dojo/dojox/charting/axis2d/Invisible.js -%%DATADIR%%/externals/dojo/dojox/charting/axis2d/common.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Areas.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Bars.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Base.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Bubble.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Candlesticks.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/ClusteredBars.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/ClusteredColumns.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Columns.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Default.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Grid.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Lines.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Markers.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/MarkersOnly.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/OHLC.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Pie.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Scatter.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/Stacked.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/StackedAreas.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/StackedBars.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/StackedColumns.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/StackedLines.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/_PlotEvents.js -%%DATADIR%%/externals/dojo/dojox/charting/plot2d/common.js -%%DATADIR%%/externals/dojo/dojox/charting/plot3d/Bars.js -%%DATADIR%%/externals/dojo/dojox/charting/plot3d/Base.js -%%DATADIR%%/externals/dojo/dojox/charting/plot3d/Cylinders.js -%%DATADIR%%/externals/dojo/dojox/charting/scaler/common.js -%%DATADIR%%/externals/dojo/dojox/charting/scaler/linear.js -%%DATADIR%%/externals/dojo/dojox/charting/scaler/primitive.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Adobebricks.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Algae.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Bahamation.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/BlueDusk.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Charged.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Chris.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/CubanShirts.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Desert.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Distinctive.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Dollar.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/ET/greys.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Electric.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Grasshopper.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Grasslands.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/GreySkies.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Harmony.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/IndigoNation.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Ireland.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Julie.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/MiamiNice.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Midwest.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Minty.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit/README -%%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit/base.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit/blue.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit/cyan.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit/green.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit/orange.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit/purple.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit/red.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/PrimaryColors.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/PurpleRain.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/README -%%DATADIR%%/externals/dojo/dojox/charting/themes/Renkoo.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/RoyalPurples.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/SageToLime.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Shrooms.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/ThreeD.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Tom.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Tufte.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/WatersEdge.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/Wetland.js -%%DATADIR%%/externals/dojo/dojox/charting/themes/gradientGenerator.js -%%DATADIR%%/externals/dojo/dojox/charting/widget/Chart2D.js -%%DATADIR%%/externals/dojo/dojox/charting/widget/Legend.js -%%DATADIR%%/externals/dojo/dojox/charting/widget/Sparkline.js -%%DATADIR%%/externals/dojo/dojox/collections.js -%%DATADIR%%/externals/dojo/dojox/collections/ArrayList.js -%%DATADIR%%/externals/dojo/dojox/collections/BinaryTree.js -%%DATADIR%%/externals/dojo/dojox/collections/Dictionary.js -%%DATADIR%%/externals/dojo/dojox/collections/Queue.js -%%DATADIR%%/externals/dojo/dojox/collections/README -%%DATADIR%%/externals/dojo/dojox/collections/Set.js -%%DATADIR%%/externals/dojo/dojox/collections/SortedList.js -%%DATADIR%%/externals/dojo/dojox/collections/Stack.js -%%DATADIR%%/externals/dojo/dojox/collections/_base.js -%%DATADIR%%/externals/dojo/dojox/color.js -%%DATADIR%%/externals/dojo/dojox/color/Colorspace.js -%%DATADIR%%/externals/dojo/dojox/color/Palette.js -%%DATADIR%%/externals/dojo/dojox/color/README -%%DATADIR%%/externals/dojo/dojox/color/_base.js -%%DATADIR%%/externals/dojo/dojox/cometd.js -%%DATADIR%%/externals/dojo/dojox/cometd/HttpChannels.js -%%DATADIR%%/externals/dojo/dojox/cometd/README -%%DATADIR%%/externals/dojo/dojox/cometd/RestChannels.js -%%DATADIR%%/externals/dojo/dojox/cometd/_base.js -%%DATADIR%%/externals/dojo/dojox/cometd/ack.js -%%DATADIR%%/externals/dojo/dojox/cometd/callbackPollTransport.js -%%DATADIR%%/externals/dojo/dojox/cometd/longPollTransport.js -%%DATADIR%%/externals/dojo/dojox/cometd/longPollTransportFormEncoded.js -%%DATADIR%%/externals/dojo/dojox/cometd/longPollTransportJsonEncoded.js -%%DATADIR%%/externals/dojo/dojox/cometd/timestamp.js -%%DATADIR%%/externals/dojo/dojox/cometd/timesync.js -%%DATADIR%%/externals/dojo/dojox/css3/fx.js -%%DATADIR%%/externals/dojo/dojox/data/AndOrReadStore.js -%%DATADIR%%/externals/dojo/dojox/data/AndOrWriteStore.js -%%DATADIR%%/externals/dojo/dojox/data/AppStore.js -%%DATADIR%%/externals/dojo/dojox/data/AtomReadStore.js -%%DATADIR%%/externals/dojo/dojox/data/CdfStore.js -%%DATADIR%%/externals/dojo/dojox/data/ClientFilter.js -%%DATADIR%%/externals/dojo/dojox/data/CouchDBRestStore.js -%%DATADIR%%/externals/dojo/dojox/data/CssClassStore.js -%%DATADIR%%/externals/dojo/dojox/data/CssRuleStore.js -%%DATADIR%%/externals/dojo/dojox/data/CsvStore.js -%%DATADIR%%/externals/dojo/dojox/data/FileStore.js -%%DATADIR%%/externals/dojo/dojox/data/FlickrRestStore.js -%%DATADIR%%/externals/dojo/dojox/data/FlickrStore.js -%%DATADIR%%/externals/dojo/dojox/data/GoogleFeedStore.js -%%DATADIR%%/externals/dojo/dojox/data/GoogleSearchStore.js -%%DATADIR%%/externals/dojo/dojox/data/HtmlStore.js -%%DATADIR%%/externals/dojo/dojox/data/HtmlTableStore.js -%%DATADIR%%/externals/dojo/dojox/data/ItemExplorer.js -%%DATADIR%%/externals/dojo/dojox/data/JsonQueryRestStore.js -%%DATADIR%%/externals/dojo/dojox/data/JsonRestStore.js -%%DATADIR%%/externals/dojo/dojox/data/KeyValueStore.js -%%DATADIR%%/externals/dojo/dojox/data/OpenSearchStore.js -%%DATADIR%%/externals/dojo/dojox/data/OpmlStore.js -%%DATADIR%%/externals/dojo/dojox/data/PersevereStore.js -%%DATADIR%%/externals/dojo/dojox/data/PicasaStore.js -%%DATADIR%%/externals/dojo/dojox/data/QueryReadStore.js -%%DATADIR%%/externals/dojo/dojox/data/README -%%DATADIR%%/externals/dojo/dojox/data/RailsStore.js -%%DATADIR%%/externals/dojo/dojox/data/S3Store.js -%%DATADIR%%/externals/dojo/dojox/data/ServiceStore.js -%%DATADIR%%/externals/dojo/dojox/data/SnapLogicStore.js -%%DATADIR%%/externals/dojo/dojox/data/StoreExplorer.js -%%DATADIR%%/externals/dojo/dojox/data/WikipediaStore.js -%%DATADIR%%/externals/dojo/dojox/data/XmlStore.js -%%DATADIR%%/externals/dojo/dojox/data/css.js -%%DATADIR%%/externals/dojo/dojox/data/dom.js -%%DATADIR%%/externals/dojo/dojox/data/restListener.js -%%DATADIR%%/externals/dojo/dojox/data/s3/README -%%DATADIR%%/externals/dojo/dojox/data/s3/proxy.example-php -%%DATADIR%%/externals/dojo/dojox/data/util/JsonQuery.js -%%DATADIR%%/externals/dojo/dojox/date/README -%%DATADIR%%/externals/dojo/dojox/date/buddhist.js -%%DATADIR%%/externals/dojo/dojox/date/buddhist/Date.js -%%DATADIR%%/externals/dojo/dojox/date/buddhist/locale.js -%%DATADIR%%/externals/dojo/dojox/date/hebrew.js -%%DATADIR%%/externals/dojo/dojox/date/hebrew/Date.js -%%DATADIR%%/externals/dojo/dojox/date/hebrew/locale.js -%%DATADIR%%/externals/dojo/dojox/date/hebrew/numerals.js -%%DATADIR%%/externals/dojo/dojox/date/islamic.js -%%DATADIR%%/externals/dojo/dojox/date/islamic/Date.js -%%DATADIR%%/externals/dojo/dojox/date/islamic/locale.js -%%DATADIR%%/externals/dojo/dojox/date/php.js -%%DATADIR%%/externals/dojo/dojox/date/posix.js -%%DATADIR%%/externals/dojo/dojox/date/relative.js -%%DATADIR%%/externals/dojo/dojox/date/timezone.js -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/LICENSE -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/africa -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/antarctica -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/asia -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/australasia -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/backward -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/etcetera -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/europe -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/northamerica -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/pacificnew -%%DATADIR%%/externals/dojo/dojox/date/zoneinfo/southamerica -%%DATADIR%%/externals/dojo/dojox/dnd/BoundingBoxController.js -%%DATADIR%%/externals/dojo/dojox/dnd/README -%%DATADIR%%/externals/dojo/dojox/dnd/Selector.js -%%DATADIR%%/externals/dojo/dojox/drawing.js -%%DATADIR%%/externals/dojo/dojox/drawing/Drawing.js -%%DATADIR%%/externals/dojo/dojox/drawing/README -%%DATADIR%%/externals/dojo/dojox/drawing/_base.js -%%DATADIR%%/externals/dojo/dojox/drawing/annotations/Angle.js -%%DATADIR%%/externals/dojo/dojox/drawing/annotations/Arrow.js -%%DATADIR%%/externals/dojo/dojox/drawing/annotations/BoxShadow.js -%%DATADIR%%/externals/dojo/dojox/drawing/annotations/Label.js -%%DATADIR%%/externals/dojo/dojox/drawing/defaults.js -%%DATADIR%%/externals/dojo/dojox/drawing/library/icons.js -%%DATADIR%%/externals/dojo/dojox/drawing/manager/Anchors.js -%%DATADIR%%/externals/dojo/dojox/drawing/manager/Canvas.js -%%DATADIR%%/externals/dojo/dojox/drawing/manager/Mouse.js -%%DATADIR%%/externals/dojo/dojox/drawing/manager/Stencil.js -%%DATADIR%%/externals/dojo/dojox/drawing/manager/StencilUI.js -%%DATADIR%%/externals/dojo/dojox/drawing/manager/Undo.js -%%DATADIR%%/externals/dojo/dojox/drawing/manager/_registry.js -%%DATADIR%%/externals/dojo/dojox/drawing/manager/keys.js -%%DATADIR%%/externals/dojo/dojox/drawing/plugins/_Plugin.js -%%DATADIR%%/externals/dojo/dojox/drawing/plugins/drawing/Grid.js -%%DATADIR%%/externals/dojo/dojox/drawing/plugins/drawing/Silverlight.js -%%DATADIR%%/externals/dojo/dojox/drawing/plugins/tools/Iconize.js -%%DATADIR%%/externals/dojo/dojox/drawing/plugins/tools/Pan.js -%%DATADIR%%/externals/dojo/dojox/drawing/plugins/tools/Zoom.js -%%DATADIR%%/externals/dojo/dojox/drawing/resources/CrazyTruck.jpg -%%DATADIR%%/externals/dojo/dojox/drawing/resources/drawing.css -%%DATADIR%%/externals/dojo/dojox/drawing/resources/images/tool_icons.png -%%DATADIR%%/externals/dojo/dojox/drawing/resources/images/tool_sprites.png -%%DATADIR%%/externals/dojo/dojox/drawing/resources/toolbar.css -%%DATADIR%%/externals/dojo/dojox/drawing/stencil/Ellipse.js -%%DATADIR%%/externals/dojo/dojox/drawing/stencil/Image.js -%%DATADIR%%/externals/dojo/dojox/drawing/stencil/Line.js -%%DATADIR%%/externals/dojo/dojox/drawing/stencil/Path.js -%%DATADIR%%/externals/dojo/dojox/drawing/stencil/Rect.js -%%DATADIR%%/externals/dojo/dojox/drawing/stencil/Text.js -%%DATADIR%%/externals/dojo/dojox/drawing/stencil/_Base.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/Arrow.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/Ellipse.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/Line.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/Path.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/Pencil.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/Rect.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/TextBlock.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/custom/Axes.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/custom/Equation.js -%%DATADIR%%/externals/dojo/dojox/drawing/tools/custom/Vector.js -%%DATADIR%%/externals/dojo/dojox/drawing/ui/Button.js -%%DATADIR%%/externals/dojo/dojox/drawing/ui/Toolbar.js -%%DATADIR%%/externals/dojo/dojox/drawing/ui/Tooltip.js -%%DATADIR%%/externals/dojo/dojox/drawing/ui/dom/Pan.js -%%DATADIR%%/externals/dojo/dojox/drawing/ui/dom/Toolbar.js -%%DATADIR%%/externals/dojo/dojox/drawing/ui/dom/Zoom.js -%%DATADIR%%/externals/dojo/dojox/drawing/util/common.js -%%DATADIR%%/externals/dojo/dojox/drawing/util/oo.js -%%DATADIR%%/externals/dojo/dojox/drawing/util/positioning.js -%%DATADIR%%/externals/dojo/dojox/dtl.js -%%DATADIR%%/externals/dojo/dojox/dtl/Context.js -%%DATADIR%%/externals/dojo/dojox/dtl/DomInline.js -%%DATADIR%%/externals/dojo/dojox/dtl/HtmlInline.js -%%DATADIR%%/externals/dojo/dojox/dtl/Inline.js -%%DATADIR%%/externals/dojo/dojox/dtl/README -%%DATADIR%%/externals/dojo/dojox/dtl/_DomTemplated.js -%%DATADIR%%/externals/dojo/dojox/dtl/_HtmlTemplated.js -%%DATADIR%%/externals/dojo/dojox/dtl/_Templated.js -%%DATADIR%%/externals/dojo/dojox/dtl/_base.js -%%DATADIR%%/externals/dojo/dojox/dtl/contrib/data.js -%%DATADIR%%/externals/dojo/dojox/dtl/contrib/dijit.js -%%DATADIR%%/externals/dojo/dojox/dtl/contrib/dom.js -%%DATADIR%%/externals/dojo/dojox/dtl/contrib/html.js -%%DATADIR%%/externals/dojo/dojox/dtl/contrib/objects.js -%%DATADIR%%/externals/dojo/dojox/dtl/dom.js -%%DATADIR%%/externals/dojo/dojox/dtl/ext-dojo/NodeList.js -%%DATADIR%%/externals/dojo/dojox/dtl/filter/dates.js -%%DATADIR%%/externals/dojo/dojox/dtl/filter/htmlstrings.js -%%DATADIR%%/externals/dojo/dojox/dtl/filter/integers.js -%%DATADIR%%/externals/dojo/dojox/dtl/filter/lists.js -%%DATADIR%%/externals/dojo/dojox/dtl/filter/logic.js -%%DATADIR%%/externals/dojo/dojox/dtl/filter/misc.js -%%DATADIR%%/externals/dojo/dojox/dtl/filter/strings.js -%%DATADIR%%/externals/dojo/dojox/dtl/html.js -%%DATADIR%%/externals/dojo/dojox/dtl/render/dom.js -%%DATADIR%%/externals/dojo/dojox/dtl/render/html.js -%%DATADIR%%/externals/dojo/dojox/dtl/tag/date.js -%%DATADIR%%/externals/dojo/dojox/dtl/tag/loader.js -%%DATADIR%%/externals/dojo/dojox/dtl/tag/logic.js -%%DATADIR%%/externals/dojo/dojox/dtl/tag/loop.js -%%DATADIR%%/externals/dojo/dojox/dtl/tag/misc.js -%%DATADIR%%/externals/dojo/dojox/dtl/utils/date.js -%%DATADIR%%/externals/dojo/dojox/editor/README -%%DATADIR%%/externals/dojo/dojox/editor/plugins/Blockquote.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/CollapsibleToolbar.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/EntityPalette.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/InsertAnchor.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/NormalizeIndentOutdent.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/NormalizeStyle.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/PasteFromWord.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/PrettyPrint.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/StatusBar.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/TablePlugins.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/TextColor.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/ToolbarLineBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/UploadImage.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/_SmileyPalette.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/Blockquote.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/CollapsibleToolbar.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/InsertAnchor.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/PasteFromWord.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/TextColor.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ar/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ca/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/da/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/el/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fi/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/he/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/Blockquote.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/CollapsibleToolbar.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/InsertAnchor.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/PasteFromWord.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/TextColor.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/nb/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/nl/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt-pt/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/Blockquote.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/CollapsibleToolbar.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/InsertAnchor.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/PasteFromWord.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/TextColor.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/sk/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/sl/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/sv/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/th/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/tr/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/Breadcrumb.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/FindReplace.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/InsertEntity.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/PageBreak.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/Preview.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/Save.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/ShowBlockNodes.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/Smiley.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/TableDialog.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh/latinEntities.js -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/Blockquote.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/Breadcrumb.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/CollapsibleToolbar.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/FindReplace.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/InsertAnchor.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/InsertEntity.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/PageBreak.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/PasteFromWord.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/Preview.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/Save.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/ShowBlockNodes.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/Smiley.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/StatusBar.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css/TextColor.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/editorPlugins.css -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonAngel.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonAngry.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonCool.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonCrying.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonEyebrow.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonFrown.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonGoofy.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonGrin.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonHalf.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonHappy.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonIdea.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonLaughing.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonNo.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonOops.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonShy.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonSmile.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonTongue.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonWink.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons/emoticonYes.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/anchor.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/anchorDisabled.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/blockquote.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/blockquoteDisabled.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/breadcrumbDown.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/claro/close.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/editorIconsFindReplaceDisabled.png -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/editorIconsFindReplaceEnabled.png -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/insertEntity.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/insertEntityDisabled.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/nihilo/close.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/pageBreak.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/pageBreakDisabled.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/pasteFromWord.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/pasteFromWordDisabled.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/preview.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/previewDisabled.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/save.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/saveDisabled.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/showBlockNodes.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/showBlockNodesDisabled.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/smiley.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/smileyDisabled.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/soria/close.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/tundra/close.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/anchor.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/address.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/blockquote.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/button.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/center.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/dd.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/del.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/div.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/dt.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/fieldset.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/form.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/h1.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/h2.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/h3.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/h4.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/h5.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/h6.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/hr.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/iframe.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/ins.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/li.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/map.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/noscript.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/object.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/ol.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/p.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/pre.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/script.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/table.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems/ul.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/busy.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/cellpad.png -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/cellspace.png -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/claro/collapse.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/claro/expand.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/nihilo/collapse.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/nihilo/expand.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/nihilo/sidebar.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/soria/collapse.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/soria/expand.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/soria/sidebar.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/tableIcons.png -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/tundra/collapse.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/tundra/expand.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/tundra/sidebar.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/uploadImageIcon.gif -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/insertTable.html -%%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/modifyTable.html -%%DATADIR%%/externals/dojo/dojox/embed/Flash.js -%%DATADIR%%/externals/dojo/dojox/embed/IE/flash.js -%%DATADIR%%/externals/dojo/dojox/embed/Object.js -%%DATADIR%%/externals/dojo/dojox/embed/Quicktime.js -%%DATADIR%%/externals/dojo/dojox/embed/README -%%DATADIR%%/externals/dojo/dojox/embed/flashVars.js -%%DATADIR%%/externals/dojo/dojox/embed/resources/version.mov -%%DATADIR%%/externals/dojo/dojox/encoding/LICENSE -%%DATADIR%%/externals/dojo/dojox/encoding/README -%%DATADIR%%/externals/dojo/dojox/encoding/_base.js -%%DATADIR%%/externals/dojo/dojox/encoding/ascii85.js -%%DATADIR%%/externals/dojo/dojox/encoding/base64.js -%%DATADIR%%/externals/dojo/dojox/encoding/bits.js -%%DATADIR%%/externals/dojo/dojox/encoding/compression/lzw.js -%%DATADIR%%/externals/dojo/dojox/encoding/compression/splay.js -%%DATADIR%%/externals/dojo/dojox/encoding/crypto/Blowfish.js -%%DATADIR%%/externals/dojo/dojox/encoding/crypto/RSAKey-ext.js -%%DATADIR%%/externals/dojo/dojox/encoding/crypto/RSAKey.js -%%DATADIR%%/externals/dojo/dojox/encoding/crypto/SimpleAES.js -%%DATADIR%%/externals/dojo/dojox/encoding/crypto/_base.js -%%DATADIR%%/externals/dojo/dojox/encoding/digests/MD5.js -%%DATADIR%%/externals/dojo/dojox/encoding/digests/SHA1.js -%%DATADIR%%/externals/dojo/dojox/encoding/digests/_base.js -%%DATADIR%%/externals/dojo/dojox/encoding/easy64.js -%%DATADIR%%/externals/dojo/dojox/flash.js -%%DATADIR%%/externals/dojo/dojox/flash/DojoExternalInterface.as -%%DATADIR%%/externals/dojo/dojox/flash/ExpressInstall.as -%%DATADIR%%/externals/dojo/dojox/flash/README -%%DATADIR%%/externals/dojo/dojox/flash/_base.js -%%DATADIR%%/externals/dojo/dojox/form/BusyButton.js -%%DATADIR%%/externals/dojo/dojox/form/CheckedMultiSelect.js -%%DATADIR%%/externals/dojo/dojox/form/DateTextBox.js -%%DATADIR%%/externals/dojo/dojox/form/DropDownSelect.js -%%DATADIR%%/externals/dojo/dojox/form/DropDownStack.js -%%DATADIR%%/externals/dojo/dojox/form/FileInput.js -%%DATADIR%%/externals/dojo/dojox/form/FileInputAuto.js -%%DATADIR%%/externals/dojo/dojox/form/FileInputBlind.js -%%DATADIR%%/externals/dojo/dojox/form/FilePickerTextBox.js -%%DATADIR%%/externals/dojo/dojox/form/FileUploader.js -%%DATADIR%%/externals/dojo/dojox/form/ListInput.js -%%DATADIR%%/externals/dojo/dojox/form/Manager.js -%%DATADIR%%/externals/dojo/dojox/form/MultiComboBox.js -%%DATADIR%%/externals/dojo/dojox/form/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/README -%%DATADIR%%/externals/dojo/dojox/form/RadioStack.js -%%DATADIR%%/externals/dojo/dojox/form/RangeSlider.js -%%DATADIR%%/externals/dojo/dojox/form/Rating.js -%%DATADIR%%/externals/dojo/dojox/form/TimeSpinner.js -%%DATADIR%%/externals/dojo/dojox/form/_FormSelectWidget.js -%%DATADIR%%/externals/dojo/dojox/form/_HasDropDown.js -%%DATADIR%%/externals/dojo/dojox/form/_SelectStackMixin.js -%%DATADIR%%/externals/dojo/dojox/form/manager/_ClassMixin.js -%%DATADIR%%/externals/dojo/dojox/form/manager/_DisplayMixin.js -%%DATADIR%%/externals/dojo/dojox/form/manager/_EnableMixin.js -%%DATADIR%%/externals/dojo/dojox/form/manager/_FormMixin.js -%%DATADIR%%/externals/dojo/dojox/form/manager/_Mixin.js -%%DATADIR%%/externals/dojo/dojox/form/manager/_NodeMixin.js -%%DATADIR%%/externals/dojo/dojox/form/manager/_ValueMixin.js -%%DATADIR%%/externals/dojo/dojox/form/nls/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/ar/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/ca/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/cs/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/da/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/de/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/el/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/es/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/fi/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/fr/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/he/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/hu/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/it/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/ja/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/kk/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/ko/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/nb/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/nl/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/pl/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/pt-pt/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/pt/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/ro/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/ru/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/sk/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/sl/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/sv/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/th/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/tr/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/zh-tw/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/nls/zh/PasswordValidator.js -%%DATADIR%%/externals/dojo/dojox/form/resources/BusyButton.css -%%DATADIR%%/externals/dojo/dojox/form/resources/CheckedMultiSelect.css -%%DATADIR%%/externals/dojo/dojox/form/resources/CheckedMultiSelect.html -%%DATADIR%%/externals/dojo/dojox/form/resources/FileInput.css -%%DATADIR%%/externals/dojo/dojox/form/resources/FileInput.html -%%DATADIR%%/externals/dojo/dojox/form/resources/FileInputAuto.html -%%DATADIR%%/externals/dojo/dojox/form/resources/FilePickerTextBox.css -%%DATADIR%%/externals/dojo/dojox/form/resources/FilePickerTextBox.html -%%DATADIR%%/externals/dojo/dojox/form/resources/FileUploader.css -%%DATADIR%%/externals/dojo/dojox/form/resources/HorizontalRangeSlider.html -%%DATADIR%%/externals/dojo/dojox/form/resources/ListInput.css -%%DATADIR%%/externals/dojo/dojox/form/resources/PasswordValidator.html -%%DATADIR%%/externals/dojo/dojox/form/resources/RangeSlider.css -%%DATADIR%%/externals/dojo/dojox/form/resources/Rating.css -%%DATADIR%%/externals/dojo/dojox/form/resources/RecieveFile.php -%%DATADIR%%/externals/dojo/dojox/form/resources/VerticalRangeSlider.html -%%DATADIR%%/externals/dojo/dojox/form/resources/_CheckedMultiSelectItem.html -%%DATADIR%%/externals/dojo/dojox/form/resources/images/loading_wheel.gif -%%DATADIR%%/externals/dojo/dojox/form/resources/images/nihiloFolderSprite.gif -%%DATADIR%%/externals/dojo/dojox/form/resources/images/rating_empty.gif -%%DATADIR%%/externals/dojo/dojox/form/resources/images/rating_full.gif -%%DATADIR%%/externals/dojo/dojox/form/resources/images/soriaFolderSprite.gif -%%DATADIR%%/externals/dojo/dojox/form/resources/images/tundraFolderSprite.gif -%%DATADIR%%/externals/dojo/dojox/form/resources/uploader.swf -%%DATADIR%%/externals/dojo/dojox/fx.js -%%DATADIR%%/externals/dojo/dojox/fx/README -%%DATADIR%%/externals/dojo/dojox/fx/Shadow.js -%%DATADIR%%/externals/dojo/dojox/fx/Timeline.js -%%DATADIR%%/externals/dojo/dojox/fx/_arg.js -%%DATADIR%%/externals/dojo/dojox/fx/_base.js -%%DATADIR%%/externals/dojo/dojox/fx/_core.js -%%DATADIR%%/externals/dojo/dojox/fx/easing.js -%%DATADIR%%/externals/dojo/dojox/fx/ext-dojo/NodeList-style.js -%%DATADIR%%/externals/dojo/dojox/fx/ext-dojo/NodeList.js -%%DATADIR%%/externals/dojo/dojox/fx/ext-dojo/complex.js -%%DATADIR%%/externals/dojo/dojox/fx/ext-dojo/reverse.js -%%DATADIR%%/externals/dojo/dojox/fx/flip.js -%%DATADIR%%/externals/dojo/dojox/fx/resources/shadowB.png -%%DATADIR%%/externals/dojo/dojox/fx/resources/shadowBL.png -%%DATADIR%%/externals/dojo/dojox/fx/resources/shadowBR.png -%%DATADIR%%/externals/dojo/dojox/fx/resources/shadowL.png -%%DATADIR%%/externals/dojo/dojox/fx/resources/shadowR.png -%%DATADIR%%/externals/dojo/dojox/fx/resources/shadowT.png -%%DATADIR%%/externals/dojo/dojox/fx/resources/shadowTL.png -%%DATADIR%%/externals/dojo/dojox/fx/resources/shadowTR.png -%%DATADIR%%/externals/dojo/dojox/fx/scroll.js -%%DATADIR%%/externals/dojo/dojox/fx/split.js -%%DATADIR%%/externals/dojo/dojox/fx/style.js -%%DATADIR%%/externals/dojo/dojox/fx/text.js -%%DATADIR%%/externals/dojo/dojox/geo/README -%%DATADIR%%/externals/dojo/dojox/geo/charting/Map.js -%%DATADIR%%/externals/dojo/dojox/geo/charting/_Feature.js -%%DATADIR%%/externals/dojo/dojox/geo/charting/_Marker.js -%%DATADIR%%/externals/dojo/dojox/geo/charting/_base.js -%%DATADIR%%/externals/dojo/dojox/geo/charting/resources/Map.css -%%DATADIR%%/externals/dojo/dojox/geo/charting/resources/data/NOTICES -%%DATADIR%%/externals/dojo/dojox/geo/charting/resources/data/USStates.json -%%DATADIR%%/externals/dojo/dojox/geo/charting/resources/img/zoomin.gif -%%DATADIR%%/externals/dojo/dojox/geo/charting/resources/img/zoomin.png -%%DATADIR%%/externals/dojo/dojox/geo/charting/resources/img/zoomout.gif -%%DATADIR%%/externals/dojo/dojox/geo/charting/resources/img/zoomout.png -%%DATADIR%%/externals/dojo/dojox/geo/charting/resources/markers/USStates.json -%%DATADIR%%/externals/dojo/dojox/geo/charting/widget/Legend.js -%%DATADIR%%/externals/dojo/dojox/gfx.js -%%DATADIR%%/externals/dojo/dojox/gfx/Moveable.js -%%DATADIR%%/externals/dojo/dojox/gfx/Mover.js -%%DATADIR%%/externals/dojo/dojox/gfx/README -%%DATADIR%%/externals/dojo/dojox/gfx/README-svgweb -%%DATADIR%%/externals/dojo/dojox/gfx/VectorText.js -%%DATADIR%%/externals/dojo/dojox/gfx/_base.js -%%DATADIR%%/externals/dojo/dojox/gfx/arc.js -%%DATADIR%%/externals/dojo/dojox/gfx/attach.js -%%DATADIR%%/externals/dojo/dojox/gfx/canvas.js -%%DATADIR%%/externals/dojo/dojox/gfx/canvas_attach.js -%%DATADIR%%/externals/dojo/dojox/gfx/decompose.js -%%DATADIR%%/externals/dojo/dojox/gfx/fx.js -%%DATADIR%%/externals/dojo/dojox/gfx/gradient.js -%%DATADIR%%/externals/dojo/dojox/gfx/gradutils.js -%%DATADIR%%/externals/dojo/dojox/gfx/matrix.js -%%DATADIR%%/externals/dojo/dojox/gfx/move.js -%%DATADIR%%/externals/dojo/dojox/gfx/path.js -%%DATADIR%%/externals/dojo/dojox/gfx/resources/Gillius.svg -%%DATADIR%%/externals/dojo/dojox/gfx/resources/README -%%DATADIR%%/externals/dojo/dojox/gfx/resources/gfxSvgProxyFrame.html -%%DATADIR%%/externals/dojo/dojox/gfx/resources/svg2gfx-simple.xsl -%%DATADIR%%/externals/dojo/dojox/gfx/resources/svg2gfx.xsl -%%DATADIR%%/externals/dojo/dojox/gfx/shape.js -%%DATADIR%%/externals/dojo/dojox/gfx/silverlight.js -%%DATADIR%%/externals/dojo/dojox/gfx/silverlight_attach.js -%%DATADIR%%/externals/dojo/dojox/gfx/svg.js -%%DATADIR%%/externals/dojo/dojox/gfx/svg_attach.js -%%DATADIR%%/externals/dojo/dojox/gfx/utils.js -%%DATADIR%%/externals/dojo/dojox/gfx/vml.js -%%DATADIR%%/externals/dojo/dojox/gfx/vml_attach.js -%%DATADIR%%/externals/dojo/dojox/gfx3d.js -%%DATADIR%%/externals/dojo/dojox/gfx3d/README -%%DATADIR%%/externals/dojo/dojox/gfx3d/_base.js -%%DATADIR%%/externals/dojo/dojox/gfx3d/gradient.js -%%DATADIR%%/externals/dojo/dojox/gfx3d/lighting.js -%%DATADIR%%/externals/dojo/dojox/gfx3d/matrix.js -%%DATADIR%%/externals/dojo/dojox/gfx3d/object.js -%%DATADIR%%/externals/dojo/dojox/gfx3d/scheduler.js -%%DATADIR%%/externals/dojo/dojox/gfx3d/vector.js -%%DATADIR%%/externals/dojo/dojox/grid/DataGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/DataSelection.js -%%DATADIR%%/externals/dojo/dojox/grid/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/README -%%DATADIR%%/externals/dojo/dojox/grid/Selection.js -%%DATADIR%%/externals/dojo/dojox/grid/TreeGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/TreeSelection.js -%%DATADIR%%/externals/dojo/dojox/grid/_Builder.js -%%DATADIR%%/externals/dojo/dojox/grid/_CheckBoxSelector.js -%%DATADIR%%/externals/dojo/dojox/grid/_EditManager.js -%%DATADIR%%/externals/dojo/dojox/grid/_Events.js -%%DATADIR%%/externals/dojo/dojox/grid/_FocusManager.js -%%DATADIR%%/externals/dojo/dojox/grid/_Grid.js -%%DATADIR%%/externals/dojo/dojox/grid/_Layout.js -%%DATADIR%%/externals/dojo/dojox/grid/_RadioSelector.js -%%DATADIR%%/externals/dojo/dojox/grid/_RowManager.js -%%DATADIR%%/externals/dojo/dojox/grid/_RowSelector.js -%%DATADIR%%/externals/dojo/dojox/grid/_Scroller.js -%%DATADIR%%/externals/dojo/dojox/grid/_Selector.js -%%DATADIR%%/externals/dojo/dojox/grid/_TreeView.js -%%DATADIR%%/externals/dojo/dojox/grid/_View.js -%%DATADIR%%/externals/dojo/dojox/grid/_ViewManager.js -%%DATADIR%%/externals/dojo/dojox/grid/cells.js -%%DATADIR%%/externals/dojo/dojox/grid/cells/_base.js -%%DATADIR%%/externals/dojo/dojox/grid/cells/dijit.js -%%DATADIR%%/externals/dojo/dojox/grid/cells/tree.js -%%DATADIR%%/externals/dojo/dojox/grid/compatGrid.tar.gz -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/_Builder.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/_Events.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/_Layout.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/_Plugin.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/_View.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/dnd/_DndBuilder.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/dnd/_DndEvents.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/dnd/_DndFocusManager.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/dnd/_DndGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/dnd/_DndMover.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/dnd/_DndMovingManager.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/dnd/_DndRowSelector.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/dnd/_DndSelectingManager.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ar/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ca/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/cs/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/da/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/de/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/el/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/es/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/fi/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/fr/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/he/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/hu/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/it/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ja/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/kk/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ko/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/nb/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/nl/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/pl/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/pt-pt/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/pt/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ro/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ru/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/sk/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/sl/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/sv/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/th/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/tr/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/zh-tw/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/zh/EnhancedGrid.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/plugins/DnD.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/plugins/IndirectSelection.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/plugins/Menu.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/plugins/NestedSorting.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/plugins/_Mixin.js -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/resources/EnhancedGrid.css -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/resources/EnhancedGrid_rtl.css -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/resources/claroEnhancedGrid.css -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/resources/images/nestedSortArrows.png -%%DATADIR%%/externals/dojo/dojox/grid/enhanced/resources/tundraEnhancedGrid.css -%%DATADIR%%/externals/dojo/dojox/grid/resources/Expando.html -%%DATADIR%%/externals/dojo/dojox/grid/resources/Grid.css -%%DATADIR%%/externals/dojo/dojox/grid/resources/Grid_rtl.css -%%DATADIR%%/externals/dojo/dojox/grid/resources/View.html -%%DATADIR%%/externals/dojo/dojox/grid/resources/_Grid.html -%%DATADIR%%/externals/dojo/dojox/grid/resources/claroGrid.css -%%DATADIR%%/externals/dojo/dojox/grid/resources/images/grid_dx_gradient.gif -%%DATADIR%%/externals/dojo/dojox/grid/resources/images/grid_sort_down.gif -%%DATADIR%%/externals/dojo/dojox/grid/resources/images/grid_sort_up.gif -%%DATADIR%%/externals/dojo/dojox/grid/resources/images/header.png -%%DATADIR%%/externals/dojo/dojox/grid/resources/images/header_shadow.png -%%DATADIR%%/externals/dojo/dojox/grid/resources/images/row_back.png -%%DATADIR%%/externals/dojo/dojox/grid/resources/images/tabEnabled_rotated.png -%%DATADIR%%/externals/dojo/dojox/grid/resources/images/tabHover_rotated.png -%%DATADIR%%/externals/dojo/dojox/grid/resources/images/td_button_down.png -%%DATADIR%%/externals/dojo/dojox/grid/resources/nihiloGrid.css -%%DATADIR%%/externals/dojo/dojox/grid/resources/soriaGrid.css -%%DATADIR%%/externals/dojo/dojox/grid/resources/tundraGrid.css -%%DATADIR%%/externals/dojo/dojox/grid/util.js -%%DATADIR%%/externals/dojo/dojox/help/README -%%DATADIR%%/externals/dojo/dojox/help/_base.js -%%DATADIR%%/externals/dojo/dojox/help/console.js -%%DATADIR%%/externals/dojo/dojox/highlight.js -%%DATADIR%%/externals/dojo/dojox/highlight/README -%%DATADIR%%/externals/dojo/dojox/highlight/_base.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/_all.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/_dynamic.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/_static.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/_www.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/cpp.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/css.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/delphi.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/django.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/groovy.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/html.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/java.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/javascript.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/_html.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/_www.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/css.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/html.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/javascript.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments/xml.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/python.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/sql.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/xml.js -%%DATADIR%%/externals/dojo/dojox/highlight/languages/xquery.js -%%DATADIR%%/externals/dojo/dojox/highlight/resources/highlight.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/autumn.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/borland.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/colorful.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/default.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/emacs.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/friendly.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/fruity.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/manni.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/murphy.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/native.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/pastie.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/perldoc.css -%%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments/trac.css -%%DATADIR%%/externals/dojo/dojox/html.js -%%DATADIR%%/externals/dojo/dojox/html/README -%%DATADIR%%/externals/dojo/dojox/html/_base.js -%%DATADIR%%/externals/dojo/dojox/html/ellipsis.js -%%DATADIR%%/externals/dojo/dojox/html/entities.js -%%DATADIR%%/externals/dojo/dojox/html/ext-dojo/style.js -%%DATADIR%%/externals/dojo/dojox/html/format.js -%%DATADIR%%/externals/dojo/dojox/html/metrics.js -%%DATADIR%%/externals/dojo/dojox/html/resources/ellipsis.css -%%DATADIR%%/externals/dojo/dojox/html/styles.js -%%DATADIR%%/externals/dojo/dojox/image.js -%%DATADIR%%/externals/dojo/dojox/image/Badge.js -%%DATADIR%%/externals/dojo/dojox/image/FlickrBadge.js -%%DATADIR%%/externals/dojo/dojox/image/Gallery.js -%%DATADIR%%/externals/dojo/dojox/image/Lightbox.js -%%DATADIR%%/externals/dojo/dojox/image/LightboxNano.js -%%DATADIR%%/externals/dojo/dojox/image/Magnifier.js -%%DATADIR%%/externals/dojo/dojox/image/MagnifierLite.js -%%DATADIR%%/externals/dojo/dojox/image/README -%%DATADIR%%/externals/dojo/dojox/image/SlideShow.js -%%DATADIR%%/externals/dojo/dojox/image/ThumbnailPicker.js -%%DATADIR%%/externals/dojo/dojox/image/_base.js -%%DATADIR%%/externals/dojo/dojox/image/resources/Badge.css -%%DATADIR%%/externals/dojo/dojox/image/resources/Gallery.css -%%DATADIR%%/externals/dojo/dojox/image/resources/Gallery.html -%%DATADIR%%/externals/dojo/dojox/image/resources/Lightbox.css -%%DATADIR%%/externals/dojo/dojox/image/resources/Lightbox.html -%%DATADIR%%/externals/dojo/dojox/image/resources/Magnifier.css -%%DATADIR%%/externals/dojo/dojox/image/resources/SlideShow.css -%%DATADIR%%/externals/dojo/dojox/image/resources/SlideShow.html -%%DATADIR%%/externals/dojo/dojox/image/resources/ThumbnailPicker.css -%%DATADIR%%/externals/dojo/dojox/image/resources/ThumbnailPicker.html -%%DATADIR%%/externals/dojo/dojox/image/resources/image.css -%%DATADIR%%/externals/dojo/dojox/image/resources/images/buttons.gif -%%DATADIR%%/externals/dojo/dojox/image/resources/images/buttons.png -%%DATADIR%%/externals/dojo/dojox/image/resources/images/close.gif -%%DATADIR%%/externals/dojo/dojox/image/resources/images/close.png -%%DATADIR%%/externals/dojo/dojox/image/resources/images/close_dark.png -%%DATADIR%%/externals/dojo/dojox/image/resources/images/left.gif -%%DATADIR%%/externals/dojo/dojox/image/resources/images/left.png -%%DATADIR%%/externals/dojo/dojox/image/resources/images/loading.gif -%%DATADIR%%/externals/dojo/dojox/image/resources/images/right.gif -%%DATADIR%%/externals/dojo/dojox/image/resources/images/right.png -%%DATADIR%%/externals/dojo/dojox/image/resources/images/warning.png -%%DATADIR%%/externals/dojo/dojox/io/OAuth.js -%%DATADIR%%/externals/dojo/dojox/io/README -%%DATADIR%%/externals/dojo/dojox/io/httpParse.js -%%DATADIR%%/externals/dojo/dojox/io/proxy/README -%%DATADIR%%/externals/dojo/dojox/io/proxy/xip.js -%%DATADIR%%/externals/dojo/dojox/io/proxy/xip_client.html -%%DATADIR%%/externals/dojo/dojox/io/proxy/xip_server.html -%%DATADIR%%/externals/dojo/dojox/io/scriptFrame.js -%%DATADIR%%/externals/dojo/dojox/io/windowName.js -%%DATADIR%%/externals/dojo/dojox/io/xhrMultiPart.js -%%DATADIR%%/externals/dojo/dojox/io/xhrPlugins.js -%%DATADIR%%/externals/dojo/dojox/io/xhrScriptPlugin.js -%%DATADIR%%/externals/dojo/dojox/io/xhrWindowNamePlugin.js -%%DATADIR%%/externals/dojo/dojox/jq.js -%%DATADIR%%/externals/dojo/dojox/jq/README -%%DATADIR%%/externals/dojo/dojox/json/README -%%DATADIR%%/externals/dojo/dojox/json/query.js -%%DATADIR%%/externals/dojo/dojox/json/ref.js -%%DATADIR%%/externals/dojo/dojox/json/schema.js -%%DATADIR%%/externals/dojo/dojox/jsonPath.js -%%DATADIR%%/externals/dojo/dojox/jsonPath/README -%%DATADIR%%/externals/dojo/dojox/jsonPath/query.js -%%DATADIR%%/externals/dojo/dojox/lang/LICENSE -%%DATADIR%%/externals/dojo/dojox/lang/README -%%DATADIR%%/externals/dojo/dojox/lang/aspect.js -%%DATADIR%%/externals/dojo/dojox/lang/aspect/cflow.js -%%DATADIR%%/externals/dojo/dojox/lang/aspect/counter.js -%%DATADIR%%/externals/dojo/dojox/lang/aspect/memoizer.js -%%DATADIR%%/externals/dojo/dojox/lang/aspect/memoizerGuard.js -%%DATADIR%%/externals/dojo/dojox/lang/aspect/profiler.js -%%DATADIR%%/externals/dojo/dojox/lang/aspect/timer.js -%%DATADIR%%/externals/dojo/dojox/lang/aspect/tracer.js -%%DATADIR%%/externals/dojo/dojox/lang/async.js -%%DATADIR%%/externals/dojo/dojox/lang/async/event.js -%%DATADIR%%/externals/dojo/dojox/lang/async/timeout.js -%%DATADIR%%/externals/dojo/dojox/lang/async/topic.js -%%DATADIR%%/externals/dojo/dojox/lang/docs.js -%%DATADIR%%/externals/dojo/dojox/lang/functional.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/array.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/binrec.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/curry.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/fold.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/lambda.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/linrec.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/listcomp.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/multirec.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/numrec.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/object.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/reversed.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/scan.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/sequence.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/tailrec.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/util.js -%%DATADIR%%/externals/dojo/dojox/lang/functional/zip.js -%%DATADIR%%/externals/dojo/dojox/lang/observable.js -%%DATADIR%%/externals/dojo/dojox/lang/oo/Decorator.js -%%DATADIR%%/externals/dojo/dojox/lang/oo/Filter.js -%%DATADIR%%/externals/dojo/dojox/lang/oo/aop.js -%%DATADIR%%/externals/dojo/dojox/lang/oo/general.js -%%DATADIR%%/externals/dojo/dojox/lang/oo/mixin.js -%%DATADIR%%/externals/dojo/dojox/lang/oo/rearrange.js -%%DATADIR%%/externals/dojo/dojox/lang/typed.js -%%DATADIR%%/externals/dojo/dojox/lang/utils.js -%%DATADIR%%/externals/dojo/dojox/layout/BorderContainer.js -%%DATADIR%%/externals/dojo/dojox/layout/ContentPane.js -%%DATADIR%%/externals/dojo/dojox/layout/DragPane.js -%%DATADIR%%/externals/dojo/dojox/layout/ExpandoPane.js -%%DATADIR%%/externals/dojo/dojox/layout/FloatingPane.js -%%DATADIR%%/externals/dojo/dojox/layout/GridContainer.js -%%DATADIR%%/externals/dojo/dojox/layout/GridContainerLite.js -%%DATADIR%%/externals/dojo/dojox/layout/README -%%DATADIR%%/externals/dojo/dojox/layout/RadioGroup.js -%%DATADIR%%/externals/dojo/dojox/layout/ResizeHandle.js -%%DATADIR%%/externals/dojo/dojox/layout/RotatorContainer.js -%%DATADIR%%/externals/dojo/dojox/layout/ScrollPane.js -%%DATADIR%%/externals/dojo/dojox/layout/TableContainer.js -%%DATADIR%%/externals/dojo/dojox/layout/ToggleSplitter.js -%%DATADIR%%/externals/dojo/dojox/layout/dnd/Avatar.js -%%DATADIR%%/externals/dojo/dojox/layout/dnd/PlottedDnd.js -%%DATADIR%%/externals/dojo/dojox/layout/ext-dijit/layout/StackContainer-touch.js -%%DATADIR%%/externals/dojo/dojox/layout/resources/DndGridContainer.css -%%DATADIR%%/externals/dojo/dojox/layout/resources/ExpandoPane.css -%%DATADIR%%/externals/dojo/dojox/layout/resources/ExpandoPane.html -%%DATADIR%%/externals/dojo/dojox/layout/resources/FloatingPane.css -%%DATADIR%%/externals/dojo/dojox/layout/resources/FloatingPane.html -%%DATADIR%%/externals/dojo/dojox/layout/resources/GridContainer.css -%%DATADIR%%/externals/dojo/dojox/layout/resources/GridContainer.html -%%DATADIR%%/externals/dojo/dojox/layout/resources/RadioGroup.css -%%DATADIR%%/externals/dojo/dojox/layout/resources/ResizeHandle.css -%%DATADIR%%/externals/dojo/dojox/layout/resources/RotatorContainer.css -%%DATADIR%%/externals/dojo/dojox/layout/resources/ScrollPane.css -%%DATADIR%%/externals/dojo/dojox/layout/resources/ScrollPane.html -%%DATADIR%%/externals/dojo/dojox/layout/resources/ToggleSplitter.css -%%DATADIR%%/externals/dojo/dojox/layout/resources/icons/gridcontainer_grip.gif -%%DATADIR%%/externals/dojo/dojox/layout/resources/icons/grip_bg.gif -%%DATADIR%%/externals/dojo/dojox/layout/resources/icons/pixel.gif -%%DATADIR%%/externals/dojo/dojox/layout/resources/icons/resize.png -%%DATADIR%%/externals/dojo/dojox/layout/resources/icons/resizeRtl.png -%%DATADIR%%/externals/dojo/dojox/layout/resources/icons/rotator.png -%%DATADIR%%/externals/dojo/dojox/math.js -%%DATADIR%%/externals/dojo/dojox/math/BigInteger-ext.js -%%DATADIR%%/externals/dojo/dojox/math/BigInteger.js -%%DATADIR%%/externals/dojo/dojox/math/README -%%DATADIR%%/externals/dojo/dojox/math/_base.js -%%DATADIR%%/externals/dojo/dojox/math/curves.js -%%DATADIR%%/externals/dojo/dojox/math/matrix.js -%%DATADIR%%/externals/dojo/dojox/math/random/Secure.js -%%DATADIR%%/externals/dojo/dojox/math/random/Simple.js -%%DATADIR%%/externals/dojo/dojox/math/random/prng4.js -%%DATADIR%%/externals/dojo/dojox/math/round.js -%%DATADIR%%/externals/dojo/dojox/math/stats.js -%%DATADIR%%/externals/dojo/dojox/mdnd/AreaManager.js -%%DATADIR%%/externals/dojo/dojox/mdnd/AutoScroll.js -%%DATADIR%%/externals/dojo/dojox/mdnd/DropIndicator.js -%%DATADIR%%/externals/dojo/dojox/mdnd/LazyManager.js -%%DATADIR%%/externals/dojo/dojox/mdnd/Moveable.js -%%DATADIR%%/externals/dojo/dojox/mdnd/PureSource.js -%%DATADIR%%/externals/dojo/dojox/mdnd/README -%%DATADIR%%/externals/dojo/dojox/mdnd/adapter/DndFromDojo.js -%%DATADIR%%/externals/dojo/dojox/mdnd/adapter/DndToDojo.js -%%DATADIR%%/externals/dojo/dojox/mdnd/dropMode/DefaultDropMode.js -%%DATADIR%%/externals/dojo/dojox/mdnd/dropMode/OverDropMode.js -%%DATADIR%%/externals/dojo/dojox/mdnd/dropMode/VerticalDropMode.js -%%DATADIR%%/externals/dojo/dojox/mdnd/resources/dnd.css -%%DATADIR%%/externals/dojo/dojox/mobile.js -%%DATADIR%%/externals/dojo/dojox/mobile/README -%%DATADIR%%/externals/dojo/dojox/mobile/_base.js -%%DATADIR%%/externals/dojo/dojox/mobile/app.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/AlertDialog.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/ImageThumbView.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/ImageView.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/List.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/ListSelector.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/SceneAssistant.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/SceneController.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/StageController.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/TextBox.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/_FormWidget.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/_Widget.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/_base.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/_event.js -%%DATADIR%%/externals/dojo/dojox/mobile/app/compat.js -%%DATADIR%%/externals/dojo/dojox/mobile/build/build.bat -%%DATADIR%%/externals/dojo/dojox/mobile/build/build.sh -%%DATADIR%%/externals/dojo/dojox/mobile/build/profiles/mobile-all.profile.js -%%DATADIR%%/externals/dojo/dojox/mobile/build/profiles/mobile.profile.js -%%DATADIR%%/externals/dojo/dojox/mobile/compat.js -%%DATADIR%%/externals/dojo/dojox/mobile/parser.js -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/android-compat.css -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/android.css -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/arrow-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/arrow-button-head.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/blue-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/blue-button-sel-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/gray-arrow.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/icon-content-heading-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/switch-blue-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/switch-gray-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/switch-green-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/switch-knob-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/tab-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/tab-orange-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat/tab-sel-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/buttons-compat.css -%%DATADIR%%/externals/dojo/dojox/mobile/themes/buttons.css -%%DATADIR%%/externals/dojo/dojox/mobile/themes/compat/check-off-button.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/compat/check-on-button.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/compat/small-blue-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/compat/small-darkblue-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/compat/small-red-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/arrow-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/arrow-button-head.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/blue-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/blue-button-sel-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/edge-categ-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/gray-arrow.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/heading-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/icon-content-heading-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/switch-blue-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/switch-gray-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/switch-knob-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/tab-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/tab-sel-button-bg.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat/white-arrow.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/images/thumb-overlay.png -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/iphone-app-compat.css -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/iphone-app.css -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/iphone-compat.css -%%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/iphone.css -%%DATADIR%%/externals/dojo/dojox/rails.js -%%DATADIR%%/externals/dojo/dojox/rails/README -%%DATADIR%%/externals/dojo/dojox/resources/README.template -%%DATADIR%%/externals/dojo/dojox/resources/_modules.js -%%DATADIR%%/externals/dojo/dojox/resources/explore.php -%%DATADIR%%/externals/dojo/dojox/robot/README -%%DATADIR%%/externals/dojo/dojox/robot/recorder.js -%%DATADIR%%/externals/dojo/dojox/rpc/Client.js -%%DATADIR%%/externals/dojo/dojox/rpc/JsonRPC.js -%%DATADIR%%/externals/dojo/dojox/rpc/JsonRest.js -%%DATADIR%%/externals/dojo/dojox/rpc/OfflineRest.js -%%DATADIR%%/externals/dojo/dojox/rpc/ProxiedPath.js -%%DATADIR%%/externals/dojo/dojox/rpc/README -%%DATADIR%%/externals/dojo/dojox/rpc/Rest.js -%%DATADIR%%/externals/dojo/dojox/rpc/SMDLibrary/dojo-api.smd -%%DATADIR%%/externals/dojo/dojox/rpc/SMDLibrary/friendfeed.smd -%%DATADIR%%/externals/dojo/dojox/rpc/SMDLibrary/geonames.smd -%%DATADIR%%/externals/dojo/dojox/rpc/SMDLibrary/google.smd -%%DATADIR%%/externals/dojo/dojox/rpc/SMDLibrary/wikipedia.smd -%%DATADIR%%/externals/dojo/dojox/rpc/SMDLibrary/yahoo.smd -%%DATADIR%%/externals/dojo/dojox/rpc/Service.js -%%DATADIR%%/externals/dojo/dojox/rpc/test.txt -%%DATADIR%%/externals/dojo/dojox/secure/DOM.js -%%DATADIR%%/externals/dojo/dojox/secure/README -%%DATADIR%%/externals/dojo/dojox/secure/capability.js -%%DATADIR%%/externals/dojo/dojox/secure/sandbox.js -%%DATADIR%%/externals/dojo/dojox/sketch.js -%%DATADIR%%/externals/dojo/dojox/sketch/Anchor.js -%%DATADIR%%/externals/dojo/dojox/sketch/Annotation.js -%%DATADIR%%/externals/dojo/dojox/sketch/DoubleArrowAnnotation.js -%%DATADIR%%/externals/dojo/dojox/sketch/Figure.js -%%DATADIR%%/externals/dojo/dojox/sketch/LeadAnnotation.js -%%DATADIR%%/externals/dojo/dojox/sketch/PreexistingAnnotation.js -%%DATADIR%%/externals/dojo/dojox/sketch/README -%%DATADIR%%/externals/dojo/dojox/sketch/SingleArrowAnnotation.js -%%DATADIR%%/externals/dojo/dojox/sketch/Slider.js -%%DATADIR%%/externals/dojo/dojox/sketch/Toolbar.js -%%DATADIR%%/externals/dojo/dojox/sketch/UnderlineAnnotation.js -%%DATADIR%%/externals/dojo/dojox/sketch/UndoStack.js -%%DATADIR%%/externals/dojo/dojox/sketch/_Plugin.js -%%DATADIR%%/externals/dojo/dojox/sketch/resources/images/icons.gif -%%DATADIR%%/externals/dojo/dojox/sketch/resources/sketch.css -%%DATADIR%%/externals/dojo/dojox/sql.js -%%DATADIR%%/externals/dojo/dojox/sql/LICENSE -%%DATADIR%%/externals/dojo/dojox/sql/README -%%DATADIR%%/externals/dojo/dojox/sql/_base.js -%%DATADIR%%/externals/dojo/dojox/sql/_crypto.js -%%DATADIR%%/externals/dojo/dojox/storage.js -%%DATADIR%%/externals/dojo/dojox/storage/AirDBStorageProvider.js -%%DATADIR%%/externals/dojo/dojox/storage/AirEncryptedLocalStorageProvider.js -%%DATADIR%%/externals/dojo/dojox/storage/AirFileStorageProvider.js -%%DATADIR%%/externals/dojo/dojox/storage/FlashStorageProvider.js -%%DATADIR%%/externals/dojo/dojox/storage/GearsStorageProvider.js -%%DATADIR%%/externals/dojo/dojox/storage/Provider.js -%%DATADIR%%/externals/dojo/dojox/storage/README -%%DATADIR%%/externals/dojo/dojox/storage/Storage.as -%%DATADIR%%/externals/dojo/dojox/storage/Storage.swf -%%DATADIR%%/externals/dojo/dojox/storage/WhatWGStorageProvider.js -%%DATADIR%%/externals/dojo/dojox/storage/_common.js -%%DATADIR%%/externals/dojo/dojox/storage/buildFlashStorage.sh -%%DATADIR%%/externals/dojo/dojox/storage/manager.js -%%DATADIR%%/externals/dojo/dojox/storage/storage_dialog.fla -%%DATADIR%%/externals/dojo/dojox/storage/storage_dialog.swf -%%DATADIR%%/externals/dojo/dojox/string/BidiComplex.js -%%DATADIR%%/externals/dojo/dojox/string/Builder.js -%%DATADIR%%/externals/dojo/dojox/string/README -%%DATADIR%%/externals/dojo/dojox/string/sprintf.js -%%DATADIR%%/externals/dojo/dojox/string/tokenize.js -%%DATADIR%%/externals/dojo/dojox/testing/DocTest.js -%%DATADIR%%/externals/dojo/dojox/testing/README -%%DATADIR%%/externals/dojo/dojox/timing.js -%%DATADIR%%/externals/dojo/dojox/timing/README -%%DATADIR%%/externals/dojo/dojox/timing/Sequence.js -%%DATADIR%%/externals/dojo/dojox/timing/Streamer.js -%%DATADIR%%/externals/dojo/dojox/timing/ThreadPool.js -%%DATADIR%%/externals/dojo/dojox/timing/_base.js -%%DATADIR%%/externals/dojo/dojox/timing/doLater.js -%%DATADIR%%/externals/dojo/dojox/uuid.js -%%DATADIR%%/externals/dojo/dojox/uuid/README -%%DATADIR%%/externals/dojo/dojox/uuid/Uuid.js -%%DATADIR%%/externals/dojo/dojox/uuid/_base.js -%%DATADIR%%/externals/dojo/dojox/uuid/generateRandomUuid.js -%%DATADIR%%/externals/dojo/dojox/uuid/generateTimeBasedUuid.js -%%DATADIR%%/externals/dojo/dojox/validate.js -%%DATADIR%%/externals/dojo/dojox/validate/README -%%DATADIR%%/externals/dojo/dojox/validate/_base.js -%%DATADIR%%/externals/dojo/dojox/validate/br.js -%%DATADIR%%/externals/dojo/dojox/validate/ca.js -%%DATADIR%%/externals/dojo/dojox/validate/check.js -%%DATADIR%%/externals/dojo/dojox/validate/creditCard.js -%%DATADIR%%/externals/dojo/dojox/validate/isbn.js -%%DATADIR%%/externals/dojo/dojox/validate/regexp.js -%%DATADIR%%/externals/dojo/dojox/validate/us.js -%%DATADIR%%/externals/dojo/dojox/validate/web.js -%%DATADIR%%/externals/dojo/dojox/widget/AnalogGauge.js -%%DATADIR%%/externals/dojo/dojox/widget/AutoRotator.js -%%DATADIR%%/externals/dojo/dojox/widget/BarGauge.js -%%DATADIR%%/externals/dojo/dojox/widget/Calendar.js -%%DATADIR%%/externals/dojo/dojox/widget/Calendar/Calendar.css -%%DATADIR%%/externals/dojo/dojox/widget/Calendar/Calendar.html -%%DATADIR%%/externals/dojo/dojox/widget/Calendar/CalendarDay.html -%%DATADIR%%/externals/dojo/dojox/widget/Calendar/CalendarMonth.html -%%DATADIR%%/externals/dojo/dojox/widget/Calendar/CalendarMonthYear.html -%%DATADIR%%/externals/dojo/dojox/widget/Calendar/CalendarYear.html -%%DATADIR%%/externals/dojo/dojox/widget/CalendarFx.js -%%DATADIR%%/externals/dojo/dojox/widget/CalendarViews.js -%%DATADIR%%/externals/dojo/dojox/widget/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/ColorPicker/ColorPicker.css -%%DATADIR%%/externals/dojo/dojox/widget/ColorPicker/ColorPicker.html -%%DATADIR%%/externals/dojo/dojox/widget/ColorPicker/images/hue.png -%%DATADIR%%/externals/dojo/dojox/widget/ColorPicker/images/hueHandle.png -%%DATADIR%%/externals/dojo/dojox/widget/ColorPicker/images/hueHandleA11y.png -%%DATADIR%%/externals/dojo/dojox/widget/ColorPicker/images/pickerPointer.png -%%DATADIR%%/externals/dojo/dojox/widget/ColorPicker/images/underlay.png -%%DATADIR%%/externals/dojo/dojox/widget/DataPresentation.js -%%DATADIR%%/externals/dojo/dojox/widget/Dialog.js -%%DATADIR%%/externals/dojo/dojox/widget/Dialog/Dialog.css -%%DATADIR%%/externals/dojo/dojox/widget/Dialog/Dialog.html -%%DATADIR%%/externals/dojo/dojox/widget/Dialog/images/dialogCloseButton.gif -%%DATADIR%%/externals/dojo/dojox/widget/Dialog/images/dialogCloseButton.png -%%DATADIR%%/externals/dojo/dojox/widget/DocTester.js -%%DATADIR%%/externals/dojo/dojox/widget/DocTester/DocTester.css -%%DATADIR%%/externals/dojo/dojox/widget/DocTester/DocTester.html -%%DATADIR%%/externals/dojo/dojox/widget/DynamicTooltip.js -%%DATADIR%%/externals/dojo/dojox/widget/FeedPortlet.js -%%DATADIR%%/externals/dojo/dojox/widget/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/FilePicker/FilePicker.css -%%DATADIR%%/externals/dojo/dojox/widget/FilePicker/_FileInfoPane.html -%%DATADIR%%/externals/dojo/dojox/widget/FilePicker/images/nihiloFileIcons.gif -%%DATADIR%%/externals/dojo/dojox/widget/FilePicker/images/soriaFileIcons.gif -%%DATADIR%%/externals/dojo/dojox/widget/FilePicker/images/tundraFileIcons.gif -%%DATADIR%%/externals/dojo/dojox/widget/FisheyeList.js -%%DATADIR%%/externals/dojo/dojox/widget/FisheyeList/FisheyeList.css -%%DATADIR%%/externals/dojo/dojox/widget/FisheyeLite.js -%%DATADIR%%/externals/dojo/dojox/widget/Iterator.js -%%DATADIR%%/externals/dojo/dojox/widget/Loader.js -%%DATADIR%%/externals/dojo/dojox/widget/Loader/Loader.css -%%DATADIR%%/externals/dojo/dojox/widget/Loader/icons/loading.gif -%%DATADIR%%/externals/dojo/dojox/widget/Pager.js -%%DATADIR%%/externals/dojo/dojox/widget/Pager/Pager.css -%%DATADIR%%/externals/dojo/dojox/widget/Pager/Pager.html -%%DATADIR%%/externals/dojo/dojox/widget/Pager/images/hNext.png -%%DATADIR%%/externals/dojo/dojox/widget/Pager/images/hPrevious.png -%%DATADIR%%/externals/dojo/dojox/widget/Pager/images/pageActive.png -%%DATADIR%%/externals/dojo/dojox/widget/Pager/images/pageInactive.png -%%DATADIR%%/externals/dojo/dojox/widget/Pager/images/vNext.png -%%DATADIR%%/externals/dojo/dojox/widget/Pager/images/vPrevious.png -%%DATADIR%%/externals/dojo/dojox/widget/PlaceholderMenuItem.js -%%DATADIR%%/externals/dojo/dojox/widget/Portlet.js -%%DATADIR%%/externals/dojo/dojox/widget/Portlet/Portlet.css -%%DATADIR%%/externals/dojo/dojox/widget/Portlet/images/icons.gif -%%DATADIR%%/externals/dojo/dojox/widget/Portlet/images/icons.png -%%DATADIR%%/externals/dojo/dojox/widget/README -%%DATADIR%%/externals/dojo/dojox/widget/Roller.js -%%DATADIR%%/externals/dojo/dojox/widget/RollingList.js -%%DATADIR%%/externals/dojo/dojox/widget/RollingList/RollingList.css -%%DATADIR%%/externals/dojo/dojox/widget/RollingList/RollingList.html -%%DATADIR%%/externals/dojo/dojox/widget/Rotator.js -%%DATADIR%%/externals/dojo/dojox/widget/SortList.js -%%DATADIR%%/externals/dojo/dojox/widget/SortList/SortList.css -%%DATADIR%%/externals/dojo/dojox/widget/SortList/SortList.html -%%DATADIR%%/externals/dojo/dojox/widget/Standby.js -%%DATADIR%%/externals/dojo/dojox/widget/Standby/images/loading.gif -%%DATADIR%%/externals/dojo/dojox/widget/Toaster.js -%%DATADIR%%/externals/dojo/dojox/widget/Toaster/Toaster.css -%%DATADIR%%/externals/dojo/dojox/widget/UpgradeBar.js -%%DATADIR%%/externals/dojo/dojox/widget/UpgradeBar/UpgradeBar.css -%%DATADIR%%/externals/dojo/dojox/widget/UpgradeBar/UpgradeBar.html -%%DATADIR%%/externals/dojo/dojox/widget/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/Wizard/Wizard.css -%%DATADIR%%/externals/dojo/dojox/widget/Wizard/Wizard.html -%%DATADIR%%/externals/dojo/dojox/widget/gauge/AnalogArcIndicator.js -%%DATADIR%%/externals/dojo/dojox/widget/gauge/AnalogArrowIndicator.js -%%DATADIR%%/externals/dojo/dojox/widget/gauge/AnalogNeedleIndicator.js -%%DATADIR%%/externals/dojo/dojox/widget/gauge/BarIndicator.js -%%DATADIR%%/externals/dojo/dojox/widget/gauge/_Gauge.css -%%DATADIR%%/externals/dojo/dojox/widget/gauge/_Gauge.html -%%DATADIR%%/externals/dojo/dojox/widget/gauge/_Gauge.js -%%DATADIR%%/externals/dojo/dojox/widget/gauge/_Indicator.html -%%DATADIR%%/externals/dojo/dojox/widget/nls/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ar/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ar/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ar/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ca/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ca/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ca/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/cs/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/cs/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/cs/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/da/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/da/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/da/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/de/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/de/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/de/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/el/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/el/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/el/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/es/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/es/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/es/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/fi/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/fi/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/fi/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/fr/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/fr/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/fr/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/he/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/he/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/he/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/hu/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/hu/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/hu/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/it/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/it/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/it/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ja/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ja/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ja/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/kk/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/kk/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/kk/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ko/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ko/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ko/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/nb/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/nb/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/nb/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/nl/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/nl/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/nl/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/pl/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/pl/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/pl/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/pt-pt/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/pt-pt/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/pt-pt/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/pt/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/pt/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/pt/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ro/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ro/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ro/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ru/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ru/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/ru/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/sk/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/sk/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/sk/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/sl/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/sl/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/sl/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/sv/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/sv/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/sv/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/th/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/th/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/th/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/tr/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/tr/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/tr/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/zh-tw/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/zh-tw/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/zh-tw/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/zh/ColorPicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/zh/FilePicker.js -%%DATADIR%%/externals/dojo/dojox/widget/nls/zh/Wizard.js -%%DATADIR%%/externals/dojo/dojox/widget/rotator/Controller.js -%%DATADIR%%/externals/dojo/dojox/widget/rotator/Fade.js -%%DATADIR%%/externals/dojo/dojox/widget/rotator/Pan.js -%%DATADIR%%/externals/dojo/dojox/widget/rotator/Slide.js -%%DATADIR%%/externals/dojo/dojox/widget/rotator/ThumbnailController.js -%%DATADIR%%/externals/dojo/dojox/widget/rotator/Wipe.js -%%DATADIR%%/externals/dojo/dojox/wire.js -%%DATADIR%%/externals/dojo/dojox/wire/CompositeWire.js -%%DATADIR%%/externals/dojo/dojox/wire/DataWire.js -%%DATADIR%%/externals/dojo/dojox/wire/README -%%DATADIR%%/externals/dojo/dojox/wire/TableAdapter.js -%%DATADIR%%/externals/dojo/dojox/wire/TextAdapter.js -%%DATADIR%%/externals/dojo/dojox/wire/TreeAdapter.js -%%DATADIR%%/externals/dojo/dojox/wire/Wire.js -%%DATADIR%%/externals/dojo/dojox/wire/XmlWire.js -%%DATADIR%%/externals/dojo/dojox/wire/_base.js -%%DATADIR%%/externals/dojo/dojox/wire/ml/Action.js -%%DATADIR%%/externals/dojo/dojox/wire/ml/Data.js -%%DATADIR%%/externals/dojo/dojox/wire/ml/DataStore.js -%%DATADIR%%/externals/dojo/dojox/wire/ml/Invocation.js -%%DATADIR%%/externals/dojo/dojox/wire/ml/Service.js -%%DATADIR%%/externals/dojo/dojox/wire/ml/Transfer.js -%%DATADIR%%/externals/dojo/dojox/wire/ml/util.js -%%DATADIR%%/externals/dojo/dojox/xml/DomParser.js -%%DATADIR%%/externals/dojo/dojox/xml/README -%%DATADIR%%/externals/dojo/dojox/xml/Script.js -%%DATADIR%%/externals/dojo/dojox/xml/parser.js -%%DATADIR%%/externals/dojo/dojox/xml/widgetParser.js -%%DATADIR%%/externals/dojo/dojox/xmpp/ChatService.js -%%DATADIR%%/externals/dojo/dojox/xmpp/PresenceService.js -%%DATADIR%%/externals/dojo/dojox/xmpp/README -%%DATADIR%%/externals/dojo/dojox/xmpp/RosterService.js -%%DATADIR%%/externals/dojo/dojox/xmpp/TransportSession.js -%%DATADIR%%/externals/dojo/dojox/xmpp/UserService.js -%%DATADIR%%/externals/dojo/dojox/xmpp/bosh.js -%%DATADIR%%/externals/dojo/dojox/xmpp/sasl.js -%%DATADIR%%/externals/dojo/dojox/xmpp/util.js -%%DATADIR%%/externals/dojo/dojox/xmpp/widget/ChatSession.js -%%DATADIR%%/externals/dojo/dojox/xmpp/widget/templates/ChatSession.html -%%DATADIR%%/externals/dojo/dojox/xmpp/xmppSession.js -%%DATADIR%%/externals/dojo/util/LICENSE -%%DATADIR%%/externals/dojo/util/buildscripts/LICENSE -%%DATADIR%%/externals/dojo/util/buildscripts/README -%%DATADIR%%/externals/dojo/util/buildscripts/build.bat -%%DATADIR%%/externals/dojo/util/buildscripts/build.js -%%DATADIR%%/externals/dojo/util/buildscripts/build.sh -%%DATADIR%%/externals/dojo/util/buildscripts/build_notice.txt -%%DATADIR%%/externals/dojo/util/buildscripts/build_release.sh -%%DATADIR%%/externals/dojo/util/buildscripts/cdnBuild.sh -%%DATADIR%%/externals/dojo/util/buildscripts/cdnBuild.txt -%%DATADIR%%/externals/dojo/util/buildscripts/changeVersion.js -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/README -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/alias.js -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/arrayInherit.js -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/build.xml -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/calendar.xsl -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/cldrUtil.js -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/currency.xsl -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/ldml/CatalogManager.properties -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/ldml/LICENSE -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/ldml/README -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/ldml/catalog -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/ldml/core.zip -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/lib/APL-2.0.html -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/lib/LICENSE -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/lib/MPL-1.0.html -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/lib/ant-apache-bsf.jar -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/lib/bsf.jar -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/lib/commons-logging-1.1.1.jar -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/lib/resolver.jar -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/lib/saxon9.jar -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/number.xsl -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/specialLocale.js -%%DATADIR%%/externals/dojo/util/buildscripts/cldr/util.xsl -%%DATADIR%%/externals/dojo/util/buildscripts/clean_release.sh -%%DATADIR%%/externals/dojo/util/buildscripts/copyright.txt -%%DATADIR%%/externals/dojo/util/buildscripts/jslib/buildUtil.js -%%DATADIR%%/externals/dojo/util/buildscripts/jslib/buildUtilXd.js -%%DATADIR%%/externals/dojo/util/buildscripts/jslib/checkBuildSize.js -%%DATADIR%%/externals/dojo/util/buildscripts/jslib/convertTestsToXDomain.js -%%DATADIR%%/externals/dojo/util/buildscripts/jslib/dojoGuardEnd.jsfrag -%%DATADIR%%/externals/dojo/util/buildscripts/jslib/dojoGuardStart.jsfrag -%%DATADIR%%/externals/dojo/util/buildscripts/jslib/fileUtil.js -%%DATADIR%%/externals/dojo/util/buildscripts/jslib/i18nUtil.js -%%DATADIR%%/externals/dojo/util/buildscripts/jslib/logger.js -%%DATADIR%%/externals/dojo/util/buildscripts/listProfileDeps.js -%%DATADIR%%/externals/dojo/util/buildscripts/makeDojoJsWeb.js -%%DATADIR%%/externals/dojo/util/buildscripts/mk_branch.sh -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/base.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/baseplus.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/cometd.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/demos-all.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/dtkapi.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/fx.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/layers.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/rhino.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/sql.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/standard.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/standardCustomBase.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/profiles/storage.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/tests/conditionalTest.js -%%DATADIR%%/externals/dojo/util/buildscripts/tests/conditionalTest.txt -%%DATADIR%%/externals/dojo/util/buildscripts/tests/css/blue/one.css -%%DATADIR%%/externals/dojo/util/buildscripts/tests/css/blue/two/two.css -%%DATADIR%%/externals/dojo/util/buildscripts/tests/css/flattenTest.js -%%DATADIR%%/externals/dojo/util/buildscripts/tests/foo/page/view.js -%%DATADIR%%/externals/dojo/util/buildscripts/tests/profiles/customBase.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/tests/profiles/nestedNls.profile.js -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild.html -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/index.html -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/makeWebBuildModuleList.js -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/build.xml -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/js/build.js -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/lib/js.jar -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/lib/shrinksafe.jar -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/src/org/dtk/BuilderContextAction.java -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/src/org/dtk/BuilderServlet.java -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/src/org/dtk/FileUtil.java -%%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/web/WEB-INF/web.xml -%%DATADIR%%/externals/dojo/util/buildscripts/zoneinfo/LICENSE -%%DATADIR%%/externals/dojo/util/buildscripts/zoneinfo/README -%%DATADIR%%/externals/dojo/util/buildscripts/zoneinfo/strip_olson_comments.rb -%%DATADIR%%/externals/dojo/util/buildscripts/zoneinfo/tzdata2009k.tar.gz -%%DATADIR%%/externals/dojo/util/doh/LICENSE -%%DATADIR%%/externals/dojo/util/doh/README -%%DATADIR%%/externals/dojo/util/doh/Robot.html -%%DATADIR%%/externals/dojo/util/doh/_browserRunner.js -%%DATADIR%%/externals/dojo/util/doh/_rhinoRunner.js -%%DATADIR%%/externals/dojo/util/doh/_sounds/LICENSE -%%DATADIR%%/externals/dojo/util/doh/_sounds/doh.wav -%%DATADIR%%/externals/dojo/util/doh/_sounds/dohaaa.wav -%%DATADIR%%/externals/dojo/util/doh/_sounds/woohoo.wav -%%DATADIR%%/externals/dojo/util/doh/robot.js -%%DATADIR%%/externals/dojo/util/doh/robot/DOHRobot.jar -%%DATADIR%%/externals/dojo/util/doh/robot/DOHRobot.java -%%DATADIR%%/externals/dojo/util/doh/robot/README -%%DATADIR%%/externals/dojo/util/doh/robot/compilerobot.bat -%%DATADIR%%/externals/dojo/util/doh/robot/compilerobot.sh -%%DATADIR%%/externals/dojo/util/doh/robot/robot.css -%%DATADIR%%/externals/dojo/util/doh/runner.html -%%DATADIR%%/externals/dojo/util/doh/runner.js -%%DATADIR%%/externals/dojo/util/doh/runner.sh -%%DATADIR%%/externals/dojo/util/doh/small_logo.png -%%DATADIR%%/externals/dojo/util/doh/tests/robot.html -%%DATADIR%%/externals/dojo/util/migration/dijitCss14to15.sed -%%DATADIR%%/externals/dojo/util/shrinksafe/LICENSE -%%DATADIR%%/externals/dojo/util/shrinksafe/MPL-1.1.html -%%DATADIR%%/externals/dojo/util/shrinksafe/README -%%DATADIR%%/externals/dojo/util/shrinksafe/build.sh -%%DATADIR%%/externals/dojo/util/shrinksafe/js.jar -%%DATADIR%%/externals/dojo/util/shrinksafe/shrinksafe.jar -%%DATADIR%%/externals/dojo/util/shrinksafe/src/manifest -%%DATADIR%%/externals/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe/Compressor.java -%%DATADIR%%/externals/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe/DebugData.java -%%DATADIR%%/externals/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe/Main.java -%%DATADIR%%/externals/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe/ReplacedTokens.java -%%DATADIR%%/externals/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe/TokenMapper.java -%%DATADIR%%/externals/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe/resources/Messages.properties -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/1768.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/3241.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/5303.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/8828.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/8974.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/9444.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/9676.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/escapeunicode.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/module.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/runner.sh -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/stripcomplex.js -%%DATADIR%%/externals/dojo/util/shrinksafe/tests/stripconsole.js -%%DATADIR%%/extras/library/ZendX/Application/Resource/Jquery.php -%%DATADIR%%/extras/library/ZendX/Console/Exception.php -%%DATADIR%%/extras/library/ZendX/Console/Process/Exception.php -%%DATADIR%%/extras/library/ZendX/Console/Process/Unix.php -%%DATADIR%%/extras/library/ZendX/Db/Adapter/Firebird.php -%%DATADIR%%/extras/library/ZendX/Db/Adapter/Firebird/Exception.php -%%DATADIR%%/extras/library/ZendX/Db/Statement/Firebird.php -%%DATADIR%%/extras/library/ZendX/Db/Statement/Firebird/Exception.php -%%DATADIR%%/extras/library/ZendX/Exception.php -%%DATADIR%%/extras/library/ZendX/JQuery.php -%%DATADIR%%/extras/library/ZendX/JQuery/Controller/Action/Helper/AutoComplete.php -%%DATADIR%%/extras/library/ZendX/JQuery/Exception.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator/AccordionContainer.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator/AccordionPane.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator/DialogContainer.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator/TabContainer.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator/TabPane.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator/UiWidgetContainer.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator/UiWidgetElement.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator/UiWidgetElementMarker.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator/UiWidgetPane.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Element/AutoComplete.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Element/ColorPicker.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Element/DatePicker.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Element/Slider.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Element/Spinner.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Element/UiWidget.php -%%DATADIR%%/extras/library/ZendX/JQuery/Form/Exception.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Exception.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/AccordionContainer.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/AccordionPane.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/AjaxLink.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/AutoComplete.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/ColorPicker.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/DatePicker.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/DialogContainer.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/JQuery.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/JQuery/Container.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/Slider.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/Spinner.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/TabContainer.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/TabPane.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/UiWidget.php -%%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/UiWidgetPane.php -%%DATADIR%%/library/Zend/Acl.php -%%DATADIR%%/library/Zend/Acl/Assert/Interface.php -%%DATADIR%%/library/Zend/Acl/Exception.php -%%DATADIR%%/library/Zend/Acl/Resource.php -%%DATADIR%%/library/Zend/Acl/Resource/Interface.php -%%DATADIR%%/library/Zend/Acl/Role.php -%%DATADIR%%/library/Zend/Acl/Role/Interface.php -%%DATADIR%%/library/Zend/Acl/Role/Registry.php -%%DATADIR%%/library/Zend/Acl/Role/Registry/Exception.php -%%DATADIR%%/library/Zend/Amf/Adobe/Auth.php -%%DATADIR%%/library/Zend/Amf/Adobe/DbInspector.php -%%DATADIR%%/library/Zend/Amf/Adobe/Introspector.php -%%DATADIR%%/library/Zend/Amf/Auth/Abstract.php -%%DATADIR%%/library/Zend/Amf/Constants.php -%%DATADIR%%/library/Zend/Amf/Exception.php -%%DATADIR%%/library/Zend/Amf/Parse/Amf0/Deserializer.php -%%DATADIR%%/library/Zend/Amf/Parse/Amf0/Serializer.php -%%DATADIR%%/library/Zend/Amf/Parse/Amf3/Deserializer.php -%%DATADIR%%/library/Zend/Amf/Parse/Amf3/Serializer.php -%%DATADIR%%/library/Zend/Amf/Parse/Deserializer.php -%%DATADIR%%/library/Zend/Amf/Parse/InputStream.php -%%DATADIR%%/library/Zend/Amf/Parse/OutputStream.php -%%DATADIR%%/library/Zend/Amf/Parse/Resource/MysqlResult.php -%%DATADIR%%/library/Zend/Amf/Parse/Resource/MysqliResult.php -%%DATADIR%%/library/Zend/Amf/Parse/Resource/Stream.php -%%DATADIR%%/library/Zend/Amf/Parse/Serializer.php -%%DATADIR%%/library/Zend/Amf/Parse/TypeLoader.php -%%DATADIR%%/library/Zend/Amf/Request.php -%%DATADIR%%/library/Zend/Amf/Request/Http.php -%%DATADIR%%/library/Zend/Amf/Response.php -%%DATADIR%%/library/Zend/Amf/Response/Http.php -%%DATADIR%%/library/Zend/Amf/Server.php -%%DATADIR%%/library/Zend/Amf/Server/Exception.php -%%DATADIR%%/library/Zend/Amf/Util/BinaryStream.php -%%DATADIR%%/library/Zend/Amf/Value/ByteArray.php -%%DATADIR%%/library/Zend/Amf/Value/MessageBody.php -%%DATADIR%%/library/Zend/Amf/Value/MessageHeader.php -%%DATADIR%%/library/Zend/Amf/Value/Messaging/AbstractMessage.php -%%DATADIR%%/library/Zend/Amf/Value/Messaging/AcknowledgeMessage.php -%%DATADIR%%/library/Zend/Amf/Value/Messaging/ArrayCollection.php -%%DATADIR%%/library/Zend/Amf/Value/Messaging/AsyncMessage.php -%%DATADIR%%/library/Zend/Amf/Value/Messaging/CommandMessage.php -%%DATADIR%%/library/Zend/Amf/Value/Messaging/ErrorMessage.php -%%DATADIR%%/library/Zend/Amf/Value/Messaging/RemotingMessage.php -%%DATADIR%%/library/Zend/Amf/Value/TraitsInfo.php -%%DATADIR%%/library/Zend/Application.php -%%DATADIR%%/library/Zend/Application/Bootstrap/Bootstrap.php -%%DATADIR%%/library/Zend/Application/Bootstrap/BootstrapAbstract.php -%%DATADIR%%/library/Zend/Application/Bootstrap/Bootstrapper.php -%%DATADIR%%/library/Zend/Application/Bootstrap/Exception.php -%%DATADIR%%/library/Zend/Application/Bootstrap/ResourceBootstrapper.php -%%DATADIR%%/library/Zend/Application/Exception.php -%%DATADIR%%/library/Zend/Application/Module/Autoloader.php -%%DATADIR%%/library/Zend/Application/Module/Bootstrap.php -%%DATADIR%%/library/Zend/Application/Resource/Cachemanager.php -%%DATADIR%%/library/Zend/Application/Resource/Db.php -%%DATADIR%%/library/Zend/Application/Resource/Dojo.php -%%DATADIR%%/library/Zend/Application/Resource/Exception.php -%%DATADIR%%/library/Zend/Application/Resource/Frontcontroller.php -%%DATADIR%%/library/Zend/Application/Resource/Layout.php -%%DATADIR%%/library/Zend/Application/Resource/Locale.php -%%DATADIR%%/library/Zend/Application/Resource/Log.php -%%DATADIR%%/library/Zend/Application/Resource/Mail.php -%%DATADIR%%/library/Zend/Application/Resource/Modules.php -%%DATADIR%%/library/Zend/Application/Resource/Multidb.php -%%DATADIR%%/library/Zend/Application/Resource/Navigation.php -%%DATADIR%%/library/Zend/Application/Resource/Resource.php -%%DATADIR%%/library/Zend/Application/Resource/ResourceAbstract.php -%%DATADIR%%/library/Zend/Application/Resource/Router.php -%%DATADIR%%/library/Zend/Application/Resource/Session.php -%%DATADIR%%/library/Zend/Application/Resource/Translate.php -%%DATADIR%%/library/Zend/Application/Resource/Useragent.php -%%DATADIR%%/library/Zend/Application/Resource/View.php -%%DATADIR%%/library/Zend/Auth.php -%%DATADIR%%/library/Zend/Auth/Adapter/DbTable.php -%%DATADIR%%/library/Zend/Auth/Adapter/Digest.php -%%DATADIR%%/library/Zend/Auth/Adapter/Exception.php -%%DATADIR%%/library/Zend/Auth/Adapter/Http.php -%%DATADIR%%/library/Zend/Auth/Adapter/Http/Resolver/Exception.php -%%DATADIR%%/library/Zend/Auth/Adapter/Http/Resolver/File.php -%%DATADIR%%/library/Zend/Auth/Adapter/Http/Resolver/Interface.php -%%DATADIR%%/library/Zend/Auth/Adapter/InfoCard.php -%%DATADIR%%/library/Zend/Auth/Adapter/Interface.php -%%DATADIR%%/library/Zend/Auth/Adapter/Ldap.php -%%DATADIR%%/library/Zend/Auth/Adapter/OpenId.php -%%DATADIR%%/library/Zend/Auth/Exception.php -%%DATADIR%%/library/Zend/Auth/Result.php -%%DATADIR%%/library/Zend/Auth/Storage/Exception.php -%%DATADIR%%/library/Zend/Auth/Storage/Interface.php -%%DATADIR%%/library/Zend/Auth/Storage/NonPersistent.php -%%DATADIR%%/library/Zend/Auth/Storage/Session.php -%%DATADIR%%/library/Zend/Barcode.php -%%DATADIR%%/library/Zend/Barcode/Exception.php +%%DATADIR%%/bin/autoload_example.php +%%DATADIR%%/bin/autoload_examples.php +%%DATADIR%%/bin/check-cs.sh +%%DATADIR%%/bin/classmap_generator.php +%%DATADIR%%/bin/createAutoloadTestClasses.php +%%DATADIR%%/bin/pluginmap_generator.php +%%DATADIR%%/bin/templatemap_generator.php +%%DATADIR%%/library/Zend/Authentication/Adapter/AbstractAdapter.php +%%DATADIR%%/library/Zend/Authentication/Adapter/AdapterInterface.php +%%DATADIR%%/library/Zend/Authentication/Adapter/DbTable.php +%%DATADIR%%/library/Zend/Authentication/Adapter/DbTable/AbstractAdapter.php +%%DATADIR%%/library/Zend/Authentication/Adapter/DbTable/CallbackCheckAdapter.php +%%DATADIR%%/library/Zend/Authentication/Adapter/DbTable/CredentialTreatmentAdapter.php +%%DATADIR%%/library/Zend/Authentication/Adapter/DbTable/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Authentication/Adapter/DbTable/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Authentication/Adapter/DbTable/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Digest.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Http.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Http/ApacheResolver.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Http/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Http/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Http/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Http/FileResolver.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Http/ResolverInterface.php +%%DATADIR%%/library/Zend/Authentication/Adapter/Ldap.php +%%DATADIR%%/library/Zend/Authentication/Adapter/ValidatableAdapterInterface.php +%%DATADIR%%/library/Zend/Authentication/AuthenticationService.php +%%DATADIR%%/library/Zend/Authentication/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Authentication/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Authentication/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Authentication/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Authentication/README.md +%%DATADIR%%/library/Zend/Authentication/Result.php +%%DATADIR%%/library/Zend/Authentication/Storage/Chain.php +%%DATADIR%%/library/Zend/Authentication/Storage/NonPersistent.php +%%DATADIR%%/library/Zend/Authentication/Storage/Session.php +%%DATADIR%%/library/Zend/Authentication/Storage/StorageInterface.php +%%DATADIR%%/library/Zend/Authentication/Validator/Authentication.php +%%DATADIR%%/library/Zend/Authentication/composer.json +%%DATADIR%%/library/Zend/Barcode/Barcode.php +%%DATADIR%%/library/Zend/Barcode/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Barcode/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Barcode/Exception/OutOfRangeException.php +%%DATADIR%%/library/Zend/Barcode/Exception/RendererCreationException.php +%%DATADIR%%/library/Zend/Barcode/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Barcode/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Barcode/Object/AbstractObject.php +%%DATADIR%%/library/Zend/Barcode/Object/Codabar.php %%DATADIR%%/library/Zend/Barcode/Object/Code128.php %%DATADIR%%/library/Zend/Barcode/Object/Code25.php %%DATADIR%%/library/Zend/Barcode/Object/Code25interleaved.php @@ -3049,394 +59,594 @@ %%DATADIR%%/library/Zend/Barcode/Object/Ean5.php %%DATADIR%%/library/Zend/Barcode/Object/Ean8.php %%DATADIR%%/library/Zend/Barcode/Object/Error.php -%%DATADIR%%/library/Zend/Barcode/Object/Exception.php +%%DATADIR%%/library/Zend/Barcode/Object/Exception/BarcodeValidationException.php +%%DATADIR%%/library/Zend/Barcode/Object/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Barcode/Object/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/Barcode/Object/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Barcode/Object/Exception/OutOfRangeException.php +%%DATADIR%%/library/Zend/Barcode/Object/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Barcode/Object/Identcode.php %%DATADIR%%/library/Zend/Barcode/Object/Itf14.php %%DATADIR%%/library/Zend/Barcode/Object/Leitcode.php -%%DATADIR%%/library/Zend/Barcode/Object/ObjectAbstract.php +%%DATADIR%%/library/Zend/Barcode/Object/ObjectInterface.php %%DATADIR%%/library/Zend/Barcode/Object/Planet.php %%DATADIR%%/library/Zend/Barcode/Object/Postnet.php %%DATADIR%%/library/Zend/Barcode/Object/Royalmail.php %%DATADIR%%/library/Zend/Barcode/Object/Upca.php %%DATADIR%%/library/Zend/Barcode/Object/Upce.php -%%DATADIR%%/library/Zend/Barcode/Renderer/Exception.php +%%DATADIR%%/library/Zend/Barcode/ObjectPluginManager.php +%%DATADIR%%/library/Zend/Barcode/README.md +%%DATADIR%%/library/Zend/Barcode/Renderer/AbstractRenderer.php +%%DATADIR%%/library/Zend/Barcode/Renderer/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Barcode/Renderer/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Barcode/Renderer/Exception/OutOfRangeException.php +%%DATADIR%%/library/Zend/Barcode/Renderer/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Barcode/Renderer/Exception/UnexpectedValueException.php %%DATADIR%%/library/Zend/Barcode/Renderer/Image.php %%DATADIR%%/library/Zend/Barcode/Renderer/Pdf.php -%%DATADIR%%/library/Zend/Barcode/Renderer/RendererAbstract.php +%%DATADIR%%/library/Zend/Barcode/Renderer/RendererInterface.php %%DATADIR%%/library/Zend/Barcode/Renderer/Svg.php -%%DATADIR%%/library/Zend/Cache.php -%%DATADIR%%/library/Zend/Cache/Backend.php -%%DATADIR%%/library/Zend/Cache/Backend/Apc.php -%%DATADIR%%/library/Zend/Cache/Backend/BlackHole.php -%%DATADIR%%/library/Zend/Cache/Backend/ExtendedInterface.php -%%DATADIR%%/library/Zend/Cache/Backend/File.php -%%DATADIR%%/library/Zend/Cache/Backend/Interface.php -%%DATADIR%%/library/Zend/Cache/Backend/Libmemcached.php -%%DATADIR%%/library/Zend/Cache/Backend/Memcached.php -%%DATADIR%%/library/Zend/Cache/Backend/Sqlite.php -%%DATADIR%%/library/Zend/Cache/Backend/Static.php -%%DATADIR%%/library/Zend/Cache/Backend/Test.php -%%DATADIR%%/library/Zend/Cache/Backend/TwoLevels.php -%%DATADIR%%/library/Zend/Cache/Backend/WinCache.php -%%DATADIR%%/library/Zend/Cache/Backend/Xcache.php -%%DATADIR%%/library/Zend/Cache/Backend/ZendPlatform.php -%%DATADIR%%/library/Zend/Cache/Backend/ZendServer.php -%%DATADIR%%/library/Zend/Cache/Backend/ZendServer/Disk.php -%%DATADIR%%/library/Zend/Cache/Backend/ZendServer/ShMem.php -%%DATADIR%%/library/Zend/Cache/Core.php -%%DATADIR%%/library/Zend/Cache/Exception.php -%%DATADIR%%/library/Zend/Cache/Frontend/Capture.php -%%DATADIR%%/library/Zend/Cache/Frontend/Class.php -%%DATADIR%%/library/Zend/Cache/Frontend/File.php -%%DATADIR%%/library/Zend/Cache/Frontend/Function.php -%%DATADIR%%/library/Zend/Cache/Frontend/Output.php -%%DATADIR%%/library/Zend/Cache/Frontend/Page.php -%%DATADIR%%/library/Zend/Cache/Manager.php -%%DATADIR%%/library/Zend/Captcha/Adapter.php -%%DATADIR%%/library/Zend/Captcha/Base.php +%%DATADIR%%/library/Zend/Barcode/RendererPluginManager.php +%%DATADIR%%/library/Zend/Barcode/composer.json +%%DATADIR%%/library/Zend/Cache/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Cache/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Cache/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/Cache/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Cache/Exception/LogicException.php +%%DATADIR%%/library/Zend/Cache/Exception/MissingDependencyException.php +%%DATADIR%%/library/Zend/Cache/Exception/MissingKeyException.php +%%DATADIR%%/library/Zend/Cache/Exception/OutOfSpaceException.php +%%DATADIR%%/library/Zend/Cache/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Cache/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Cache/Exception/UnsupportedMethodCallException.php +%%DATADIR%%/library/Zend/Cache/Pattern/AbstractPattern.php +%%DATADIR%%/library/Zend/Cache/Pattern/CallbackCache.php +%%DATADIR%%/library/Zend/Cache/Pattern/CaptureCache.php +%%DATADIR%%/library/Zend/Cache/Pattern/ClassCache.php +%%DATADIR%%/library/Zend/Cache/Pattern/ObjectCache.php +%%DATADIR%%/library/Zend/Cache/Pattern/OutputCache.php +%%DATADIR%%/library/Zend/Cache/Pattern/PatternInterface.php +%%DATADIR%%/library/Zend/Cache/Pattern/PatternOptions.php +%%DATADIR%%/library/Zend/Cache/PatternFactory.php +%%DATADIR%%/library/Zend/Cache/PatternPluginManager.php +%%DATADIR%%/library/Zend/Cache/README.md +%%DATADIR%%/library/Zend/Cache/Service/StorageCacheAbstractServiceFactory.php +%%DATADIR%%/library/Zend/Cache/Service/StorageCacheFactory.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/AbstractAdapter.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/AbstractZendServer.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/AdapterOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/Apc.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/ApcIterator.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/ApcOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/Dba.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/DbaIterator.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/DbaOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/Filesystem.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/FilesystemIterator.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/FilesystemOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/KeyListIterator.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/Memcached.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/MemcachedOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/MemcachedResourceManager.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/Memory.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/MemoryOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/Redis.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/RedisOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/RedisResourceManager.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/Session.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/SessionOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/WinCache.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/WinCacheOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/XCache.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/XCacheOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/ZendServerDisk.php +%%DATADIR%%/library/Zend/Cache/Storage/Adapter/ZendServerShm.php +%%DATADIR%%/library/Zend/Cache/Storage/AdapterPluginManager.php +%%DATADIR%%/library/Zend/Cache/Storage/AvailableSpaceCapableInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/Capabilities.php +%%DATADIR%%/library/Zend/Cache/Storage/ClearByNamespaceInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/ClearByPrefixInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/ClearExpiredInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/Event.php +%%DATADIR%%/library/Zend/Cache/Storage/ExceptionEvent.php +%%DATADIR%%/library/Zend/Cache/Storage/FlushableInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/IterableInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/IteratorInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/OptimizableInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/Plugin/AbstractPlugin.php +%%DATADIR%%/library/Zend/Cache/Storage/Plugin/ClearExpiredByFactor.php +%%DATADIR%%/library/Zend/Cache/Storage/Plugin/ExceptionHandler.php +%%DATADIR%%/library/Zend/Cache/Storage/Plugin/IgnoreUserAbort.php +%%DATADIR%%/library/Zend/Cache/Storage/Plugin/OptimizeByFactor.php +%%DATADIR%%/library/Zend/Cache/Storage/Plugin/PluginInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/Plugin/PluginOptions.php +%%DATADIR%%/library/Zend/Cache/Storage/Plugin/Serializer.php +%%DATADIR%%/library/Zend/Cache/Storage/PluginManager.php +%%DATADIR%%/library/Zend/Cache/Storage/PostEvent.php +%%DATADIR%%/library/Zend/Cache/Storage/StorageInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/TaggableInterface.php +%%DATADIR%%/library/Zend/Cache/Storage/TotalSpaceCapableInterface.php +%%DATADIR%%/library/Zend/Cache/StorageFactory.php +%%DATADIR%%/library/Zend/Cache/composer.json +%%DATADIR%%/library/Zend/Captcha/AbstractAdapter.php +%%DATADIR%%/library/Zend/Captcha/AbstractWord.php +%%DATADIR%%/library/Zend/Captcha/AdapterInterface.php %%DATADIR%%/library/Zend/Captcha/Dumb.php -%%DATADIR%%/library/Zend/Captcha/Exception.php +%%DATADIR%%/library/Zend/Captcha/Exception/DomainException.php +%%DATADIR%%/library/Zend/Captcha/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Captcha/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/Captcha/Exception/ImageNotLoadableException.php +%%DATADIR%%/library/Zend/Captcha/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Captcha/Exception/NoFontProvidedException.php +%%DATADIR%%/library/Zend/Captcha/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Captcha/Factory.php %%DATADIR%%/library/Zend/Captcha/Figlet.php %%DATADIR%%/library/Zend/Captcha/Image.php +%%DATADIR%%/library/Zend/Captcha/README.md %%DATADIR%%/library/Zend/Captcha/ReCaptcha.php -%%DATADIR%%/library/Zend/Captcha/Word.php -%%DATADIR%%/library/Zend/Cloud/AbstractFactory.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Adapter.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Adapter/AbstractAdapter.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Adapter/SimpleDb/Query.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Adapter/WindowsAzure/Query.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Document.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/DocumentSet.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Exception.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Factory.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/Query.php -%%DATADIR%%/library/Zend/Cloud/DocumentService/QueryAdapter.php -%%DATADIR%%/library/Zend/Cloud/Exception.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/Adapter.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/Adapter/AbstractAdapter.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/Adapter/Ec2.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/Exception.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/Factory.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/Image.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/ImageList.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/Instance.php -%%DATADIR%%/library/Zend/Cloud/Infrastructure/InstanceList.php -%%DATADIR%%/library/Zend/Cloud/OperationNotAvailableException.php -%%DATADIR%%/library/Zend/Cloud/QueueService/Adapter.php -%%DATADIR%%/library/Zend/Cloud/QueueService/Adapter/AbstractAdapter.php -%%DATADIR%%/library/Zend/Cloud/QueueService/Adapter/Sqs.php -%%DATADIR%%/library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php -%%DATADIR%%/library/Zend/Cloud/QueueService/Adapter/ZendQueue.php -%%DATADIR%%/library/Zend/Cloud/QueueService/Exception.php -%%DATADIR%%/library/Zend/Cloud/QueueService/Factory.php -%%DATADIR%%/library/Zend/Cloud/QueueService/Message.php -%%DATADIR%%/library/Zend/Cloud/QueueService/MessageSet.php -%%DATADIR%%/library/Zend/Cloud/StorageService/Adapter.php -%%DATADIR%%/library/Zend/Cloud/StorageService/Adapter/FileSystem.php -%%DATADIR%%/library/Zend/Cloud/StorageService/Adapter/Nirvanix.php -%%DATADIR%%/library/Zend/Cloud/StorageService/Adapter/Rackspace.php -%%DATADIR%%/library/Zend/Cloud/StorageService/Adapter/S3.php -%%DATADIR%%/library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php -%%DATADIR%%/library/Zend/Cloud/StorageService/Exception.php -%%DATADIR%%/library/Zend/Cloud/StorageService/Factory.php -%%DATADIR%%/library/Zend/CodeGenerator/Abstract.php -%%DATADIR%%/library/Zend/CodeGenerator/Exception.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Abstract.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Body.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Class.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Docblock.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Docblock/Tag.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Docblock/Tag/License.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Docblock/Tag/Param.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Docblock/Tag/Return.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Exception.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/File.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Member/Abstract.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Member/Container.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Method.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Parameter.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Parameter/DefaultValue.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Property.php -%%DATADIR%%/library/Zend/CodeGenerator/Php/Property/DefaultValue.php -%%DATADIR%%/library/Zend/Config.php -%%DATADIR%%/library/Zend/Config/Exception.php -%%DATADIR%%/library/Zend/Config/Ini.php -%%DATADIR%%/library/Zend/Config/Json.php -%%DATADIR%%/library/Zend/Config/Writer.php -%%DATADIR%%/library/Zend/Config/Writer/Array.php -%%DATADIR%%/library/Zend/Config/Writer/FileAbstract.php +%%DATADIR%%/library/Zend/Captcha/composer.json +%%DATADIR%%/library/Zend/Code/Annotation/AnnotationCollection.php +%%DATADIR%%/library/Zend/Code/Annotation/AnnotationInterface.php +%%DATADIR%%/library/Zend/Code/Annotation/AnnotationManager.php +%%DATADIR%%/library/Zend/Code/Annotation/Parser/DoctrineAnnotationParser.php +%%DATADIR%%/library/Zend/Code/Annotation/Parser/GenericAnnotationParser.php +%%DATADIR%%/library/Zend/Code/Annotation/Parser/ParserInterface.php +%%DATADIR%%/library/Zend/Code/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Code/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Code/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Code/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Code/Generator/AbstractGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/AbstractMemberGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/BodyGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/ClassGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/DocBlock/Tag.php +%%DATADIR%%/library/Zend/Code/Generator/DocBlock/Tag/AuthorTag.php +%%DATADIR%%/library/Zend/Code/Generator/DocBlock/Tag/LicenseTag.php +%%DATADIR%%/library/Zend/Code/Generator/DocBlock/Tag/ParamTag.php +%%DATADIR%%/library/Zend/Code/Generator/DocBlock/Tag/ReturnTag.php +%%DATADIR%%/library/Zend/Code/Generator/DocBlockGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Code/Generator/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Code/Generator/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Code/Generator/FileGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/FileGeneratorRegistry.php +%%DATADIR%%/library/Zend/Code/Generator/GeneratorInterface.php +%%DATADIR%%/library/Zend/Code/Generator/MethodGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/ParameterGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/PropertyGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/PropertyValueGenerator.php +%%DATADIR%%/library/Zend/Code/Generator/ValueGenerator.php +%%DATADIR%%/library/Zend/Code/NameInformation.php +%%DATADIR%%/library/Zend/Code/README.md +%%DATADIR%%/library/Zend/Code/Reflection/ClassReflection.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/AuthorTag.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/GenericTag.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/LicenseTag.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/MethodTag.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/ParamTag.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/PhpDocTypedTagInterface.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/PropertyTag.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/ReturnTag.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/TagInterface.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag/ThrowsTag.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlock/TagManager.php +%%DATADIR%%/library/Zend/Code/Reflection/DocBlockReflection.php +%%DATADIR%%/library/Zend/Code/Reflection/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Code/Reflection/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Code/Reflection/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Code/Reflection/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Code/Reflection/FileReflection.php +%%DATADIR%%/library/Zend/Code/Reflection/FunctionReflection.php +%%DATADIR%%/library/Zend/Code/Reflection/MethodReflection.php +%%DATADIR%%/library/Zend/Code/Reflection/ParameterReflection.php +%%DATADIR%%/library/Zend/Code/Reflection/PropertyReflection.php +%%DATADIR%%/library/Zend/Code/Reflection/ReflectionInterface.php +%%DATADIR%%/library/Zend/Code/Scanner/AggregateDirectoryScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/AnnotationScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/CachingFileScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/ClassScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/ConstantScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/DerivedClassScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/DirectoryScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/DocBlockScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/FileScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/FunctionScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/MethodScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/ParameterScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/PropertyScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/ScannerInterface.php +%%DATADIR%%/library/Zend/Code/Scanner/TokenArrayScanner.php +%%DATADIR%%/library/Zend/Code/Scanner/Util.php +%%DATADIR%%/library/Zend/Code/Scanner/ValueScanner.php +%%DATADIR%%/library/Zend/Code/composer.json +%%DATADIR%%/library/Zend/Config/Config.php +%%DATADIR%%/library/Zend/Config/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Config/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Config/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Config/Factory.php +%%DATADIR%%/library/Zend/Config/Processor/Constant.php +%%DATADIR%%/library/Zend/Config/Processor/Filter.php +%%DATADIR%%/library/Zend/Config/Processor/ProcessorInterface.php +%%DATADIR%%/library/Zend/Config/Processor/Queue.php +%%DATADIR%%/library/Zend/Config/Processor/Token.php +%%DATADIR%%/library/Zend/Config/Processor/Translator.php +%%DATADIR%%/library/Zend/Config/README.md +%%DATADIR%%/library/Zend/Config/Reader/Ini.php +%%DATADIR%%/library/Zend/Config/Reader/Json.php +%%DATADIR%%/library/Zend/Config/Reader/ReaderInterface.php +%%DATADIR%%/library/Zend/Config/Reader/Xml.php +%%DATADIR%%/library/Zend/Config/Reader/Yaml.php +%%DATADIR%%/library/Zend/Config/ReaderPluginManager.php +%%DATADIR%%/library/Zend/Config/Writer/AbstractWriter.php %%DATADIR%%/library/Zend/Config/Writer/Ini.php %%DATADIR%%/library/Zend/Config/Writer/Json.php +%%DATADIR%%/library/Zend/Config/Writer/PhpArray.php +%%DATADIR%%/library/Zend/Config/Writer/WriterInterface.php %%DATADIR%%/library/Zend/Config/Writer/Xml.php %%DATADIR%%/library/Zend/Config/Writer/Yaml.php -%%DATADIR%%/library/Zend/Config/Xml.php -%%DATADIR%%/library/Zend/Config/Yaml.php +%%DATADIR%%/library/Zend/Config/WriterPluginManager.php +%%DATADIR%%/library/Zend/Config/composer.json +%%DATADIR%%/library/Zend/Console/Adapter/AbstractAdapter.php +%%DATADIR%%/library/Zend/Console/Adapter/AdapterInterface.php +%%DATADIR%%/library/Zend/Console/Adapter/Posix.php +%%DATADIR%%/library/Zend/Console/Adapter/Virtual.php +%%DATADIR%%/library/Zend/Console/Adapter/Windows.php +%%DATADIR%%/library/Zend/Console/Adapter/WindowsAnsicon.php +%%DATADIR%%/library/Zend/Console/Charset/Ascii.php +%%DATADIR%%/library/Zend/Console/Charset/AsciiExtended.php +%%DATADIR%%/library/Zend/Console/Charset/CharsetInterface.php +%%DATADIR%%/library/Zend/Console/Charset/DECSG.php +%%DATADIR%%/library/Zend/Console/Charset/Utf8.php +%%DATADIR%%/library/Zend/Console/Charset/Utf8Heavy.php +%%DATADIR%%/library/Zend/Console/Color/Xterm256.php +%%DATADIR%%/library/Zend/Console/ColorInterface.php +%%DATADIR%%/library/Zend/Console/Console.php +%%DATADIR%%/library/Zend/Console/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Console/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Console/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Console/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Console/Getopt.php -%%DATADIR%%/library/Zend/Console/Getopt/Exception.php -%%DATADIR%%/library/Zend/Controller/Action.php -%%DATADIR%%/library/Zend/Controller/Action/Exception.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/Abstract.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/ActionStack.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/AjaxContext.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/AutoComplete/Abstract.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/AutoCompleteDojo.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/AutoCompleteScriptaculous.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/Cache.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/ContextSwitch.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/FlashMessenger.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/Json.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/Redirector.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/Url.php -%%DATADIR%%/library/Zend/Controller/Action/Helper/ViewRenderer.php -%%DATADIR%%/library/Zend/Controller/Action/HelperBroker.php -%%DATADIR%%/library/Zend/Controller/Action/HelperBroker/PriorityStack.php -%%DATADIR%%/library/Zend/Controller/Action/Interface.php -%%DATADIR%%/library/Zend/Controller/Dispatcher/Abstract.php -%%DATADIR%%/library/Zend/Controller/Dispatcher/Exception.php -%%DATADIR%%/library/Zend/Controller/Dispatcher/Interface.php -%%DATADIR%%/library/Zend/Controller/Dispatcher/Standard.php -%%DATADIR%%/library/Zend/Controller/Exception.php -%%DATADIR%%/library/Zend/Controller/Front.php -%%DATADIR%%/library/Zend/Controller/Plugin/Abstract.php -%%DATADIR%%/library/Zend/Controller/Plugin/ActionStack.php -%%DATADIR%%/library/Zend/Controller/Plugin/Broker.php -%%DATADIR%%/library/Zend/Controller/Plugin/ErrorHandler.php -%%DATADIR%%/library/Zend/Controller/Plugin/PutHandler.php -%%DATADIR%%/library/Zend/Controller/Request/Abstract.php -%%DATADIR%%/library/Zend/Controller/Request/Apache404.php -%%DATADIR%%/library/Zend/Controller/Request/Exception.php -%%DATADIR%%/library/Zend/Controller/Request/Http.php -%%DATADIR%%/library/Zend/Controller/Request/HttpTestCase.php -%%DATADIR%%/library/Zend/Controller/Request/Simple.php -%%DATADIR%%/library/Zend/Controller/Response/Abstract.php -%%DATADIR%%/library/Zend/Controller/Response/Cli.php -%%DATADIR%%/library/Zend/Controller/Response/Exception.php -%%DATADIR%%/library/Zend/Controller/Response/Http.php -%%DATADIR%%/library/Zend/Controller/Response/HttpTestCase.php -%%DATADIR%%/library/Zend/Controller/Router/Abstract.php -%%DATADIR%%/library/Zend/Controller/Router/Exception.php -%%DATADIR%%/library/Zend/Controller/Router/Interface.php -%%DATADIR%%/library/Zend/Controller/Router/Rewrite.php -%%DATADIR%%/library/Zend/Controller/Router/Route.php -%%DATADIR%%/library/Zend/Controller/Router/Route/Abstract.php -%%DATADIR%%/library/Zend/Controller/Router/Route/Chain.php -%%DATADIR%%/library/Zend/Controller/Router/Route/Hostname.php -%%DATADIR%%/library/Zend/Controller/Router/Route/Interface.php -%%DATADIR%%/library/Zend/Controller/Router/Route/Module.php -%%DATADIR%%/library/Zend/Controller/Router/Route/Regex.php -%%DATADIR%%/library/Zend/Controller/Router/Route/Static.php -%%DATADIR%%/library/Zend/Crypt.php -%%DATADIR%%/library/Zend/Crypt/DiffieHellman.php -%%DATADIR%%/library/Zend/Crypt/DiffieHellman/Exception.php -%%DATADIR%%/library/Zend/Crypt/Exception.php +%%DATADIR%%/library/Zend/Console/Prompt/AbstractPrompt.php +%%DATADIR%%/library/Zend/Console/Prompt/Char.php +%%DATADIR%%/library/Zend/Console/Prompt/Confirm.php +%%DATADIR%%/library/Zend/Console/Prompt/Line.php +%%DATADIR%%/library/Zend/Console/Prompt/Number.php +%%DATADIR%%/library/Zend/Console/Prompt/PromptInterface.php +%%DATADIR%%/library/Zend/Console/Prompt/Select.php +%%DATADIR%%/library/Zend/Console/README.md +%%DATADIR%%/library/Zend/Console/Request.php +%%DATADIR%%/library/Zend/Console/Response.php +%%DATADIR%%/library/Zend/Console/composer.json +%%DATADIR%%/library/Zend/Crypt/BlockCipher.php +%%DATADIR%%/library/Zend/Crypt/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Crypt/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Crypt/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Crypt/Hash.php %%DATADIR%%/library/Zend/Crypt/Hmac.php -%%DATADIR%%/library/Zend/Crypt/Hmac/Exception.php -%%DATADIR%%/library/Zend/Crypt/Math.php -%%DATADIR%%/library/Zend/Crypt/Math/BigInteger.php -%%DATADIR%%/library/Zend/Crypt/Math/BigInteger/Bcmath.php -%%DATADIR%%/library/Zend/Crypt/Math/BigInteger/Exception.php -%%DATADIR%%/library/Zend/Crypt/Math/BigInteger/Gmp.php -%%DATADIR%%/library/Zend/Crypt/Math/BigInteger/Interface.php -%%DATADIR%%/library/Zend/Crypt/Math/Exception.php -%%DATADIR%%/library/Zend/Crypt/Rsa.php -%%DATADIR%%/library/Zend/Crypt/Rsa/Exception.php -%%DATADIR%%/library/Zend/Crypt/Rsa/Key.php -%%DATADIR%%/library/Zend/Crypt/Rsa/Key/Private.php -%%DATADIR%%/library/Zend/Crypt/Rsa/Key/Public.php -%%DATADIR%%/library/Zend/Currency.php -%%DATADIR%%/library/Zend/Currency/CurrencyInterface.php -%%DATADIR%%/library/Zend/Currency/Exception.php -%%DATADIR%%/library/Zend/Date.php -%%DATADIR%%/library/Zend/Date/Cities.php -%%DATADIR%%/library/Zend/Date/DateObject.php -%%DATADIR%%/library/Zend/Date/Exception.php -%%DATADIR%%/library/Zend/Db.php -%%DATADIR%%/library/Zend/Db/Adapter/Abstract.php -%%DATADIR%%/library/Zend/Db/Adapter/Db2.php -%%DATADIR%%/library/Zend/Db/Adapter/Db2/Exception.php -%%DATADIR%%/library/Zend/Db/Adapter/Exception.php -%%DATADIR%%/library/Zend/Db/Adapter/Mysqli.php -%%DATADIR%%/library/Zend/Db/Adapter/Mysqli/Exception.php -%%DATADIR%%/library/Zend/Db/Adapter/Oracle.php -%%DATADIR%%/library/Zend/Db/Adapter/Oracle/Exception.php -%%DATADIR%%/library/Zend/Db/Adapter/Pdo/Abstract.php -%%DATADIR%%/library/Zend/Db/Adapter/Pdo/Ibm.php -%%DATADIR%%/library/Zend/Db/Adapter/Pdo/Ibm/Db2.php -%%DATADIR%%/library/Zend/Db/Adapter/Pdo/Ibm/Ids.php -%%DATADIR%%/library/Zend/Db/Adapter/Pdo/Mssql.php -%%DATADIR%%/library/Zend/Db/Adapter/Pdo/Mysql.php -%%DATADIR%%/library/Zend/Db/Adapter/Pdo/Oci.php -%%DATADIR%%/library/Zend/Db/Adapter/Pdo/Pgsql.php -%%DATADIR%%/library/Zend/Db/Adapter/Pdo/Sqlite.php -%%DATADIR%%/library/Zend/Db/Adapter/Sqlsrv.php -%%DATADIR%%/library/Zend/Db/Adapter/Sqlsrv/Exception.php -%%DATADIR%%/library/Zend/Db/Exception.php -%%DATADIR%%/library/Zend/Db/Expr.php -%%DATADIR%%/library/Zend/Db/Profiler.php -%%DATADIR%%/library/Zend/Db/Profiler/Exception.php -%%DATADIR%%/library/Zend/Db/Profiler/Firebug.php -%%DATADIR%%/library/Zend/Db/Profiler/Query.php -%%DATADIR%%/library/Zend/Db/Select.php -%%DATADIR%%/library/Zend/Db/Select/Exception.php -%%DATADIR%%/library/Zend/Db/Statement.php -%%DATADIR%%/library/Zend/Db/Statement/Db2.php -%%DATADIR%%/library/Zend/Db/Statement/Db2/Exception.php -%%DATADIR%%/library/Zend/Db/Statement/Exception.php -%%DATADIR%%/library/Zend/Db/Statement/Interface.php -%%DATADIR%%/library/Zend/Db/Statement/Mysqli.php -%%DATADIR%%/library/Zend/Db/Statement/Mysqli/Exception.php -%%DATADIR%%/library/Zend/Db/Statement/Oracle.php -%%DATADIR%%/library/Zend/Db/Statement/Oracle/Exception.php -%%DATADIR%%/library/Zend/Db/Statement/Pdo.php -%%DATADIR%%/library/Zend/Db/Statement/Pdo/Ibm.php -%%DATADIR%%/library/Zend/Db/Statement/Pdo/Oci.php -%%DATADIR%%/library/Zend/Db/Statement/Sqlsrv.php -%%DATADIR%%/library/Zend/Db/Statement/Sqlsrv/Exception.php -%%DATADIR%%/library/Zend/Db/Table.php -%%DATADIR%%/library/Zend/Db/Table/Abstract.php -%%DATADIR%%/library/Zend/Db/Table/Definition.php -%%DATADIR%%/library/Zend/Db/Table/Exception.php -%%DATADIR%%/library/Zend/Db/Table/Row.php -%%DATADIR%%/library/Zend/Db/Table/Row/Abstract.php -%%DATADIR%%/library/Zend/Db/Table/Row/Exception.php -%%DATADIR%%/library/Zend/Db/Table/Rowset.php -%%DATADIR%%/library/Zend/Db/Table/Rowset/Abstract.php -%%DATADIR%%/library/Zend/Db/Table/Rowset/Exception.php -%%DATADIR%%/library/Zend/Db/Table/Select.php -%%DATADIR%%/library/Zend/Db/Table/Select/Exception.php -%%DATADIR%%/library/Zend/Debug.php -%%DATADIR%%/library/Zend/Dojo.php -%%DATADIR%%/library/Zend/Dojo/BuildLayer.php -%%DATADIR%%/library/Zend/Dojo/Data.php -%%DATADIR%%/library/Zend/Dojo/Exception.php -%%DATADIR%%/library/Zend/Dojo/Form.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/AccordionContainer.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/AccordionPane.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/BorderContainer.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/ContentPane.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/DijitContainer.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/DijitElement.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/DijitForm.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/SplitContainer.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/StackContainer.php -%%DATADIR%%/library/Zend/Dojo/Form/Decorator/TabContainer.php -%%DATADIR%%/library/Zend/Dojo/Form/DisplayGroup.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/Button.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/CheckBox.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/ComboBox.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/CurrencyTextBox.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/DateTextBox.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/Dijit.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/DijitMulti.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/Editor.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/FilteringSelect.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/HorizontalSlider.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/NumberSpinner.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/NumberTextBox.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/PasswordTextBox.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/RadioButton.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/SimpleTextarea.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/Slider.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/SubmitButton.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/TextBox.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/Textarea.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/TimeTextBox.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/ValidationTextBox.php -%%DATADIR%%/library/Zend/Dojo/Form/Element/VerticalSlider.php -%%DATADIR%%/library/Zend/Dojo/Form/SubForm.php -%%DATADIR%%/library/Zend/Dojo/View/Exception.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/AccordionContainer.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/AccordionPane.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/BorderContainer.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/Button.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/CheckBox.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/ComboBox.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/ContentPane.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/CurrencyTextBox.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/CustomDijit.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/DateTextBox.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/Dijit.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/DijitContainer.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/Dojo.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/Dojo/Container.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/Editor.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/FilteringSelect.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/Form.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/HorizontalSlider.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/NumberSpinner.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/NumberTextBox.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/PasswordTextBox.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/RadioButton.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/SimpleTextarea.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/Slider.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/SplitContainer.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/StackContainer.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/SubmitButton.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/TabContainer.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/TextBox.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/Textarea.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/TimeTextBox.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/ValidationTextBox.php -%%DATADIR%%/library/Zend/Dojo/View/Helper/VerticalSlider.php -%%DATADIR%%/library/Zend/Dom/Exception.php +%%DATADIR%%/library/Zend/Crypt/Key/Derivation/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Crypt/Key/Derivation/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Crypt/Key/Derivation/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Crypt/Key/Derivation/Pbkdf2.php +%%DATADIR%%/library/Zend/Crypt/Key/Derivation/SaltedS2k.php +%%DATADIR%%/library/Zend/Crypt/Key/Derivation/Scrypt.php +%%DATADIR%%/library/Zend/Crypt/Password/Apache.php +%%DATADIR%%/library/Zend/Crypt/Password/Bcrypt.php +%%DATADIR%%/library/Zend/Crypt/Password/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Crypt/Password/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Crypt/Password/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Crypt/Password/PasswordInterface.php +%%DATADIR%%/library/Zend/Crypt/PublicKey/DiffieHellman.php +%%DATADIR%%/library/Zend/Crypt/PublicKey/Rsa.php +%%DATADIR%%/library/Zend/Crypt/PublicKey/Rsa/AbstractKey.php +%%DATADIR%%/library/Zend/Crypt/PublicKey/Rsa/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Crypt/PublicKey/Rsa/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Crypt/PublicKey/Rsa/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Crypt/PublicKey/Rsa/PrivateKey.php +%%DATADIR%%/library/Zend/Crypt/PublicKey/Rsa/PublicKey.php +%%DATADIR%%/library/Zend/Crypt/PublicKey/RsaOptions.php +%%DATADIR%%/library/Zend/Crypt/README.md +%%DATADIR%%/library/Zend/Crypt/Symmetric/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Crypt/Symmetric/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Crypt/Symmetric/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Crypt/Symmetric/Mcrypt.php +%%DATADIR%%/library/Zend/Crypt/Symmetric/Padding/PaddingInterface.php +%%DATADIR%%/library/Zend/Crypt/Symmetric/Padding/Pkcs7.php +%%DATADIR%%/library/Zend/Crypt/Symmetric/PaddingPluginManager.php +%%DATADIR%%/library/Zend/Crypt/Symmetric/SymmetricInterface.php +%%DATADIR%%/library/Zend/Crypt/SymmetricPluginManager.php +%%DATADIR%%/library/Zend/Crypt/Utils.php +%%DATADIR%%/library/Zend/Crypt/composer.json +%%DATADIR%%/library/Zend/Db/Adapter/Adapter.php +%%DATADIR%%/library/Zend/Db/Adapter/AdapterAbstractServiceFactory.php +%%DATADIR%%/library/Zend/Db/Adapter/AdapterAwareInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/AdapterAwareTrait.php +%%DATADIR%%/library/Zend/Db/Adapter/AdapterInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/AdapterServiceFactory.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/ConnectionInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/DriverInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Feature/AbstractFeature.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Feature/DriverFeatureInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/IbmDb2/Connection.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/IbmDb2/IbmDb2.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/IbmDb2/Result.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/IbmDb2/Statement.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Mysqli/Connection.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Mysqli/Mysqli.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Mysqli/Result.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Mysqli/Statement.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Oci8/Connection.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Oci8/Oci8.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Oci8/Result.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Oci8/Statement.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pdo/Connection.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pdo/Feature/OracleRowCounter.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pdo/Feature/SqliteRowCounter.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pdo/Pdo.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pdo/Result.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pdo/Statement.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pgsql/Connection.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pgsql/Pgsql.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pgsql/Result.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Pgsql/Statement.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/ResultInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Sqlsrv/Connection.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ErrorException.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Sqlsrv/Result.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Sqlsrv/Sqlsrv.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/Sqlsrv/Statement.php +%%DATADIR%%/library/Zend/Db/Adapter/Driver/StatementInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/Exception/ErrorException.php +%%DATADIR%%/library/Zend/Db/Adapter/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Db/Adapter/Exception/InvalidConnectionParametersException.php +%%DATADIR%%/library/Zend/Db/Adapter/Exception/InvalidQueryException.php +%%DATADIR%%/library/Zend/Db/Adapter/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Db/Adapter/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Db/Adapter/ParameterContainer.php +%%DATADIR%%/library/Zend/Db/Adapter/Platform/IbmDb2.php +%%DATADIR%%/library/Zend/Db/Adapter/Platform/Mysql.php +%%DATADIR%%/library/Zend/Db/Adapter/Platform/Oracle.php +%%DATADIR%%/library/Zend/Db/Adapter/Platform/PlatformInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/Platform/Postgresql.php +%%DATADIR%%/library/Zend/Db/Adapter/Platform/Sql92.php +%%DATADIR%%/library/Zend/Db/Adapter/Platform/SqlServer.php +%%DATADIR%%/library/Zend/Db/Adapter/Platform/Sqlite.php +%%DATADIR%%/library/Zend/Db/Adapter/Profiler/Profiler.php +%%DATADIR%%/library/Zend/Db/Adapter/Profiler/ProfilerAwareInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/Profiler/ProfilerInterface.php +%%DATADIR%%/library/Zend/Db/Adapter/StatementContainer.php +%%DATADIR%%/library/Zend/Db/Adapter/StatementContainerInterface.php +%%DATADIR%%/library/Zend/Db/Exception/ErrorException.php +%%DATADIR%%/library/Zend/Db/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Db/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Db/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Db/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Db/Metadata/Metadata.php +%%DATADIR%%/library/Zend/Db/Metadata/MetadataInterface.php +%%DATADIR%%/library/Zend/Db/Metadata/Object/AbstractTableObject.php +%%DATADIR%%/library/Zend/Db/Metadata/Object/ColumnObject.php +%%DATADIR%%/library/Zend/Db/Metadata/Object/ConstraintObject.php +%%DATADIR%%/library/Zend/Db/Metadata/Object/TableObject.php +%%DATADIR%%/library/Zend/Db/Metadata/Object/TriggerObject.php +%%DATADIR%%/library/Zend/Db/Metadata/Object/ViewObject.php +%%DATADIR%%/library/Zend/Db/Metadata/Source/AbstractSource.php +%%DATADIR%%/library/Zend/Db/Metadata/Source/MysqlMetadata.php +%%DATADIR%%/library/Zend/Db/Metadata/Source/PostgresqlMetadata.php +%%DATADIR%%/library/Zend/Db/Metadata/Source/SqlServerMetadata.php +%%DATADIR%%/library/Zend/Db/Metadata/Source/SqliteMetadata.php +%%DATADIR%%/library/Zend/Db/README.md +%%DATADIR%%/library/Zend/Db/ResultSet/AbstractResultSet.php +%%DATADIR%%/library/Zend/Db/ResultSet/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Db/ResultSet/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Db/ResultSet/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Db/ResultSet/HydratingResultSet.php +%%DATADIR%%/library/Zend/Db/ResultSet/ResultSet.php +%%DATADIR%%/library/Zend/Db/ResultSet/ResultSetInterface.php +%%DATADIR%%/library/Zend/Db/RowGateway/AbstractRowGateway.php +%%DATADIR%%/library/Zend/Db/RowGateway/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Db/RowGateway/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Db/RowGateway/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Db/RowGateway/Feature/AbstractFeature.php +%%DATADIR%%/library/Zend/Db/RowGateway/Feature/FeatureSet.php +%%DATADIR%%/library/Zend/Db/RowGateway/RowGateway.php +%%DATADIR%%/library/Zend/Db/RowGateway/RowGatewayInterface.php +%%DATADIR%%/library/Zend/Db/Sql/AbstractSql.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/AlterTable.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/BigInteger.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Blob.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Boolean.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Char.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Column.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/ColumnInterface.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Date.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Decimal.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Float.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Integer.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Text.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Time.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Column/Varchar.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Constraint/AbstractConstraint.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Constraint/Check.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Constraint/ConstraintInterface.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Constraint/ForeignKey.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Constraint/PrimaryKey.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/Constraint/UniqueKey.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/CreateTable.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/DropTable.php +%%DATADIR%%/library/Zend/Db/Sql/Ddl/SqlInterface.php +%%DATADIR%%/library/Zend/Db/Sql/Delete.php +%%DATADIR%%/library/Zend/Db/Sql/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Db/Sql/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Db/Sql/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Db/Sql/Expression.php +%%DATADIR%%/library/Zend/Db/Sql/ExpressionInterface.php +%%DATADIR%%/library/Zend/Db/Sql/Having.php +%%DATADIR%%/library/Zend/Db/Sql/Insert.php +%%DATADIR%%/library/Zend/Db/Sql/Literal.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/AbstractPlatform.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql/Ddl/CreateTableDecorator.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql/Mysql.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql/SelectDecorator.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/Oracle/Oracle.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/Oracle/SelectDecorator.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/Platform.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/PlatformDecoratorInterface.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/SqlServer/SelectDecorator.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/SqlServer/SqlServer.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/Between.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/Expression.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/In.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/IsNotNull.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/IsNull.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/Like.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/Literal.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/NotIn.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/Operator.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/Predicate.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/PredicateInterface.php +%%DATADIR%%/library/Zend/Db/Sql/Predicate/PredicateSet.php +%%DATADIR%%/library/Zend/Db/Sql/PreparableSqlInterface.php +%%DATADIR%%/library/Zend/Db/Sql/Select.php +%%DATADIR%%/library/Zend/Db/Sql/Sql.php +%%DATADIR%%/library/Zend/Db/Sql/SqlInterface.php +%%DATADIR%%/library/Zend/Db/Sql/TableIdentifier.php +%%DATADIR%%/library/Zend/Db/Sql/Update.php +%%DATADIR%%/library/Zend/Db/Sql/Where.php +%%DATADIR%%/library/Zend/Db/TableGateway/AbstractTableGateway.php +%%DATADIR%%/library/Zend/Db/TableGateway/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Db/TableGateway/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Db/TableGateway/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Db/TableGateway/Feature/AbstractFeature.php +%%DATADIR%%/library/Zend/Db/TableGateway/Feature/EventFeature.php +%%DATADIR%%/library/Zend/Db/TableGateway/Feature/EventFeature/TableGatewayEvent.php +%%DATADIR%%/library/Zend/Db/TableGateway/Feature/FeatureSet.php +%%DATADIR%%/library/Zend/Db/TableGateway/Feature/GlobalAdapterFeature.php +%%DATADIR%%/library/Zend/Db/TableGateway/Feature/MasterSlaveFeature.php +%%DATADIR%%/library/Zend/Db/TableGateway/Feature/MetadataFeature.php +%%DATADIR%%/library/Zend/Db/TableGateway/Feature/RowGatewayFeature.php +%%DATADIR%%/library/Zend/Db/TableGateway/Feature/SequenceFeature.php +%%DATADIR%%/library/Zend/Db/TableGateway/TableGateway.php +%%DATADIR%%/library/Zend/Db/TableGateway/TableGatewayInterface.php +%%DATADIR%%/library/Zend/Db/composer.json +%%DATADIR%%/library/Zend/Debug/Debug.php +%%DATADIR%%/library/Zend/Debug/README.md +%%DATADIR%%/library/Zend/Debug/composer.json +%%DATADIR%%/library/Zend/Di/Config.php +%%DATADIR%%/library/Zend/Di/Definition/Annotation/Inject.php +%%DATADIR%%/library/Zend/Di/Definition/Annotation/Instantiator.php +%%DATADIR%%/library/Zend/Di/Definition/ArrayDefinition.php +%%DATADIR%%/library/Zend/Di/Definition/Builder/InjectionMethod.php +%%DATADIR%%/library/Zend/Di/Definition/Builder/PhpClass.php +%%DATADIR%%/library/Zend/Di/Definition/BuilderDefinition.php +%%DATADIR%%/library/Zend/Di/Definition/ClassDefinition.php +%%DATADIR%%/library/Zend/Di/Definition/CompilerDefinition.php +%%DATADIR%%/library/Zend/Di/Definition/DefinitionInterface.php +%%DATADIR%%/library/Zend/Di/Definition/IntrospectionStrategy.php +%%DATADIR%%/library/Zend/Di/Definition/PartialMarker.php +%%DATADIR%%/library/Zend/Di/Definition/RuntimeDefinition.php +%%DATADIR%%/library/Zend/Di/DefinitionList.php +%%DATADIR%%/library/Zend/Di/DependencyInjectionInterface.php +%%DATADIR%%/library/Zend/Di/Di.php +%%DATADIR%%/library/Zend/Di/Display/Console.php +%%DATADIR%%/library/Zend/Di/Exception/CircularDependencyException.php +%%DATADIR%%/library/Zend/Di/Exception/ClassNotFoundException.php +%%DATADIR%%/library/Zend/Di/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Di/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Di/Exception/InvalidCallbackException.php +%%DATADIR%%/library/Zend/Di/Exception/InvalidParamNameException.php +%%DATADIR%%/library/Zend/Di/Exception/InvalidPositionException.php +%%DATADIR%%/library/Zend/Di/Exception/MissingPropertyException.php +%%DATADIR%%/library/Zend/Di/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Di/Exception/UndefinedReferenceException.php +%%DATADIR%%/library/Zend/Di/InstanceManager.php +%%DATADIR%%/library/Zend/Di/LocatorInterface.php +%%DATADIR%%/library/Zend/Di/README.md +%%DATADIR%%/library/Zend/Di/ServiceLocator.php +%%DATADIR%%/library/Zend/Di/ServiceLocator/DependencyInjectorProxy.php +%%DATADIR%%/library/Zend/Di/ServiceLocator/Generator.php +%%DATADIR%%/library/Zend/Di/ServiceLocator/GeneratorInstance.php +%%DATADIR%%/library/Zend/Di/ServiceLocatorInterface.php +%%DATADIR%%/library/Zend/Di/TODO +%%DATADIR%%/library/Zend/Di/composer.json +%%DATADIR%%/library/Zend/Dom/Css2Xpath.php +%%DATADIR%%/library/Zend/Dom/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Dom/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Dom/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Dom/NodeList.php %%DATADIR%%/library/Zend/Dom/Query.php -%%DATADIR%%/library/Zend/Dom/Query/Css2Xpath.php -%%DATADIR%%/library/Zend/Dom/Query/Result.php +%%DATADIR%%/library/Zend/Dom/README.md +%%DATADIR%%/library/Zend/Dom/composer.json +%%DATADIR%%/library/Zend/Escaper/Escaper.php +%%DATADIR%%/library/Zend/Escaper/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Escaper/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Escaper/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Escaper/README.md +%%DATADIR%%/library/Zend/Escaper/composer.json +%%DATADIR%%/library/Zend/EventManager/AbstractListenerAggregate.php %%DATADIR%%/library/Zend/EventManager/Event.php -%%DATADIR%%/library/Zend/EventManager/EventCollection.php -%%DATADIR%%/library/Zend/EventManager/EventDescription.php +%%DATADIR%%/library/Zend/EventManager/EventInterface.php %%DATADIR%%/library/Zend/EventManager/EventManager.php -%%DATADIR%%/library/Zend/EventManager/EventManagerAware.php -%%DATADIR%%/library/Zend/EventManager/Exception.php +%%DATADIR%%/library/Zend/EventManager/EventManagerAwareInterface.php +%%DATADIR%%/library/Zend/EventManager/EventManagerAwareTrait.php +%%DATADIR%%/library/Zend/EventManager/EventManagerInterface.php +%%DATADIR%%/library/Zend/EventManager/EventsCapableInterface.php +%%DATADIR%%/library/Zend/EventManager/Exception/DomainException.php +%%DATADIR%%/library/Zend/EventManager/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/EventManager/Exception/InvalidArgumentException.php -%%DATADIR%%/library/Zend/EventManager/Filter.php +%%DATADIR%%/library/Zend/EventManager/Exception/InvalidCallbackException.php +%%DATADIR%%/library/Zend/EventManager/Filter/FilterInterface.php %%DATADIR%%/library/Zend/EventManager/Filter/FilterIterator.php %%DATADIR%%/library/Zend/EventManager/FilterChain.php %%DATADIR%%/library/Zend/EventManager/GlobalEventManager.php -%%DATADIR%%/library/Zend/EventManager/ListenerAggregate.php +%%DATADIR%%/library/Zend/EventManager/ListenerAggregateInterface.php +%%DATADIR%%/library/Zend/EventManager/ListenerAggregateTrait.php +%%DATADIR%%/library/Zend/EventManager/ProvidesEvents.php +%%DATADIR%%/library/Zend/EventManager/README.md %%DATADIR%%/library/Zend/EventManager/ResponseCollection.php -%%DATADIR%%/library/Zend/EventManager/SharedEventCollection.php -%%DATADIR%%/library/Zend/EventManager/SharedEventCollectionAware.php +%%DATADIR%%/library/Zend/EventManager/SharedEventAggregateAwareInterface.php %%DATADIR%%/library/Zend/EventManager/SharedEventManager.php +%%DATADIR%%/library/Zend/EventManager/SharedEventManagerAwareInterface.php +%%DATADIR%%/library/Zend/EventManager/SharedEventManagerInterface.php +%%DATADIR%%/library/Zend/EventManager/SharedListenerAggregateInterface.php %%DATADIR%%/library/Zend/EventManager/StaticEventManager.php -%%DATADIR%%/library/Zend/Exception.php -%%DATADIR%%/library/Zend/Feed.php -%%DATADIR%%/library/Zend/Feed/Abstract.php -%%DATADIR%%/library/Zend/Feed/Atom.php -%%DATADIR%%/library/Zend/Feed/Builder.php -%%DATADIR%%/library/Zend/Feed/Builder/Entry.php -%%DATADIR%%/library/Zend/Feed/Builder/Exception.php -%%DATADIR%%/library/Zend/Feed/Builder/Header.php -%%DATADIR%%/library/Zend/Feed/Builder/Header/Itunes.php -%%DATADIR%%/library/Zend/Feed/Builder/Interface.php -%%DATADIR%%/library/Zend/Feed/Element.php -%%DATADIR%%/library/Zend/Feed/Entry/Abstract.php -%%DATADIR%%/library/Zend/Feed/Entry/Atom.php -%%DATADIR%%/library/Zend/Feed/Entry/Rss.php -%%DATADIR%%/library/Zend/Feed/Exception.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/CallbackAbstract.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/CallbackInterface.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Exception.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/HttpResponse.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Model/ModelAbstract.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Model/Subscription.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Model/SubscriptionInterface.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Publisher.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Subscriber.php -%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Subscriber/Callback.php -%%DATADIR%%/library/Zend/Feed/Reader.php +%%DATADIR%%/library/Zend/EventManager/composer.json +%%DATADIR%%/library/Zend/Feed/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Feed/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Feed/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Feed/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/AbstractCallback.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/CallbackInterface.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/HttpResponse.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Model/AbstractModel.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Model/Subscription.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Model/SubscriptionPersistenceInterface.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/PubSubHubbub.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Publisher.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Subscriber.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Subscriber/Callback.php +%%DATADIR%%/library/Zend/Feed/PubSubHubbub/Version.php +%%DATADIR%%/library/Zend/Feed/README.md +%%DATADIR%%/library/Zend/Feed/Reader/AbstractEntry.php +%%DATADIR%%/library/Zend/Feed/Reader/AbstractFeed.php %%DATADIR%%/library/Zend/Feed/Reader/Collection.php +%%DATADIR%%/library/Zend/Feed/Reader/Collection/AbstractCollection.php %%DATADIR%%/library/Zend/Feed/Reader/Collection/Author.php %%DATADIR%%/library/Zend/Feed/Reader/Collection/Category.php -%%DATADIR%%/library/Zend/Feed/Reader/Collection/CollectionAbstract.php +%%DATADIR%%/library/Zend/Feed/Reader/Collection/Collection.php +%%DATADIR%%/library/Zend/Feed/Reader/Entry/AbstractEntry.php %%DATADIR%%/library/Zend/Feed/Reader/Entry/Atom.php +%%DATADIR%%/library/Zend/Feed/Reader/Entry/EntryInterface.php %%DATADIR%%/library/Zend/Feed/Reader/Entry/Rss.php -%%DATADIR%%/library/Zend/Feed/Reader/EntryAbstract.php -%%DATADIR%%/library/Zend/Feed/Reader/EntryInterface.php +%%DATADIR%%/library/Zend/Feed/Reader/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Feed/Reader/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Feed/Reader/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Feed/Reader/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Feed/Reader/Extension/AbstractEntry.php +%%DATADIR%%/library/Zend/Feed/Reader/Extension/AbstractFeed.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/Atom/Entry.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/Atom/Feed.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/Content/Entry.php @@ -3444,25 +654,33 @@ %%DATADIR%%/library/Zend/Feed/Reader/Extension/CreativeCommons/Feed.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/DublinCore/Entry.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/DublinCore/Feed.php -%%DATADIR%%/library/Zend/Feed/Reader/Extension/EntryAbstract.php -%%DATADIR%%/library/Zend/Feed/Reader/Extension/FeedAbstract.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/Podcast/Entry.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/Podcast/Feed.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/Slash/Entry.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/Syndication/Feed.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/Thread/Entry.php %%DATADIR%%/library/Zend/Feed/Reader/Extension/WellFormedWeb/Entry.php +%%DATADIR%%/library/Zend/Feed/Reader/ExtensionManager.php +%%DATADIR%%/library/Zend/Feed/Reader/ExtensionManagerInterface.php +%%DATADIR%%/library/Zend/Feed/Reader/ExtensionPluginManager.php +%%DATADIR%%/library/Zend/Feed/Reader/Feed/AbstractFeed.php %%DATADIR%%/library/Zend/Feed/Reader/Feed/Atom.php %%DATADIR%%/library/Zend/Feed/Reader/Feed/Atom/Source.php +%%DATADIR%%/library/Zend/Feed/Reader/Feed/FeedInterface.php %%DATADIR%%/library/Zend/Feed/Reader/Feed/Rss.php -%%DATADIR%%/library/Zend/Feed/Reader/FeedAbstract.php -%%DATADIR%%/library/Zend/Feed/Reader/FeedInterface.php %%DATADIR%%/library/Zend/Feed/Reader/FeedSet.php -%%DATADIR%%/library/Zend/Feed/Rss.php -%%DATADIR%%/library/Zend/Feed/Writer.php +%%DATADIR%%/library/Zend/Feed/Reader/Http/ClientInterface.php +%%DATADIR%%/library/Zend/Feed/Reader/Http/ResponseInterface.php +%%DATADIR%%/library/Zend/Feed/Reader/Reader.php +%%DATADIR%%/library/Zend/Feed/Uri.php +%%DATADIR%%/library/Zend/Feed/Writer/AbstractFeed.php %%DATADIR%%/library/Zend/Feed/Writer/Deleted.php %%DATADIR%%/library/Zend/Feed/Writer/Entry.php -%%DATADIR%%/library/Zend/Feed/Writer/Exception/InvalidMethodException.php +%%DATADIR%%/library/Zend/Feed/Writer/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Feed/Writer/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Feed/Writer/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Feed/Writer/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Feed/Writer/Extension/AbstractRenderer.php %%DATADIR%%/library/Zend/Feed/Writer/Extension/Atom/Renderer/Feed.php %%DATADIR%%/library/Zend/Feed/Writer/Extension/Content/Renderer/Entry.php %%DATADIR%%/library/Zend/Feed/Writer/Extension/DublinCore/Renderer/Entry.php @@ -3471,592 +689,702 @@ %%DATADIR%%/library/Zend/Feed/Writer/Extension/ITunes/Feed.php %%DATADIR%%/library/Zend/Feed/Writer/Extension/ITunes/Renderer/Entry.php %%DATADIR%%/library/Zend/Feed/Writer/Extension/ITunes/Renderer/Feed.php -%%DATADIR%%/library/Zend/Feed/Writer/Extension/RendererAbstract.php %%DATADIR%%/library/Zend/Feed/Writer/Extension/RendererInterface.php %%DATADIR%%/library/Zend/Feed/Writer/Extension/Slash/Renderer/Entry.php %%DATADIR%%/library/Zend/Feed/Writer/Extension/Threading/Renderer/Entry.php %%DATADIR%%/library/Zend/Feed/Writer/Extension/WellFormedWeb/Renderer/Entry.php +%%DATADIR%%/library/Zend/Feed/Writer/ExtensionManager.php +%%DATADIR%%/library/Zend/Feed/Writer/ExtensionManagerInterface.php +%%DATADIR%%/library/Zend/Feed/Writer/ExtensionPluginManager.php %%DATADIR%%/library/Zend/Feed/Writer/Feed.php -%%DATADIR%%/library/Zend/Feed/Writer/Feed/FeedAbstract.php +%%DATADIR%%/library/Zend/Feed/Writer/FeedFactory.php +%%DATADIR%%/library/Zend/Feed/Writer/Renderer/AbstractRenderer.php %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Entry/Atom.php %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Entry/Atom/Deleted.php +%%DATADIR%%/library/Zend/Feed/Writer/Renderer/Entry/AtomDeleted.php %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Entry/Rss.php +%%DATADIR%%/library/Zend/Feed/Writer/Renderer/Feed/AbstractAtom.php %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Feed/Atom.php -%%DATADIR%%/library/Zend/Feed/Writer/Renderer/Feed/Atom/AtomAbstract.php +%%DATADIR%%/library/Zend/Feed/Writer/Renderer/Feed/Atom/AbstractAtom.php %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Feed/Atom/Source.php +%%DATADIR%%/library/Zend/Feed/Writer/Renderer/Feed/AtomSource.php %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Feed/Rss.php -%%DATADIR%%/library/Zend/Feed/Writer/Renderer/RendererAbstract.php %%DATADIR%%/library/Zend/Feed/Writer/Renderer/RendererInterface.php %%DATADIR%%/library/Zend/Feed/Writer/Source.php +%%DATADIR%%/library/Zend/Feed/Writer/Version.php +%%DATADIR%%/library/Zend/Feed/Writer/Writer.php +%%DATADIR%%/library/Zend/Feed/composer.json %%DATADIR%%/library/Zend/File/ClassFileLocator.php -%%DATADIR%%/library/Zend/File/Transfer.php -%%DATADIR%%/library/Zend/File/Transfer/Adapter/Abstract.php +%%DATADIR%%/library/Zend/File/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/File/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/File/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/File/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/File/PhpClassFile.php +%%DATADIR%%/library/Zend/File/README.md +%%DATADIR%%/library/Zend/File/Transfer/Adapter/AbstractAdapter.php +%%DATADIR%%/library/Zend/File/Transfer/Adapter/FilterPluginManager.php %%DATADIR%%/library/Zend/File/Transfer/Adapter/Http.php -%%DATADIR%%/library/Zend/File/Transfer/Exception.php -%%DATADIR%%/library/Zend/Filter.php -%%DATADIR%%/library/Zend/Filter/Alnum.php -%%DATADIR%%/library/Zend/Filter/Alpha.php +%%DATADIR%%/library/Zend/File/Transfer/Adapter/ValidatorPluginManager.php +%%DATADIR%%/library/Zend/File/Transfer/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/File/Transfer/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/File/Transfer/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/File/Transfer/Exception/PhpEnvironmentException.php +%%DATADIR%%/library/Zend/File/Transfer/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/File/Transfer/Transfer.php +%%DATADIR%%/library/Zend/File/composer.json +%%DATADIR%%/library/Zend/Filter/AbstractFilter.php +%%DATADIR%%/library/Zend/Filter/AbstractUnicode.php %%DATADIR%%/library/Zend/Filter/BaseName.php %%DATADIR%%/library/Zend/Filter/Boolean.php %%DATADIR%%/library/Zend/Filter/Callback.php %%DATADIR%%/library/Zend/Filter/Compress.php +%%DATADIR%%/library/Zend/Filter/Compress/AbstractCompressionAlgorithm.php %%DATADIR%%/library/Zend/Filter/Compress/Bz2.php -%%DATADIR%%/library/Zend/Filter/Compress/CompressAbstract.php -%%DATADIR%%/library/Zend/Filter/Compress/CompressInterface.php +%%DATADIR%%/library/Zend/Filter/Compress/CompressionAlgorithmInterface.php %%DATADIR%%/library/Zend/Filter/Compress/Gz.php %%DATADIR%%/library/Zend/Filter/Compress/Lzf.php %%DATADIR%%/library/Zend/Filter/Compress/Rar.php +%%DATADIR%%/library/Zend/Filter/Compress/Snappy.php %%DATADIR%%/library/Zend/Filter/Compress/Tar.php %%DATADIR%%/library/Zend/Filter/Compress/Zip.php +%%DATADIR%%/library/Zend/Filter/DateTimeFormatter.php %%DATADIR%%/library/Zend/Filter/Decompress.php %%DATADIR%%/library/Zend/Filter/Decrypt.php %%DATADIR%%/library/Zend/Filter/Digits.php %%DATADIR%%/library/Zend/Filter/Dir.php %%DATADIR%%/library/Zend/Filter/Encrypt.php -%%DATADIR%%/library/Zend/Filter/Encrypt/Interface.php -%%DATADIR%%/library/Zend/Filter/Encrypt/Mcrypt.php +%%DATADIR%%/library/Zend/Filter/Encrypt/BlockCipher.php +%%DATADIR%%/library/Zend/Filter/Encrypt/EncryptionAlgorithmInterface.php %%DATADIR%%/library/Zend/Filter/Encrypt/Openssl.php -%%DATADIR%%/library/Zend/Filter/Exception.php +%%DATADIR%%/library/Zend/Filter/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Filter/Exception/DomainException.php +%%DATADIR%%/library/Zend/Filter/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Filter/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/Filter/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Filter/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Filter/File/Decrypt.php %%DATADIR%%/library/Zend/Filter/File/Encrypt.php %%DATADIR%%/library/Zend/Filter/File/LowerCase.php %%DATADIR%%/library/Zend/Filter/File/Rename.php +%%DATADIR%%/library/Zend/Filter/File/RenameUpload.php %%DATADIR%%/library/Zend/Filter/File/UpperCase.php +%%DATADIR%%/library/Zend/Filter/FilterChain.php +%%DATADIR%%/library/Zend/Filter/FilterInterface.php +%%DATADIR%%/library/Zend/Filter/FilterPluginManager.php %%DATADIR%%/library/Zend/Filter/HtmlEntities.php %%DATADIR%%/library/Zend/Filter/Inflector.php -%%DATADIR%%/library/Zend/Filter/Input.php %%DATADIR%%/library/Zend/Filter/Int.php -%%DATADIR%%/library/Zend/Filter/Interface.php -%%DATADIR%%/library/Zend/Filter/LocalizedToNormalized.php -%%DATADIR%%/library/Zend/Filter/NormalizedToLocalized.php %%DATADIR%%/library/Zend/Filter/Null.php %%DATADIR%%/library/Zend/Filter/PregReplace.php +%%DATADIR%%/library/Zend/Filter/README.md %%DATADIR%%/library/Zend/Filter/RealPath.php +%%DATADIR%%/library/Zend/Filter/StaticFilter.php %%DATADIR%%/library/Zend/Filter/StringToLower.php %%DATADIR%%/library/Zend/Filter/StringToUpper.php %%DATADIR%%/library/Zend/Filter/StringTrim.php %%DATADIR%%/library/Zend/Filter/StripNewlines.php %%DATADIR%%/library/Zend/Filter/StripTags.php +%%DATADIR%%/library/Zend/Filter/UriNormalize.php +%%DATADIR%%/library/Zend/Filter/Word/AbstractSeparator.php %%DATADIR%%/library/Zend/Filter/Word/CamelCaseToDash.php %%DATADIR%%/library/Zend/Filter/Word/CamelCaseToSeparator.php %%DATADIR%%/library/Zend/Filter/Word/CamelCaseToUnderscore.php %%DATADIR%%/library/Zend/Filter/Word/DashToCamelCase.php %%DATADIR%%/library/Zend/Filter/Word/DashToSeparator.php %%DATADIR%%/library/Zend/Filter/Word/DashToUnderscore.php -%%DATADIR%%/library/Zend/Filter/Word/Separator/Abstract.php %%DATADIR%%/library/Zend/Filter/Word/SeparatorToCamelCase.php %%DATADIR%%/library/Zend/Filter/Word/SeparatorToDash.php %%DATADIR%%/library/Zend/Filter/Word/SeparatorToSeparator.php %%DATADIR%%/library/Zend/Filter/Word/UnderscoreToCamelCase.php %%DATADIR%%/library/Zend/Filter/Word/UnderscoreToDash.php %%DATADIR%%/library/Zend/Filter/Word/UnderscoreToSeparator.php -%%DATADIR%%/library/Zend/Form.php -%%DATADIR%%/library/Zend/Form/Decorator/Abstract.php -%%DATADIR%%/library/Zend/Form/Decorator/Callback.php -%%DATADIR%%/library/Zend/Form/Decorator/Captcha.php -%%DATADIR%%/library/Zend/Form/Decorator/Captcha/ReCaptcha.php -%%DATADIR%%/library/Zend/Form/Decorator/Captcha/Word.php -%%DATADIR%%/library/Zend/Form/Decorator/Description.php -%%DATADIR%%/library/Zend/Form/Decorator/DtDdWrapper.php -%%DATADIR%%/library/Zend/Form/Decorator/Errors.php -%%DATADIR%%/library/Zend/Form/Decorator/Exception.php -%%DATADIR%%/library/Zend/Form/Decorator/Fieldset.php -%%DATADIR%%/library/Zend/Form/Decorator/File.php -%%DATADIR%%/library/Zend/Form/Decorator/Form.php -%%DATADIR%%/library/Zend/Form/Decorator/FormElements.php -%%DATADIR%%/library/Zend/Form/Decorator/FormErrors.php -%%DATADIR%%/library/Zend/Form/Decorator/HtmlTag.php -%%DATADIR%%/library/Zend/Form/Decorator/Image.php -%%DATADIR%%/library/Zend/Form/Decorator/Interface.php -%%DATADIR%%/library/Zend/Form/Decorator/Label.php -%%DATADIR%%/library/Zend/Form/Decorator/Marker/File/Interface.php -%%DATADIR%%/library/Zend/Form/Decorator/PrepareElements.php -%%DATADIR%%/library/Zend/Form/Decorator/Tooltip.php -%%DATADIR%%/library/Zend/Form/Decorator/ViewHelper.php -%%DATADIR%%/library/Zend/Form/Decorator/ViewScript.php -%%DATADIR%%/library/Zend/Form/DisplayGroup.php +%%DATADIR%%/library/Zend/Filter/composer.json +%%DATADIR%%/library/Zend/Form/Annotation/AbstractAnnotationsListener.php +%%DATADIR%%/library/Zend/Form/Annotation/AbstractArrayAnnotation.php +%%DATADIR%%/library/Zend/Form/Annotation/AbstractArrayOrStringAnnotation.php +%%DATADIR%%/library/Zend/Form/Annotation/AbstractStringAnnotation.php +%%DATADIR%%/library/Zend/Form/Annotation/AllowEmpty.php +%%DATADIR%%/library/Zend/Form/Annotation/AnnotationBuilder.php +%%DATADIR%%/library/Zend/Form/Annotation/Attributes.php +%%DATADIR%%/library/Zend/Form/Annotation/ComposedObject.php +%%DATADIR%%/library/Zend/Form/Annotation/ElementAnnotationsListener.php +%%DATADIR%%/library/Zend/Form/Annotation/ErrorMessage.php +%%DATADIR%%/library/Zend/Form/Annotation/Exclude.php +%%DATADIR%%/library/Zend/Form/Annotation/Filter.php +%%DATADIR%%/library/Zend/Form/Annotation/Flags.php +%%DATADIR%%/library/Zend/Form/Annotation/FormAnnotationsListener.php +%%DATADIR%%/library/Zend/Form/Annotation/Hydrator.php +%%DATADIR%%/library/Zend/Form/Annotation/Input.php +%%DATADIR%%/library/Zend/Form/Annotation/InputFilter.php +%%DATADIR%%/library/Zend/Form/Annotation/Name.php +%%DATADIR%%/library/Zend/Form/Annotation/Object.php +%%DATADIR%%/library/Zend/Form/Annotation/Options.php +%%DATADIR%%/library/Zend/Form/Annotation/Required.php +%%DATADIR%%/library/Zend/Form/Annotation/Type.php +%%DATADIR%%/library/Zend/Form/Annotation/ValidationGroup.php +%%DATADIR%%/library/Zend/Form/Annotation/Validator.php %%DATADIR%%/library/Zend/Form/Element.php %%DATADIR%%/library/Zend/Form/Element/Button.php %%DATADIR%%/library/Zend/Form/Element/Captcha.php %%DATADIR%%/library/Zend/Form/Element/Checkbox.php -%%DATADIR%%/library/Zend/Form/Element/Exception.php +%%DATADIR%%/library/Zend/Form/Element/Collection.php +%%DATADIR%%/library/Zend/Form/Element/Color.php +%%DATADIR%%/library/Zend/Form/Element/Csrf.php +%%DATADIR%%/library/Zend/Form/Element/Date.php +%%DATADIR%%/library/Zend/Form/Element/DateSelect.php +%%DATADIR%%/library/Zend/Form/Element/DateTime.php +%%DATADIR%%/library/Zend/Form/Element/DateTimeLocal.php +%%DATADIR%%/library/Zend/Form/Element/DateTimeSelect.php +%%DATADIR%%/library/Zend/Form/Element/Email.php %%DATADIR%%/library/Zend/Form/Element/File.php -%%DATADIR%%/library/Zend/Form/Element/Hash.php %%DATADIR%%/library/Zend/Form/Element/Hidden.php %%DATADIR%%/library/Zend/Form/Element/Image.php -%%DATADIR%%/library/Zend/Form/Element/Multi.php +%%DATADIR%%/library/Zend/Form/Element/Month.php +%%DATADIR%%/library/Zend/Form/Element/MonthSelect.php %%DATADIR%%/library/Zend/Form/Element/MultiCheckbox.php -%%DATADIR%%/library/Zend/Form/Element/Multiselect.php +%%DATADIR%%/library/Zend/Form/Element/Number.php %%DATADIR%%/library/Zend/Form/Element/Password.php %%DATADIR%%/library/Zend/Form/Element/Radio.php -%%DATADIR%%/library/Zend/Form/Element/Reset.php +%%DATADIR%%/library/Zend/Form/Element/Range.php %%DATADIR%%/library/Zend/Form/Element/Select.php %%DATADIR%%/library/Zend/Form/Element/Submit.php %%DATADIR%%/library/Zend/Form/Element/Text.php %%DATADIR%%/library/Zend/Form/Element/Textarea.php -%%DATADIR%%/library/Zend/Form/Element/Xhtml.php -%%DATADIR%%/library/Zend/Form/Exception.php -%%DATADIR%%/library/Zend/Form/SubForm.php -%%DATADIR%%/library/Zend/Gdata.php -%%DATADIR%%/library/Zend/Gdata/Analytics.php -%%DATADIR%%/library/Zend/Gdata/Analytics/AccountEntry.php -%%DATADIR%%/library/Zend/Gdata/Analytics/AccountFeed.php -%%DATADIR%%/library/Zend/Gdata/Analytics/AccountQuery.php -%%DATADIR%%/library/Zend/Gdata/Analytics/DataEntry.php -%%DATADIR%%/library/Zend/Gdata/Analytics/DataFeed.php -%%DATADIR%%/library/Zend/Gdata/Analytics/DataQuery.php -%%DATADIR%%/library/Zend/Gdata/Analytics/Extension/Dimension.php -%%DATADIR%%/library/Zend/Gdata/Analytics/Extension/Goal.php -%%DATADIR%%/library/Zend/Gdata/Analytics/Extension/Metric.php -%%DATADIR%%/library/Zend/Gdata/Analytics/Extension/Property.php -%%DATADIR%%/library/Zend/Gdata/Analytics/Extension/TableId.php -%%DATADIR%%/library/Zend/Gdata/App.php -%%DATADIR%%/library/Zend/Gdata/App/AuthException.php -%%DATADIR%%/library/Zend/Gdata/App/BadMethodCallException.php -%%DATADIR%%/library/Zend/Gdata/App/Base.php -%%DATADIR%%/library/Zend/Gdata/App/BaseMediaSource.php -%%DATADIR%%/library/Zend/Gdata/App/CaptchaRequiredException.php -%%DATADIR%%/library/Zend/Gdata/App/Entry.php -%%DATADIR%%/library/Zend/Gdata/App/Exception.php -%%DATADIR%%/library/Zend/Gdata/App/Extension.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Author.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Category.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Content.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Contributor.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Control.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Draft.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Edited.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Element.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Email.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Generator.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Icon.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Id.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Link.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Logo.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Name.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Person.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Published.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Rights.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Source.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Subtitle.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Summary.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Text.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Title.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Updated.php -%%DATADIR%%/library/Zend/Gdata/App/Extension/Uri.php -%%DATADIR%%/library/Zend/Gdata/App/Feed.php -%%DATADIR%%/library/Zend/Gdata/App/FeedEntryParent.php -%%DATADIR%%/library/Zend/Gdata/App/FeedSourceParent.php -%%DATADIR%%/library/Zend/Gdata/App/HttpException.php -%%DATADIR%%/library/Zend/Gdata/App/IOException.php -%%DATADIR%%/library/Zend/Gdata/App/InvalidArgumentException.php -%%DATADIR%%/library/Zend/Gdata/App/LoggingHttpClientAdapterSocket.php -%%DATADIR%%/library/Zend/Gdata/App/MediaEntry.php -%%DATADIR%%/library/Zend/Gdata/App/MediaFileSource.php -%%DATADIR%%/library/Zend/Gdata/App/MediaSource.php -%%DATADIR%%/library/Zend/Gdata/App/Util.php -%%DATADIR%%/library/Zend/Gdata/App/VersionException.php -%%DATADIR%%/library/Zend/Gdata/AuthSub.php -%%DATADIR%%/library/Zend/Gdata/Books.php -%%DATADIR%%/library/Zend/Gdata/Books/CollectionEntry.php -%%DATADIR%%/library/Zend/Gdata/Books/CollectionFeed.php -%%DATADIR%%/library/Zend/Gdata/Books/Extension/AnnotationLink.php -%%DATADIR%%/library/Zend/Gdata/Books/Extension/BooksCategory.php -%%DATADIR%%/library/Zend/Gdata/Books/Extension/BooksLink.php -%%DATADIR%%/library/Zend/Gdata/Books/Extension/Embeddability.php -%%DATADIR%%/library/Zend/Gdata/Books/Extension/InfoLink.php -%%DATADIR%%/library/Zend/Gdata/Books/Extension/PreviewLink.php -%%DATADIR%%/library/Zend/Gdata/Books/Extension/Review.php -%%DATADIR%%/library/Zend/Gdata/Books/Extension/ThumbnailLink.php -%%DATADIR%%/library/Zend/Gdata/Books/Extension/Viewability.php -%%DATADIR%%/library/Zend/Gdata/Books/VolumeEntry.php -%%DATADIR%%/library/Zend/Gdata/Books/VolumeFeed.php -%%DATADIR%%/library/Zend/Gdata/Books/VolumeQuery.php -%%DATADIR%%/library/Zend/Gdata/Calendar.php -%%DATADIR%%/library/Zend/Gdata/Calendar/EventEntry.php -%%DATADIR%%/library/Zend/Gdata/Calendar/EventFeed.php -%%DATADIR%%/library/Zend/Gdata/Calendar/EventQuery.php -%%DATADIR%%/library/Zend/Gdata/Calendar/Extension/AccessLevel.php -%%DATADIR%%/library/Zend/Gdata/Calendar/Extension/Color.php -%%DATADIR%%/library/Zend/Gdata/Calendar/Extension/Hidden.php -%%DATADIR%%/library/Zend/Gdata/Calendar/Extension/Link.php -%%DATADIR%%/library/Zend/Gdata/Calendar/Extension/QuickAdd.php -%%DATADIR%%/library/Zend/Gdata/Calendar/Extension/Selected.php -%%DATADIR%%/library/Zend/Gdata/Calendar/Extension/SendEventNotifications.php -%%DATADIR%%/library/Zend/Gdata/Calendar/Extension/Timezone.php -%%DATADIR%%/library/Zend/Gdata/Calendar/Extension/WebContent.php -%%DATADIR%%/library/Zend/Gdata/Calendar/ListEntry.php -%%DATADIR%%/library/Zend/Gdata/Calendar/ListFeed.php -%%DATADIR%%/library/Zend/Gdata/ClientLogin.php -%%DATADIR%%/library/Zend/Gdata/Docs.php -%%DATADIR%%/library/Zend/Gdata/Docs/DocumentListEntry.php -%%DATADIR%%/library/Zend/Gdata/Docs/DocumentListFeed.php -%%DATADIR%%/library/Zend/Gdata/Docs/Query.php -%%DATADIR%%/library/Zend/Gdata/DublinCore.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Creator.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Date.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Description.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Format.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Identifier.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Language.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Publisher.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Rights.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Subject.php -%%DATADIR%%/library/Zend/Gdata/DublinCore/Extension/Title.php -%%DATADIR%%/library/Zend/Gdata/Entry.php -%%DATADIR%%/library/Zend/Gdata/Exif.php -%%DATADIR%%/library/Zend/Gdata/Exif/Entry.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/Distance.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/Exposure.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/FStop.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/Flash.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/FocalLength.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/ImageUniqueId.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/Iso.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/Make.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/Model.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/Tags.php -%%DATADIR%%/library/Zend/Gdata/Exif/Extension/Time.php -%%DATADIR%%/library/Zend/Gdata/Exif/Feed.php -%%DATADIR%%/library/Zend/Gdata/Extension.php -%%DATADIR%%/library/Zend/Gdata/Extension/AttendeeStatus.php -%%DATADIR%%/library/Zend/Gdata/Extension/AttendeeType.php -%%DATADIR%%/library/Zend/Gdata/Extension/Comments.php -%%DATADIR%%/library/Zend/Gdata/Extension/EntryLink.php -%%DATADIR%%/library/Zend/Gdata/Extension/EventStatus.php -%%DATADIR%%/library/Zend/Gdata/Extension/ExtendedProperty.php -%%DATADIR%%/library/Zend/Gdata/Extension/FeedLink.php -%%DATADIR%%/library/Zend/Gdata/Extension/OpenSearchItemsPerPage.php -%%DATADIR%%/library/Zend/Gdata/Extension/OpenSearchStartIndex.php -%%DATADIR%%/library/Zend/Gdata/Extension/OpenSearchTotalResults.php -%%DATADIR%%/library/Zend/Gdata/Extension/OriginalEvent.php -%%DATADIR%%/library/Zend/Gdata/Extension/Rating.php -%%DATADIR%%/library/Zend/Gdata/Extension/Recurrence.php -%%DATADIR%%/library/Zend/Gdata/Extension/RecurrenceException.php -%%DATADIR%%/library/Zend/Gdata/Extension/Reminder.php -%%DATADIR%%/library/Zend/Gdata/Extension/Transparency.php -%%DATADIR%%/library/Zend/Gdata/Extension/Visibility.php -%%DATADIR%%/library/Zend/Gdata/Extension/When.php -%%DATADIR%%/library/Zend/Gdata/Extension/Where.php -%%DATADIR%%/library/Zend/Gdata/Extension/Who.php -%%DATADIR%%/library/Zend/Gdata/Feed.php -%%DATADIR%%/library/Zend/Gdata/Gapps.php -%%DATADIR%%/library/Zend/Gdata/Gapps/EmailListEntry.php -%%DATADIR%%/library/Zend/Gdata/Gapps/EmailListFeed.php -%%DATADIR%%/library/Zend/Gdata/Gapps/EmailListQuery.php -%%DATADIR%%/library/Zend/Gdata/Gapps/EmailListRecipientEntry.php -%%DATADIR%%/library/Zend/Gdata/Gapps/EmailListRecipientFeed.php -%%DATADIR%%/library/Zend/Gdata/Gapps/EmailListRecipientQuery.php -%%DATADIR%%/library/Zend/Gdata/Gapps/Error.php -%%DATADIR%%/library/Zend/Gdata/Gapps/Extension/EmailList.php -%%DATADIR%%/library/Zend/Gdata/Gapps/Extension/Login.php -%%DATADIR%%/library/Zend/Gdata/Gapps/Extension/Name.php -%%DATADIR%%/library/Zend/Gdata/Gapps/Extension/Nickname.php -%%DATADIR%%/library/Zend/Gdata/Gapps/Extension/Property.php -%%DATADIR%%/library/Zend/Gdata/Gapps/Extension/Quota.php -%%DATADIR%%/library/Zend/Gdata/Gapps/GroupEntry.php -%%DATADIR%%/library/Zend/Gdata/Gapps/GroupFeed.php -%%DATADIR%%/library/Zend/Gdata/Gapps/GroupQuery.php -%%DATADIR%%/library/Zend/Gdata/Gapps/MemberEntry.php -%%DATADIR%%/library/Zend/Gdata/Gapps/MemberFeed.php -%%DATADIR%%/library/Zend/Gdata/Gapps/MemberQuery.php -%%DATADIR%%/library/Zend/Gdata/Gapps/NicknameEntry.php -%%DATADIR%%/library/Zend/Gdata/Gapps/NicknameFeed.php -%%DATADIR%%/library/Zend/Gdata/Gapps/NicknameQuery.php -%%DATADIR%%/library/Zend/Gdata/Gapps/OwnerEntry.php -%%DATADIR%%/library/Zend/Gdata/Gapps/OwnerFeed.php -%%DATADIR%%/library/Zend/Gdata/Gapps/OwnerQuery.php -%%DATADIR%%/library/Zend/Gdata/Gapps/Query.php -%%DATADIR%%/library/Zend/Gdata/Gapps/ServiceException.php -%%DATADIR%%/library/Zend/Gdata/Gapps/UserEntry.php -%%DATADIR%%/library/Zend/Gdata/Gapps/UserFeed.php -%%DATADIR%%/library/Zend/Gdata/Gapps/UserQuery.php -%%DATADIR%%/library/Zend/Gdata/Gbase.php -%%DATADIR%%/library/Zend/Gdata/Gbase/Entry.php -%%DATADIR%%/library/Zend/Gdata/Gbase/Extension/BaseAttribute.php -%%DATADIR%%/library/Zend/Gdata/Gbase/Feed.php -%%DATADIR%%/library/Zend/Gdata/Gbase/ItemEntry.php -%%DATADIR%%/library/Zend/Gdata/Gbase/ItemFeed.php -%%DATADIR%%/library/Zend/Gdata/Gbase/ItemQuery.php -%%DATADIR%%/library/Zend/Gdata/Gbase/Query.php -%%DATADIR%%/library/Zend/Gdata/Gbase/SnippetEntry.php -%%DATADIR%%/library/Zend/Gdata/Gbase/SnippetFeed.php -%%DATADIR%%/library/Zend/Gdata/Gbase/SnippetQuery.php -%%DATADIR%%/library/Zend/Gdata/Geo.php -%%DATADIR%%/library/Zend/Gdata/Geo/Entry.php -%%DATADIR%%/library/Zend/Gdata/Geo/Extension/GeoRssWhere.php -%%DATADIR%%/library/Zend/Gdata/Geo/Extension/GmlPoint.php -%%DATADIR%%/library/Zend/Gdata/Geo/Extension/GmlPos.php -%%DATADIR%%/library/Zend/Gdata/Geo/Feed.php -%%DATADIR%%/library/Zend/Gdata/Health.php -%%DATADIR%%/library/Zend/Gdata/Health/Extension/Ccr.php -%%DATADIR%%/library/Zend/Gdata/Health/ProfileEntry.php -%%DATADIR%%/library/Zend/Gdata/Health/ProfileFeed.php -%%DATADIR%%/library/Zend/Gdata/Health/ProfileListEntry.php -%%DATADIR%%/library/Zend/Gdata/Health/ProfileListFeed.php -%%DATADIR%%/library/Zend/Gdata/Health/Query.php -%%DATADIR%%/library/Zend/Gdata/HttpAdapterStreamingProxy.php -%%DATADIR%%/library/Zend/Gdata/HttpAdapterStreamingSocket.php -%%DATADIR%%/library/Zend/Gdata/HttpClient.php -%%DATADIR%%/library/Zend/Gdata/Kind/EventEntry.php -%%DATADIR%%/library/Zend/Gdata/Media.php -%%DATADIR%%/library/Zend/Gdata/Media/Entry.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaCategory.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaContent.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaCopyright.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaCredit.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaDescription.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaGroup.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaHash.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaKeywords.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaPlayer.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaRating.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaRestriction.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaText.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaThumbnail.php -%%DATADIR%%/library/Zend/Gdata/Media/Extension/MediaTitle.php -%%DATADIR%%/library/Zend/Gdata/Media/Feed.php -%%DATADIR%%/library/Zend/Gdata/MediaMimeStream.php -%%DATADIR%%/library/Zend/Gdata/MimeBodyString.php -%%DATADIR%%/library/Zend/Gdata/MimeFile.php -%%DATADIR%%/library/Zend/Gdata/Photos.php -%%DATADIR%%/library/Zend/Gdata/Photos/AlbumEntry.php -%%DATADIR%%/library/Zend/Gdata/Photos/AlbumFeed.php -%%DATADIR%%/library/Zend/Gdata/Photos/AlbumQuery.php -%%DATADIR%%/library/Zend/Gdata/Photos/CommentEntry.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Access.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/AlbumId.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/BytesUsed.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Checksum.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Client.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/CommentCount.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/CommentingEnabled.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Height.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Id.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Location.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/MaxPhotosPerAlbum.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Name.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Nickname.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/NumPhotos.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/NumPhotosRemaining.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/PhotoId.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Position.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/QuotaCurrent.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/QuotaLimit.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Rotation.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Size.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Thumbnail.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Timestamp.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/User.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Version.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Weight.php -%%DATADIR%%/library/Zend/Gdata/Photos/Extension/Width.php -%%DATADIR%%/library/Zend/Gdata/Photos/PhotoEntry.php -%%DATADIR%%/library/Zend/Gdata/Photos/PhotoFeed.php -%%DATADIR%%/library/Zend/Gdata/Photos/PhotoQuery.php -%%DATADIR%%/library/Zend/Gdata/Photos/TagEntry.php -%%DATADIR%%/library/Zend/Gdata/Photos/UserEntry.php -%%DATADIR%%/library/Zend/Gdata/Photos/UserFeed.php -%%DATADIR%%/library/Zend/Gdata/Photos/UserQuery.php -%%DATADIR%%/library/Zend/Gdata/Query.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/CellEntry.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/CellFeed.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/CellQuery.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/DocumentQuery.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/Extension/Cell.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/Extension/ColCount.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/Extension/Custom.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/Extension/RowCount.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/ListEntry.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/ListFeed.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/ListQuery.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/SpreadsheetEntry.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/SpreadsheetFeed.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/WorksheetEntry.php -%%DATADIR%%/library/Zend/Gdata/Spreadsheets/WorksheetFeed.php -%%DATADIR%%/library/Zend/Gdata/YouTube.php -%%DATADIR%%/library/Zend/Gdata/YouTube/ActivityEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/ActivityFeed.php -%%DATADIR%%/library/Zend/Gdata/YouTube/CommentEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/CommentFeed.php -%%DATADIR%%/library/Zend/Gdata/YouTube/ContactEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/ContactFeed.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/AboutMe.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Age.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Books.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Company.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Control.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/CountHint.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Description.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Duration.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/FirstName.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Gender.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Hobbies.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Hometown.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/LastName.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Link.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Location.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/MediaContent.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/MediaCredit.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/MediaGroup.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/MediaRating.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Movies.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Music.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/NoEmbed.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Occupation.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/PlaylistId.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/PlaylistTitle.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Position.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Private.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/QueryString.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Racy.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Recorded.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Relationship.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/ReleaseDate.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/School.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/State.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Statistics.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Status.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Token.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Uploaded.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/Username.php -%%DATADIR%%/library/Zend/Gdata/YouTube/Extension/VideoId.php -%%DATADIR%%/library/Zend/Gdata/YouTube/InboxEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/InboxFeed.php -%%DATADIR%%/library/Zend/Gdata/YouTube/MediaEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/PlaylistListEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/PlaylistListFeed.php -%%DATADIR%%/library/Zend/Gdata/YouTube/PlaylistVideoEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/PlaylistVideoFeed.php -%%DATADIR%%/library/Zend/Gdata/YouTube/SubscriptionEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/SubscriptionFeed.php -%%DATADIR%%/library/Zend/Gdata/YouTube/UserProfileEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/VideoEntry.php -%%DATADIR%%/library/Zend/Gdata/YouTube/VideoFeed.php -%%DATADIR%%/library/Zend/Gdata/YouTube/VideoQuery.php +%%DATADIR%%/library/Zend/Form/Element/Time.php +%%DATADIR%%/library/Zend/Form/Element/Url.php +%%DATADIR%%/library/Zend/Form/Element/Week.php +%%DATADIR%%/library/Zend/Form/ElementAttributeRemovalInterface.php +%%DATADIR%%/library/Zend/Form/ElementInterface.php +%%DATADIR%%/library/Zend/Form/ElementPrepareAwareInterface.php +%%DATADIR%%/library/Zend/Form/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Form/Exception/DomainException.php +%%DATADIR%%/library/Zend/Form/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Form/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/Form/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Form/Exception/InvalidElementException.php +%%DATADIR%%/library/Zend/Form/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Form/Factory.php +%%DATADIR%%/library/Zend/Form/Fieldset.php +%%DATADIR%%/library/Zend/Form/FieldsetInterface.php +%%DATADIR%%/library/Zend/Form/FieldsetPrepareAwareInterface.php +%%DATADIR%%/library/Zend/Form/Form.php +%%DATADIR%%/library/Zend/Form/FormAbstractServiceFactory.php +%%DATADIR%%/library/Zend/Form/FormElementManager.php +%%DATADIR%%/library/Zend/Form/FormFactoryAwareInterface.php +%%DATADIR%%/library/Zend/Form/FormFactoryAwareTrait.php +%%DATADIR%%/library/Zend/Form/FormInterface.php +%%DATADIR%%/library/Zend/Form/README.md +%%DATADIR%%/library/Zend/Form/View/Helper/AbstractHelper.php +%%DATADIR%%/library/Zend/Form/View/Helper/Captcha/AbstractWord.php +%%DATADIR%%/library/Zend/Form/View/Helper/Captcha/Dumb.php +%%DATADIR%%/library/Zend/Form/View/Helper/Captcha/Figlet.php +%%DATADIR%%/library/Zend/Form/View/Helper/Captcha/Image.php +%%DATADIR%%/library/Zend/Form/View/Helper/Captcha/ReCaptcha.php +%%DATADIR%%/library/Zend/Form/View/Helper/File/FormFileApcProgress.php +%%DATADIR%%/library/Zend/Form/View/Helper/File/FormFileSessionProgress.php +%%DATADIR%%/library/Zend/Form/View/Helper/File/FormFileUploadProgress.php +%%DATADIR%%/library/Zend/Form/View/Helper/Form.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormButton.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormCaptcha.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormCheckbox.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormCollection.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormColor.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormDate.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormDateSelect.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormDateTime.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormDateTimeLocal.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormDateTimeSelect.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormElement.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormElementErrors.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormEmail.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormFile.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormHidden.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormImage.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormInput.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormLabel.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormMonth.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormMonthSelect.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormMultiCheckbox.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormNumber.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormPassword.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormRadio.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormRange.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormReset.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormRow.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormSearch.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormSelect.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormSubmit.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormTel.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormText.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormTextarea.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormTime.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormUrl.php +%%DATADIR%%/library/Zend/Form/View/Helper/FormWeek.php +%%DATADIR%%/library/Zend/Form/View/HelperConfig.php +%%DATADIR%%/library/Zend/Form/composer.json +%%DATADIR%%/library/Zend/Http/AbstractMessage.php %%DATADIR%%/library/Zend/Http/Client.php +%%DATADIR%%/library/Zend/Http/Client/Adapter/AdapterInterface.php %%DATADIR%%/library/Zend/Http/Client/Adapter/Curl.php -%%DATADIR%%/library/Zend/Http/Client/Adapter/Exception.php -%%DATADIR%%/library/Zend/Http/Client/Adapter/Interface.php +%%DATADIR%%/library/Zend/Http/Client/Adapter/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Http/Client/Adapter/Exception/InitializationException.php +%%DATADIR%%/library/Zend/Http/Client/Adapter/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Http/Client/Adapter/Exception/OutOfRangeException.php +%%DATADIR%%/library/Zend/Http/Client/Adapter/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Http/Client/Adapter/Exception/TimeoutException.php %%DATADIR%%/library/Zend/Http/Client/Adapter/Proxy.php %%DATADIR%%/library/Zend/Http/Client/Adapter/Socket.php -%%DATADIR%%/library/Zend/Http/Client/Adapter/Stream.php +%%DATADIR%%/library/Zend/Http/Client/Adapter/StreamInterface.php %%DATADIR%%/library/Zend/Http/Client/Adapter/Test.php -%%DATADIR%%/library/Zend/Http/Client/Exception.php -%%DATADIR%%/library/Zend/Http/Cookie.php -%%DATADIR%%/library/Zend/Http/CookieJar.php -%%DATADIR%%/library/Zend/Http/Exception.php +%%DATADIR%%/library/Zend/Http/Client/Cookies.php +%%DATADIR%%/library/Zend/Http/Client/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Http/Client/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Http/Client/Exception/OutOfRangeException.php +%%DATADIR%%/library/Zend/Http/Client/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Http/ClientStatic.php +%%DATADIR%%/library/Zend/Http/Cookies.php +%%DATADIR%%/library/Zend/Http/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Http/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Http/Exception/OutOfRangeException.php +%%DATADIR%%/library/Zend/Http/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Http/Header/AbstractAccept.php +%%DATADIR%%/library/Zend/Http/Header/AbstractDate.php +%%DATADIR%%/library/Zend/Http/Header/AbstractLocation.php +%%DATADIR%%/library/Zend/Http/Header/Accept.php +%%DATADIR%%/library/Zend/Http/Header/Accept/FieldValuePart/AbstractFieldValuePart.php +%%DATADIR%%/library/Zend/Http/Header/Accept/FieldValuePart/AcceptFieldValuePart.php +%%DATADIR%%/library/Zend/Http/Header/Accept/FieldValuePart/CharsetFieldValuePart.php +%%DATADIR%%/library/Zend/Http/Header/Accept/FieldValuePart/EncodingFieldValuePart.php +%%DATADIR%%/library/Zend/Http/Header/Accept/FieldValuePart/LanguageFieldValuePart.php +%%DATADIR%%/library/Zend/Http/Header/AcceptCharset.php +%%DATADIR%%/library/Zend/Http/Header/AcceptEncoding.php +%%DATADIR%%/library/Zend/Http/Header/AcceptLanguage.php +%%DATADIR%%/library/Zend/Http/Header/AcceptRanges.php +%%DATADIR%%/library/Zend/Http/Header/Age.php +%%DATADIR%%/library/Zend/Http/Header/Allow.php +%%DATADIR%%/library/Zend/Http/Header/AuthenticationInfo.php +%%DATADIR%%/library/Zend/Http/Header/Authorization.php +%%DATADIR%%/library/Zend/Http/Header/CacheControl.php +%%DATADIR%%/library/Zend/Http/Header/Connection.php +%%DATADIR%%/library/Zend/Http/Header/ContentDisposition.php +%%DATADIR%%/library/Zend/Http/Header/ContentEncoding.php +%%DATADIR%%/library/Zend/Http/Header/ContentLanguage.php +%%DATADIR%%/library/Zend/Http/Header/ContentLength.php +%%DATADIR%%/library/Zend/Http/Header/ContentLocation.php +%%DATADIR%%/library/Zend/Http/Header/ContentMD5.php +%%DATADIR%%/library/Zend/Http/Header/ContentRange.php +%%DATADIR%%/library/Zend/Http/Header/ContentTransferEncoding.php +%%DATADIR%%/library/Zend/Http/Header/ContentType.php +%%DATADIR%%/library/Zend/Http/Header/Cookie.php +%%DATADIR%%/library/Zend/Http/Header/Date.php +%%DATADIR%%/library/Zend/Http/Header/Etag.php +%%DATADIR%%/library/Zend/Http/Header/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Http/Header/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Http/Header/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Http/Header/Expect.php +%%DATADIR%%/library/Zend/Http/Header/Expires.php +%%DATADIR%%/library/Zend/Http/Header/From.php +%%DATADIR%%/library/Zend/Http/Header/GenericHeader.php +%%DATADIR%%/library/Zend/Http/Header/GenericMultiHeader.php +%%DATADIR%%/library/Zend/Http/Header/HeaderInterface.php +%%DATADIR%%/library/Zend/Http/Header/Host.php +%%DATADIR%%/library/Zend/Http/Header/IfMatch.php +%%DATADIR%%/library/Zend/Http/Header/IfModifiedSince.php +%%DATADIR%%/library/Zend/Http/Header/IfNoneMatch.php +%%DATADIR%%/library/Zend/Http/Header/IfRange.php +%%DATADIR%%/library/Zend/Http/Header/IfUnmodifiedSince.php +%%DATADIR%%/library/Zend/Http/Header/KeepAlive.php +%%DATADIR%%/library/Zend/Http/Header/LastModified.php +%%DATADIR%%/library/Zend/Http/Header/Location.php +%%DATADIR%%/library/Zend/Http/Header/MaxForwards.php +%%DATADIR%%/library/Zend/Http/Header/MultipleHeaderInterface.php +%%DATADIR%%/library/Zend/Http/Header/Pragma.php +%%DATADIR%%/library/Zend/Http/Header/ProxyAuthenticate.php +%%DATADIR%%/library/Zend/Http/Header/ProxyAuthorization.php +%%DATADIR%%/library/Zend/Http/Header/Range.php +%%DATADIR%%/library/Zend/Http/Header/Referer.php +%%DATADIR%%/library/Zend/Http/Header/Refresh.php +%%DATADIR%%/library/Zend/Http/Header/RetryAfter.php +%%DATADIR%%/library/Zend/Http/Header/Server.php %%DATADIR%%/library/Zend/Http/Header/SetCookie.php +%%DATADIR%%/library/Zend/Http/Header/TE.php +%%DATADIR%%/library/Zend/Http/Header/Trailer.php +%%DATADIR%%/library/Zend/Http/Header/TransferEncoding.php +%%DATADIR%%/library/Zend/Http/Header/Upgrade.php +%%DATADIR%%/library/Zend/Http/Header/UserAgent.php +%%DATADIR%%/library/Zend/Http/Header/Vary.php +%%DATADIR%%/library/Zend/Http/Header/Via.php +%%DATADIR%%/library/Zend/Http/Header/WWWAuthenticate.php +%%DATADIR%%/library/Zend/Http/Header/Warning.php +%%DATADIR%%/library/Zend/Http/HeaderLoader.php +%%DATADIR%%/library/Zend/Http/Headers.php +%%DATADIR%%/library/Zend/Http/PhpEnvironment/RemoteAddress.php +%%DATADIR%%/library/Zend/Http/PhpEnvironment/Request.php +%%DATADIR%%/library/Zend/Http/PhpEnvironment/Response.php +%%DATADIR%%/library/Zend/Http/README.md +%%DATADIR%%/library/Zend/Http/Request.php %%DATADIR%%/library/Zend/Http/Response.php %%DATADIR%%/library/Zend/Http/Response/Stream.php -%%DATADIR%%/library/Zend/Http/UserAgent.php -%%DATADIR%%/library/Zend/Http/UserAgent/AbstractDevice.php -%%DATADIR%%/library/Zend/Http/UserAgent/Bot.php -%%DATADIR%%/library/Zend/Http/UserAgent/Checker.php -%%DATADIR%%/library/Zend/Http/UserAgent/Console.php -%%DATADIR%%/library/Zend/Http/UserAgent/Desktop.php -%%DATADIR%%/library/Zend/Http/UserAgent/Device.php -%%DATADIR%%/library/Zend/Http/UserAgent/Email.php -%%DATADIR%%/library/Zend/Http/UserAgent/Exception.php -%%DATADIR%%/library/Zend/Http/UserAgent/Features/Adapter.php -%%DATADIR%%/library/Zend/Http/UserAgent/Features/Adapter/Browscap.php -%%DATADIR%%/library/Zend/Http/UserAgent/Features/Adapter/DeviceAtlas.php -%%DATADIR%%/library/Zend/Http/UserAgent/Features/Adapter/TeraWurfl.php -%%DATADIR%%/library/Zend/Http/UserAgent/Features/Exception.php -%%DATADIR%%/library/Zend/Http/UserAgent/Feed.php -%%DATADIR%%/library/Zend/Http/UserAgent/Mobile.php -%%DATADIR%%/library/Zend/Http/UserAgent/Offline.php -%%DATADIR%%/library/Zend/Http/UserAgent/Probe.php -%%DATADIR%%/library/Zend/Http/UserAgent/Spam.php -%%DATADIR%%/library/Zend/Http/UserAgent/Storage.php -%%DATADIR%%/library/Zend/Http/UserAgent/Storage/Exception.php -%%DATADIR%%/library/Zend/Http/UserAgent/Storage/NonPersistent.php -%%DATADIR%%/library/Zend/Http/UserAgent/Storage/Session.php -%%DATADIR%%/library/Zend/Http/UserAgent/Text.php -%%DATADIR%%/library/Zend/Http/UserAgent/Validator.php -%%DATADIR%%/library/Zend/InfoCard.php -%%DATADIR%%/library/Zend/InfoCard/Adapter/Default.php -%%DATADIR%%/library/Zend/InfoCard/Adapter/Exception.php -%%DATADIR%%/library/Zend/InfoCard/Adapter/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Cipher.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Exception.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Pki/Adapter/Abstract.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Pki/Adapter/Rsa.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Pki/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Pki/Rsa/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric/Adapter/Abstract.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric/Adapter/Aes128cbc.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric/Adapter/Aes256cbc.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric/Aes128cbc/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric/Aes256cbc/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Claims.php -%%DATADIR%%/library/Zend/InfoCard/Exception.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Assertion.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Assertion/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Assertion/Saml.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Element.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Element/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Xml/EncryptedData.php -%%DATADIR%%/library/Zend/InfoCard/Xml/EncryptedData/Abstract.php -%%DATADIR%%/library/Zend/InfoCard/Xml/EncryptedData/XmlEnc.php -%%DATADIR%%/library/Zend/InfoCard/Xml/EncryptedKey.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Exception.php -%%DATADIR%%/library/Zend/InfoCard/Xml/KeyInfo.php -%%DATADIR%%/library/Zend/InfoCard/Xml/KeyInfo/Abstract.php -%%DATADIR%%/library/Zend/InfoCard/Xml/KeyInfo/Default.php -%%DATADIR%%/library/Zend/InfoCard/Xml/KeyInfo/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Xml/KeyInfo/XmlDSig.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Security.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Security/Exception.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Security/Transform.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Security/Transform/EnvelopedSignature.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Security/Transform/Exception.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Security/Transform/Interface.php -%%DATADIR%%/library/Zend/InfoCard/Xml/Security/Transform/XmlExcC14N.php -%%DATADIR%%/library/Zend/InfoCard/Xml/SecurityTokenReference.php -%%DATADIR%%/library/Zend/Json.php +%%DATADIR%%/library/Zend/Http/composer.json +%%DATADIR%%/library/Zend/I18n/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/I18n/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/I18n/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/I18n/Exception/OutOfBoundsException.php +%%DATADIR%%/library/Zend/I18n/Exception/ParseException.php +%%DATADIR%%/library/Zend/I18n/Exception/RangeException.php +%%DATADIR%%/library/Zend/I18n/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/I18n/Filter/AbstractLocale.php +%%DATADIR%%/library/Zend/I18n/Filter/Alnum.php +%%DATADIR%%/library/Zend/I18n/Filter/Alpha.php +%%DATADIR%%/library/Zend/I18n/Filter/NumberFormat.php +%%DATADIR%%/library/Zend/I18n/README.md +%%DATADIR%%/library/Zend/I18n/Translator/Loader/FileLoaderInterface.php +%%DATADIR%%/library/Zend/I18n/Translator/Loader/Gettext.php +%%DATADIR%%/library/Zend/I18n/Translator/Loader/Ini.php +%%DATADIR%%/library/Zend/I18n/Translator/Loader/PhpArray.php +%%DATADIR%%/library/Zend/I18n/Translator/Loader/RemoteLoaderInterface.php +%%DATADIR%%/library/Zend/I18n/Translator/LoaderPluginManager.php +%%DATADIR%%/library/Zend/I18n/Translator/Plural/Parser.php +%%DATADIR%%/library/Zend/I18n/Translator/Plural/Rule.php +%%DATADIR%%/library/Zend/I18n/Translator/Plural/Symbol.php +%%DATADIR%%/library/Zend/I18n/Translator/TextDomain.php +%%DATADIR%%/library/Zend/I18n/Translator/Translator.php +%%DATADIR%%/library/Zend/I18n/Translator/TranslatorAwareInterface.php +%%DATADIR%%/library/Zend/I18n/Translator/TranslatorAwareTrait.php +%%DATADIR%%/library/Zend/I18n/Translator/TranslatorServiceFactory.php +%%DATADIR%%/library/Zend/I18n/Validator/Alnum.php +%%DATADIR%%/library/Zend/I18n/Validator/Alpha.php +%%DATADIR%%/library/Zend/I18n/Validator/DateTime.php +%%DATADIR%%/library/Zend/I18n/Validator/Float.php +%%DATADIR%%/library/Zend/I18n/Validator/Int.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AC.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AD.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AF.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AL.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AS.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AU.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AW.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AX.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/AZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BB.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BD.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BF.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BH.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BJ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BL.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BQ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BS.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BW.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BY.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/BZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CC.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CD.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CF.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CH.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CK.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CL.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CU.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CV.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CW.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CX.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CY.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/CZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/DE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/DJ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/DK.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/DM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/DO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/DZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/EC.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/EE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/EG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/EH.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ER.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ES.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ET.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/FI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/FJ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/FK.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/FM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/FO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/FR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GB.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GD.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GF.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GH.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GL.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GP.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GQ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GU.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GW.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/GY.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/HK.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/HN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/HR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/HT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/HU.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ID.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/IE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/IL.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/IM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/IN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/IO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/IQ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/IR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/IS.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/IT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/JE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/JM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/JO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/JP.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KH.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KP.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KW.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KY.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/KZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LB.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LC.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LK.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LS.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LU.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LV.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/LY.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MC.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MD.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ME.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MF.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MH.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MK.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ML.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MP.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MQ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MS.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MU.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MV.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MW.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MX.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MY.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/MZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NC.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NF.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NL.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NP.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NU.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/NZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/OM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PF.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PH.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PK.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PL.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PS.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PW.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/PY.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/QA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/RE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/RO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/RS.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/RU.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/RW.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SB.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SC.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SD.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SH.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SJ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SK.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SL.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SS.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ST.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SV.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SX.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SY.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/SZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TC.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TD.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TH.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TJ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TK.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TL.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TO.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TR.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TV.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TW.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/TZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/UA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/UG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/US.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/UY.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/UZ.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/VA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/VC.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/VE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/VG.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/VI.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/VN.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/VU.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/WF.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/WS.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/YE.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/YT.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ZA.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ZM.php +%%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber/ZW.php +%%DATADIR%%/library/Zend/I18n/Validator/PostCode.php +%%DATADIR%%/library/Zend/I18n/View/Helper/AbstractTranslatorHelper.php +%%DATADIR%%/library/Zend/I18n/View/Helper/CurrencyFormat.php +%%DATADIR%%/library/Zend/I18n/View/Helper/DateFormat.php +%%DATADIR%%/library/Zend/I18n/View/Helper/NumberFormat.php +%%DATADIR%%/library/Zend/I18n/View/Helper/Plural.php +%%DATADIR%%/library/Zend/I18n/View/Helper/Translate.php +%%DATADIR%%/library/Zend/I18n/View/Helper/TranslatePlural.php +%%DATADIR%%/library/Zend/I18n/View/HelperConfig.php +%%DATADIR%%/library/Zend/I18n/composer.json +%%DATADIR%%/library/Zend/InputFilter/ArrayInput.php +%%DATADIR%%/library/Zend/InputFilter/BaseInputFilter.php +%%DATADIR%%/library/Zend/InputFilter/CollectionInputFilter.php +%%DATADIR%%/library/Zend/InputFilter/EmptyContextInterface.php +%%DATADIR%%/library/Zend/InputFilter/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/InputFilter/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/InputFilter/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/InputFilter/Factory.php +%%DATADIR%%/library/Zend/InputFilter/FileInput.php +%%DATADIR%%/library/Zend/InputFilter/Input.php +%%DATADIR%%/library/Zend/InputFilter/InputFilter.php +%%DATADIR%%/library/Zend/InputFilter/InputFilterAwareInterface.php +%%DATADIR%%/library/Zend/InputFilter/InputFilterAwareTrait.php +%%DATADIR%%/library/Zend/InputFilter/InputFilterInterface.php +%%DATADIR%%/library/Zend/InputFilter/InputFilterPluginManager.php +%%DATADIR%%/library/Zend/InputFilter/InputFilterProviderInterface.php +%%DATADIR%%/library/Zend/InputFilter/InputInterface.php +%%DATADIR%%/library/Zend/InputFilter/InputProviderInterface.php +%%DATADIR%%/library/Zend/InputFilter/README.md +%%DATADIR%%/library/Zend/InputFilter/UnknownInputsCapableInterface.php +%%DATADIR%%/library/Zend/InputFilter/composer.json %%DATADIR%%/library/Zend/Json/Decoder.php %%DATADIR%%/library/Zend/Json/Encoder.php -%%DATADIR%%/library/Zend/Json/Exception.php +%%DATADIR%%/library/Zend/Json/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Json/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Json/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Json/Exception/RecursionException.php +%%DATADIR%%/library/Zend/Json/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Json/Expr.php -%%DATADIR%%/library/Zend/Json/Server.php +%%DATADIR%%/library/Zend/Json/Json.php +%%DATADIR%%/library/Zend/Json/README.md %%DATADIR%%/library/Zend/Json/Server/Cache.php +%%DATADIR%%/library/Zend/Json/Server/Client.php %%DATADIR%%/library/Zend/Json/Server/Error.php -%%DATADIR%%/library/Zend/Json/Server/Exception.php +%%DATADIR%%/library/Zend/Json/Server/Exception/ErrorException.php +%%DATADIR%%/library/Zend/Json/Server/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Json/Server/Exception/HttpException.php +%%DATADIR%%/library/Zend/Json/Server/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Json/Server/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Json/Server/Request.php %%DATADIR%%/library/Zend/Json/Server/Request/Http.php %%DATADIR%%/library/Zend/Json/Server/Response.php %%DATADIR%%/library/Zend/Json/Server/Response/Http.php +%%DATADIR%%/library/Zend/Json/Server/Server.php %%DATADIR%%/library/Zend/Json/Server/Smd.php %%DATADIR%%/library/Zend/Json/Server/Smd/Service.php -%%DATADIR%%/library/Zend/Layout.php -%%DATADIR%%/library/Zend/Layout/Controller/Action/Helper/Layout.php -%%DATADIR%%/library/Zend/Layout/Controller/Plugin/Layout.php -%%DATADIR%%/library/Zend/Layout/Exception.php -%%DATADIR%%/library/Zend/Ldap.php +%%DATADIR%%/library/Zend/Json/composer.json %%DATADIR%%/library/Zend/Ldap/Attribute.php %%DATADIR%%/library/Zend/Ldap/Collection.php -%%DATADIR%%/library/Zend/Ldap/Collection/Iterator/Default.php -%%DATADIR%%/library/Zend/Ldap/Converter.php -%%DATADIR%%/library/Zend/Ldap/Converter/Exception.php +%%DATADIR%%/library/Zend/Ldap/Collection/DefaultIterator.php +%%DATADIR%%/library/Zend/Ldap/Converter/Converter.php +%%DATADIR%%/library/Zend/Ldap/Converter/Exception/ConverterException.php +%%DATADIR%%/library/Zend/Ldap/Converter/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Ldap/Converter/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Ldap/Converter/Exception/UnexpectedValueException.php %%DATADIR%%/library/Zend/Ldap/Dn.php -%%DATADIR%%/library/Zend/Ldap/Exception.php +%%DATADIR%%/library/Zend/Ldap/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Ldap/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Ldap/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Ldap/Exception/LdapException.php %%DATADIR%%/library/Zend/Ldap/Filter.php -%%DATADIR%%/library/Zend/Ldap/Filter/Abstract.php -%%DATADIR%%/library/Zend/Ldap/Filter/And.php -%%DATADIR%%/library/Zend/Ldap/Filter/Exception.php -%%DATADIR%%/library/Zend/Ldap/Filter/Logical.php -%%DATADIR%%/library/Zend/Ldap/Filter/Mask.php -%%DATADIR%%/library/Zend/Ldap/Filter/Not.php -%%DATADIR%%/library/Zend/Ldap/Filter/Or.php -%%DATADIR%%/library/Zend/Ldap/Filter/String.php +%%DATADIR%%/library/Zend/Ldap/Filter/AbstractFilter.php +%%DATADIR%%/library/Zend/Ldap/Filter/AbstractLogicalFilter.php +%%DATADIR%%/library/Zend/Ldap/Filter/AndFilter.php +%%DATADIR%%/library/Zend/Ldap/Filter/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Ldap/Filter/Exception/FilterException.php +%%DATADIR%%/library/Zend/Ldap/Filter/MaskFilter.php +%%DATADIR%%/library/Zend/Ldap/Filter/NotFilter.php +%%DATADIR%%/library/Zend/Ldap/Filter/OrFilter.php +%%DATADIR%%/library/Zend/Ldap/Filter/StringFilter.php +%%DATADIR%%/library/Zend/Ldap/Ldap.php %%DATADIR%%/library/Zend/Ldap/Ldif/Encoder.php %%DATADIR%%/library/Zend/Ldap/Node.php -%%DATADIR%%/library/Zend/Ldap/Node/Abstract.php +%%DATADIR%%/library/Zend/Ldap/Node/AbstractNode.php %%DATADIR%%/library/Zend/Ldap/Node/ChildrenIterator.php %%DATADIR%%/library/Zend/Ldap/Node/Collection.php %%DATADIR%%/library/Zend/Ldap/Node/RootDse.php @@ -4064,1870 +1392,953 @@ %%DATADIR%%/library/Zend/Ldap/Node/RootDse/OpenLdap.php %%DATADIR%%/library/Zend/Ldap/Node/RootDse/eDirectory.php %%DATADIR%%/library/Zend/Ldap/Node/Schema.php +%%DATADIR%%/library/Zend/Ldap/Node/Schema/AbstractItem.php %%DATADIR%%/library/Zend/Ldap/Node/Schema/ActiveDirectory.php %%DATADIR%%/library/Zend/Ldap/Node/Schema/AttributeType/ActiveDirectory.php -%%DATADIR%%/library/Zend/Ldap/Node/Schema/AttributeType/Interface.php +%%DATADIR%%/library/Zend/Ldap/Node/Schema/AttributeType/AttributeTypeInterface.php %%DATADIR%%/library/Zend/Ldap/Node/Schema/AttributeType/OpenLdap.php -%%DATADIR%%/library/Zend/Ldap/Node/Schema/Item.php %%DATADIR%%/library/Zend/Ldap/Node/Schema/ObjectClass/ActiveDirectory.php -%%DATADIR%%/library/Zend/Ldap/Node/Schema/ObjectClass/Interface.php +%%DATADIR%%/library/Zend/Ldap/Node/Schema/ObjectClass/ObjectClassInterface.php %%DATADIR%%/library/Zend/Ldap/Node/Schema/ObjectClass/OpenLdap.php %%DATADIR%%/library/Zend/Ldap/Node/Schema/OpenLdap.php -%%DATADIR%%/library/Zend/Loader.php -%%DATADIR%%/library/Zend/Loader/Autoloader.php -%%DATADIR%%/library/Zend/Loader/Autoloader/Interface.php -%%DATADIR%%/library/Zend/Loader/Autoloader/Resource.php +%%DATADIR%%/library/Zend/Ldap/README.md +%%DATADIR%%/library/Zend/Ldap/composer.json %%DATADIR%%/library/Zend/Loader/AutoloaderFactory.php %%DATADIR%%/library/Zend/Loader/ClassMapAutoloader.php -%%DATADIR%%/library/Zend/Loader/Exception.php +%%DATADIR%%/library/Zend/Loader/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Loader/Exception/DomainException.php +%%DATADIR%%/library/Zend/Loader/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Loader/Exception/InvalidArgumentException.php -%%DATADIR%%/library/Zend/Loader/PluginLoader.php -%%DATADIR%%/library/Zend/Loader/PluginLoader/Exception.php -%%DATADIR%%/library/Zend/Loader/PluginLoader/Interface.php +%%DATADIR%%/library/Zend/Loader/Exception/InvalidPathException.php +%%DATADIR%%/library/Zend/Loader/Exception/MissingResourceNamespaceException.php +%%DATADIR%%/library/Zend/Loader/Exception/PluginLoaderException.php +%%DATADIR%%/library/Zend/Loader/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Loader/Exception/SecurityException.php +%%DATADIR%%/library/Zend/Loader/ModuleAutoloader.php +%%DATADIR%%/library/Zend/Loader/PluginClassLoader.php +%%DATADIR%%/library/Zend/Loader/PluginClassLocator.php +%%DATADIR%%/library/Zend/Loader/README.md +%%DATADIR%%/library/Zend/Loader/ShortNameLocator.php %%DATADIR%%/library/Zend/Loader/SplAutoloader.php %%DATADIR%%/library/Zend/Loader/StandardAutoloader.php -%%DATADIR%%/library/Zend/Locale.php -%%DATADIR%%/library/Zend/Locale/Data.php -%%DATADIR%%/library/Zend/Locale/Data/Translation.php -%%DATADIR%%/library/Zend/Locale/Data/aa.xml -%%DATADIR%%/library/Zend/Locale/Data/aa_DJ.xml -%%DATADIR%%/library/Zend/Locale/Data/aa_ER.xml -%%DATADIR%%/library/Zend/Locale/Data/aa_ER_SAAHO.xml -%%DATADIR%%/library/Zend/Locale/Data/aa_ET.xml -%%DATADIR%%/library/Zend/Locale/Data/af.xml -%%DATADIR%%/library/Zend/Locale/Data/af_NA.xml -%%DATADIR%%/library/Zend/Locale/Data/af_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/ak.xml -%%DATADIR%%/library/Zend/Locale/Data/ak_GH.xml -%%DATADIR%%/library/Zend/Locale/Data/am.xml -%%DATADIR%%/library/Zend/Locale/Data/am_ET.xml -%%DATADIR%%/library/Zend/Locale/Data/ar.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_AE.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_BH.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_DZ.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_EG.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_IQ.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_JO.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_KW.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_LB.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_LY.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_MA.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_OM.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_QA.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_SA.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_SD.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_SY.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_TN.xml -%%DATADIR%%/library/Zend/Locale/Data/ar_YE.xml -%%DATADIR%%/library/Zend/Locale/Data/as.xml -%%DATADIR%%/library/Zend/Locale/Data/as_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/az.xml -%%DATADIR%%/library/Zend/Locale/Data/az_AZ.xml -%%DATADIR%%/library/Zend/Locale/Data/az_Cyrl.xml -%%DATADIR%%/library/Zend/Locale/Data/az_Cyrl_AZ.xml -%%DATADIR%%/library/Zend/Locale/Data/az_Latn.xml -%%DATADIR%%/library/Zend/Locale/Data/az_Latn_AZ.xml -%%DATADIR%%/library/Zend/Locale/Data/be.xml -%%DATADIR%%/library/Zend/Locale/Data/be_BY.xml -%%DATADIR%%/library/Zend/Locale/Data/bg.xml -%%DATADIR%%/library/Zend/Locale/Data/bg_BG.xml -%%DATADIR%%/library/Zend/Locale/Data/bn.xml -%%DATADIR%%/library/Zend/Locale/Data/bn_BD.xml -%%DATADIR%%/library/Zend/Locale/Data/bn_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/bo.xml -%%DATADIR%%/library/Zend/Locale/Data/bo_CN.xml -%%DATADIR%%/library/Zend/Locale/Data/bo_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/bs.xml -%%DATADIR%%/library/Zend/Locale/Data/bs_BA.xml -%%DATADIR%%/library/Zend/Locale/Data/byn.xml -%%DATADIR%%/library/Zend/Locale/Data/byn_ER.xml -%%DATADIR%%/library/Zend/Locale/Data/ca.xml -%%DATADIR%%/library/Zend/Locale/Data/ca_ES.xml -%%DATADIR%%/library/Zend/Locale/Data/cch.xml -%%DATADIR%%/library/Zend/Locale/Data/cch_NG.xml -%%DATADIR%%/library/Zend/Locale/Data/characters.xml -%%DATADIR%%/library/Zend/Locale/Data/cop.xml -%%DATADIR%%/library/Zend/Locale/Data/cs.xml -%%DATADIR%%/library/Zend/Locale/Data/cs_CZ.xml -%%DATADIR%%/library/Zend/Locale/Data/cy.xml -%%DATADIR%%/library/Zend/Locale/Data/cy_GB.xml -%%DATADIR%%/library/Zend/Locale/Data/da.xml -%%DATADIR%%/library/Zend/Locale/Data/da_DK.xml -%%DATADIR%%/library/Zend/Locale/Data/de.xml -%%DATADIR%%/library/Zend/Locale/Data/de_AT.xml -%%DATADIR%%/library/Zend/Locale/Data/de_BE.xml -%%DATADIR%%/library/Zend/Locale/Data/de_CH.xml -%%DATADIR%%/library/Zend/Locale/Data/de_DE.xml -%%DATADIR%%/library/Zend/Locale/Data/de_LI.xml -%%DATADIR%%/library/Zend/Locale/Data/de_LU.xml -%%DATADIR%%/library/Zend/Locale/Data/dv.xml -%%DATADIR%%/library/Zend/Locale/Data/dv_MV.xml -%%DATADIR%%/library/Zend/Locale/Data/dz.xml -%%DATADIR%%/library/Zend/Locale/Data/dz_BT.xml -%%DATADIR%%/library/Zend/Locale/Data/ee.xml -%%DATADIR%%/library/Zend/Locale/Data/ee_GH.xml -%%DATADIR%%/library/Zend/Locale/Data/ee_TG.xml -%%DATADIR%%/library/Zend/Locale/Data/el.xml -%%DATADIR%%/library/Zend/Locale/Data/el_CY.xml -%%DATADIR%%/library/Zend/Locale/Data/el_GR.xml -%%DATADIR%%/library/Zend/Locale/Data/el_POLYTON.xml -%%DATADIR%%/library/Zend/Locale/Data/en.xml -%%DATADIR%%/library/Zend/Locale/Data/en_AS.xml -%%DATADIR%%/library/Zend/Locale/Data/en_AU.xml -%%DATADIR%%/library/Zend/Locale/Data/en_BE.xml -%%DATADIR%%/library/Zend/Locale/Data/en_BW.xml -%%DATADIR%%/library/Zend/Locale/Data/en_BZ.xml -%%DATADIR%%/library/Zend/Locale/Data/en_CA.xml -%%DATADIR%%/library/Zend/Locale/Data/en_Dsrt.xml -%%DATADIR%%/library/Zend/Locale/Data/en_Dsrt_US.xml -%%DATADIR%%/library/Zend/Locale/Data/en_GB.xml -%%DATADIR%%/library/Zend/Locale/Data/en_GU.xml -%%DATADIR%%/library/Zend/Locale/Data/en_HK.xml -%%DATADIR%%/library/Zend/Locale/Data/en_IE.xml -%%DATADIR%%/library/Zend/Locale/Data/en_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/en_JM.xml -%%DATADIR%%/library/Zend/Locale/Data/en_MH.xml -%%DATADIR%%/library/Zend/Locale/Data/en_MP.xml -%%DATADIR%%/library/Zend/Locale/Data/en_MT.xml -%%DATADIR%%/library/Zend/Locale/Data/en_NA.xml -%%DATADIR%%/library/Zend/Locale/Data/en_NZ.xml -%%DATADIR%%/library/Zend/Locale/Data/en_PH.xml -%%DATADIR%%/library/Zend/Locale/Data/en_PK.xml -%%DATADIR%%/library/Zend/Locale/Data/en_SG.xml -%%DATADIR%%/library/Zend/Locale/Data/en_Shaw.xml -%%DATADIR%%/library/Zend/Locale/Data/en_TT.xml -%%DATADIR%%/library/Zend/Locale/Data/en_UM.xml -%%DATADIR%%/library/Zend/Locale/Data/en_US.xml -%%DATADIR%%/library/Zend/Locale/Data/en_US_POSIX.xml -%%DATADIR%%/library/Zend/Locale/Data/en_VI.xml -%%DATADIR%%/library/Zend/Locale/Data/en_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/en_ZW.xml -%%DATADIR%%/library/Zend/Locale/Data/eo.xml -%%DATADIR%%/library/Zend/Locale/Data/es.xml -%%DATADIR%%/library/Zend/Locale/Data/es_AR.xml -%%DATADIR%%/library/Zend/Locale/Data/es_BO.xml -%%DATADIR%%/library/Zend/Locale/Data/es_CL.xml -%%DATADIR%%/library/Zend/Locale/Data/es_CO.xml -%%DATADIR%%/library/Zend/Locale/Data/es_CR.xml -%%DATADIR%%/library/Zend/Locale/Data/es_DO.xml -%%DATADIR%%/library/Zend/Locale/Data/es_EC.xml -%%DATADIR%%/library/Zend/Locale/Data/es_ES.xml -%%DATADIR%%/library/Zend/Locale/Data/es_GT.xml -%%DATADIR%%/library/Zend/Locale/Data/es_HN.xml -%%DATADIR%%/library/Zend/Locale/Data/es_MX.xml -%%DATADIR%%/library/Zend/Locale/Data/es_NI.xml -%%DATADIR%%/library/Zend/Locale/Data/es_PA.xml -%%DATADIR%%/library/Zend/Locale/Data/es_PE.xml -%%DATADIR%%/library/Zend/Locale/Data/es_PR.xml -%%DATADIR%%/library/Zend/Locale/Data/es_PY.xml -%%DATADIR%%/library/Zend/Locale/Data/es_SV.xml -%%DATADIR%%/library/Zend/Locale/Data/es_US.xml -%%DATADIR%%/library/Zend/Locale/Data/es_UY.xml -%%DATADIR%%/library/Zend/Locale/Data/es_VE.xml -%%DATADIR%%/library/Zend/Locale/Data/et.xml -%%DATADIR%%/library/Zend/Locale/Data/et_EE.xml -%%DATADIR%%/library/Zend/Locale/Data/eu.xml -%%DATADIR%%/library/Zend/Locale/Data/eu_ES.xml -%%DATADIR%%/library/Zend/Locale/Data/fa.xml -%%DATADIR%%/library/Zend/Locale/Data/fa_AF.xml -%%DATADIR%%/library/Zend/Locale/Data/fa_IR.xml -%%DATADIR%%/library/Zend/Locale/Data/fi.xml -%%DATADIR%%/library/Zend/Locale/Data/fi_FI.xml -%%DATADIR%%/library/Zend/Locale/Data/fil.xml -%%DATADIR%%/library/Zend/Locale/Data/fil_PH.xml -%%DATADIR%%/library/Zend/Locale/Data/fo.xml -%%DATADIR%%/library/Zend/Locale/Data/fo_FO.xml -%%DATADIR%%/library/Zend/Locale/Data/fr.xml -%%DATADIR%%/library/Zend/Locale/Data/fr_BE.xml -%%DATADIR%%/library/Zend/Locale/Data/fr_CA.xml -%%DATADIR%%/library/Zend/Locale/Data/fr_CH.xml -%%DATADIR%%/library/Zend/Locale/Data/fr_FR.xml -%%DATADIR%%/library/Zend/Locale/Data/fr_LU.xml -%%DATADIR%%/library/Zend/Locale/Data/fr_MC.xml -%%DATADIR%%/library/Zend/Locale/Data/fr_SN.xml -%%DATADIR%%/library/Zend/Locale/Data/fur.xml -%%DATADIR%%/library/Zend/Locale/Data/fur_IT.xml -%%DATADIR%%/library/Zend/Locale/Data/ga.xml -%%DATADIR%%/library/Zend/Locale/Data/ga_IE.xml -%%DATADIR%%/library/Zend/Locale/Data/gaa.xml -%%DATADIR%%/library/Zend/Locale/Data/gaa_GH.xml -%%DATADIR%%/library/Zend/Locale/Data/gez.xml -%%DATADIR%%/library/Zend/Locale/Data/gez_ER.xml -%%DATADIR%%/library/Zend/Locale/Data/gez_ET.xml -%%DATADIR%%/library/Zend/Locale/Data/gl.xml -%%DATADIR%%/library/Zend/Locale/Data/gl_ES.xml -%%DATADIR%%/library/Zend/Locale/Data/gsw.xml -%%DATADIR%%/library/Zend/Locale/Data/gsw_CH.xml -%%DATADIR%%/library/Zend/Locale/Data/gu.xml -%%DATADIR%%/library/Zend/Locale/Data/gu_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/gv.xml -%%DATADIR%%/library/Zend/Locale/Data/gv_GB.xml -%%DATADIR%%/library/Zend/Locale/Data/ha.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_Arab.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_Arab_NG.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_Arab_SD.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_GH.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_Latn.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_Latn_GH.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_Latn_NE.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_Latn_NG.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_NE.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_NG.xml -%%DATADIR%%/library/Zend/Locale/Data/ha_SD.xml -%%DATADIR%%/library/Zend/Locale/Data/haw.xml -%%DATADIR%%/library/Zend/Locale/Data/haw_US.xml -%%DATADIR%%/library/Zend/Locale/Data/he.xml -%%DATADIR%%/library/Zend/Locale/Data/he_IL.xml -%%DATADIR%%/library/Zend/Locale/Data/hi.xml -%%DATADIR%%/library/Zend/Locale/Data/hi_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/hr.xml -%%DATADIR%%/library/Zend/Locale/Data/hr_HR.xml -%%DATADIR%%/library/Zend/Locale/Data/hu.xml -%%DATADIR%%/library/Zend/Locale/Data/hu_HU.xml -%%DATADIR%%/library/Zend/Locale/Data/hy.xml -%%DATADIR%%/library/Zend/Locale/Data/hy_AM.xml -%%DATADIR%%/library/Zend/Locale/Data/hy_AM_REVISED.xml -%%DATADIR%%/library/Zend/Locale/Data/ia.xml -%%DATADIR%%/library/Zend/Locale/Data/id.xml -%%DATADIR%%/library/Zend/Locale/Data/id_ID.xml -%%DATADIR%%/library/Zend/Locale/Data/ig.xml -%%DATADIR%%/library/Zend/Locale/Data/ig_NG.xml -%%DATADIR%%/library/Zend/Locale/Data/ii.xml -%%DATADIR%%/library/Zend/Locale/Data/ii_CN.xml -%%DATADIR%%/library/Zend/Locale/Data/in.xml -%%DATADIR%%/library/Zend/Locale/Data/is.xml -%%DATADIR%%/library/Zend/Locale/Data/is_IS.xml -%%DATADIR%%/library/Zend/Locale/Data/it.xml -%%DATADIR%%/library/Zend/Locale/Data/it_CH.xml -%%DATADIR%%/library/Zend/Locale/Data/it_IT.xml -%%DATADIR%%/library/Zend/Locale/Data/iu.xml -%%DATADIR%%/library/Zend/Locale/Data/iw.xml -%%DATADIR%%/library/Zend/Locale/Data/ja.xml -%%DATADIR%%/library/Zend/Locale/Data/ja_JP.xml -%%DATADIR%%/library/Zend/Locale/Data/ka.xml -%%DATADIR%%/library/Zend/Locale/Data/ka_GE.xml -%%DATADIR%%/library/Zend/Locale/Data/kaj.xml -%%DATADIR%%/library/Zend/Locale/Data/kaj_NG.xml -%%DATADIR%%/library/Zend/Locale/Data/kam.xml -%%DATADIR%%/library/Zend/Locale/Data/kam_KE.xml -%%DATADIR%%/library/Zend/Locale/Data/kcg.xml -%%DATADIR%%/library/Zend/Locale/Data/kcg_NG.xml -%%DATADIR%%/library/Zend/Locale/Data/kfo.xml -%%DATADIR%%/library/Zend/Locale/Data/kfo_CI.xml -%%DATADIR%%/library/Zend/Locale/Data/kk.xml -%%DATADIR%%/library/Zend/Locale/Data/kk_Cyrl.xml -%%DATADIR%%/library/Zend/Locale/Data/kk_Cyrl_KZ.xml -%%DATADIR%%/library/Zend/Locale/Data/kk_KZ.xml -%%DATADIR%%/library/Zend/Locale/Data/kl.xml -%%DATADIR%%/library/Zend/Locale/Data/kl_GL.xml -%%DATADIR%%/library/Zend/Locale/Data/km.xml -%%DATADIR%%/library/Zend/Locale/Data/km_KH.xml -%%DATADIR%%/library/Zend/Locale/Data/kn.xml -%%DATADIR%%/library/Zend/Locale/Data/kn_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/ko.xml -%%DATADIR%%/library/Zend/Locale/Data/ko_KR.xml -%%DATADIR%%/library/Zend/Locale/Data/kok.xml -%%DATADIR%%/library/Zend/Locale/Data/kok_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/kpe.xml -%%DATADIR%%/library/Zend/Locale/Data/kpe_GN.xml -%%DATADIR%%/library/Zend/Locale/Data/kpe_LR.xml -%%DATADIR%%/library/Zend/Locale/Data/ku.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_Arab.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_Arab_IQ.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_Arab_IR.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_Arab_SY.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_IQ.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_IR.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_Latn.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_Latn_TR.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_SY.xml -%%DATADIR%%/library/Zend/Locale/Data/ku_TR.xml -%%DATADIR%%/library/Zend/Locale/Data/kw.xml -%%DATADIR%%/library/Zend/Locale/Data/kw_GB.xml -%%DATADIR%%/library/Zend/Locale/Data/ky.xml -%%DATADIR%%/library/Zend/Locale/Data/ky_KG.xml -%%DATADIR%%/library/Zend/Locale/Data/likelySubtags.xml -%%DATADIR%%/library/Zend/Locale/Data/ln.xml -%%DATADIR%%/library/Zend/Locale/Data/ln_CD.xml -%%DATADIR%%/library/Zend/Locale/Data/ln_CG.xml -%%DATADIR%%/library/Zend/Locale/Data/lo.xml -%%DATADIR%%/library/Zend/Locale/Data/lo_LA.xml -%%DATADIR%%/library/Zend/Locale/Data/lt.xml -%%DATADIR%%/library/Zend/Locale/Data/lt_LT.xml -%%DATADIR%%/library/Zend/Locale/Data/lv.xml -%%DATADIR%%/library/Zend/Locale/Data/lv_LV.xml -%%DATADIR%%/library/Zend/Locale/Data/metazoneInfo.xml -%%DATADIR%%/library/Zend/Locale/Data/mk.xml -%%DATADIR%%/library/Zend/Locale/Data/mk_MK.xml -%%DATADIR%%/library/Zend/Locale/Data/ml.xml -%%DATADIR%%/library/Zend/Locale/Data/ml_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/mn.xml -%%DATADIR%%/library/Zend/Locale/Data/mn_CN.xml -%%DATADIR%%/library/Zend/Locale/Data/mn_Cyrl.xml -%%DATADIR%%/library/Zend/Locale/Data/mn_Cyrl_MN.xml -%%DATADIR%%/library/Zend/Locale/Data/mn_MN.xml -%%DATADIR%%/library/Zend/Locale/Data/mn_Mong.xml -%%DATADIR%%/library/Zend/Locale/Data/mn_Mong_CN.xml -%%DATADIR%%/library/Zend/Locale/Data/mo.xml -%%DATADIR%%/library/Zend/Locale/Data/mr.xml -%%DATADIR%%/library/Zend/Locale/Data/mr_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/ms.xml -%%DATADIR%%/library/Zend/Locale/Data/ms_BN.xml -%%DATADIR%%/library/Zend/Locale/Data/ms_MY.xml -%%DATADIR%%/library/Zend/Locale/Data/mt.xml -%%DATADIR%%/library/Zend/Locale/Data/mt_MT.xml -%%DATADIR%%/library/Zend/Locale/Data/my.xml -%%DATADIR%%/library/Zend/Locale/Data/my_MM.xml -%%DATADIR%%/library/Zend/Locale/Data/nb.xml -%%DATADIR%%/library/Zend/Locale/Data/nb_NO.xml -%%DATADIR%%/library/Zend/Locale/Data/nds.xml -%%DATADIR%%/library/Zend/Locale/Data/nds_DE.xml -%%DATADIR%%/library/Zend/Locale/Data/ne.xml -%%DATADIR%%/library/Zend/Locale/Data/ne_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/ne_NP.xml -%%DATADIR%%/library/Zend/Locale/Data/nl.xml -%%DATADIR%%/library/Zend/Locale/Data/nl_BE.xml -%%DATADIR%%/library/Zend/Locale/Data/nl_NL.xml -%%DATADIR%%/library/Zend/Locale/Data/nn.xml -%%DATADIR%%/library/Zend/Locale/Data/nn_NO.xml -%%DATADIR%%/library/Zend/Locale/Data/no.xml -%%DATADIR%%/library/Zend/Locale/Data/nr.xml -%%DATADIR%%/library/Zend/Locale/Data/nr_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/nso.xml -%%DATADIR%%/library/Zend/Locale/Data/nso_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/numberingSystems.xml -%%DATADIR%%/library/Zend/Locale/Data/ny.xml -%%DATADIR%%/library/Zend/Locale/Data/ny_MW.xml -%%DATADIR%%/library/Zend/Locale/Data/oc.xml -%%DATADIR%%/library/Zend/Locale/Data/oc_FR.xml -%%DATADIR%%/library/Zend/Locale/Data/om.xml -%%DATADIR%%/library/Zend/Locale/Data/om_ET.xml -%%DATADIR%%/library/Zend/Locale/Data/om_KE.xml -%%DATADIR%%/library/Zend/Locale/Data/or.xml -%%DATADIR%%/library/Zend/Locale/Data/or_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/pa.xml -%%DATADIR%%/library/Zend/Locale/Data/pa_Arab.xml -%%DATADIR%%/library/Zend/Locale/Data/pa_Arab_PK.xml -%%DATADIR%%/library/Zend/Locale/Data/pa_Guru.xml -%%DATADIR%%/library/Zend/Locale/Data/pa_Guru_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/pa_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/pa_PK.xml -%%DATADIR%%/library/Zend/Locale/Data/pl.xml -%%DATADIR%%/library/Zend/Locale/Data/pl_PL.xml -%%DATADIR%%/library/Zend/Locale/Data/postalCodeData.xml -%%DATADIR%%/library/Zend/Locale/Data/ps.xml -%%DATADIR%%/library/Zend/Locale/Data/ps_AF.xml -%%DATADIR%%/library/Zend/Locale/Data/pt.xml -%%DATADIR%%/library/Zend/Locale/Data/pt_BR.xml -%%DATADIR%%/library/Zend/Locale/Data/pt_PT.xml -%%DATADIR%%/library/Zend/Locale/Data/ro.xml -%%DATADIR%%/library/Zend/Locale/Data/ro_MD.xml -%%DATADIR%%/library/Zend/Locale/Data/ro_RO.xml -%%DATADIR%%/library/Zend/Locale/Data/root.xml -%%DATADIR%%/library/Zend/Locale/Data/ru.xml -%%DATADIR%%/library/Zend/Locale/Data/ru_RU.xml -%%DATADIR%%/library/Zend/Locale/Data/ru_UA.xml -%%DATADIR%%/library/Zend/Locale/Data/rw.xml -%%DATADIR%%/library/Zend/Locale/Data/rw_RW.xml -%%DATADIR%%/library/Zend/Locale/Data/sa.xml -%%DATADIR%%/library/Zend/Locale/Data/sa_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/se.xml -%%DATADIR%%/library/Zend/Locale/Data/se_FI.xml -%%DATADIR%%/library/Zend/Locale/Data/se_NO.xml -%%DATADIR%%/library/Zend/Locale/Data/sh.xml -%%DATADIR%%/library/Zend/Locale/Data/sh_BA.xml -%%DATADIR%%/library/Zend/Locale/Data/sh_CS.xml -%%DATADIR%%/library/Zend/Locale/Data/sh_YU.xml -%%DATADIR%%/library/Zend/Locale/Data/si.xml -%%DATADIR%%/library/Zend/Locale/Data/si_LK.xml -%%DATADIR%%/library/Zend/Locale/Data/sid.xml -%%DATADIR%%/library/Zend/Locale/Data/sid_ET.xml -%%DATADIR%%/library/Zend/Locale/Data/sk.xml -%%DATADIR%%/library/Zend/Locale/Data/sk_SK.xml -%%DATADIR%%/library/Zend/Locale/Data/sl.xml -%%DATADIR%%/library/Zend/Locale/Data/sl_SI.xml -%%DATADIR%%/library/Zend/Locale/Data/so.xml -%%DATADIR%%/library/Zend/Locale/Data/so_DJ.xml -%%DATADIR%%/library/Zend/Locale/Data/so_ET.xml -%%DATADIR%%/library/Zend/Locale/Data/so_KE.xml -%%DATADIR%%/library/Zend/Locale/Data/so_SO.xml -%%DATADIR%%/library/Zend/Locale/Data/sq.xml -%%DATADIR%%/library/Zend/Locale/Data/sq_AL.xml -%%DATADIR%%/library/Zend/Locale/Data/sr.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_BA.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_CS.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Cyrl.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Cyrl_BA.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Cyrl_CS.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Cyrl_ME.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Cyrl_RS.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Cyrl_YU.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Latn.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Latn_BA.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Latn_CS.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Latn_ME.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Latn_RS.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_Latn_YU.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_ME.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_RS.xml -%%DATADIR%%/library/Zend/Locale/Data/sr_YU.xml -%%DATADIR%%/library/Zend/Locale/Data/ss.xml -%%DATADIR%%/library/Zend/Locale/Data/ss_SZ.xml -%%DATADIR%%/library/Zend/Locale/Data/ss_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/st.xml -%%DATADIR%%/library/Zend/Locale/Data/st_LS.xml -%%DATADIR%%/library/Zend/Locale/Data/st_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/supplementalData.xml -%%DATADIR%%/library/Zend/Locale/Data/sv.xml -%%DATADIR%%/library/Zend/Locale/Data/sv_FI.xml -%%DATADIR%%/library/Zend/Locale/Data/sv_SE.xml -%%DATADIR%%/library/Zend/Locale/Data/sw.xml -%%DATADIR%%/library/Zend/Locale/Data/sw_KE.xml -%%DATADIR%%/library/Zend/Locale/Data/sw_TZ.xml -%%DATADIR%%/library/Zend/Locale/Data/syr.xml -%%DATADIR%%/library/Zend/Locale/Data/syr_SY.xml -%%DATADIR%%/library/Zend/Locale/Data/ta.xml -%%DATADIR%%/library/Zend/Locale/Data/ta_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/te.xml -%%DATADIR%%/library/Zend/Locale/Data/te_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/telephoneCodeData.xml -%%DATADIR%%/library/Zend/Locale/Data/tg.xml -%%DATADIR%%/library/Zend/Locale/Data/tg_Cyrl.xml -%%DATADIR%%/library/Zend/Locale/Data/tg_Cyrl_TJ.xml -%%DATADIR%%/library/Zend/Locale/Data/tg_TJ.xml -%%DATADIR%%/library/Zend/Locale/Data/th.xml -%%DATADIR%%/library/Zend/Locale/Data/th_TH.xml -%%DATADIR%%/library/Zend/Locale/Data/ti.xml -%%DATADIR%%/library/Zend/Locale/Data/ti_ER.xml -%%DATADIR%%/library/Zend/Locale/Data/ti_ET.xml -%%DATADIR%%/library/Zend/Locale/Data/tig.xml -%%DATADIR%%/library/Zend/Locale/Data/tig_ER.xml -%%DATADIR%%/library/Zend/Locale/Data/tl.xml -%%DATADIR%%/library/Zend/Locale/Data/tn.xml -%%DATADIR%%/library/Zend/Locale/Data/tn_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/to.xml -%%DATADIR%%/library/Zend/Locale/Data/to_TO.xml -%%DATADIR%%/library/Zend/Locale/Data/tr.xml -%%DATADIR%%/library/Zend/Locale/Data/tr_TR.xml -%%DATADIR%%/library/Zend/Locale/Data/trv.xml -%%DATADIR%%/library/Zend/Locale/Data/trv_TW.xml -%%DATADIR%%/library/Zend/Locale/Data/ts.xml -%%DATADIR%%/library/Zend/Locale/Data/ts_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/tt.xml -%%DATADIR%%/library/Zend/Locale/Data/tt_RU.xml -%%DATADIR%%/library/Zend/Locale/Data/ug.xml -%%DATADIR%%/library/Zend/Locale/Data/ug_Arab.xml -%%DATADIR%%/library/Zend/Locale/Data/ug_Arab_CN.xml -%%DATADIR%%/library/Zend/Locale/Data/ug_CN.xml -%%DATADIR%%/library/Zend/Locale/Data/uk.xml -%%DATADIR%%/library/Zend/Locale/Data/uk_UA.xml -%%DATADIR%%/library/Zend/Locale/Data/ur.xml -%%DATADIR%%/library/Zend/Locale/Data/ur_IN.xml -%%DATADIR%%/library/Zend/Locale/Data/ur_PK.xml -%%DATADIR%%/library/Zend/Locale/Data/uz.xml -%%DATADIR%%/library/Zend/Locale/Data/uz_AF.xml -%%DATADIR%%/library/Zend/Locale/Data/uz_Arab.xml -%%DATADIR%%/library/Zend/Locale/Data/uz_Arab_AF.xml -%%DATADIR%%/library/Zend/Locale/Data/uz_Cyrl.xml -%%DATADIR%%/library/Zend/Locale/Data/uz_Cyrl_UZ.xml -%%DATADIR%%/library/Zend/Locale/Data/uz_Latn.xml -%%DATADIR%%/library/Zend/Locale/Data/uz_Latn_UZ.xml -%%DATADIR%%/library/Zend/Locale/Data/uz_UZ.xml -%%DATADIR%%/library/Zend/Locale/Data/ve.xml -%%DATADIR%%/library/Zend/Locale/Data/ve_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/vi.xml -%%DATADIR%%/library/Zend/Locale/Data/vi_VN.xml -%%DATADIR%%/library/Zend/Locale/Data/wal.xml -%%DATADIR%%/library/Zend/Locale/Data/wal_ET.xml -%%DATADIR%%/library/Zend/Locale/Data/wo.xml -%%DATADIR%%/library/Zend/Locale/Data/wo_Latn.xml -%%DATADIR%%/library/Zend/Locale/Data/wo_Latn_SN.xml -%%DATADIR%%/library/Zend/Locale/Data/wo_SN.xml -%%DATADIR%%/library/Zend/Locale/Data/xh.xml -%%DATADIR%%/library/Zend/Locale/Data/xh_ZA.xml -%%DATADIR%%/library/Zend/Locale/Data/yo.xml -%%DATADIR%%/library/Zend/Locale/Data/yo_NG.xml -%%DATADIR%%/library/Zend/Locale/Data/zh.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_CN.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_HK.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_Hans.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_Hans_CN.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_Hans_HK.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_Hans_MO.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_Hans_SG.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_Hant.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_Hant_HK.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_Hant_MO.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_Hant_TW.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_MO.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_SG.xml -%%DATADIR%%/library/Zend/Locale/Data/zh_TW.xml -%%DATADIR%%/library/Zend/Locale/Data/zu.xml -%%DATADIR%%/library/Zend/Locale/Data/zu_ZA.xml -%%DATADIR%%/library/Zend/Locale/Exception.php -%%DATADIR%%/library/Zend/Locale/Format.php -%%DATADIR%%/library/Zend/Locale/Math.php -%%DATADIR%%/library/Zend/Locale/Math/Exception.php -%%DATADIR%%/library/Zend/Locale/Math/PhpMath.php -%%DATADIR%%/library/Zend/Log.php -%%DATADIR%%/library/Zend/Log/Exception.php -%%DATADIR%%/library/Zend/Log/FactoryInterface.php -%%DATADIR%%/library/Zend/Log/Filter/Abstract.php -%%DATADIR%%/library/Zend/Log/Filter/Interface.php -%%DATADIR%%/library/Zend/Log/Filter/Message.php +%%DATADIR%%/library/Zend/Loader/composer.json +%%DATADIR%%/library/Zend/Log/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Log/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Log/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Log/Filter/FilterInterface.php +%%DATADIR%%/library/Zend/Log/Filter/Mock.php %%DATADIR%%/library/Zend/Log/Filter/Priority.php -%%DATADIR%%/library/Zend/Log/Filter/Suppress.php -%%DATADIR%%/library/Zend/Log/Formatter/Abstract.php -%%DATADIR%%/library/Zend/Log/Formatter/Firebug.php -%%DATADIR%%/library/Zend/Log/Formatter/Interface.php +%%DATADIR%%/library/Zend/Log/Filter/Regex.php +%%DATADIR%%/library/Zend/Log/Filter/SuppressFilter.php +%%DATADIR%%/library/Zend/Log/Filter/Validator.php +%%DATADIR%%/library/Zend/Log/Formatter/Base.php +%%DATADIR%%/library/Zend/Log/Formatter/ChromePhp.php +%%DATADIR%%/library/Zend/Log/Formatter/Db.php +%%DATADIR%%/library/Zend/Log/Formatter/ErrorHandler.php +%%DATADIR%%/library/Zend/Log/Formatter/ExceptionHandler.php +%%DATADIR%%/library/Zend/Log/Formatter/FirePhp.php +%%DATADIR%%/library/Zend/Log/Formatter/FormatterInterface.php %%DATADIR%%/library/Zend/Log/Formatter/Simple.php %%DATADIR%%/library/Zend/Log/Formatter/Xml.php -%%DATADIR%%/library/Zend/Log/Writer/Abstract.php +%%DATADIR%%/library/Zend/Log/Logger.php +%%DATADIR%%/library/Zend/Log/LoggerAbstractServiceFactory.php +%%DATADIR%%/library/Zend/Log/LoggerAwareInterface.php +%%DATADIR%%/library/Zend/Log/LoggerAwareTrait.php +%%DATADIR%%/library/Zend/Log/LoggerInterface.php +%%DATADIR%%/library/Zend/Log/LoggerServiceFactory.php +%%DATADIR%%/library/Zend/Log/Processor/Backtrace.php +%%DATADIR%%/library/Zend/Log/Processor/ProcessorInterface.php +%%DATADIR%%/library/Zend/Log/Processor/RequestId.php +%%DATADIR%%/library/Zend/Log/ProcessorPluginManager.php +%%DATADIR%%/library/Zend/Log/README.md +%%DATADIR%%/library/Zend/Log/Writer/AbstractWriter.php +%%DATADIR%%/library/Zend/Log/Writer/ChromePhp.php +%%DATADIR%%/library/Zend/Log/Writer/ChromePhp/ChromePhpBridge.php +%%DATADIR%%/library/Zend/Log/Writer/ChromePhp/ChromePhpInterface.php %%DATADIR%%/library/Zend/Log/Writer/Db.php -%%DATADIR%%/library/Zend/Log/Writer/Firebug.php +%%DATADIR%%/library/Zend/Log/Writer/FilterPluginManager.php +%%DATADIR%%/library/Zend/Log/Writer/FingersCrossed.php +%%DATADIR%%/library/Zend/Log/Writer/FirePhp.php +%%DATADIR%%/library/Zend/Log/Writer/FirePhp/FirePhpBridge.php +%%DATADIR%%/library/Zend/Log/Writer/FirePhp/FirePhpInterface.php +%%DATADIR%%/library/Zend/Log/Writer/FormatterPluginManager.php %%DATADIR%%/library/Zend/Log/Writer/Mail.php %%DATADIR%%/library/Zend/Log/Writer/Mock.php +%%DATADIR%%/library/Zend/Log/Writer/MongoDB.php %%DATADIR%%/library/Zend/Log/Writer/Null.php %%DATADIR%%/library/Zend/Log/Writer/Stream.php %%DATADIR%%/library/Zend/Log/Writer/Syslog.php +%%DATADIR%%/library/Zend/Log/Writer/WriterInterface.php %%DATADIR%%/library/Zend/Log/Writer/ZendMonitor.php -%%DATADIR%%/library/Zend/Mail.php -%%DATADIR%%/library/Zend/Mail/Exception.php +%%DATADIR%%/library/Zend/Log/WriterPluginManager.php +%%DATADIR%%/library/Zend/Log/composer.json +%%DATADIR%%/library/Zend/Mail/Address.php +%%DATADIR%%/library/Zend/Mail/Address/AddressInterface.php +%%DATADIR%%/library/Zend/Mail/AddressList.php +%%DATADIR%%/library/Zend/Mail/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Mail/Exception/DomainException.php +%%DATADIR%%/library/Zend/Mail/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Mail/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Mail/Exception/OutOfBoundsException.php +%%DATADIR%%/library/Zend/Mail/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Mail/Header/AbstractAddressList.php +%%DATADIR%%/library/Zend/Mail/Header/Bcc.php +%%DATADIR%%/library/Zend/Mail/Header/Cc.php +%%DATADIR%%/library/Zend/Mail/Header/ContentType.php +%%DATADIR%%/library/Zend/Mail/Header/Date.php +%%DATADIR%%/library/Zend/Mail/Header/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Mail/Header/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Mail/Header/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Mail/Header/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Mail/Header/From.php +%%DATADIR%%/library/Zend/Mail/Header/GenericHeader.php +%%DATADIR%%/library/Zend/Mail/Header/GenericMultiHeader.php +%%DATADIR%%/library/Zend/Mail/Header/HeaderInterface.php +%%DATADIR%%/library/Zend/Mail/Header/HeaderLoader.php +%%DATADIR%%/library/Zend/Mail/Header/HeaderWrap.php +%%DATADIR%%/library/Zend/Mail/Header/MessageId.php +%%DATADIR%%/library/Zend/Mail/Header/MimeVersion.php +%%DATADIR%%/library/Zend/Mail/Header/MultipleHeadersInterface.php +%%DATADIR%%/library/Zend/Mail/Header/Received.php +%%DATADIR%%/library/Zend/Mail/Header/ReplyTo.php +%%DATADIR%%/library/Zend/Mail/Header/Sender.php +%%DATADIR%%/library/Zend/Mail/Header/StructuredInterface.php +%%DATADIR%%/library/Zend/Mail/Header/Subject.php +%%DATADIR%%/library/Zend/Mail/Header/To.php +%%DATADIR%%/library/Zend/Mail/Header/UnstructuredInterface.php +%%DATADIR%%/library/Zend/Mail/Headers.php %%DATADIR%%/library/Zend/Mail/Message.php -%%DATADIR%%/library/Zend/Mail/Message/File.php -%%DATADIR%%/library/Zend/Mail/Message/Interface.php -%%DATADIR%%/library/Zend/Mail/Part.php -%%DATADIR%%/library/Zend/Mail/Part/File.php -%%DATADIR%%/library/Zend/Mail/Part/Interface.php -%%DATADIR%%/library/Zend/Mail/Protocol/Abstract.php -%%DATADIR%%/library/Zend/Mail/Protocol/Exception.php +%%DATADIR%%/library/Zend/Mail/Protocol/AbstractProtocol.php +%%DATADIR%%/library/Zend/Mail/Protocol/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Mail/Protocol/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Mail/Protocol/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Mail/Protocol/Imap.php %%DATADIR%%/library/Zend/Mail/Protocol/Pop3.php %%DATADIR%%/library/Zend/Mail/Protocol/Smtp.php %%DATADIR%%/library/Zend/Mail/Protocol/Smtp/Auth/Crammd5.php %%DATADIR%%/library/Zend/Mail/Protocol/Smtp/Auth/Login.php %%DATADIR%%/library/Zend/Mail/Protocol/Smtp/Auth/Plain.php +%%DATADIR%%/library/Zend/Mail/Protocol/SmtpPluginManager.php +%%DATADIR%%/library/Zend/Mail/README.md %%DATADIR%%/library/Zend/Mail/Storage.php -%%DATADIR%%/library/Zend/Mail/Storage/Abstract.php -%%DATADIR%%/library/Zend/Mail/Storage/Exception.php +%%DATADIR%%/library/Zend/Mail/Storage/AbstractStorage.php +%%DATADIR%%/library/Zend/Mail/Storage/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Mail/Storage/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Mail/Storage/Exception/OutOfBoundsException.php +%%DATADIR%%/library/Zend/Mail/Storage/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Mail/Storage/Folder.php -%%DATADIR%%/library/Zend/Mail/Storage/Folder/Interface.php +%%DATADIR%%/library/Zend/Mail/Storage/Folder/FolderInterface.php %%DATADIR%%/library/Zend/Mail/Storage/Folder/Maildir.php %%DATADIR%%/library/Zend/Mail/Storage/Folder/Mbox.php %%DATADIR%%/library/Zend/Mail/Storage/Imap.php %%DATADIR%%/library/Zend/Mail/Storage/Maildir.php %%DATADIR%%/library/Zend/Mail/Storage/Mbox.php +%%DATADIR%%/library/Zend/Mail/Storage/Message.php +%%DATADIR%%/library/Zend/Mail/Storage/Message/File.php +%%DATADIR%%/library/Zend/Mail/Storage/Message/MessageInterface.php +%%DATADIR%%/library/Zend/Mail/Storage/Part.php +%%DATADIR%%/library/Zend/Mail/Storage/Part/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Mail/Storage/Part/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Mail/Storage/Part/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Mail/Storage/Part/File.php +%%DATADIR%%/library/Zend/Mail/Storage/Part/PartInterface.php %%DATADIR%%/library/Zend/Mail/Storage/Pop3.php -%%DATADIR%%/library/Zend/Mail/Storage/Writable/Interface.php %%DATADIR%%/library/Zend/Mail/Storage/Writable/Maildir.php -%%DATADIR%%/library/Zend/Mail/Transport/Abstract.php -%%DATADIR%%/library/Zend/Mail/Transport/Exception.php +%%DATADIR%%/library/Zend/Mail/Storage/Writable/WritableInterface.php +%%DATADIR%%/library/Zend/Mail/Transport/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Mail/Transport/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Mail/Transport/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Mail/Transport/File.php +%%DATADIR%%/library/Zend/Mail/Transport/FileOptions.php %%DATADIR%%/library/Zend/Mail/Transport/Sendmail.php %%DATADIR%%/library/Zend/Mail/Transport/Smtp.php -%%DATADIR%%/library/Zend/Markup.php -%%DATADIR%%/library/Zend/Markup/Exception.php -%%DATADIR%%/library/Zend/Markup/Parser/Bbcode.php -%%DATADIR%%/library/Zend/Markup/Parser/Exception.php -%%DATADIR%%/library/Zend/Markup/Parser/ParserInterface.php -%%DATADIR%%/library/Zend/Markup/Parser/Textile.php -%%DATADIR%%/library/Zend/Markup/Renderer/Exception.php -%%DATADIR%%/library/Zend/Markup/Renderer/Html.php -%%DATADIR%%/library/Zend/Markup/Renderer/Html/Code.php -%%DATADIR%%/library/Zend/Markup/Renderer/Html/HtmlAbstract.php -%%DATADIR%%/library/Zend/Markup/Renderer/Html/Img.php -%%DATADIR%%/library/Zend/Markup/Renderer/Html/List.php -%%DATADIR%%/library/Zend/Markup/Renderer/Html/Url.php -%%DATADIR%%/library/Zend/Markup/Renderer/RendererAbstract.php -%%DATADIR%%/library/Zend/Markup/Renderer/TokenConverterInterface.php -%%DATADIR%%/library/Zend/Markup/Token.php -%%DATADIR%%/library/Zend/Markup/TokenList.php -%%DATADIR%%/library/Zend/Measure/Abstract.php -%%DATADIR%%/library/Zend/Measure/Acceleration.php -%%DATADIR%%/library/Zend/Measure/Angle.php -%%DATADIR%%/library/Zend/Measure/Area.php -%%DATADIR%%/library/Zend/Measure/Binary.php -%%DATADIR%%/library/Zend/Measure/Capacitance.php -%%DATADIR%%/library/Zend/Measure/Cooking/Volume.php -%%DATADIR%%/library/Zend/Measure/Cooking/Weight.php -%%DATADIR%%/library/Zend/Measure/Current.php -%%DATADIR%%/library/Zend/Measure/Density.php -%%DATADIR%%/library/Zend/Measure/Energy.php -%%DATADIR%%/library/Zend/Measure/Exception.php -%%DATADIR%%/library/Zend/Measure/Flow/Mass.php -%%DATADIR%%/library/Zend/Measure/Flow/Mole.php -%%DATADIR%%/library/Zend/Measure/Flow/Volume.php -%%DATADIR%%/library/Zend/Measure/Force.php -%%DATADIR%%/library/Zend/Measure/Frequency.php -%%DATADIR%%/library/Zend/Measure/Illumination.php -%%DATADIR%%/library/Zend/Measure/Length.php -%%DATADIR%%/library/Zend/Measure/Lightness.php -%%DATADIR%%/library/Zend/Measure/Number.php -%%DATADIR%%/library/Zend/Measure/Power.php -%%DATADIR%%/library/Zend/Measure/Pressure.php -%%DATADIR%%/library/Zend/Measure/Speed.php -%%DATADIR%%/library/Zend/Measure/Temperature.php -%%DATADIR%%/library/Zend/Measure/Time.php -%%DATADIR%%/library/Zend/Measure/Torque.php -%%DATADIR%%/library/Zend/Measure/Viscosity/Dynamic.php -%%DATADIR%%/library/Zend/Measure/Viscosity/Kinematic.php -%%DATADIR%%/library/Zend/Measure/Volume.php -%%DATADIR%%/library/Zend/Measure/Weight.php -%%DATADIR%%/library/Zend/Memory.php -%%DATADIR%%/library/Zend/Memory/AccessController.php -%%DATADIR%%/library/Zend/Memory/Container.php -%%DATADIR%%/library/Zend/Memory/Container/Interface.php +%%DATADIR%%/library/Zend/Mail/Transport/SmtpOptions.php +%%DATADIR%%/library/Zend/Mail/Transport/TransportInterface.php +%%DATADIR%%/library/Zend/Mail/composer.json +%%DATADIR%%/library/Zend/Math/BigInteger/Adapter/AdapterInterface.php +%%DATADIR%%/library/Zend/Math/BigInteger/Adapter/Bcmath.php +%%DATADIR%%/library/Zend/Math/BigInteger/Adapter/Gmp.php +%%DATADIR%%/library/Zend/Math/BigInteger/AdapterPluginManager.php +%%DATADIR%%/library/Zend/Math/BigInteger/BigInteger.php +%%DATADIR%%/library/Zend/Math/BigInteger/Exception/DivisionByZeroException.php +%%DATADIR%%/library/Zend/Math/BigInteger/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Math/BigInteger/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Math/BigInteger/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Math/Exception/DomainException.php +%%DATADIR%%/library/Zend/Math/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Math/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Math/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Math/README.md +%%DATADIR%%/library/Zend/Math/Rand.php +%%DATADIR%%/library/Zend/Math/Source/HashTiming.php +%%DATADIR%%/library/Zend/Math/composer.json +%%DATADIR%%/library/Zend/Memory/Container/AbstractContainer.php +%%DATADIR%%/library/Zend/Memory/Container/AccessController.php +%%DATADIR%%/library/Zend/Memory/Container/ContainerInterface.php %%DATADIR%%/library/Zend/Memory/Container/Locked.php %%DATADIR%%/library/Zend/Memory/Container/Movable.php -%%DATADIR%%/library/Zend/Memory/Exception.php -%%DATADIR%%/library/Zend/Memory/Manager.php +%%DATADIR%%/library/Zend/Memory/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Memory/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Memory/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Memory/MemoryManager.php +%%DATADIR%%/library/Zend/Memory/README.md %%DATADIR%%/library/Zend/Memory/Value.php -%%DATADIR%%/library/Zend/Mime.php +%%DATADIR%%/library/Zend/Memory/composer.json %%DATADIR%%/library/Zend/Mime/Decode.php -%%DATADIR%%/library/Zend/Mime/Exception.php +%%DATADIR%%/library/Zend/Mime/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Mime/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Mime/Message.php +%%DATADIR%%/library/Zend/Mime/Mime.php %%DATADIR%%/library/Zend/Mime/Part.php -%%DATADIR%%/library/Zend/Mobile/Exception.php -%%DATADIR%%/library/Zend/Mobile/Push/Abstract.php -%%DATADIR%%/library/Zend/Mobile/Push/Apns.php -%%DATADIR%%/library/Zend/Mobile/Push/Exception.php -%%DATADIR%%/library/Zend/Mobile/Push/Exception/DeviceQuotaExceeded.php -%%DATADIR%%/library/Zend/Mobile/Push/Exception/InvalidAuthToken.php -%%DATADIR%%/library/Zend/Mobile/Push/Exception/InvalidPayload.php -%%DATADIR%%/library/Zend/Mobile/Push/Exception/InvalidRegistration.php -%%DATADIR%%/library/Zend/Mobile/Push/Exception/InvalidToken.php -%%DATADIR%%/library/Zend/Mobile/Push/Exception/InvalidTopic.php -%%DATADIR%%/library/Zend/Mobile/Push/Exception/QuotaExceeded.php -%%DATADIR%%/library/Zend/Mobile/Push/Exception/ServerUnavailable.php -%%DATADIR%%/library/Zend/Mobile/Push/Gcm.php -%%DATADIR%%/library/Zend/Mobile/Push/Interface.php -%%DATADIR%%/library/Zend/Mobile/Push/Message/Abstract.php -%%DATADIR%%/library/Zend/Mobile/Push/Message/Apns.php -%%DATADIR%%/library/Zend/Mobile/Push/Message/Exception.php -%%DATADIR%%/library/Zend/Mobile/Push/Message/Gcm.php -%%DATADIR%%/library/Zend/Mobile/Push/Message/Interface.php -%%DATADIR%%/library/Zend/Mobile/Push/Message/Mpns.php -%%DATADIR%%/library/Zend/Mobile/Push/Message/Mpns/Raw.php -%%DATADIR%%/library/Zend/Mobile/Push/Message/Mpns/Tile.php -%%DATADIR%%/library/Zend/Mobile/Push/Message/Mpns/Toast.php -%%DATADIR%%/library/Zend/Mobile/Push/Mpns.php -%%DATADIR%%/library/Zend/Mobile/Push/Response/Gcm.php -%%DATADIR%%/library/Zend/Mobile/Push/Test/ApnsProxy.php -%%DATADIR%%/library/Zend/Navigation.php -%%DATADIR%%/library/Zend/Navigation/Container.php -%%DATADIR%%/library/Zend/Navigation/Exception.php -%%DATADIR%%/library/Zend/Navigation/Page.php +%%DATADIR%%/library/Zend/Mime/README.md +%%DATADIR%%/library/Zend/Mime/composer.json +%%DATADIR%%/library/Zend/ModuleManager/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/ModuleManager/Exception/MissingDependencyModuleException.php +%%DATADIR%%/library/Zend/ModuleManager/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/AutoloaderProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/BootstrapListenerInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/ConfigProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/ConsoleBannerProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/ConsoleUsageProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/ControllerPluginProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/ControllerProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/DependencyIndicatorInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/FilterProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/FormElementProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/HydratorProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/InitProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/InputFilterProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/LocatorRegisteredInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/RouteProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/SerializerProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/ServiceProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/ValidatorProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Feature/ViewHelperProviderInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/AbstractListener.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/AutoloaderListener.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/ConfigListener.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/ConfigMergerInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/DefaultListenerAggregate.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/InitTrigger.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/ListenerOptions.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/LocatorRegistrationListener.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/ModuleDependencyCheckerListener.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/ModuleLoaderListener.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/ModuleResolverListener.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/OnBootstrapListener.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/ServiceListener.php +%%DATADIR%%/library/Zend/ModuleManager/Listener/ServiceListenerInterface.php +%%DATADIR%%/library/Zend/ModuleManager/ModuleEvent.php +%%DATADIR%%/library/Zend/ModuleManager/ModuleManager.php +%%DATADIR%%/library/Zend/ModuleManager/ModuleManagerInterface.php +%%DATADIR%%/library/Zend/ModuleManager/README.md +%%DATADIR%%/library/Zend/ModuleManager/composer.json +%%DATADIR%%/library/Zend/Mvc/Application.php +%%DATADIR%%/library/Zend/Mvc/ApplicationInterface.php +%%DATADIR%%/library/Zend/Mvc/Controller/AbstractActionController.php +%%DATADIR%%/library/Zend/Mvc/Controller/AbstractController.php +%%DATADIR%%/library/Zend/Mvc/Controller/AbstractRestfulController.php +%%DATADIR%%/library/Zend/Mvc/Controller/ControllerManager.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/AbstractPlugin.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/AcceptableViewModelSelector.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/FilePostRedirectGet.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/FlashMessenger.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/Forward.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/Identity.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/Layout.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/Params.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/PluginInterface.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/PostRedirectGet.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/Redirect.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/Service/ForwardFactory.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/Service/IdentityFactory.php +%%DATADIR%%/library/Zend/Mvc/Controller/Plugin/Url.php +%%DATADIR%%/library/Zend/Mvc/Controller/PluginManager.php +%%DATADIR%%/library/Zend/Mvc/DispatchListener.php +%%DATADIR%%/library/Zend/Mvc/Exception/DomainException.php +%%DATADIR%%/library/Zend/Mvc/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Mvc/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Mvc/Exception/InvalidControllerException.php +%%DATADIR%%/library/Zend/Mvc/Exception/InvalidPluginException.php +%%DATADIR%%/library/Zend/Mvc/Exception/MissingLocatorException.php +%%DATADIR%%/library/Zend/Mvc/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Mvc/I18n/Translator.php +%%DATADIR%%/library/Zend/Mvc/InjectApplicationEventInterface.php +%%DATADIR%%/library/Zend/Mvc/ModuleRouteListener.php +%%DATADIR%%/library/Zend/Mvc/MvcEvent.php +%%DATADIR%%/library/Zend/Mvc/README.md +%%DATADIR%%/library/Zend/Mvc/ResponseSender/AbstractResponseSender.php +%%DATADIR%%/library/Zend/Mvc/ResponseSender/ConsoleResponseSender.php +%%DATADIR%%/library/Zend/Mvc/ResponseSender/HttpResponseSender.php +%%DATADIR%%/library/Zend/Mvc/ResponseSender/PhpEnvironmentResponseSender.php +%%DATADIR%%/library/Zend/Mvc/ResponseSender/ResponseSenderInterface.php +%%DATADIR%%/library/Zend/Mvc/ResponseSender/SendResponseEvent.php +%%DATADIR%%/library/Zend/Mvc/ResponseSender/SimpleStreamResponseSender.php +%%DATADIR%%/library/Zend/Mvc/RouteListener.php +%%DATADIR%%/library/Zend/Mvc/Router/Console/Catchall.php +%%DATADIR%%/library/Zend/Mvc/Router/Console/RouteInterface.php +%%DATADIR%%/library/Zend/Mvc/Router/Console/RouteMatch.php +%%DATADIR%%/library/Zend/Mvc/Router/Console/Simple.php +%%DATADIR%%/library/Zend/Mvc/Router/Console/SimpleRouteStack.php +%%DATADIR%%/library/Zend/Mvc/Router/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Mvc/Router/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Mvc/Router/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Chain.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Hostname.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Literal.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Method.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Part.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Query.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Regex.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/RouteInterface.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/RouteMatch.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Scheme.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Segment.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/TranslatorAwareTreeRouteStack.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/TreeRouteStack.php +%%DATADIR%%/library/Zend/Mvc/Router/Http/Wildcard.php +%%DATADIR%%/library/Zend/Mvc/Router/PriorityList.php +%%DATADIR%%/library/Zend/Mvc/Router/RouteInterface.php +%%DATADIR%%/library/Zend/Mvc/Router/RouteMatch.php +%%DATADIR%%/library/Zend/Mvc/Router/RoutePluginManager.php +%%DATADIR%%/library/Zend/Mvc/Router/RouteStackInterface.php +%%DATADIR%%/library/Zend/Mvc/Router/SimpleRouteStack.php +%%DATADIR%%/library/Zend/Mvc/SendResponseListener.php +%%DATADIR%%/library/Zend/Mvc/Service/AbstractPluginManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ApplicationFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ConfigFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ConsoleAdapterFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ConsoleViewManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ControllerLoaderFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ControllerPluginManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/DiAbstractServiceFactoryFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/DiFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/DiServiceInitializerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/DiStrictAbstractServiceFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/DiStrictAbstractServiceFactoryFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/EventManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/FilterManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/FormElementManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/HttpViewManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/HydratorManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/InputFilterManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ModuleManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/PaginatorPluginManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/RequestFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ResponseFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/RoutePluginManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/RouterFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/SerializerAdapterPluginManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ServiceListenerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ServiceManagerConfig.php +%%DATADIR%%/library/Zend/Mvc/Service/TranslatorServiceFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ValidatorManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ViewFeedRendererFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ViewFeedStrategyFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ViewHelperManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ViewJsonRendererFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ViewJsonStrategyFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ViewManagerFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ViewResolverFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ViewTemplateMapResolverFactory.php +%%DATADIR%%/library/Zend/Mvc/Service/ViewTemplatePathStackFactory.php +%%DATADIR%%/library/Zend/Mvc/View/Console/CreateViewModelListener.php +%%DATADIR%%/library/Zend/Mvc/View/Console/DefaultRenderingStrategy.php +%%DATADIR%%/library/Zend/Mvc/View/Console/ExceptionStrategy.php +%%DATADIR%%/library/Zend/Mvc/View/Console/InjectNamedConsoleParamsListener.php +%%DATADIR%%/library/Zend/Mvc/View/Console/InjectViewModelListener.php +%%DATADIR%%/library/Zend/Mvc/View/Console/RouteNotFoundStrategy.php +%%DATADIR%%/library/Zend/Mvc/View/Console/ViewManager.php +%%DATADIR%%/library/Zend/Mvc/View/Http/CreateViewModelListener.php +%%DATADIR%%/library/Zend/Mvc/View/Http/DefaultRenderingStrategy.php +%%DATADIR%%/library/Zend/Mvc/View/Http/ExceptionStrategy.php +%%DATADIR%%/library/Zend/Mvc/View/Http/InjectRoutematchParamsListener.php +%%DATADIR%%/library/Zend/Mvc/View/Http/InjectTemplateListener.php +%%DATADIR%%/library/Zend/Mvc/View/Http/InjectViewModelListener.php +%%DATADIR%%/library/Zend/Mvc/View/Http/RouteNotFoundStrategy.php +%%DATADIR%%/library/Zend/Mvc/View/Http/ViewManager.php +%%DATADIR%%/library/Zend/Mvc/View/SendResponseListener.php +%%DATADIR%%/library/Zend/Mvc/composer.json +%%DATADIR%%/library/Zend/Navigation/AbstractContainer.php +%%DATADIR%%/library/Zend/Navigation/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Navigation/Exception/DomainException.php +%%DATADIR%%/library/Zend/Navigation/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Navigation/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Navigation/Exception/OutOfBoundsException.php +%%DATADIR%%/library/Zend/Navigation/Navigation.php +%%DATADIR%%/library/Zend/Navigation/Page/AbstractPage.php %%DATADIR%%/library/Zend/Navigation/Page/Mvc.php %%DATADIR%%/library/Zend/Navigation/Page/Uri.php -%%DATADIR%%/library/Zend/Oauth.php -%%DATADIR%%/library/Zend/Oauth/Client.php -%%DATADIR%%/library/Zend/Oauth/Config.php -%%DATADIR%%/library/Zend/Oauth/Config/ConfigInterface.php -%%DATADIR%%/library/Zend/Oauth/Consumer.php -%%DATADIR%%/library/Zend/Oauth/Exception.php -%%DATADIR%%/library/Zend/Oauth/Http.php -%%DATADIR%%/library/Zend/Oauth/Http/AccessToken.php -%%DATADIR%%/library/Zend/Oauth/Http/RequestToken.php -%%DATADIR%%/library/Zend/Oauth/Http/UserAuthorization.php -%%DATADIR%%/library/Zend/Oauth/Http/Utility.php -%%DATADIR%%/library/Zend/Oauth/Signature/Hmac.php -%%DATADIR%%/library/Zend/Oauth/Signature/Plaintext.php -%%DATADIR%%/library/Zend/Oauth/Signature/Rsa.php -%%DATADIR%%/library/Zend/Oauth/Signature/SignatureAbstract.php -%%DATADIR%%/library/Zend/Oauth/Token.php -%%DATADIR%%/library/Zend/Oauth/Token/Access.php -%%DATADIR%%/library/Zend/Oauth/Token/AuthorizedRequest.php -%%DATADIR%%/library/Zend/Oauth/Token/Request.php -%%DATADIR%%/library/Zend/OpenId.php -%%DATADIR%%/library/Zend/OpenId/Consumer.php -%%DATADIR%%/library/Zend/OpenId/Consumer/Storage.php -%%DATADIR%%/library/Zend/OpenId/Consumer/Storage/File.php -%%DATADIR%%/library/Zend/OpenId/Exception.php -%%DATADIR%%/library/Zend/OpenId/Extension.php -%%DATADIR%%/library/Zend/OpenId/Extension/Sreg.php -%%DATADIR%%/library/Zend/OpenId/Provider.php -%%DATADIR%%/library/Zend/OpenId/Provider/Storage.php -%%DATADIR%%/library/Zend/OpenId/Provider/Storage/File.php -%%DATADIR%%/library/Zend/OpenId/Provider/User.php -%%DATADIR%%/library/Zend/OpenId/Provider/User/Session.php -%%DATADIR%%/library/Zend/Paginator.php -%%DATADIR%%/library/Zend/Paginator/Adapter/Array.php +%%DATADIR%%/library/Zend/Navigation/README.md +%%DATADIR%%/library/Zend/Navigation/Service/AbstractNavigationFactory.php +%%DATADIR%%/library/Zend/Navigation/Service/ConstructedNavigationFactory.php +%%DATADIR%%/library/Zend/Navigation/Service/DefaultNavigationFactory.php +%%DATADIR%%/library/Zend/Navigation/View/HelperConfig.php +%%DATADIR%%/library/Zend/Navigation/composer.json +%%DATADIR%%/library/Zend/Paginator/Adapter/AdapterInterface.php +%%DATADIR%%/library/Zend/Paginator/Adapter/ArrayAdapter.php %%DATADIR%%/library/Zend/Paginator/Adapter/DbSelect.php -%%DATADIR%%/library/Zend/Paginator/Adapter/DbTableSelect.php -%%DATADIR%%/library/Zend/Paginator/Adapter/Interface.php +%%DATADIR%%/library/Zend/Paginator/Adapter/DbTableGateway.php +%%DATADIR%%/library/Zend/Paginator/Adapter/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Paginator/Adapter/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Paginator/Adapter/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Paginator/Adapter/Exception/UnexpectedValueException.php %%DATADIR%%/library/Zend/Paginator/Adapter/Iterator.php %%DATADIR%%/library/Zend/Paginator/Adapter/Null.php -%%DATADIR%%/library/Zend/Paginator/AdapterAggregate.php -%%DATADIR%%/library/Zend/Paginator/Exception.php +%%DATADIR%%/library/Zend/Paginator/Adapter/Service/DbSelectFactory.php +%%DATADIR%%/library/Zend/Paginator/AdapterAggregateInterface.php +%%DATADIR%%/library/Zend/Paginator/AdapterPluginManager.php +%%DATADIR%%/library/Zend/Paginator/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Paginator/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Paginator/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Paginator/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Paginator/Factory.php +%%DATADIR%%/library/Zend/Paginator/Paginator.php +%%DATADIR%%/library/Zend/Paginator/README.md %%DATADIR%%/library/Zend/Paginator/ScrollingStyle/All.php %%DATADIR%%/library/Zend/Paginator/ScrollingStyle/Elastic.php -%%DATADIR%%/library/Zend/Paginator/ScrollingStyle/Interface.php %%DATADIR%%/library/Zend/Paginator/ScrollingStyle/Jumping.php +%%DATADIR%%/library/Zend/Paginator/ScrollingStyle/ScrollingStyleInterface.php %%DATADIR%%/library/Zend/Paginator/ScrollingStyle/Sliding.php +%%DATADIR%%/library/Zend/Paginator/ScrollingStylePluginManager.php %%DATADIR%%/library/Zend/Paginator/SerializableLimitIterator.php -%%DATADIR%%/library/Zend/Pdf.php -%%DATADIR%%/library/Zend/Pdf/Action.php -%%DATADIR%%/library/Zend/Pdf/Action/GoTo.php -%%DATADIR%%/library/Zend/Pdf/Action/GoTo3DView.php -%%DATADIR%%/library/Zend/Pdf/Action/GoToE.php -%%DATADIR%%/library/Zend/Pdf/Action/GoToR.php -%%DATADIR%%/library/Zend/Pdf/Action/Hide.php -%%DATADIR%%/library/Zend/Pdf/Action/ImportData.php -%%DATADIR%%/library/Zend/Pdf/Action/JavaScript.php -%%DATADIR%%/library/Zend/Pdf/Action/Launch.php -%%DATADIR%%/library/Zend/Pdf/Action/Movie.php -%%DATADIR%%/library/Zend/Pdf/Action/Named.php -%%DATADIR%%/library/Zend/Pdf/Action/Rendition.php -%%DATADIR%%/library/Zend/Pdf/Action/ResetForm.php -%%DATADIR%%/library/Zend/Pdf/Action/SetOCGState.php -%%DATADIR%%/library/Zend/Pdf/Action/Sound.php -%%DATADIR%%/library/Zend/Pdf/Action/SubmitForm.php -%%DATADIR%%/library/Zend/Pdf/Action/Thread.php -%%DATADIR%%/library/Zend/Pdf/Action/Trans.php -%%DATADIR%%/library/Zend/Pdf/Action/URI.php -%%DATADIR%%/library/Zend/Pdf/Action/Unknown.php -%%DATADIR%%/library/Zend/Pdf/Annotation.php -%%DATADIR%%/library/Zend/Pdf/Annotation/FileAttachment.php -%%DATADIR%%/library/Zend/Pdf/Annotation/Link.php -%%DATADIR%%/library/Zend/Pdf/Annotation/Markup.php -%%DATADIR%%/library/Zend/Pdf/Annotation/Text.php -%%DATADIR%%/library/Zend/Pdf/Canvas.php -%%DATADIR%%/library/Zend/Pdf/Canvas/Abstract.php -%%DATADIR%%/library/Zend/Pdf/Canvas/Interface.php -%%DATADIR%%/library/Zend/Pdf/Cmap.php -%%DATADIR%%/library/Zend/Pdf/Cmap/ByteEncoding.php -%%DATADIR%%/library/Zend/Pdf/Cmap/ByteEncoding/Static.php -%%DATADIR%%/library/Zend/Pdf/Cmap/SegmentToDelta.php -%%DATADIR%%/library/Zend/Pdf/Cmap/TrimmedTable.php -%%DATADIR%%/library/Zend/Pdf/Color.php -%%DATADIR%%/library/Zend/Pdf/Color/Cmyk.php -%%DATADIR%%/library/Zend/Pdf/Color/GrayScale.php -%%DATADIR%%/library/Zend/Pdf/Color/Html.php -%%DATADIR%%/library/Zend/Pdf/Color/Rgb.php -%%DATADIR%%/library/Zend/Pdf/Destination.php -%%DATADIR%%/library/Zend/Pdf/Destination/Explicit.php -%%DATADIR%%/library/Zend/Pdf/Destination/Fit.php -%%DATADIR%%/library/Zend/Pdf/Destination/FitBoundingBox.php -%%DATADIR%%/library/Zend/Pdf/Destination/FitBoundingBoxHorizontally.php -%%DATADIR%%/library/Zend/Pdf/Destination/FitBoundingBoxVertically.php -%%DATADIR%%/library/Zend/Pdf/Destination/FitHorizontally.php -%%DATADIR%%/library/Zend/Pdf/Destination/FitRectangle.php -%%DATADIR%%/library/Zend/Pdf/Destination/FitVertically.php -%%DATADIR%%/library/Zend/Pdf/Destination/Named.php -%%DATADIR%%/library/Zend/Pdf/Destination/Unknown.php -%%DATADIR%%/library/Zend/Pdf/Destination/Zoom.php -%%DATADIR%%/library/Zend/Pdf/Element.php -%%DATADIR%%/library/Zend/Pdf/Element/Array.php -%%DATADIR%%/library/Zend/Pdf/Element/Boolean.php -%%DATADIR%%/library/Zend/Pdf/Element/Dictionary.php -%%DATADIR%%/library/Zend/Pdf/Element/Name.php -%%DATADIR%%/library/Zend/Pdf/Element/Null.php -%%DATADIR%%/library/Zend/Pdf/Element/Numeric.php -%%DATADIR%%/library/Zend/Pdf/Element/Object.php -%%DATADIR%%/library/Zend/Pdf/Element/Object/Stream.php -%%DATADIR%%/library/Zend/Pdf/Element/Reference.php -%%DATADIR%%/library/Zend/Pdf/Element/Reference/Context.php -%%DATADIR%%/library/Zend/Pdf/Element/Reference/Table.php -%%DATADIR%%/library/Zend/Pdf/Element/Stream.php -%%DATADIR%%/library/Zend/Pdf/Element/String.php -%%DATADIR%%/library/Zend/Pdf/Element/String/Binary.php -%%DATADIR%%/library/Zend/Pdf/ElementFactory.php -%%DATADIR%%/library/Zend/Pdf/ElementFactory/Interface.php -%%DATADIR%%/library/Zend/Pdf/ElementFactory/Proxy.php -%%DATADIR%%/library/Zend/Pdf/Exception.php -%%DATADIR%%/library/Zend/Pdf/FileParser.php -%%DATADIR%%/library/Zend/Pdf/FileParser/Font.php -%%DATADIR%%/library/Zend/Pdf/FileParser/Font/OpenType.php -%%DATADIR%%/library/Zend/Pdf/FileParser/Font/OpenType/TrueType.php -%%DATADIR%%/library/Zend/Pdf/FileParser/Image.php -%%DATADIR%%/library/Zend/Pdf/FileParser/Image/Png.php -%%DATADIR%%/library/Zend/Pdf/FileParserDataSource.php -%%DATADIR%%/library/Zend/Pdf/FileParserDataSource/File.php -%%DATADIR%%/library/Zend/Pdf/FileParserDataSource/String.php -%%DATADIR%%/library/Zend/Pdf/Filter/Ascii85.php -%%DATADIR%%/library/Zend/Pdf/Filter/AsciiHex.php -%%DATADIR%%/library/Zend/Pdf/Filter/Compression.php -%%DATADIR%%/library/Zend/Pdf/Filter/Compression/Flate.php -%%DATADIR%%/library/Zend/Pdf/Filter/Compression/Lzw.php -%%DATADIR%%/library/Zend/Pdf/Filter/Interface.php -%%DATADIR%%/library/Zend/Pdf/Filter/RunLength.php -%%DATADIR%%/library/Zend/Pdf/Font.php -%%DATADIR%%/library/Zend/Pdf/Image.php -%%DATADIR%%/library/Zend/Pdf/NameTree.php -%%DATADIR%%/library/Zend/Pdf/Outline.php -%%DATADIR%%/library/Zend/Pdf/Outline/Created.php -%%DATADIR%%/library/Zend/Pdf/Outline/Loaded.php -%%DATADIR%%/library/Zend/Pdf/Page.php -%%DATADIR%%/library/Zend/Pdf/Parser.php -%%DATADIR%%/library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php -%%DATADIR%%/library/Zend/Pdf/Resource.php -%%DATADIR%%/library/Zend/Pdf/Resource/ContentStream.php -%%DATADIR%%/library/Zend/Pdf/Resource/Extractor.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/CidFont.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/CidFont/TrueType.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Extracted.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/FontDescriptor.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Parsed.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Parsed/TrueType.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/Courier.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBold.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBoldOblique.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/CourierOblique.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/Helvetica.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBold.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBoldOblique.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaOblique.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBold.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBoldItalic.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesItalic.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/TimesRoman.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php -%%DATADIR%%/library/Zend/Pdf/Resource/Font/Type0.php -%%DATADIR%%/library/Zend/Pdf/Resource/GraphicsState.php -%%DATADIR%%/library/Zend/Pdf/Resource/Image.php -%%DATADIR%%/library/Zend/Pdf/Resource/Image/Jpeg.php -%%DATADIR%%/library/Zend/Pdf/Resource/Image/Png.php -%%DATADIR%%/library/Zend/Pdf/Resource/Image/Tiff.php -%%DATADIR%%/library/Zend/Pdf/Resource/ImageFactory.php -%%DATADIR%%/library/Zend/Pdf/Resource/Unified.php -%%DATADIR%%/library/Zend/Pdf/StringParser.php -%%DATADIR%%/library/Zend/Pdf/Style.php -%%DATADIR%%/library/Zend/Pdf/Target.php -%%DATADIR%%/library/Zend/Pdf/Trailer.php -%%DATADIR%%/library/Zend/Pdf/Trailer/Generator.php -%%DATADIR%%/library/Zend/Pdf/Trailer/Keeper.php -%%DATADIR%%/library/Zend/Pdf/UpdateInfoContainer.php -%%DATADIR%%/library/Zend/ProgressBar.php -%%DATADIR%%/library/Zend/ProgressBar/Adapter.php +%%DATADIR%%/library/Zend/Paginator/composer.json +%%DATADIR%%/library/Zend/Permissions/Acl/Acl.php +%%DATADIR%%/library/Zend/Permissions/Acl/AclInterface.php +%%DATADIR%%/library/Zend/Permissions/Acl/Assertion/AssertionInterface.php +%%DATADIR%%/library/Zend/Permissions/Acl/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Permissions/Acl/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Permissions/Acl/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Permissions/Acl/README.md +%%DATADIR%%/library/Zend/Permissions/Acl/Resource/GenericResource.php +%%DATADIR%%/library/Zend/Permissions/Acl/Resource/ResourceInterface.php +%%DATADIR%%/library/Zend/Permissions/Acl/Role/GenericRole.php +%%DATADIR%%/library/Zend/Permissions/Acl/Role/Registry.php +%%DATADIR%%/library/Zend/Permissions/Acl/Role/RoleInterface.php +%%DATADIR%%/library/Zend/Permissions/Acl/composer.json +%%DATADIR%%/library/Zend/Permissions/Rbac/AbstractIterator.php +%%DATADIR%%/library/Zend/Permissions/Rbac/AbstractRole.php +%%DATADIR%%/library/Zend/Permissions/Rbac/AssertionInterface.php +%%DATADIR%%/library/Zend/Permissions/Rbac/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Permissions/Rbac/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Permissions/Rbac/README.md +%%DATADIR%%/library/Zend/Permissions/Rbac/Rbac.php +%%DATADIR%%/library/Zend/Permissions/Rbac/Role.php +%%DATADIR%%/library/Zend/Permissions/Rbac/RoleInterface.php +%%DATADIR%%/library/Zend/Permissions/Rbac/composer.json +%%DATADIR%%/library/Zend/ProgressBar/Adapter/AbstractAdapter.php %%DATADIR%%/library/Zend/ProgressBar/Adapter/Console.php -%%DATADIR%%/library/Zend/ProgressBar/Adapter/Exception.php +%%DATADIR%%/library/Zend/ProgressBar/Adapter/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/ProgressBar/Adapter/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/ProgressBar/Adapter/Exception/RuntimeException.php %%DATADIR%%/library/Zend/ProgressBar/Adapter/JsPull.php %%DATADIR%%/library/Zend/ProgressBar/Adapter/JsPush.php -%%DATADIR%%/library/Zend/ProgressBar/Exception.php -%%DATADIR%%/library/Zend/Queue.php -%%DATADIR%%/library/Zend/Queue/Adapter/Activemq.php -%%DATADIR%%/library/Zend/Queue/Adapter/AdapterAbstract.php -%%DATADIR%%/library/Zend/Queue/Adapter/AdapterInterface.php -%%DATADIR%%/library/Zend/Queue/Adapter/Array.php -%%DATADIR%%/library/Zend/Queue/Adapter/Db.php -%%DATADIR%%/library/Zend/Queue/Adapter/Db/Message.php -%%DATADIR%%/library/Zend/Queue/Adapter/Db/Queue.php -%%DATADIR%%/library/Zend/Queue/Adapter/Db/mysql.sql -%%DATADIR%%/library/Zend/Queue/Adapter/Db/postgresql.sql -%%DATADIR%%/library/Zend/Queue/Adapter/Db/queue_sqlite.sql -%%DATADIR%%/library/Zend/Queue/Adapter/Db/sqlsrv.sql -%%DATADIR%%/library/Zend/Queue/Adapter/Memcacheq.php -%%DATADIR%%/library/Zend/Queue/Adapter/Null.php -%%DATADIR%%/library/Zend/Queue/Adapter/PlatformJobQueue.php -%%DATADIR%%/library/Zend/Queue/Exception.php -%%DATADIR%%/library/Zend/Queue/Message.php -%%DATADIR%%/library/Zend/Queue/Message/Iterator.php -%%DATADIR%%/library/Zend/Queue/Message/PlatformJob.php -%%DATADIR%%/library/Zend/Queue/Stomp/Client.php -%%DATADIR%%/library/Zend/Queue/Stomp/Client/Connection.php -%%DATADIR%%/library/Zend/Queue/Stomp/Client/ConnectionInterface.php -%%DATADIR%%/library/Zend/Queue/Stomp/Frame.php -%%DATADIR%%/library/Zend/Queue/Stomp/FrameInterface.php -%%DATADIR%%/library/Zend/Reflection/Class.php -%%DATADIR%%/library/Zend/Reflection/Docblock.php -%%DATADIR%%/library/Zend/Reflection/Docblock/Tag.php -%%DATADIR%%/library/Zend/Reflection/Docblock/Tag/Param.php -%%DATADIR%%/library/Zend/Reflection/Docblock/Tag/Return.php -%%DATADIR%%/library/Zend/Reflection/Exception.php -%%DATADIR%%/library/Zend/Reflection/Extension.php -%%DATADIR%%/library/Zend/Reflection/File.php -%%DATADIR%%/library/Zend/Reflection/Function.php -%%DATADIR%%/library/Zend/Reflection/Method.php -%%DATADIR%%/library/Zend/Reflection/Parameter.php -%%DATADIR%%/library/Zend/Reflection/Property.php -%%DATADIR%%/library/Zend/Registry.php -%%DATADIR%%/library/Zend/Rest/Client.php -%%DATADIR%%/library/Zend/Rest/Client/Exception.php -%%DATADIR%%/library/Zend/Rest/Client/Result.php -%%DATADIR%%/library/Zend/Rest/Client/Result/Exception.php -%%DATADIR%%/library/Zend/Rest/Controller.php -%%DATADIR%%/library/Zend/Rest/Exception.php -%%DATADIR%%/library/Zend/Rest/Route.php -%%DATADIR%%/library/Zend/Rest/Server.php -%%DATADIR%%/library/Zend/Rest/Server/Exception.php -%%DATADIR%%/library/Zend/Search/Exception.php -%%DATADIR%%/library/Zend/Search/Lucene.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/Text.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/Text/CaseInsensitive.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/TextNum.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/TextNum/CaseInsensitive.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8/CaseInsensitive.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num/CaseInsensitive.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/Token.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/TokenFilter.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/TokenFilter/LowerCase.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/TokenFilter/LowerCaseUtf8.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/TokenFilter/ShortWords.php -%%DATADIR%%/library/Zend/Search/Lucene/Analysis/TokenFilter/StopWords.php -%%DATADIR%%/library/Zend/Search/Lucene/Document.php -%%DATADIR%%/library/Zend/Search/Lucene/Document/Docx.php -%%DATADIR%%/library/Zend/Search/Lucene/Document/Exception.php -%%DATADIR%%/library/Zend/Search/Lucene/Document/Html.php -%%DATADIR%%/library/Zend/Search/Lucene/Document/OpenXml.php -%%DATADIR%%/library/Zend/Search/Lucene/Document/Pptx.php -%%DATADIR%%/library/Zend/Search/Lucene/Document/Xlsx.php -%%DATADIR%%/library/Zend/Search/Lucene/Exception.php -%%DATADIR%%/library/Zend/Search/Lucene/FSM.php -%%DATADIR%%/library/Zend/Search/Lucene/FSMAction.php -%%DATADIR%%/library/Zend/Search/Lucene/Field.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/DictionaryLoader.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/DocsFilter.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/FieldInfo.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/SegmentInfo.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/SegmentMerger.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/SegmentWriter.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/SegmentWriter/DocumentWriter.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/SegmentWriter/StreamWriter.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/Term.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/TermInfo.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/TermsPriorityQueue.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/TermsStream/Interface.php -%%DATADIR%%/library/Zend/Search/Lucene/Index/Writer.php -%%DATADIR%%/library/Zend/Search/Lucene/Interface.php -%%DATADIR%%/library/Zend/Search/Lucene/Interface/MultiSearcher.php -%%DATADIR%%/library/Zend/Search/Lucene/LockManager.php -%%DATADIR%%/library/Zend/Search/Lucene/MultiSearcher.php -%%DATADIR%%/library/Zend/Search/Lucene/PriorityQueue.php -%%DATADIR%%/library/Zend/Search/Lucene/Proxy.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Highlighter/Default.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Highlighter/Interface.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Boolean.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Empty.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Fuzzy.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Insignificant.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/MultiTerm.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Phrase.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Preprocessing.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Preprocessing/Phrase.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Range.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Term.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Wildcard.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryEntry.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryEntry/Phrase.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryEntry/Subquery.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryEntry/Term.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryHit.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryLexer.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryParser.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryParserContext.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryParserException.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/QueryToken.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Similarity.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Similarity/Default.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Weight.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Weight/Boolean.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Weight/Empty.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Weight/MultiTerm.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Weight/Phrase.php -%%DATADIR%%/library/Zend/Search/Lucene/Search/Weight/Term.php -%%DATADIR%%/library/Zend/Search/Lucene/Storage/Directory.php -%%DATADIR%%/library/Zend/Search/Lucene/Storage/Directory/Filesystem.php -%%DATADIR%%/library/Zend/Search/Lucene/Storage/File.php -%%DATADIR%%/library/Zend/Search/Lucene/Storage/File/Filesystem.php -%%DATADIR%%/library/Zend/Search/Lucene/Storage/File/Memory.php -%%DATADIR%%/library/Zend/Search/Lucene/TermStreamsPriorityQueue.php -%%DATADIR%%/library/Zend/Serializer.php -%%DATADIR%%/library/Zend/Serializer/Adapter/AdapterAbstract.php +%%DATADIR%%/library/Zend/ProgressBar/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/ProgressBar/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/ProgressBar/Exception/OutOfRangeException.php +%%DATADIR%%/library/Zend/ProgressBar/Exception/PhpEnvironmentException.php +%%DATADIR%%/library/Zend/ProgressBar/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/ProgressBar/ProgressBar.php +%%DATADIR%%/library/Zend/ProgressBar/README.md +%%DATADIR%%/library/Zend/ProgressBar/Upload/AbstractUploadHandler.php +%%DATADIR%%/library/Zend/ProgressBar/Upload/ApcProgress.php +%%DATADIR%%/library/Zend/ProgressBar/Upload/SessionProgress.php +%%DATADIR%%/library/Zend/ProgressBar/Upload/UploadHandlerInterface.php +%%DATADIR%%/library/Zend/ProgressBar/Upload/UploadProgress.php +%%DATADIR%%/library/Zend/ProgressBar/composer.json +%%DATADIR%%/library/Zend/Serializer/Adapter/AbstractAdapter.php %%DATADIR%%/library/Zend/Serializer/Adapter/AdapterInterface.php -%%DATADIR%%/library/Zend/Serializer/Adapter/Amf0.php -%%DATADIR%%/library/Zend/Serializer/Adapter/Amf3.php -%%DATADIR%%/library/Zend/Serializer/Adapter/Igbinary.php +%%DATADIR%%/library/Zend/Serializer/Adapter/AdapterOptions.php +%%DATADIR%%/library/Zend/Serializer/Adapter/IgBinary.php %%DATADIR%%/library/Zend/Serializer/Adapter/Json.php +%%DATADIR%%/library/Zend/Serializer/Adapter/JsonOptions.php +%%DATADIR%%/library/Zend/Serializer/Adapter/MsgPack.php %%DATADIR%%/library/Zend/Serializer/Adapter/PhpCode.php %%DATADIR%%/library/Zend/Serializer/Adapter/PhpSerialize.php %%DATADIR%%/library/Zend/Serializer/Adapter/PythonPickle.php +%%DATADIR%%/library/Zend/Serializer/Adapter/PythonPickleOptions.php %%DATADIR%%/library/Zend/Serializer/Adapter/Wddx.php -%%DATADIR%%/library/Zend/Serializer/Exception.php -%%DATADIR%%/library/Zend/Server/Abstract.php +%%DATADIR%%/library/Zend/Serializer/Adapter/WddxOptions.php +%%DATADIR%%/library/Zend/Serializer/AdapterPluginManager.php +%%DATADIR%%/library/Zend/Serializer/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Serializer/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/Serializer/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Serializer/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Serializer/README.md +%%DATADIR%%/library/Zend/Serializer/Serializer.php +%%DATADIR%%/library/Zend/Serializer/composer.json +%%DATADIR%%/library/Zend/Server/AbstractServer.php %%DATADIR%%/library/Zend/Server/Cache.php +%%DATADIR%%/library/Zend/Server/Client.php %%DATADIR%%/library/Zend/Server/Definition.php -%%DATADIR%%/library/Zend/Server/Exception.php -%%DATADIR%%/library/Zend/Server/Interface.php +%%DATADIR%%/library/Zend/Server/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Server/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Server/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Server/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Server/Method/Callback.php %%DATADIR%%/library/Zend/Server/Method/Definition.php %%DATADIR%%/library/Zend/Server/Method/Parameter.php %%DATADIR%%/library/Zend/Server/Method/Prototype.php +%%DATADIR%%/library/Zend/Server/README.md %%DATADIR%%/library/Zend/Server/Reflection.php -%%DATADIR%%/library/Zend/Server/Reflection/Class.php -%%DATADIR%%/library/Zend/Server/Reflection/Exception.php -%%DATADIR%%/library/Zend/Server/Reflection/Function.php -%%DATADIR%%/library/Zend/Server/Reflection/Function/Abstract.php -%%DATADIR%%/library/Zend/Server/Reflection/Method.php +%%DATADIR%%/library/Zend/Server/Reflection/AbstractFunction.php +%%DATADIR%%/library/Zend/Server/Reflection/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Server/Reflection/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Server/Reflection/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Server/Reflection/Exception/RuntimeException.php %%DATADIR%%/library/Zend/Server/Reflection/Node.php -%%DATADIR%%/library/Zend/Server/Reflection/Parameter.php %%DATADIR%%/library/Zend/Server/Reflection/Prototype.php -%%DATADIR%%/library/Zend/Server/Reflection/ReturnValue.php -%%DATADIR%%/library/Zend/Service/Abstract.php -%%DATADIR%%/library/Zend/Service/Akismet.php -%%DATADIR%%/library/Zend/Service/Amazon.php -%%DATADIR%%/library/Zend/Service/Amazon/Abstract.php -%%DATADIR%%/library/Zend/Service/Amazon/Accessories.php -%%DATADIR%%/library/Zend/Service/Amazon/Authentication.php -%%DATADIR%%/library/Zend/Service/Amazon/Authentication/Exception.php -%%DATADIR%%/library/Zend/Service/Amazon/Authentication/S3.php -%%DATADIR%%/library/Zend/Service/Amazon/Authentication/V1.php -%%DATADIR%%/library/Zend/Service/Amazon/Authentication/V2.php -%%DATADIR%%/library/Zend/Service/Amazon/CustomerReview.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Abstract.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Availabilityzones.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/CloudWatch.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Ebs.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Elasticip.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Exception.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Image.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Instance.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Instance/Reserved.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Instance/Windows.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Keypair.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Region.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Response.php -%%DATADIR%%/library/Zend/Service/Amazon/Ec2/Securitygroups.php -%%DATADIR%%/library/Zend/Service/Amazon/EditorialReview.php -%%DATADIR%%/library/Zend/Service/Amazon/Exception.php -%%DATADIR%%/library/Zend/Service/Amazon/Image.php -%%DATADIR%%/library/Zend/Service/Amazon/Item.php -%%DATADIR%%/library/Zend/Service/Amazon/ListmaniaList.php -%%DATADIR%%/library/Zend/Service/Amazon/Offer.php -%%DATADIR%%/library/Zend/Service/Amazon/OfferSet.php -%%DATADIR%%/library/Zend/Service/Amazon/Query.php -%%DATADIR%%/library/Zend/Service/Amazon/ResultSet.php -%%DATADIR%%/library/Zend/Service/Amazon/S3.php -%%DATADIR%%/library/Zend/Service/Amazon/S3/Exception.php -%%DATADIR%%/library/Zend/Service/Amazon/S3/Stream.php -%%DATADIR%%/library/Zend/Service/Amazon/SimilarProduct.php -%%DATADIR%%/library/Zend/Service/Amazon/SimpleDb.php -%%DATADIR%%/library/Zend/Service/Amazon/SimpleDb/Attribute.php -%%DATADIR%%/library/Zend/Service/Amazon/SimpleDb/Exception.php -%%DATADIR%%/library/Zend/Service/Amazon/SimpleDb/Page.php -%%DATADIR%%/library/Zend/Service/Amazon/SimpleDb/Response.php -%%DATADIR%%/library/Zend/Service/Amazon/Sqs.php -%%DATADIR%%/library/Zend/Service/Amazon/Sqs/Exception.php -%%DATADIR%%/library/Zend/Service/Audioscrobbler.php -%%DATADIR%%/library/Zend/Service/Delicious.php -%%DATADIR%%/library/Zend/Service/Delicious/Exception.php -%%DATADIR%%/library/Zend/Service/Delicious/Post.php -%%DATADIR%%/library/Zend/Service/Delicious/PostList.php -%%DATADIR%%/library/Zend/Service/Delicious/SimplePost.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/BaseUserService.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/BaseUserService/AccountBalance.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Client/ClientAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Client/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Client/Soap.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceAccount.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceDetail.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceSchedule.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/Participant.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ParticipantDetail.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall/ParticipantStatus.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Credential.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/IpLocation.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/IpLocation/IpAddress.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/LocalSearch.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/LocalSearch/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/LocalSearch/SearchParameters.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/BaseUserService/ChangeQuotaPool.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/BaseUserService/GetAccountBalance.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/BaseUserService/GetQuotaInformation.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/AddConferenceTemplateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/CommitConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/CreateConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/CreateConferenceTemplateRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceListRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceStatusRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateListRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetParticipantStatusRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetRunningConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/NewParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveConferenceTemplateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveConferenceTemplateRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceTemplateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceTemplateRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateParticipantRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/IpLocation/LocateIPRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/LocalSearch/LocalSearchRequest.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/RequestAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SendSms/SendFlashSMS.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SendSms/SendSMS.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SendSms/SendSmsAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SmsValidation/GetValidatedNumbers.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SmsValidation/Invalidate.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SmsValidation/SendValidationKeyword.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SmsValidation/Validate.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/CallStatus.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/NewCall.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/NewCallSequenced.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/TearDownCall.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler/VoiceButlerAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/BaseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/BaseUserService/ChangeQuotaPoolResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/BaseUserService/GetAccountBalanceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/BaseUserService/GetQuotaInformationResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/AddConferenceTemplateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/AddConferenceTemplateParticipantResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CCSResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CommitConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/ConferenceCallAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceTemplateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceTemplateResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceListResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceListResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceStatusResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceStatusResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateListResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateListResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateParticipantResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetParticipantStatusResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetParticipantStatusResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetRunningConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetRunningConferenceResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/NewParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/NewParticipantResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveConferenceTemplateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveConferenceTemplateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateConferenceResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateConferenceTemplateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateConferenceTemplateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateParticipantResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/CityType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/GeoCoordinatesType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/IPAddressLocationType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/LocateIPResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/LocateIPResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation/RegionType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/LocalSearch/LocalSearchResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/LocalSearch/LocalSearchResponseType.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ResponseAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/Exception.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/GetTokensResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/Interface.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/SecurityTokenResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SendSms/SendFlashSMSResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SendSms/SendSMSResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SendSms/SendSmsAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/GetValidatedNumbersResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/InvalidateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/SendValidationKeywordResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/ValidateResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation/ValidatedNumber.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/CallStatus2Response.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/CallStatusResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/NewCallResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/NewCallSequencedResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/TearDownCallResponse.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler/VoiceButlerAbstract.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/SecurityTokenServer.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/SecurityTokenServer/Cache.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/SendSms.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/SmsValidation.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/VoiceCall.php -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/IPLocation.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/IPLocation.xsd -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/ODGBaseUserService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/ODGBaseUserService.xsd -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/SmsService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/SmsValidationUserService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/TokenService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/VoiceButlerService.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/VoiceButlerService.xsd -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/ccsPort.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/ccsPort.xsd -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/localsearch.wsdl -%%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl/localsearch.xsd -%%DATADIR%%/library/Zend/Service/Ebay/Abstract.php -%%DATADIR%%/library/Zend/Service/Ebay/Exception.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Abstract.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Aspect.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Aspect/Histogram/Container.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Aspect/Histogram/Value.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Aspect/Histogram/Value/Set.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Aspect/Set.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Category.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Category/Histogram.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Category/Histogram/Container.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Category/Histogram/Set.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Error/Data.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Error/Data/Set.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Error/Message.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Exception.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/ListingInfo.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/PaginationOutput.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Response/Abstract.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Response/Histograms.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Response/Items.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Response/Keywords.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Search/Item.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Search/Item/Set.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Search/Result.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/SellerInfo.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/SellingStatus.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Set/Abstract.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/ShippingInfo.php -%%DATADIR%%/library/Zend/Service/Ebay/Finding/Storefront.php -%%DATADIR%%/library/Zend/Service/Exception.php -%%DATADIR%%/library/Zend/Service/Flickr.php -%%DATADIR%%/library/Zend/Service/Flickr/Image.php -%%DATADIR%%/library/Zend/Service/Flickr/Result.php -%%DATADIR%%/library/Zend/Service/Flickr/ResultSet.php -%%DATADIR%%/library/Zend/Service/LiveDocx.php -%%DATADIR%%/library/Zend/Service/LiveDocx/Exception.php -%%DATADIR%%/library/Zend/Service/LiveDocx/MailMerge.php -%%DATADIR%%/library/Zend/Service/Nirvanix.php -%%DATADIR%%/library/Zend/Service/Nirvanix/Exception.php -%%DATADIR%%/library/Zend/Service/Nirvanix/Namespace/Base.php -%%DATADIR%%/library/Zend/Service/Nirvanix/Namespace/Imfs.php -%%DATADIR%%/library/Zend/Service/Nirvanix/Response.php -%%DATADIR%%/library/Zend/Service/Rackspace/Abstract.php -%%DATADIR%%/library/Zend/Service/Rackspace/Exception.php -%%DATADIR%%/library/Zend/Service/Rackspace/Files.php -%%DATADIR%%/library/Zend/Service/Rackspace/Files/Container.php -%%DATADIR%%/library/Zend/Service/Rackspace/Files/ContainerList.php -%%DATADIR%%/library/Zend/Service/Rackspace/Files/Exception.php -%%DATADIR%%/library/Zend/Service/Rackspace/Files/Object.php -%%DATADIR%%/library/Zend/Service/Rackspace/Files/ObjectList.php -%%DATADIR%%/library/Zend/Service/Rackspace/Servers.php -%%DATADIR%%/library/Zend/Service/Rackspace/Servers/Exception.php -%%DATADIR%%/library/Zend/Service/Rackspace/Servers/Image.php -%%DATADIR%%/library/Zend/Service/Rackspace/Servers/ImageList.php -%%DATADIR%%/library/Zend/Service/Rackspace/Servers/Server.php -%%DATADIR%%/library/Zend/Service/Rackspace/Servers/ServerList.php -%%DATADIR%%/library/Zend/Service/Rackspace/Servers/SharedIpGroup.php -%%DATADIR%%/library/Zend/Service/Rackspace/Servers/SharedIpGroupList.php -%%DATADIR%%/library/Zend/Service/ReCaptcha.php -%%DATADIR%%/library/Zend/Service/ReCaptcha/Exception.php -%%DATADIR%%/library/Zend/Service/ReCaptcha/MailHide.php -%%DATADIR%%/library/Zend/Service/ReCaptcha/MailHide/Exception.php -%%DATADIR%%/library/Zend/Service/ReCaptcha/Response.php -%%DATADIR%%/library/Zend/Service/ShortUrl/AbstractShortener.php -%%DATADIR%%/library/Zend/Service/ShortUrl/BitLy.php -%%DATADIR%%/library/Zend/Service/ShortUrl/Exception.php -%%DATADIR%%/library/Zend/Service/ShortUrl/IsGd.php -%%DATADIR%%/library/Zend/Service/ShortUrl/JdemCz.php -%%DATADIR%%/library/Zend/Service/ShortUrl/MetamarkNet.php -%%DATADIR%%/library/Zend/Service/ShortUrl/Shortener.php -%%DATADIR%%/library/Zend/Service/ShortUrl/TinyUrlCom.php -%%DATADIR%%/library/Zend/Service/SlideShare.php -%%DATADIR%%/library/Zend/Service/SlideShare/Exception.php -%%DATADIR%%/library/Zend/Service/SlideShare/SlideShow.php -%%DATADIR%%/library/Zend/Service/SqlAzure/Exception.php -%%DATADIR%%/library/Zend/Service/SqlAzure/Management/Client.php -%%DATADIR%%/library/Zend/Service/SqlAzure/Management/Exception.php -%%DATADIR%%/library/Zend/Service/SqlAzure/Management/FirewallRuleInstance.php -%%DATADIR%%/library/Zend/Service/SqlAzure/Management/ServerInstance.php -%%DATADIR%%/library/Zend/Service/SqlAzure/Management/ServiceEntityAbstract.php -%%DATADIR%%/library/Zend/Service/StrikeIron.php -%%DATADIR%%/library/Zend/Service/StrikeIron/Base.php -%%DATADIR%%/library/Zend/Service/StrikeIron/Decorator.php -%%DATADIR%%/library/Zend/Service/StrikeIron/Exception.php -%%DATADIR%%/library/Zend/Service/StrikeIron/SalesUseTaxBasic.php -%%DATADIR%%/library/Zend/Service/StrikeIron/USAddressVerification.php -%%DATADIR%%/library/Zend/Service/StrikeIron/ZipCodeInfo.php -%%DATADIR%%/library/Zend/Service/Technorati.php -%%DATADIR%%/library/Zend/Service/Technorati/Author.php -%%DATADIR%%/library/Zend/Service/Technorati/BlogInfoResult.php -%%DATADIR%%/library/Zend/Service/Technorati/CosmosResult.php -%%DATADIR%%/library/Zend/Service/Technorati/CosmosResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/DailyCountsResult.php -%%DATADIR%%/library/Zend/Service/Technorati/DailyCountsResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/Exception.php -%%DATADIR%%/library/Zend/Service/Technorati/GetInfoResult.php -%%DATADIR%%/library/Zend/Service/Technorati/KeyInfoResult.php -%%DATADIR%%/library/Zend/Service/Technorati/Result.php -%%DATADIR%%/library/Zend/Service/Technorati/ResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/SearchResult.php -%%DATADIR%%/library/Zend/Service/Technorati/SearchResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/TagResult.php -%%DATADIR%%/library/Zend/Service/Technorati/TagResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/TagsResult.php -%%DATADIR%%/library/Zend/Service/Technorati/TagsResultSet.php -%%DATADIR%%/library/Zend/Service/Technorati/Utils.php -%%DATADIR%%/library/Zend/Service/Technorati/Weblog.php -%%DATADIR%%/library/Zend/Service/Twitter.php -%%DATADIR%%/library/Zend/Service/Twitter/Exception.php -%%DATADIR%%/library/Zend/Service/Twitter/Search.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Certificate.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Deployment.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Package.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder.phar -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/build.bat -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/index.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/Web.config -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/bin/add-environment-variables.cmd -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/bin/add-environment-variables.ps1 -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/bin/install-php.cmd -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/diagnostics.wadcfg -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/resources/WebPICmdLine/Microsoft.Web.Deployment.dll -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/resources/WebPICmdLine/Microsoft.Web.PlatformInstaller.UI.dll -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/resources/WebPICmdLine/Microsoft.Web.PlatformInstaller.dll -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/resources/WebPICmdLine/WebpiCmdLine.exe -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/resources/WebPICmdLine/license.rtf -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/ServiceConfiguration.cscfg -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/ServiceDefinition.csdef -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Service.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Storage.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/sample.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Credentials/CredentialsAbstract.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Credentials/Exception.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Credentials/SharedAccessSignature.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Credentials/SharedKey.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Credentials/SharedKeyLite.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDataSources.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDiagnosticInfrastructureLogs.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDirectories.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationLogs.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationObjectBaseAbstract.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationPerformanceCounters.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationWindowsEventLog.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/DirectoryConfigurationSubscription.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/Exception.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/LogLevel.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/Manager.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics/PerformanceCounterSubscription.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Exception.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Log/Formatter/WindowsAzure.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Log/Writer/WindowsAzure.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/AffinityGroupInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/CertificateInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/Client.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/DeploymentInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/Exception.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/HostedServiceInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/LocationInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/OperatingSystemFamilyInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/OperatingSystemInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/OperationStatusInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/ServiceEntityAbstract.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/StorageServiceInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Management/SubscriptionOperationInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/RetryPolicy/Exception.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/RetryPolicy/NoRetry.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/RetryPolicy/RetryN.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/RetryPolicy/RetryPolicyAbstract.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/SessionHandler.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/Batch.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/BatchStorageAbstract.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/Blob.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/BlobContainer.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/BlobInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/DynamicTableEntity.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/LeaseInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/PageRegionInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/Queue.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/QueueInstance.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/QueueMessage.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/SignedIdentifier.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/StorageEntityAbstract.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/Table.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/TableEntity.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/TableEntityQuery.php -%%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/TableInstance.php -%%DATADIR%%/library/Zend/Service/Yahoo.php -%%DATADIR%%/library/Zend/Service/Yahoo/Image.php -%%DATADIR%%/library/Zend/Service/Yahoo/ImageResult.php -%%DATADIR%%/library/Zend/Service/Yahoo/ImageResultSet.php -%%DATADIR%%/library/Zend/Service/Yahoo/InlinkDataResult.php -%%DATADIR%%/library/Zend/Service/Yahoo/InlinkDataResultSet.php -%%DATADIR%%/library/Zend/Service/Yahoo/LocalResult.php -%%DATADIR%%/library/Zend/Service/Yahoo/LocalResultSet.php -%%DATADIR%%/library/Zend/Service/Yahoo/NewsResult.php -%%DATADIR%%/library/Zend/Service/Yahoo/NewsResultSet.php -%%DATADIR%%/library/Zend/Service/Yahoo/PageDataResult.php -%%DATADIR%%/library/Zend/Service/Yahoo/PageDataResultSet.php -%%DATADIR%%/library/Zend/Service/Yahoo/Result.php -%%DATADIR%%/library/Zend/Service/Yahoo/ResultSet.php -%%DATADIR%%/library/Zend/Service/Yahoo/VideoResult.php -%%DATADIR%%/library/Zend/Service/Yahoo/VideoResultSet.php -%%DATADIR%%/library/Zend/Service/Yahoo/WebResult.php -%%DATADIR%%/library/Zend/Service/Yahoo/WebResultSet.php -%%DATADIR%%/library/Zend/Session.php -%%DATADIR%%/library/Zend/Session/Abstract.php -%%DATADIR%%/library/Zend/Session/Exception.php -%%DATADIR%%/library/Zend/Session/Namespace.php -%%DATADIR%%/library/Zend/Session/SaveHandler/DbTable.php -%%DATADIR%%/library/Zend/Session/SaveHandler/Exception.php -%%DATADIR%%/library/Zend/Session/SaveHandler/Interface.php -%%DATADIR%%/library/Zend/Session/Validator/Abstract.php +%%DATADIR%%/library/Zend/Server/Reflection/ReflectionClass.php +%%DATADIR%%/library/Zend/Server/Reflection/ReflectionFunction.php +%%DATADIR%%/library/Zend/Server/Reflection/ReflectionMethod.php +%%DATADIR%%/library/Zend/Server/Reflection/ReflectionParameter.php +%%DATADIR%%/library/Zend/Server/Reflection/ReflectionReturnValue.php +%%DATADIR%%/library/Zend/Server/Server.php +%%DATADIR%%/library/Zend/Server/composer.json +%%DATADIR%%/library/Zend/ServiceManager/AbstractFactoryInterface.php +%%DATADIR%%/library/Zend/ServiceManager/AbstractPluginManager.php +%%DATADIR%%/library/Zend/ServiceManager/Config.php +%%DATADIR%%/library/Zend/ServiceManager/ConfigInterface.php +%%DATADIR%%/library/Zend/ServiceManager/DelegatorFactoryInterface.php +%%DATADIR%%/library/Zend/ServiceManager/Di/DiAbstractServiceFactory.php +%%DATADIR%%/library/Zend/ServiceManager/Di/DiInstanceManagerProxy.php +%%DATADIR%%/library/Zend/ServiceManager/Di/DiServiceFactory.php +%%DATADIR%%/library/Zend/ServiceManager/Di/DiServiceInitializer.php +%%DATADIR%%/library/Zend/ServiceManager/Exception/CircularDependencyFoundException.php +%%DATADIR%%/library/Zend/ServiceManager/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/ServiceManager/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/ServiceManager/Exception/InvalidServiceNameException.php +%%DATADIR%%/library/Zend/ServiceManager/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/ServiceManager/Exception/ServiceNotCreatedException.php +%%DATADIR%%/library/Zend/ServiceManager/Exception/ServiceNotFoundException.php +%%DATADIR%%/library/Zend/ServiceManager/FactoryInterface.php +%%DATADIR%%/library/Zend/ServiceManager/InitializerInterface.php +%%DATADIR%%/library/Zend/ServiceManager/MutableCreationOptionsInterface.php +%%DATADIR%%/library/Zend/ServiceManager/Proxy/LazyServiceFactory.php +%%DATADIR%%/library/Zend/ServiceManager/Proxy/LazyServiceFactoryFactory.php +%%DATADIR%%/library/Zend/ServiceManager/README.md +%%DATADIR%%/library/Zend/ServiceManager/ServiceLocatorAwareInterface.php +%%DATADIR%%/library/Zend/ServiceManager/ServiceLocatorAwareTrait.php +%%DATADIR%%/library/Zend/ServiceManager/ServiceLocatorInterface.php +%%DATADIR%%/library/Zend/ServiceManager/ServiceManager.php +%%DATADIR%%/library/Zend/ServiceManager/ServiceManagerAwareInterface.php +%%DATADIR%%/library/Zend/ServiceManager/composer.json +%%DATADIR%%/library/Zend/Session/AbstractContainer.php +%%DATADIR%%/library/Zend/Session/AbstractManager.php +%%DATADIR%%/library/Zend/Session/Config/ConfigInterface.php +%%DATADIR%%/library/Zend/Session/Config/SessionConfig.php +%%DATADIR%%/library/Zend/Session/Config/StandardConfig.php +%%DATADIR%%/library/Zend/Session/Container.php +%%DATADIR%%/library/Zend/Session/Container/PhpReferenceCompatibility.php +%%DATADIR%%/library/Zend/Session/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Session/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Session/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Session/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Session/ManagerInterface.php +%%DATADIR%%/library/Zend/Session/README.md +%%DATADIR%%/library/Zend/Session/SaveHandler/Cache.php +%%DATADIR%%/library/Zend/Session/SaveHandler/DbTableGateway.php +%%DATADIR%%/library/Zend/Session/SaveHandler/DbTableGatewayOptions.php +%%DATADIR%%/library/Zend/Session/SaveHandler/MongoDB.php +%%DATADIR%%/library/Zend/Session/SaveHandler/MongoDBOptions.php +%%DATADIR%%/library/Zend/Session/SaveHandler/SaveHandlerInterface.php +%%DATADIR%%/library/Zend/Session/Service/ContainerAbstractServiceFactory.php +%%DATADIR%%/library/Zend/Session/Service/SessionConfigFactory.php +%%DATADIR%%/library/Zend/Session/Service/SessionManagerFactory.php +%%DATADIR%%/library/Zend/Session/Service/StorageFactory.php +%%DATADIR%%/library/Zend/Session/SessionManager.php +%%DATADIR%%/library/Zend/Session/Storage/AbstractSessionArrayStorage.php +%%DATADIR%%/library/Zend/Session/Storage/ArrayStorage.php +%%DATADIR%%/library/Zend/Session/Storage/Factory.php +%%DATADIR%%/library/Zend/Session/Storage/SessionArrayStorage.php +%%DATADIR%%/library/Zend/Session/Storage/SessionArrayStorage/PhpReferenceCompatibility.php +%%DATADIR%%/library/Zend/Session/Storage/SessionStorage.php +%%DATADIR%%/library/Zend/Session/Storage/StorageInitializationInterface.php +%%DATADIR%%/library/Zend/Session/Storage/StorageInterface.php %%DATADIR%%/library/Zend/Session/Validator/HttpUserAgent.php -%%DATADIR%%/library/Zend/Session/Validator/Interface.php +%%DATADIR%%/library/Zend/Session/Validator/RemoteAddr.php +%%DATADIR%%/library/Zend/Session/Validator/ValidatorInterface.php +%%DATADIR%%/library/Zend/Session/ValidatorChain.php +%%DATADIR%%/library/Zend/Session/compatibility/autoload.php +%%DATADIR%%/library/Zend/Session/composer.json %%DATADIR%%/library/Zend/Soap/AutoDiscover.php -%%DATADIR%%/library/Zend/Soap/AutoDiscover/Exception.php +%%DATADIR%%/library/Zend/Soap/AutoDiscover/DiscoveryStrategy/DiscoveryStrategyInterface.php +%%DATADIR%%/library/Zend/Soap/AutoDiscover/DiscoveryStrategy/ReflectionDiscovery.php %%DATADIR%%/library/Zend/Soap/Client.php %%DATADIR%%/library/Zend/Soap/Client/Common.php %%DATADIR%%/library/Zend/Soap/Client/DotNet.php -%%DATADIR%%/library/Zend/Soap/Client/Exception.php %%DATADIR%%/library/Zend/Soap/Client/Local.php +%%DATADIR%%/library/Zend/Soap/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Soap/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Soap/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/Soap/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Soap/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Soap/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Soap/README.md %%DATADIR%%/library/Zend/Soap/Server.php -%%DATADIR%%/library/Zend/Soap/Server/Exception.php -%%DATADIR%%/library/Zend/Soap/Server/Proxy.php +%%DATADIR%%/library/Zend/Soap/Server/DocumentLiteralWrapper.php %%DATADIR%%/library/Zend/Soap/Wsdl.php -%%DATADIR%%/library/Zend/Soap/Wsdl/Exception.php -%%DATADIR%%/library/Zend/Soap/Wsdl/Strategy/Abstract.php -%%DATADIR%%/library/Zend/Soap/Wsdl/Strategy/AnyType.php -%%DATADIR%%/library/Zend/Soap/Wsdl/Strategy/ArrayOfTypeComplex.php -%%DATADIR%%/library/Zend/Soap/Wsdl/Strategy/ArrayOfTypeSequence.php -%%DATADIR%%/library/Zend/Soap/Wsdl/Strategy/Composite.php -%%DATADIR%%/library/Zend/Soap/Wsdl/Strategy/DefaultComplexType.php -%%DATADIR%%/library/Zend/Soap/Wsdl/Strategy/Interface.php +%%DATADIR%%/library/Zend/Soap/Wsdl/ComplexTypeStrategy/AbstractComplexTypeStrategy.php +%%DATADIR%%/library/Zend/Soap/Wsdl/ComplexTypeStrategy/AnyType.php +%%DATADIR%%/library/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeComplex.php +%%DATADIR%%/library/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeSequence.php +%%DATADIR%%/library/Zend/Soap/Wsdl/ComplexTypeStrategy/ComplexTypeStrategyInterface.php +%%DATADIR%%/library/Zend/Soap/Wsdl/ComplexTypeStrategy/Composite.php +%%DATADIR%%/library/Zend/Soap/Wsdl/ComplexTypeStrategy/DefaultComplexType.php +%%DATADIR%%/library/Zend/Soap/composer.json +%%DATADIR%%/library/Zend/Stdlib/AbstractOptions.php +%%DATADIR%%/library/Zend/Stdlib/ArrayObject.php +%%DATADIR%%/library/Zend/Stdlib/ArrayObject/PhpLegacyCompatibility.php +%%DATADIR%%/library/Zend/Stdlib/ArrayObject/PhpReferenceCompatibility.php +%%DATADIR%%/library/Zend/Stdlib/ArraySerializableInterface.php +%%DATADIR%%/library/Zend/Stdlib/ArrayStack.php +%%DATADIR%%/library/Zend/Stdlib/ArrayUtils.php %%DATADIR%%/library/Zend/Stdlib/CallbackHandler.php -%%DATADIR%%/library/Zend/Stdlib/Exception.php +%%DATADIR%%/library/Zend/Stdlib/DateTime.php +%%DATADIR%%/library/Zend/Stdlib/DispatchableInterface.php +%%DATADIR%%/library/Zend/Stdlib/ErrorHandler.php +%%DATADIR%%/library/Zend/Stdlib/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Stdlib/Exception/DomainException.php +%%DATADIR%%/library/Zend/Stdlib/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Stdlib/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/Stdlib/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Stdlib/Exception/InvalidCallbackException.php +%%DATADIR%%/library/Zend/Stdlib/Exception/LogicException.php +%%DATADIR%%/library/Zend/Stdlib/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Stdlib/Glob.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/AbstractHydrator.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Aggregate/AggregateHydrator.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Aggregate/ExtractEvent.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Aggregate/HydrateEvent.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Aggregate/HydratorListener.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/ArraySerializable.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/ClassMethods.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter/FilterComposite.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter/FilterInterface.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter/FilterProviderInterface.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter/GetFilter.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter/HasFilter.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter/IsFilter.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter/MethodMatchFilter.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter/NumberOfParameterFilter.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter/OptionalParametersFilter.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/HydratorAwareInterface.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/HydratorInterface.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/HydratorOptionsInterface.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/HydratorPluginManager.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/ObjectProperty.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Reflection.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Strategy/ClosureStrategy.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Strategy/DefaultStrategy.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Strategy/SerializableStrategy.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/Strategy/StrategyInterface.php +%%DATADIR%%/library/Zend/Stdlib/Hydrator/StrategyEnabledInterface.php +%%DATADIR%%/library/Zend/Stdlib/InitializableInterface.php +%%DATADIR%%/library/Zend/Stdlib/Message.php +%%DATADIR%%/library/Zend/Stdlib/MessageInterface.php +%%DATADIR%%/library/Zend/Stdlib/ParameterObjectInterface.php +%%DATADIR%%/library/Zend/Stdlib/Parameters.php +%%DATADIR%%/library/Zend/Stdlib/ParametersInterface.php %%DATADIR%%/library/Zend/Stdlib/PriorityQueue.php +%%DATADIR%%/library/Zend/Stdlib/README.md +%%DATADIR%%/library/Zend/Stdlib/Request.php +%%DATADIR%%/library/Zend/Stdlib/RequestInterface.php +%%DATADIR%%/library/Zend/Stdlib/Response.php +%%DATADIR%%/library/Zend/Stdlib/ResponseInterface.php %%DATADIR%%/library/Zend/Stdlib/SplPriorityQueue.php +%%DATADIR%%/library/Zend/Stdlib/SplQueue.php +%%DATADIR%%/library/Zend/Stdlib/SplStack.php +%%DATADIR%%/library/Zend/Stdlib/StringUtils.php +%%DATADIR%%/library/Zend/Stdlib/StringWrapper/AbstractStringWrapper.php +%%DATADIR%%/library/Zend/Stdlib/StringWrapper/Iconv.php +%%DATADIR%%/library/Zend/Stdlib/StringWrapper/Intl.php +%%DATADIR%%/library/Zend/Stdlib/StringWrapper/MbString.php +%%DATADIR%%/library/Zend/Stdlib/StringWrapper/Native.php +%%DATADIR%%/library/Zend/Stdlib/StringWrapper/StringWrapperInterface.php +%%DATADIR%%/library/Zend/Stdlib/compatibility/autoload.php +%%DATADIR%%/library/Zend/Stdlib/composer.json %%DATADIR%%/library/Zend/Tag/Cloud.php -%%DATADIR%%/library/Zend/Tag/Cloud/Decorator/Cloud.php -%%DATADIR%%/library/Zend/Tag/Cloud/Decorator/Exception.php +%%DATADIR%%/library/Zend/Tag/Cloud/Decorator/AbstractCloud.php +%%DATADIR%%/library/Zend/Tag/Cloud/Decorator/AbstractDecorator.php +%%DATADIR%%/library/Zend/Tag/Cloud/Decorator/AbstractTag.php +%%DATADIR%%/library/Zend/Tag/Cloud/Decorator/DecoratorInterface.php +%%DATADIR%%/library/Zend/Tag/Cloud/Decorator/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Tag/Cloud/Decorator/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Tag/Cloud/Decorator/HtmlCloud.php %%DATADIR%%/library/Zend/Tag/Cloud/Decorator/HtmlTag.php -%%DATADIR%%/library/Zend/Tag/Cloud/Decorator/Tag.php -%%DATADIR%%/library/Zend/Tag/Cloud/Exception.php -%%DATADIR%%/library/Zend/Tag/Exception.php +%%DATADIR%%/library/Zend/Tag/Cloud/DecoratorPluginManager.php +%%DATADIR%%/library/Zend/Tag/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Tag/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Tag/Exception/InvalidAttributeNameException.php +%%DATADIR%%/library/Zend/Tag/Exception/InvalidElementNameException.php +%%DATADIR%%/library/Zend/Tag/Exception/OutOfBoundsException.php %%DATADIR%%/library/Zend/Tag/Item.php %%DATADIR%%/library/Zend/Tag/ItemList.php -%%DATADIR%%/library/Zend/Tag/Taggable.php -%%DATADIR%%/library/Zend/Test/DbAdapter.php -%%DATADIR%%/library/Zend/Test/DbStatement.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Constraint/DomQuery.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Constraint/Exception.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Constraint/Redirect.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Constraint/ResponseHeader.php -%%DATADIR%%/library/Zend/Test/PHPUnit/ControllerTestCase.php -%%DATADIR%%/library/Zend/Test/PHPUnit/DatabaseTestCase.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/Connection.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/DataSet/DbRowset.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/DataSet/DbTable.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/DataSet/DbTableDataSet.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/DataSet/QueryDataSet.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/DataSet/QueryTable.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/Exception.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/Metadata/Generic.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/Operation/DeleteAll.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/Operation/Insert.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/Operation/Truncate.php -%%DATADIR%%/library/Zend/Test/PHPUnit/Db/SimpleTester.php -%%DATADIR%%/library/Zend/Text/Exception.php -%%DATADIR%%/library/Zend/Text/Figlet.php -%%DATADIR%%/library/Zend/Text/Figlet/Exception.php +%%DATADIR%%/library/Zend/Tag/README.md +%%DATADIR%%/library/Zend/Tag/TaggableInterface.php +%%DATADIR%%/library/Zend/Tag/composer.json +%%DATADIR%%/library/Zend/Test/PHPUnit/Controller/AbstractConsoleControllerTestCase.php +%%DATADIR%%/library/Zend/Test/PHPUnit/Controller/AbstractControllerTestCase.php +%%DATADIR%%/library/Zend/Test/PHPUnit/Controller/AbstractHttpControllerTestCase.php +%%DATADIR%%/library/Zend/Test/README.md +%%DATADIR%%/library/Zend/Test/Util/ModuleLoader.php +%%DATADIR%%/library/Zend/Test/composer.json +%%DATADIR%%/library/Zend/Text/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Text/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Text/Exception/OutOfBoundsException.php +%%DATADIR%%/library/Zend/Text/Exception/OverflowException.php +%%DATADIR%%/library/Zend/Text/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Text/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Text/Figlet/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Text/Figlet/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Text/Figlet/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Text/Figlet/Exception/UnexpectedValueException.php +%%DATADIR%%/library/Zend/Text/Figlet/Figlet.php %%DATADIR%%/library/Zend/Text/Figlet/zend-framework.flf %%DATADIR%%/library/Zend/Text/MultiByte.php -%%DATADIR%%/library/Zend/Text/Table.php +%%DATADIR%%/library/Zend/Text/README.md %%DATADIR%%/library/Zend/Text/Table/Column.php %%DATADIR%%/library/Zend/Text/Table/Decorator/Ascii.php -%%DATADIR%%/library/Zend/Text/Table/Decorator/Interface.php +%%DATADIR%%/library/Zend/Text/Table/Decorator/Blank.php +%%DATADIR%%/library/Zend/Text/Table/Decorator/DecoratorInterface.php %%DATADIR%%/library/Zend/Text/Table/Decorator/Unicode.php -%%DATADIR%%/library/Zend/Text/Table/Exception.php +%%DATADIR%%/library/Zend/Text/Table/DecoratorManager.php +%%DATADIR%%/library/Zend/Text/Table/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Text/Table/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Text/Table/Exception/InvalidDecoratorException.php +%%DATADIR%%/library/Zend/Text/Table/Exception/OutOfBoundsException.php +%%DATADIR%%/library/Zend/Text/Table/Exception/OverflowException.php +%%DATADIR%%/library/Zend/Text/Table/Exception/UnexpectedValueException.php %%DATADIR%%/library/Zend/Text/Table/Row.php -%%DATADIR%%/library/Zend/TimeSync.php -%%DATADIR%%/library/Zend/TimeSync/Exception.php -%%DATADIR%%/library/Zend/TimeSync/Ntp.php -%%DATADIR%%/library/Zend/TimeSync/Protocol.php -%%DATADIR%%/library/Zend/TimeSync/Sntp.php -%%DATADIR%%/library/Zend/Tool/Framework/Action/Base.php -%%DATADIR%%/library/Zend/Tool/Framework/Action/Exception.php -%%DATADIR%%/library/Zend/Tool/Framework/Action/Interface.php -%%DATADIR%%/library/Zend/Tool/Framework/Action/Repository.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Abstract.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Config.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Console.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Console/ArgumentParser.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Console/HelpSystem.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Console/Manifest.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Console/ResponseDecorator/AlignCenter.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Blockize.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Colorizer.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Indention.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Exception.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Interactive/InputHandler.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Interactive/InputInterface.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Interactive/InputRequest.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Interactive/InputResponse.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Interactive/OutputInterface.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Manifest.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Request.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Response.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Response/ContentDecorator/Interface.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Response/ContentDecorator/Separator.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Storage.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php -%%DATADIR%%/library/Zend/Tool/Framework/Client/Storage/Directory.php -%%DATADIR%%/library/Zend/Tool/Framework/Exception.php -%%DATADIR%%/library/Zend/Tool/Framework/Loader/Abstract.php -%%DATADIR%%/library/Zend/Tool/Framework/Loader/BasicLoader.php -%%DATADIR%%/library/Zend/Tool/Framework/Loader/IncludePathLoader.php -%%DATADIR%%/library/Zend/Tool/Framework/Loader/IncludePathLoader/RecursiveFilterIterator.php -%%DATADIR%%/library/Zend/Tool/Framework/Loader/Interface.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/ActionManifestable.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/ActionMetadata.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/Exception.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/Indexable.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/Interface.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/Metadata.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/MetadataManifestable.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/ProviderManifestable.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/ProviderMetadata.php -%%DATADIR%%/library/Zend/Tool/Framework/Manifest/Repository.php -%%DATADIR%%/library/Zend/Tool/Framework/Metadata/Attributable.php -%%DATADIR%%/library/Zend/Tool/Framework/Metadata/Basic.php -%%DATADIR%%/library/Zend/Tool/Framework/Metadata/Dynamic.php -%%DATADIR%%/library/Zend/Tool/Framework/Metadata/Interface.php -%%DATADIR%%/library/Zend/Tool/Framework/Metadata/Tool.php -%%DATADIR%%/library/Zend/Tool/Framework/Provider/Abstract.php -%%DATADIR%%/library/Zend/Tool/Framework/Provider/DocblockManifestable.php -%%DATADIR%%/library/Zend/Tool/Framework/Provider/Exception.php -%%DATADIR%%/library/Zend/Tool/Framework/Provider/Initializable.php -%%DATADIR%%/library/Zend/Tool/Framework/Provider/Interactable.php -%%DATADIR%%/library/Zend/Tool/Framework/Provider/Interface.php -%%DATADIR%%/library/Zend/Tool/Framework/Provider/Pretendable.php -%%DATADIR%%/library/Zend/Tool/Framework/Provider/Repository.php -%%DATADIR%%/library/Zend/Tool/Framework/Provider/Signature.php -%%DATADIR%%/library/Zend/Tool/Framework/Registry.php -%%DATADIR%%/library/Zend/Tool/Framework/Registry/EnabledInterface.php -%%DATADIR%%/library/Zend/Tool/Framework/Registry/Exception.php -%%DATADIR%%/library/Zend/Tool/Framework/Registry/Interface.php -%%DATADIR%%/library/Zend/Tool/Framework/System/Action/Create.php -%%DATADIR%%/library/Zend/Tool/Framework/System/Action/Delete.php -%%DATADIR%%/library/Zend/Tool/Framework/System/Manifest.php -%%DATADIR%%/library/Zend/Tool/Framework/System/Provider/Config.php -%%DATADIR%%/library/Zend/Tool/Framework/System/Provider/Manifest.php -%%DATADIR%%/library/Zend/Tool/Framework/System/Provider/Phpinfo.php -%%DATADIR%%/library/Zend/Tool/Framework/System/Provider/Version.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Content/Engine.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Content/Engine/CodeGenerator.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Content/Engine/Phtml.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Exception.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Filesystem/Abstract.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Filesystem/Directory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Filesystem/File.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Interface.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Repository.php -%%DATADIR%%/library/Zend/Tool/Project/Context/System/Interface.php -%%DATADIR%%/library/Zend/Tool/Project/Context/System/NotOverwritable.php -%%DATADIR%%/library/Zend/Tool/Project/Context/System/ProjectDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/System/ProjectProfileFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/System/ProjectProvidersDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/System/TopLevelRestrictable.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/AbstractClassFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ActionMethod.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ApisDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ApplicationDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/BootstrapFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/CacheDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ConfigFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ConfigsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ControllerFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ControllersDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/DataDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/DbTableDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/DbTableFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/DocsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/FormFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/FormsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/HtaccessFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/LayoutScriptFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/LayoutScriptsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/LayoutsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/LibraryDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/LocalesDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/LogsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ModelFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ModelsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ModuleDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ModulesDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ProjectProviderFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/PublicDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/PublicImagesDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/PublicIndexFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/PublicScriptsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/PublicStylesheetsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/SearchIndexesDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ServicesDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/SessionsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TemporaryDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestApplicationActionMethod.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestApplicationBootstrapFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestApplicationControllerDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestApplicationControllerFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestApplicationDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestApplicationModuleDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestApplicationModulesDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestLibraryBootstrapFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestLibraryDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestLibraryFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestLibraryNamespaceDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestPHPUnitBootstrapFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestPHPUnitConfigFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/TestsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/UploadsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ViewControllerScriptsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ViewFiltersDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ViewHelpersDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ViewScriptFile.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ViewScriptsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ViewsDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Context/Zf/ZfStandardLibraryDirectory.php -%%DATADIR%%/library/Zend/Tool/Project/Exception.php -%%DATADIR%%/library/Zend/Tool/Project/Profile.php -%%DATADIR%%/library/Zend/Tool/Project/Profile/Exception.php -%%DATADIR%%/library/Zend/Tool/Project/Profile/FileParser/Interface.php -%%DATADIR%%/library/Zend/Tool/Project/Profile/FileParser/Xml.php -%%DATADIR%%/library/Zend/Tool/Project/Profile/Iterator/ContextFilter.php -%%DATADIR%%/library/Zend/Tool/Project/Profile/Iterator/EnabledResourceFilter.php -%%DATADIR%%/library/Zend/Tool/Project/Profile/Resource.php -%%DATADIR%%/library/Zend/Tool/Project/Profile/Resource/Container.php -%%DATADIR%%/library/Zend/Tool/Project/Profile/Resource/SearchConstraints.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Abstract.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Action.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Application.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Controller.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/DbAdapter.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/DbTable.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Exception.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Form.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Layout.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Manifest.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Model.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Module.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Profile.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Project.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/ProjectProvider.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/Test.php -%%DATADIR%%/library/Zend/Tool/Project/Provider/View.php -%%DATADIR%%/library/Zend/Translate.php -%%DATADIR%%/library/Zend/Translate/Adapter.php -%%DATADIR%%/library/Zend/Translate/Adapter/Array.php -%%DATADIR%%/library/Zend/Translate/Adapter/Csv.php -%%DATADIR%%/library/Zend/Translate/Adapter/Gettext.php -%%DATADIR%%/library/Zend/Translate/Adapter/Ini.php -%%DATADIR%%/library/Zend/Translate/Adapter/Qt.php -%%DATADIR%%/library/Zend/Translate/Adapter/Tbx.php -%%DATADIR%%/library/Zend/Translate/Adapter/Tmx.php -%%DATADIR%%/library/Zend/Translate/Adapter/Xliff.php -%%DATADIR%%/library/Zend/Translate/Adapter/XmlTm.php -%%DATADIR%%/library/Zend/Translate/Exception.php -%%DATADIR%%/library/Zend/Translate/Plural.php -%%DATADIR%%/library/Zend/Uri.php -%%DATADIR%%/library/Zend/Uri/Exception.php +%%DATADIR%%/library/Zend/Text/Table/Table.php +%%DATADIR%%/library/Zend/Text/composer.json +%%DATADIR%%/library/Zend/Uri/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Uri/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Uri/Exception/InvalidUriException.php +%%DATADIR%%/library/Zend/Uri/Exception/InvalidUriPartException.php +%%DATADIR%%/library/Zend/Uri/File.php %%DATADIR%%/library/Zend/Uri/Http.php -%%DATADIR%%/library/Zend/Validate.php -%%DATADIR%%/library/Zend/Validate/Abstract.php -%%DATADIR%%/library/Zend/Validate/Alnum.php -%%DATADIR%%/library/Zend/Validate/Alpha.php -%%DATADIR%%/library/Zend/Validate/Barcode.php -%%DATADIR%%/library/Zend/Validate/Barcode/AdapterAbstract.php -%%DATADIR%%/library/Zend/Validate/Barcode/AdapterInterface.php -%%DATADIR%%/library/Zend/Validate/Barcode/Code25.php -%%DATADIR%%/library/Zend/Validate/Barcode/Code25interleaved.php -%%DATADIR%%/library/Zend/Validate/Barcode/Code39.php -%%DATADIR%%/library/Zend/Validate/Barcode/Code39ext.php -%%DATADIR%%/library/Zend/Validate/Barcode/Code93.php -%%DATADIR%%/library/Zend/Validate/Barcode/Code93ext.php -%%DATADIR%%/library/Zend/Validate/Barcode/Ean12.php -%%DATADIR%%/library/Zend/Validate/Barcode/Ean13.php -%%DATADIR%%/library/Zend/Validate/Barcode/Ean14.php -%%DATADIR%%/library/Zend/Validate/Barcode/Ean18.php -%%DATADIR%%/library/Zend/Validate/Barcode/Ean2.php -%%DATADIR%%/library/Zend/Validate/Barcode/Ean5.php -%%DATADIR%%/library/Zend/Validate/Barcode/Ean8.php -%%DATADIR%%/library/Zend/Validate/Barcode/Gtin12.php -%%DATADIR%%/library/Zend/Validate/Barcode/Gtin13.php -%%DATADIR%%/library/Zend/Validate/Barcode/Gtin14.php -%%DATADIR%%/library/Zend/Validate/Barcode/Identcode.php -%%DATADIR%%/library/Zend/Validate/Barcode/Intelligentmail.php -%%DATADIR%%/library/Zend/Validate/Barcode/Issn.php -%%DATADIR%%/library/Zend/Validate/Barcode/Itf14.php -%%DATADIR%%/library/Zend/Validate/Barcode/Leitcode.php -%%DATADIR%%/library/Zend/Validate/Barcode/Planet.php -%%DATADIR%%/library/Zend/Validate/Barcode/Postnet.php -%%DATADIR%%/library/Zend/Validate/Barcode/Royalmail.php -%%DATADIR%%/library/Zend/Validate/Barcode/Sscc.php -%%DATADIR%%/library/Zend/Validate/Barcode/Upca.php -%%DATADIR%%/library/Zend/Validate/Barcode/Upce.php -%%DATADIR%%/library/Zend/Validate/Between.php -%%DATADIR%%/library/Zend/Validate/Callback.php -%%DATADIR%%/library/Zend/Validate/Ccnum.php -%%DATADIR%%/library/Zend/Validate/CreditCard.php -%%DATADIR%%/library/Zend/Validate/Date.php -%%DATADIR%%/library/Zend/Validate/Db/Abstract.php -%%DATADIR%%/library/Zend/Validate/Db/NoRecordExists.php -%%DATADIR%%/library/Zend/Validate/Db/RecordExists.php -%%DATADIR%%/library/Zend/Validate/Digits.php -%%DATADIR%%/library/Zend/Validate/EmailAddress.php -%%DATADIR%%/library/Zend/Validate/Exception.php -%%DATADIR%%/library/Zend/Validate/File/Count.php -%%DATADIR%%/library/Zend/Validate/File/Crc32.php -%%DATADIR%%/library/Zend/Validate/File/ExcludeExtension.php -%%DATADIR%%/library/Zend/Validate/File/ExcludeMimeType.php -%%DATADIR%%/library/Zend/Validate/File/Exists.php -%%DATADIR%%/library/Zend/Validate/File/Extension.php -%%DATADIR%%/library/Zend/Validate/File/FilesSize.php -%%DATADIR%%/library/Zend/Validate/File/Hash.php -%%DATADIR%%/library/Zend/Validate/File/ImageSize.php -%%DATADIR%%/library/Zend/Validate/File/IsCompressed.php -%%DATADIR%%/library/Zend/Validate/File/IsImage.php -%%DATADIR%%/library/Zend/Validate/File/Md5.php -%%DATADIR%%/library/Zend/Validate/File/MimeType.php -%%DATADIR%%/library/Zend/Validate/File/NotExists.php -%%DATADIR%%/library/Zend/Validate/File/Sha1.php -%%DATADIR%%/library/Zend/Validate/File/Size.php -%%DATADIR%%/library/Zend/Validate/File/Upload.php -%%DATADIR%%/library/Zend/Validate/File/WordCount.php -%%DATADIR%%/library/Zend/Validate/Float.php -%%DATADIR%%/library/Zend/Validate/GreaterThan.php -%%DATADIR%%/library/Zend/Validate/Hex.php -%%DATADIR%%/library/Zend/Validate/Hostname.php -%%DATADIR%%/library/Zend/Validate/Hostname/Biz.php -%%DATADIR%%/library/Zend/Validate/Hostname/Cn.php -%%DATADIR%%/library/Zend/Validate/Hostname/Com.php -%%DATADIR%%/library/Zend/Validate/Hostname/Jp.php -%%DATADIR%%/library/Zend/Validate/Iban.php -%%DATADIR%%/library/Zend/Validate/Identical.php -%%DATADIR%%/library/Zend/Validate/InArray.php -%%DATADIR%%/library/Zend/Validate/Int.php -%%DATADIR%%/library/Zend/Validate/Interface.php -%%DATADIR%%/library/Zend/Validate/Ip.php -%%DATADIR%%/library/Zend/Validate/Isbn.php -%%DATADIR%%/library/Zend/Validate/Ldap/Dn.php -%%DATADIR%%/library/Zend/Validate/LessThan.php -%%DATADIR%%/library/Zend/Validate/NotEmpty.php -%%DATADIR%%/library/Zend/Validate/PostCode.php -%%DATADIR%%/library/Zend/Validate/Regex.php -%%DATADIR%%/library/Zend/Validate/Sitemap/Changefreq.php -%%DATADIR%%/library/Zend/Validate/Sitemap/Lastmod.php -%%DATADIR%%/library/Zend/Validate/Sitemap/Loc.php -%%DATADIR%%/library/Zend/Validate/Sitemap/Priority.php -%%DATADIR%%/library/Zend/Validate/StringLength.php -%%DATADIR%%/library/Zend/Version.php -%%DATADIR%%/library/Zend/View.php -%%DATADIR%%/library/Zend/View/Abstract.php -%%DATADIR%%/library/Zend/View/Exception.php -%%DATADIR%%/library/Zend/View/Helper/Abstract.php -%%DATADIR%%/library/Zend/View/Helper/Action.php -%%DATADIR%%/library/Zend/View/Helper/BaseUrl.php -%%DATADIR%%/library/Zend/View/Helper/Currency.php +%%DATADIR%%/library/Zend/Uri/Mailto.php +%%DATADIR%%/library/Zend/Uri/README.md +%%DATADIR%%/library/Zend/Uri/Uri.php +%%DATADIR%%/library/Zend/Uri/UriFactory.php +%%DATADIR%%/library/Zend/Uri/UriInterface.php +%%DATADIR%%/library/Zend/Uri/composer.json +%%DATADIR%%/library/Zend/Validator/AbstractValidator.php +%%DATADIR%%/library/Zend/Validator/Barcode.php +%%DATADIR%%/library/Zend/Validator/Barcode/AbstractAdapter.php +%%DATADIR%%/library/Zend/Validator/Barcode/AdapterInterface.php +%%DATADIR%%/library/Zend/Validator/Barcode/Codabar.php +%%DATADIR%%/library/Zend/Validator/Barcode/Code128.php +%%DATADIR%%/library/Zend/Validator/Barcode/Code25.php +%%DATADIR%%/library/Zend/Validator/Barcode/Code25interleaved.php +%%DATADIR%%/library/Zend/Validator/Barcode/Code39.php +%%DATADIR%%/library/Zend/Validator/Barcode/Code39ext.php +%%DATADIR%%/library/Zend/Validator/Barcode/Code93.php +%%DATADIR%%/library/Zend/Validator/Barcode/Code93ext.php +%%DATADIR%%/library/Zend/Validator/Barcode/Ean12.php +%%DATADIR%%/library/Zend/Validator/Barcode/Ean13.php +%%DATADIR%%/library/Zend/Validator/Barcode/Ean14.php +%%DATADIR%%/library/Zend/Validator/Barcode/Ean18.php +%%DATADIR%%/library/Zend/Validator/Barcode/Ean2.php +%%DATADIR%%/library/Zend/Validator/Barcode/Ean5.php +%%DATADIR%%/library/Zend/Validator/Barcode/Ean8.php +%%DATADIR%%/library/Zend/Validator/Barcode/Gtin12.php +%%DATADIR%%/library/Zend/Validator/Barcode/Gtin13.php +%%DATADIR%%/library/Zend/Validator/Barcode/Gtin14.php +%%DATADIR%%/library/Zend/Validator/Barcode/Identcode.php +%%DATADIR%%/library/Zend/Validator/Barcode/Intelligentmail.php +%%DATADIR%%/library/Zend/Validator/Barcode/Issn.php +%%DATADIR%%/library/Zend/Validator/Barcode/Itf14.php +%%DATADIR%%/library/Zend/Validator/Barcode/Leitcode.php +%%DATADIR%%/library/Zend/Validator/Barcode/Planet.php +%%DATADIR%%/library/Zend/Validator/Barcode/Postnet.php +%%DATADIR%%/library/Zend/Validator/Barcode/Royalmail.php +%%DATADIR%%/library/Zend/Validator/Barcode/Sscc.php +%%DATADIR%%/library/Zend/Validator/Barcode/Upca.php +%%DATADIR%%/library/Zend/Validator/Barcode/Upce.php +%%DATADIR%%/library/Zend/Validator/Between.php +%%DATADIR%%/library/Zend/Validator/Callback.php +%%DATADIR%%/library/Zend/Validator/CreditCard.php +%%DATADIR%%/library/Zend/Validator/Csrf.php +%%DATADIR%%/library/Zend/Validator/Date.php +%%DATADIR%%/library/Zend/Validator/DateStep.php +%%DATADIR%%/library/Zend/Validator/Db/AbstractDb.php +%%DATADIR%%/library/Zend/Validator/Db/NoRecordExists.php +%%DATADIR%%/library/Zend/Validator/Db/RecordExists.php +%%DATADIR%%/library/Zend/Validator/Digits.php +%%DATADIR%%/library/Zend/Validator/EmailAddress.php +%%DATADIR%%/library/Zend/Validator/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/Validator/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/Validator/Exception/ExtensionNotLoadedException.php +%%DATADIR%%/library/Zend/Validator/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/Validator/Exception/InvalidMagicMimeFileException.php +%%DATADIR%%/library/Zend/Validator/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Validator/Explode.php +%%DATADIR%%/library/Zend/Validator/File/Count.php +%%DATADIR%%/library/Zend/Validator/File/Crc32.php +%%DATADIR%%/library/Zend/Validator/File/ExcludeExtension.php +%%DATADIR%%/library/Zend/Validator/File/ExcludeMimeType.php +%%DATADIR%%/library/Zend/Validator/File/Exists.php +%%DATADIR%%/library/Zend/Validator/File/Extension.php +%%DATADIR%%/library/Zend/Validator/File/FilesSize.php +%%DATADIR%%/library/Zend/Validator/File/Hash.php +%%DATADIR%%/library/Zend/Validator/File/ImageSize.php +%%DATADIR%%/library/Zend/Validator/File/IsCompressed.php +%%DATADIR%%/library/Zend/Validator/File/IsImage.php +%%DATADIR%%/library/Zend/Validator/File/Md5.php +%%DATADIR%%/library/Zend/Validator/File/MimeType.php +%%DATADIR%%/library/Zend/Validator/File/NotExists.php +%%DATADIR%%/library/Zend/Validator/File/Sha1.php +%%DATADIR%%/library/Zend/Validator/File/Size.php +%%DATADIR%%/library/Zend/Validator/File/Upload.php +%%DATADIR%%/library/Zend/Validator/File/UploadFile.php +%%DATADIR%%/library/Zend/Validator/File/WordCount.php +%%DATADIR%%/library/Zend/Validator/GreaterThan.php +%%DATADIR%%/library/Zend/Validator/Hex.php +%%DATADIR%%/library/Zend/Validator/Hostname.php +%%DATADIR%%/library/Zend/Validator/Hostname/Biz.php +%%DATADIR%%/library/Zend/Validator/Hostname/Cn.php +%%DATADIR%%/library/Zend/Validator/Hostname/Com.php +%%DATADIR%%/library/Zend/Validator/Hostname/Jp.php +%%DATADIR%%/library/Zend/Validator/Iban.php +%%DATADIR%%/library/Zend/Validator/Identical.php +%%DATADIR%%/library/Zend/Validator/InArray.php +%%DATADIR%%/library/Zend/Validator/Ip.php +%%DATADIR%%/library/Zend/Validator/IsInstanceOf.php +%%DATADIR%%/library/Zend/Validator/Isbn.php +%%DATADIR%%/library/Zend/Validator/LessThan.php +%%DATADIR%%/library/Zend/Validator/NotEmpty.php +%%DATADIR%%/library/Zend/Validator/README.md +%%DATADIR%%/library/Zend/Validator/Regex.php +%%DATADIR%%/library/Zend/Validator/Sitemap/Changefreq.php +%%DATADIR%%/library/Zend/Validator/Sitemap/Lastmod.php +%%DATADIR%%/library/Zend/Validator/Sitemap/Loc.php +%%DATADIR%%/library/Zend/Validator/Sitemap/Priority.php +%%DATADIR%%/library/Zend/Validator/StaticValidator.php +%%DATADIR%%/library/Zend/Validator/Step.php +%%DATADIR%%/library/Zend/Validator/StringLength.php +%%DATADIR%%/library/Zend/Validator/Translator/TranslatorAwareInterface.php +%%DATADIR%%/library/Zend/Validator/Translator/TranslatorInterface.php +%%DATADIR%%/library/Zend/Validator/Uri.php +%%DATADIR%%/library/Zend/Validator/ValidatorChain.php +%%DATADIR%%/library/Zend/Validator/ValidatorInterface.php +%%DATADIR%%/library/Zend/Validator/ValidatorPluginManager.php +%%DATADIR%%/library/Zend/Validator/ValidatorPluginManagerAwareInterface.php +%%DATADIR%%/library/Zend/Validator/composer.json +%%DATADIR%%/library/Zend/Version/README.md +%%DATADIR%%/library/Zend/Version/Version.php +%%DATADIR%%/library/Zend/Version/composer.json +%%DATADIR%%/library/Zend/View/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/View/Exception/DomainException.php +%%DATADIR%%/library/Zend/View/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/View/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/View/Exception/InvalidHelperException.php +%%DATADIR%%/library/Zend/View/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/View/Helper/AbstractHelper.php +%%DATADIR%%/library/Zend/View/Helper/AbstractHtmlElement.php +%%DATADIR%%/library/Zend/View/Helper/BasePath.php %%DATADIR%%/library/Zend/View/Helper/Cycle.php %%DATADIR%%/library/Zend/View/Helper/DeclareVars.php %%DATADIR%%/library/Zend/View/Helper/Doctype.php -%%DATADIR%%/library/Zend/View/Helper/Fieldset.php -%%DATADIR%%/library/Zend/View/Helper/Form.php -%%DATADIR%%/library/Zend/View/Helper/FormButton.php -%%DATADIR%%/library/Zend/View/Helper/FormCheckbox.php -%%DATADIR%%/library/Zend/View/Helper/FormElement.php -%%DATADIR%%/library/Zend/View/Helper/FormErrors.php -%%DATADIR%%/library/Zend/View/Helper/FormFile.php -%%DATADIR%%/library/Zend/View/Helper/FormHidden.php -%%DATADIR%%/library/Zend/View/Helper/FormImage.php -%%DATADIR%%/library/Zend/View/Helper/FormLabel.php -%%DATADIR%%/library/Zend/View/Helper/FormMultiCheckbox.php -%%DATADIR%%/library/Zend/View/Helper/FormNote.php -%%DATADIR%%/library/Zend/View/Helper/FormPassword.php -%%DATADIR%%/library/Zend/View/Helper/FormRadio.php -%%DATADIR%%/library/Zend/View/Helper/FormReset.php -%%DATADIR%%/library/Zend/View/Helper/FormSelect.php -%%DATADIR%%/library/Zend/View/Helper/FormSubmit.php -%%DATADIR%%/library/Zend/View/Helper/FormText.php -%%DATADIR%%/library/Zend/View/Helper/FormTextarea.php +%%DATADIR%%/library/Zend/View/Helper/EscapeCss.php +%%DATADIR%%/library/Zend/View/Helper/EscapeHtml.php +%%DATADIR%%/library/Zend/View/Helper/EscapeHtmlAttr.php +%%DATADIR%%/library/Zend/View/Helper/EscapeJs.php +%%DATADIR%%/library/Zend/View/Helper/EscapeUrl.php +%%DATADIR%%/library/Zend/View/Helper/Escaper/AbstractHelper.php +%%DATADIR%%/library/Zend/View/Helper/FlashMessenger.php %%DATADIR%%/library/Zend/View/Helper/Gravatar.php %%DATADIR%%/library/Zend/View/Helper/HeadLink.php %%DATADIR%%/library/Zend/View/Helper/HeadMeta.php %%DATADIR%%/library/Zend/View/Helper/HeadScript.php %%DATADIR%%/library/Zend/View/Helper/HeadStyle.php %%DATADIR%%/library/Zend/View/Helper/HeadTitle.php -%%DATADIR%%/library/Zend/View/Helper/HtmlElement.php +%%DATADIR%%/library/Zend/View/Helper/HelperInterface.php %%DATADIR%%/library/Zend/View/Helper/HtmlFlash.php %%DATADIR%%/library/Zend/View/Helper/HtmlList.php %%DATADIR%%/library/Zend/View/Helper/HtmlObject.php %%DATADIR%%/library/Zend/View/Helper/HtmlPage.php %%DATADIR%%/library/Zend/View/Helper/HtmlQuicktime.php +%%DATADIR%%/library/Zend/View/Helper/Identity.php %%DATADIR%%/library/Zend/View/Helper/InlineScript.php -%%DATADIR%%/library/Zend/View/Helper/Interface.php %%DATADIR%%/library/Zend/View/Helper/Json.php %%DATADIR%%/library/Zend/View/Helper/Layout.php %%DATADIR%%/library/Zend/View/Helper/Navigation.php +%%DATADIR%%/library/Zend/View/Helper/Navigation/AbstractHelper.php %%DATADIR%%/library/Zend/View/Helper/Navigation/Breadcrumbs.php -%%DATADIR%%/library/Zend/View/Helper/Navigation/Helper.php -%%DATADIR%%/library/Zend/View/Helper/Navigation/HelperAbstract.php +%%DATADIR%%/library/Zend/View/Helper/Navigation/HelperInterface.php %%DATADIR%%/library/Zend/View/Helper/Navigation/Links.php +%%DATADIR%%/library/Zend/View/Helper/Navigation/Listener/AclListener.php %%DATADIR%%/library/Zend/View/Helper/Navigation/Menu.php +%%DATADIR%%/library/Zend/View/Helper/Navigation/PluginManager.php %%DATADIR%%/library/Zend/View/Helper/Navigation/Sitemap.php %%DATADIR%%/library/Zend/View/Helper/PaginationControl.php %%DATADIR%%/library/Zend/View/Helper/Partial.php -%%DATADIR%%/library/Zend/View/Helper/Partial/Exception.php %%DATADIR%%/library/Zend/View/Helper/PartialLoop.php %%DATADIR%%/library/Zend/View/Helper/Placeholder.php %%DATADIR%%/library/Zend/View/Helper/Placeholder/Container.php -%%DATADIR%%/library/Zend/View/Helper/Placeholder/Container/Abstract.php -%%DATADIR%%/library/Zend/View/Helper/Placeholder/Container/Exception.php -%%DATADIR%%/library/Zend/View/Helper/Placeholder/Container/Standalone.php +%%DATADIR%%/library/Zend/View/Helper/Placeholder/Container/AbstractContainer.php +%%DATADIR%%/library/Zend/View/Helper/Placeholder/Container/AbstractStandalone.php %%DATADIR%%/library/Zend/View/Helper/Placeholder/Registry.php -%%DATADIR%%/library/Zend/View/Helper/Placeholder/Registry/Exception.php +%%DATADIR%%/library/Zend/View/Helper/RenderChildModel.php %%DATADIR%%/library/Zend/View/Helper/RenderToPlaceholder.php %%DATADIR%%/library/Zend/View/Helper/ServerUrl.php -%%DATADIR%%/library/Zend/View/Helper/TinySrc.php -%%DATADIR%%/library/Zend/View/Helper/Translate.php +%%DATADIR%%/library/Zend/View/Helper/Service/FlashMessengerFactory.php +%%DATADIR%%/library/Zend/View/Helper/Service/IdentityFactory.php %%DATADIR%%/library/Zend/View/Helper/Url.php -%%DATADIR%%/library/Zend/View/Helper/UserAgent.php -%%DATADIR%%/library/Zend/View/Interface.php +%%DATADIR%%/library/Zend/View/Helper/ViewModel.php +%%DATADIR%%/library/Zend/View/HelperPluginManager.php +%%DATADIR%%/library/Zend/View/Model/ClearableModelInterface.php +%%DATADIR%%/library/Zend/View/Model/ConsoleModel.php +%%DATADIR%%/library/Zend/View/Model/FeedModel.php +%%DATADIR%%/library/Zend/View/Model/JsonModel.php +%%DATADIR%%/library/Zend/View/Model/ModelInterface.php +%%DATADIR%%/library/Zend/View/Model/ViewModel.php +%%DATADIR%%/library/Zend/View/README.md +%%DATADIR%%/library/Zend/View/Renderer/ConsoleRenderer.php +%%DATADIR%%/library/Zend/View/Renderer/FeedRenderer.php +%%DATADIR%%/library/Zend/View/Renderer/JsonRenderer.php +%%DATADIR%%/library/Zend/View/Renderer/PhpRenderer.php +%%DATADIR%%/library/Zend/View/Renderer/RendererInterface.php +%%DATADIR%%/library/Zend/View/Renderer/TreeRendererInterface.php +%%DATADIR%%/library/Zend/View/Resolver/AggregateResolver.php +%%DATADIR%%/library/Zend/View/Resolver/ResolverInterface.php +%%DATADIR%%/library/Zend/View/Resolver/TemplateMapResolver.php +%%DATADIR%%/library/Zend/View/Resolver/TemplatePathStack.php +%%DATADIR%%/library/Zend/View/Strategy/FeedStrategy.php +%%DATADIR%%/library/Zend/View/Strategy/JsonStrategy.php +%%DATADIR%%/library/Zend/View/Strategy/PhpRendererStrategy.php %%DATADIR%%/library/Zend/View/Stream.php -%%DATADIR%%/library/Zend/Wildfire/Channel/HttpHeaders.php -%%DATADIR%%/library/Zend/Wildfire/Channel/Interface.php -%%DATADIR%%/library/Zend/Wildfire/Exception.php -%%DATADIR%%/library/Zend/Wildfire/Plugin/FirePhp.php -%%DATADIR%%/library/Zend/Wildfire/Plugin/FirePhp/Message.php -%%DATADIR%%/library/Zend/Wildfire/Plugin/FirePhp/TableMessage.php -%%DATADIR%%/library/Zend/Wildfire/Plugin/Interface.php -%%DATADIR%%/library/Zend/Wildfire/Protocol/JsonStream.php +%%DATADIR%%/library/Zend/View/Variables.php +%%DATADIR%%/library/Zend/View/View.php +%%DATADIR%%/library/Zend/View/ViewEvent.php +%%DATADIR%%/library/Zend/View/composer.json +%%DATADIR%%/library/Zend/XmlRpc/AbstractValue.php %%DATADIR%%/library/Zend/XmlRpc/Client.php -%%DATADIR%%/library/Zend/XmlRpc/Client/Exception.php -%%DATADIR%%/library/Zend/XmlRpc/Client/FaultException.php -%%DATADIR%%/library/Zend/XmlRpc/Client/HttpException.php -%%DATADIR%%/library/Zend/XmlRpc/Client/IntrospectException.php +%%DATADIR%%/library/Zend/XmlRpc/Client/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/XmlRpc/Client/Exception/FaultException.php +%%DATADIR%%/library/Zend/XmlRpc/Client/Exception/HttpException.php +%%DATADIR%%/library/Zend/XmlRpc/Client/Exception/IntrospectException.php +%%DATADIR%%/library/Zend/XmlRpc/Client/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/XmlRpc/Client/Exception/RuntimeException.php %%DATADIR%%/library/Zend/XmlRpc/Client/ServerIntrospection.php %%DATADIR%%/library/Zend/XmlRpc/Client/ServerProxy.php -%%DATADIR%%/library/Zend/XmlRpc/Exception.php +%%DATADIR%%/library/Zend/XmlRpc/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/XmlRpc/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/XmlRpc/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/XmlRpc/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/XmlRpc/Exception/ValueException.php %%DATADIR%%/library/Zend/XmlRpc/Fault.php +%%DATADIR%%/library/Zend/XmlRpc/Generator/AbstractGenerator.php %%DATADIR%%/library/Zend/XmlRpc/Generator/DomDocument.php -%%DATADIR%%/library/Zend/XmlRpc/Generator/GeneratorAbstract.php +%%DATADIR%%/library/Zend/XmlRpc/Generator/GeneratorInterface.php %%DATADIR%%/library/Zend/XmlRpc/Generator/XmlWriter.php +%%DATADIR%%/library/Zend/XmlRpc/README.md %%DATADIR%%/library/Zend/XmlRpc/Request.php %%DATADIR%%/library/Zend/XmlRpc/Request/Http.php %%DATADIR%%/library/Zend/XmlRpc/Request/Stdin.php @@ -5935,5557 +2346,265 @@ %%DATADIR%%/library/Zend/XmlRpc/Response/Http.php %%DATADIR%%/library/Zend/XmlRpc/Server.php %%DATADIR%%/library/Zend/XmlRpc/Server/Cache.php -%%DATADIR%%/library/Zend/XmlRpc/Server/Exception.php +%%DATADIR%%/library/Zend/XmlRpc/Server/Exception/BadMethodCallException.php +%%DATADIR%%/library/Zend/XmlRpc/Server/Exception/ExceptionInterface.php +%%DATADIR%%/library/Zend/XmlRpc/Server/Exception/InvalidArgumentException.php +%%DATADIR%%/library/Zend/XmlRpc/Server/Exception/RuntimeException.php %%DATADIR%%/library/Zend/XmlRpc/Server/Fault.php %%DATADIR%%/library/Zend/XmlRpc/Server/System.php -%%DATADIR%%/library/Zend/XmlRpc/Value.php -%%DATADIR%%/library/Zend/XmlRpc/Value/Array.php +%%DATADIR%%/library/Zend/XmlRpc/Value/AbstractCollection.php +%%DATADIR%%/library/Zend/XmlRpc/Value/AbstractScalar.php +%%DATADIR%%/library/Zend/XmlRpc/Value/ArrayValue.php %%DATADIR%%/library/Zend/XmlRpc/Value/Base64.php %%DATADIR%%/library/Zend/XmlRpc/Value/BigInteger.php %%DATADIR%%/library/Zend/XmlRpc/Value/Boolean.php -%%DATADIR%%/library/Zend/XmlRpc/Value/Collection.php %%DATADIR%%/library/Zend/XmlRpc/Value/DateTime.php %%DATADIR%%/library/Zend/XmlRpc/Value/Double.php -%%DATADIR%%/library/Zend/XmlRpc/Value/Exception.php %%DATADIR%%/library/Zend/XmlRpc/Value/Integer.php %%DATADIR%%/library/Zend/XmlRpc/Value/Nil.php -%%DATADIR%%/library/Zend/XmlRpc/Value/Scalar.php %%DATADIR%%/library/Zend/XmlRpc/Value/String.php %%DATADIR%%/library/Zend/XmlRpc/Value/Struct.php -%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt -%%PORTDOCS%%%%DOCSDIR%%/README.txt -%%PORTDOCS%%%%DOCSDIR%%/manual/coding-standard.coding-style.html -%%PORTDOCS%%%%DOCSDIR%%/manual/coding-standard.html -%%PORTDOCS%%%%DOCSDIR%%/manual/coding-standard.naming-conventions.html -%%PORTDOCS%%%%DOCSDIR%%/manual/coding-standard.overview.html -%%PORTDOCS%%%%DOCSDIR%%/manual/coding-standard.php-file-formatting.html -%%PORTDOCS%%%%DOCSDIR%%/manual/copyrights.html -%%PORTDOCS%%%%DOCSDIR%%/manual/doc-standard.file-formatting.html -%%PORTDOCS%%%%DOCSDIR%%/manual/doc-standard.html -%%PORTDOCS%%%%DOCSDIR%%/manual/doc-standard.overview.html -%%PORTDOCS%%%%DOCSDIR%%/manual/doc-standard.recommendations.html -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-learning.quickstart.create-form.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-learning.quickstart.create-model.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-learning.quickstart.intro.mvc.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.introduction.example-1.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.code128.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.code25.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.ean13.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.ean2.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.ean5.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.ean8.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.error.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.identcode.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.int25.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.itf14.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.leitcode.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.planet.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.postnet.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.royalmail.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.upca.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.barcode.objects.details.upce.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.controller.basics.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.db.adapter.example-database.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.layout.quickstart.example.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.log.writers.zendmonitor-event.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.log.writers.zendmonitor-events.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.openid.protocol.jpg -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.paginator.usage.rendering.control.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.advanced-mergefieldblockformat_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.advanced-mswordblocksdocument_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.advanced-mswordblockstemplate_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.bitmaps-documentpage1_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.bitmaps-documentpage2_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.generation-diabasic_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.templates-imagemerge_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.templates-msworddialog_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.templates-msworddocument_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.templates-mswordtemplatecropped_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.service.livedocx.mailmerge.templates-mswordtemplatefull_zoom.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.tool.framework.clihelp.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.tool.framework.cliversionunix.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.tool.framework.cliversionwin32.png -%%PORTDOCS%%%%DOCSDIR%%/manual/images/d481d625821a97b9a5eb2cec99dca50e-zend.wildfire.firebug.console.png -%%PORTDOCS%%%%DOCSDIR%%/manual/introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/introduction.installation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/introduction.overview.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.autoloading.conclusion.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.autoloading.design.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.autoloading.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.autoloading.intro.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.autoloading.resources.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.autoloading.usage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.form.decorators.composite.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.form.decorators.conclusion.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.form.decorators.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.form.decorators.individual.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.form.decorators.intro.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.form.decorators.layering.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.form.decorators.simplest.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.layout.conclusions.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.layout.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.layout.intro.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.layout.usage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.lucene.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.lucene.index-opening.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.lucene.index-structure.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.lucene.indexing.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.lucene.intro.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.lucene.pagination.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.lucene.queries.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.lucene.searching.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.multiuser.authentication.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.multiuser.authorization.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.multiuser.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.multiuser.intro.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.multiuser.sessions.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.paginator.control.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.paginator.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.paginator.intro.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.paginator.simple.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.paginator.together.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.plugins.conclusion.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.plugins.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.plugins.intro.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.plugins.usage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.quickstart.conclusion.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.quickstart.create-form.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.quickstart.create-layout.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.quickstart.create-model.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.quickstart.create-project.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.quickstart.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.quickstart.intro.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.view.placeholders.basics.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.view.placeholders.conclusion.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.view.placeholders.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.view.placeholders.intro.html -%%PORTDOCS%%%%DOCSDIR%%/manual/learning.view.placeholders.standard.html -%%PORTDOCS%%%%DOCSDIR%%/manual/manual.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.06.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.08.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.09.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.10.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.110.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.15.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.16.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.17.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.18.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.19.html -%%PORTDOCS%%%%DOCSDIR%%/manual/migration.html -%%PORTDOCS%%%%DOCSDIR%%/manual/performance.classloading.html -%%PORTDOCS%%%%DOCSDIR%%/manual/performance.database.html -%%PORTDOCS%%%%DOCSDIR%%/manual/performance.html -%%PORTDOCS%%%%DOCSDIR%%/manual/performance.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/performance.localization.html -%%PORTDOCS%%%%DOCSDIR%%/manual/performance.view.html -%%PORTDOCS%%%%DOCSDIR%%/manual/project-structure.filesystem.html -%%PORTDOCS%%%%DOCSDIR%%/manual/project-structure.html -%%PORTDOCS%%%%DOCSDIR%%/manual/project-structure.overview.html -%%PORTDOCS%%%%DOCSDIR%%/manual/project-structure.project.html -%%PORTDOCS%%%%DOCSDIR%%/manual/project-structure.rewrite.html -%%PORTDOCS%%%%DOCSDIR%%/manual/reference.html -%%PORTDOCS%%%%DOCSDIR%%/manual/requirements.html -%%PORTDOCS%%%%DOCSDIR%%/manual/requirements.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.acl.advanced.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.acl.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.acl.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.acl.refining.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.amf.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.amf.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.amf.server.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.application.available-resources.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.application.core-functionality.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.application.examples.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.application.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.application.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.application.quick-start.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.application.theory-of-operation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.auth.adapter.dbtable.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.auth.adapter.digest.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.auth.adapter.http.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.auth.adapter.ldap.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.auth.adapter.openid.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.auth.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.auth.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.barcode.creation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.barcode.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.barcode.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.barcode.objects.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.barcode.renderers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cache.backends.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cache.cache.manager.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cache.frontends.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cache.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cache.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cache.theory.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.captcha.adapters.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.captcha.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.captcha.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.captcha.operation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cloud.documentservice.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cloud.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cloud.infrastructure.adapter.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cloud.infrastructure.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cloud.queueservice.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.cloud.storageservice.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.codegenerator.examples.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.codegenerator.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.codegenerator.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.codegenerator.reference.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.config.adapters.ini.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.config.adapters.json.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.config.adapters.xml.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.config.adapters.yaml.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.config.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.config.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.config.theory_of_operation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.config.writer.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.config.writer.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.console.getopt.configuration.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.console.getopt.fetching.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.console.getopt.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.console.getopt.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.console.getopt.rules.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.action.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.actionhelpers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.basics.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.dispatcher.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.exceptions.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.front.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.modular.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.plugins.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.quickstart.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.request.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.response.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.controller.router.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.additional.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.calculation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.description.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.exchange.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.number.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.options.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.position.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.usage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.currency.value.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.date.additional.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.date.basic.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.date.constants.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.date.creation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.date.definition.theory.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.date.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.date.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.date.overview.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.adapter.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.profiler.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.select.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.statement.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.table.definition.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.table.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.table.relationships.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.table.row.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.db.table.rowset.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.debug.dumping.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.debug.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.dojo.build-layers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.dojo.data.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.dojo.form.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.dojo.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.dojo.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.dojo.view.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.dom.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.dom.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.dom.query.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.event-manager.event-manager.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.event-manager.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.exception.basic.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.exception.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.exception.previous.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.exception.using.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.consuming-atom-single-entry.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.consuming-atom.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.consuming-rss.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.custom-feed.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.findFeeds.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.importing.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.modifying-feed.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.pubsubhubbub.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.reader.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.feed.writer.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.file.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.file.transfer.filters.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.file.transfer.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.file.transfer.validators.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.filter.filter_chains.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.filter.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.filter.inflector.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.filter.input.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.filter.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.filter.set.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.filter.writing_filters.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.advanced.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.decorators.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.elements.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.forms.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.i18n.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.quickstart.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.standardDecorators.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.form.standardElements.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.analytics.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.authsub.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.books.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.calendar.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.clientlogin.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.docs.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.exception.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.gapps.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.photos.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.spreadsheets.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.gdata.youtube.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.client.adapters.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.client.advanced.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.client.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.cookies.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.response.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.user-agent-device.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.user-agent-features-browscap.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.user-agent-features-device-atlas.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.user-agent-features-tera-wurfl.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.user-agent-features.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.user-agent-storage-session.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.user-agent-storage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.http.user-agent.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.infocard.basics.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.infocard.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.json.advanced.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.json.basics.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.json.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.json.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.json.server.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.json.xml2json.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.layout.advanced.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.layout.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.layout.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.layout.options.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.layout.quickstart.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.ldap.api.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.ldap.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.ldap.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.ldap.ldif.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.ldap.node.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.ldap.server.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.ldap.tools.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.ldap.usage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.autoloader-factory.methods.factory.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.autoloader-factory.methods.get-registered-autoloaders.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.autoloader-resource.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.autoloader.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.class-map-autoloader.methods.constructor.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.class-map-autoloader.methods.register-autoload-map.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.class-map-autoloader.methods.register-autoload-maps.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.class-map-autoloader.methods.set-options.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.classmap-generator.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.load.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.pluginloader.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.spl-autoloader.methods.autoload.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.spl-autoloader.methods.constructor.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.spl-autoloader.methods.register.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.spl-autoloader.methods.set-options.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.autoload.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.constructor.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.get-autoload-map.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.is-fallback-autoloader.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.register-namespace.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.register-namespaces.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.register-prefix.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.register-prefixes.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.register.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.set-fallback-autoloader.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.loader.standard-autoloader.methods.set-options.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.locale.appendix.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.locale.date.datesandtimes.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.locale.functions.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.locale.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.locale.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.locale.parsing.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.log.factory.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.log.filters.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.log.formatters.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.log.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.log.overview.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.log.writers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.adding-recipients.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.additional-headers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.attachments.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.boundary.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.character-sets.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.different-transports.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.encoding.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.html-mails.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.multiple-emails.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.read.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.sending.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.smtp-authentication.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mail.smtp-secure.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.markup.getting-started.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.markup.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.markup.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.markup.parsers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.markup.renderers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.measure.creation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.measure.edit.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.measure.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.measure.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.measure.output.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.measure.types.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.memory.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.memory.memory-manager.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.memory.memory-objects.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.memory.overview.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mime.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mime.message.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mime.mime.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mime.part.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mobile.push.apns.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mobile.push.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mobile.push.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.mobile.push.mpns.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.navigation.containers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.navigation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.navigation.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.navigation.pages.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.oauth.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.oauth.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.openid.consumer.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.openid.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.openid.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.openid.provider.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.paginator.advanced.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.paginator.configuration.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.paginator.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.paginator.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.paginator.usage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.pdf.create.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.pdf.drawing.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.pdf.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.pdf.info.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.pdf.interactive-features.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.pdf.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.pdf.pages.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.pdf.save.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.pdf.usage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.progressbar.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.progressbar.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.queue.adapters.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.queue.custom.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.queue.example.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.queue.framework.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.queue.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.queue.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.queue.stomp.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.reflection.examples.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.reflection.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.reflection.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.reflection.reference.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.registry.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.registry.using.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.rest.client.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.rest.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.rest.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.rest.server.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.advanced.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.best-practice.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.charset.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.extending.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.index-creation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.java-lucene.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.overview.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.query-api.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.query-language.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.search.lucene.searching.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.serializer.adapter.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.serializer.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.serializer.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.server.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.server.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.server.reflection.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.akismet.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.cloudwatch.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.ebs.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.elasticip.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.images.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.instance.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.keypairs.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.reserved.instance.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.securitygroups.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.windows.instance.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.ec2.zones.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.s3.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.amazon.sqs.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.audioscrobbler.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.delicious.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.developergarden.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.ebay.finding.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.ebay.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.flickr.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.livedocx.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.nirvanix.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.rackspace.files.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.rackspace.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.rackspace.servers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.recaptcha.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.short-url.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.slideshare.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.strikeiron.advanced-uses.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.strikeiron.bundled-services.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.strikeiron.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.technorati.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.twitter.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.windowsazure.diagnostics.manager.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.windowsazure.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.windowsazure.storage.blob.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.windowsazure.storage.queue.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.windowsazure.storage.table.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.service.yahoo.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.session.advanced_usage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.session.basic_usage.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.session.global_session_management.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.session.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.session.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.session.savehandler.dbtable.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.soap.autodiscovery.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.soap.client.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.soap.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.soap.server.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.soap.wsdl.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tag.cloud.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tag.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tag.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.test.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.test.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.test.phpunit.db.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.test.phpunit.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.text.figlet.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.text.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.text.table.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.timesync.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.timesync.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.timesync.working.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.extending.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.framework.architecture.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.framework.clitool.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.framework.extending.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.framework.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.framework.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.framework.system-providers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.framework.writing-providers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.project.create-a-project.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.project.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.project.internals.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.project.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.project.providers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.tool.usage.cli.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.translate.adapter.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.translate.additional.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.translate.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.translate.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.translate.plurals.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.translate.sourcecreation.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.translate.using.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.uri.chapter.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.uri.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.validate.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.validate.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.validate.messages.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.validate.set.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.validate.validator_chains.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.validate.writing_validators.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.version.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.version.reading.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.view.abstract.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.view.controllers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.view.helpers.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.view.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.view.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.view.scripts.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.wildfire.chapter.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.wildfire.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.xmlrpc.client.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.xmlrpc.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.xmlrpc.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zend.xmlrpc.server.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zendx.console.process.unix.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zendx.console.process.unix.overview.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zendx.jquery.form.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zendx.jquery.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zendx.jquery.introduction.html -%%PORTDOCS%%%%DOCSDIR%%/manual/zendx.jquery.view.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/.zfproject.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/README.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/Bootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/configs/application.ini.dist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/controllers/DocumentController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/controllers/ErrorController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/controllers/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/controllers/QueueController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/controllers/StorageController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/document/add-document.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/document/create.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/document/delete-document.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/document/index.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/document/show.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/error/error.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/index/index.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/queue/create.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/queue/index.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/queue/receive.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/queue/send.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/storage/get.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/storage/index.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/storage/upload.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/library/CloudExplorer/ResourceInjector.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/public/.htaccess -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/public/index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Feeds/consume-feed.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/3LeggedOAuth/Gdata_OAuth_Helper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/3LeggedOAuth/data-api-72.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/3LeggedOAuth/doclist-72.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/3LeggedOAuth/index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/3LeggedOAuth/style.css -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/Blogger.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/BooksBrowser/books_browser.css -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/BooksBrowser/index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/BooksBrowser/interface.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/Calendar.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/Docs.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/Gapps.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/InstallationChecker.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/MyLibrary/demo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/Photos.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/Spreadsheet-ClientLogin.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoApp/README.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoApp/index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoApp/notfound.jpg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoApp/operations.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoApp/session_details.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoApp/video_app.css -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoApp/video_app.js -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoBrowser/index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoBrowser/interface.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoBrowser/video_browser.css -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoBrowser/video_browser.js -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Locale/AllLanguages.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Mail/SimpleMailer.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Mail/maildir/maildir.tar -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Mail/mbox/INBOX -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Mail/mbox/subfolder/test -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Mobile/Push/ApnsFeedback.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Mobile/Push/ApnsServer.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Mobile/Push/GcmServer.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Mobile/Push/MpnsServer.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/login-bg.gif -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/controllers/ErrorController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/controllers/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/views/scripts/error/404.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/views/scripts/error/500.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/views/scripts/index/login.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/views/scripts/index/welcome.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/html/.htaccess -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/html/config.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/html/index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/templates/identity.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/templates/identity2.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/templates/login.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/templates/profile.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/templates/register.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/templates/registration_complete.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/templates/trust.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/test_auth.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/test_consumer.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/OpenId/test_server.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Pdf/demo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Pdf/stamp.jpg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Pdf/test.pdf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/ProgressBar/JsPush.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/ProgressBar/Upload.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/ProgressBar/ZendForm.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/ProgressBar/animation.gif -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/feed-search/create-index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/feed-search/search-index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/CreateIndex.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/about-pear.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/authors.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/contributing.bugs.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/contributing.documentation.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/contributing.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/contributing.newpackage.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/contributing.patches.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/contributing.wishlist.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/copyright.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Search/Lucene/indexing/IndexSource/core.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/Helper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/bitmaps/generate-bitmaps.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/bitmaps/template-screenshot.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/bitmaps/template.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/conference-pass/dailemaitre.jpg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/conference-pass/generate-document.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/conference-pass/template.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/constructors/credentials.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/constructors/hosted-licensed.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/constructors/public-zend_config.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/constructors/public.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/convert/convert-document.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/convert/document.doc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/images/delete-all.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/images/download.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/images/image-1.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/images/image-2.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/images/image-exists.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/images/list.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/images/upload.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/license-agreement/generate-document-concat.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/license-agreement/generate-document.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/license-agreement/template-screenshot.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/license-agreement/template.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/metafiles/generate-metafiles.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/metafiles/template-screenshot.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/metafiles/template.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/pdf-security/generate-document.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/pdf-security/template.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-fonts/show-supported-fonts-cached.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-fonts/show-supported-fonts.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-formats/show-supported-formats-cached.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-formats/show-supported-formats.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/telephone-bill/generate-document.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/telephone-bill/template-screenshot.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/telephone-bill/template.doc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info/list-template-info.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info/template-1-text-field-screenshot.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info/template-1-text-field.doc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info/template-1-text-field.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info/template-2-text-fields-screenshot.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info/template-2-text-fields.doc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info/template-2-text-fields.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info/template-block-fields-screenshot.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/template-info/template-block-fields.doc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/templates/delete-all.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/templates/download.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/templates/list.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/templates/template-1.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/templates/template-2.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/templates/template-exists.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/templates/upload.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/check-environment.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/common.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/configuration.php.dist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/WebServices/Amazon/amazon-search.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/WebServices/Flickr/flickr-composite.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/WebServices/Flickr/flickr-search.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/WebServices/Protocols/xmlrpc-upc-lookup.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/WebServices/Yahoo/yahoo-multi-search.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/Boot/Zend-Db-Profiler-Firebug/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/Boot/Zend-Log-Writer-Firebug/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/ErrorController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/ZendDbProfilerFirebugController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/ZendLogWriterFirebugController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/controllers/ZendWildfirePluginFirePhpController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/error/error.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/index/index.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-db-profiler-firebug/test-logging.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-db-profiler-firebug/test-multiple-databases.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-log-writer-firebug/test-error-controller.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-log-writer-firebug/test-grouped-logging.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-log-writer-firebug/test-large-message.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-log-writer-firebug/test-logging.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/application/views/scripts/zend-wildfire-plugin-firephp/test-groups.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/public/.htaccess -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/public/Boot/Zend-Db-Profiler-Firebug/TestDocExample.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/public/Boot/Zend-Log-Writer-Firebug/TestDocExample.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demos/Zend/Wildfire/public/index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/TestConfiguration.php.dist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/TestHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Acl/AclTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Acl/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Acl/_files/AssertionZF7973.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Acl/_files/ExtendedAclZF2234.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Acl/_files/MockAssertion.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Acl/_files/UseCase1/Acl.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Acl/_files/UseCase1/BlogPost.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Acl/_files/UseCase1/User.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Acl/_files/UseCase1/UserIsBlogPostOwnerAssertion.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/AllTests/StreamWrapper/PhpInput.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Adobe/IntrospectorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Adobe/TestAsset/ParameterHints.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Adobe/_files/ZendAmfAdobeIntrospectorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Adobe/_files/ZendAmfAdobeIntrospectorTestType.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/AuthTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Contact.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/ContactVO.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/bytearray.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/longstring.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/arrayAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/bogusTypedObjectAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/boolFalseAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/boolFalseAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/boolTrueAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/boolTrueAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/byteArrayAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/credentialsheaderAmf0.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/dateAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/dateAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/intAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/largeIntAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/mixedArrayAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/nullAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/numberAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/numberAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/objectAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/objectFirstParamRequest.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/referenceAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/stringAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/stringAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/typedObjectAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/undefAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/undefinedAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/xmlAmf0Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Request/mock/xmlAmf3Request.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/RequestTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/ResourceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Resources/StreamContext.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/HttpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/arrayAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/arrayAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/boolFalseAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/boolFalseAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/boolTrueAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/boolTrueAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/classMapAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/dateAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/dateAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/domdocumentAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/intAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/largeIntAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/nestedArrayAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/nullAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/numberAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/numberAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/objectAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/referenceObjectAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/sparseArrayAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/stringAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/stringAmf3Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/stringKeyArrayAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Response/mock/typedObjectAmf0Response.bin -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/ResponseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/ServerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/ServiceA.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/ServiceB.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/ServiceC.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/TypeLoaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Util/BinaryStreamTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Value/ArrayCollectionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Value/MessageBodyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/Value/MessageHeaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/_files/acl.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/_files/services/My/ServiceA.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/_files/services/ServiceC.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/_files/testdata -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/_files/zf-6130/Request_RawData.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/_files/zf-6130/Response_withNoStrongType.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Amf/_files/zf-6130/services/EmployeeService.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/ApplicationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Bootstrap/BootstrapAbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Bootstrap/BootstrapTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Module/AutoloaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Module/BootstrapTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/CacheManagerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/DbTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/DojoTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/FrontcontrollerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/LayoutTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/LocaleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/LogTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/MailTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/ModulesTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/MultidbTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/NavigationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/ResourceAbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/RouterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/SessionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/TestAsset/ViewRenderer.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/TranslateTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/UseragentTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/ViewTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/_files/ZfAppBootstrapCustomView.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/Resource/mailTestCAsE.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/BootstrapBaseCircularDependency.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/Zf-6719-1.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/Zf-6719-2.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/Zf7696Bootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/ZfAppBadBootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/ZfAppBootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/ZfAppNoBootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/ZfModuleBootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/appconfig.inc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/appconfig.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/appconfig.ini.dist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/appconfig.json -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/appconfig.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/appconfig.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/appconfig.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/appconfig.yml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/bar/Bootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/bar/controllers/.placeholder -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/baz/controllers/.placeholder -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/default/Bootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/foo-bar/Bootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/foo/Bootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/foo/controllers/.placeholder -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/zfappbootstrap/controllers/ErrorController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/modules/zfappbootstrap/controllers/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/more_modules/bat/Bootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/more_modules/bat/controllers/.placeholder -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/more_modules/foobaz/controllers/.placeholder -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/resources/Autoloaded.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/resources/Baz.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/resources/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/resources/Foobar.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/zf-6679-1.inc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Application/_files/zf-6679-2.inc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/DbTable/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/DbTable/BasicSqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/DbTable/BasicSqliteTest/SkipTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Digest/_files/.htdigest.1 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/DigestTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/AuthTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/ObjectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/ProxyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/Resolver/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/Resolver/FileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/_files/htbasic.1 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Http/_files/htdigest.3 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Ldap/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Ldap/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/Ldap/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/OpenId/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/OpenId/OpenIdTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/OpenId/ResponseHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Auth/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/AuthTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/FactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/Code128Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/Code25Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/Code25interleavedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/Code39Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/Ean13Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/Ean2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/Ean5Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/Ean8Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/ErrorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/IdentcodeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/Itf14Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/LeitcodeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/PlanetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/PostnetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/RoyalmailTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/UpcaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/UpceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/BarcodeNamespace.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/BarcodeNamespaceWithoutExtendingObjectAbstract.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/BarcodeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code128Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code128_HI345678_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code128_HI345678_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code128_HI345678_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code128_HI345678_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code128_HI345678_stretchtext_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code128_HI345678_stretchtext_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code25_0123456789_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code25_0123456789_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code25_0123456789_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code25_0123456789_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code25_0123456789_stretchtext_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code25_0123456789_stretchtext_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code39_0123456789_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code39_0123456789_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code39_0123456789_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code39_0123456789_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code39_0123456789_stretchtext_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Code39_0123456789_stretchtext_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean13_000123456789_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean13_000123456789_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean13_000123456789_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean13_000123456789_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean2_43_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean2_43_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean2_43_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean2_43_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean5_45678_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean5_45678_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean5_45678_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean5_45678_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean8_123456_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean8_123456_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean8_123456_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Ean8_123456_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Error_errortext_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Identcode_00123456789_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Identcode_00123456789_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Identcode_00123456789_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Identcode_00123456789_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Int25_0123456789_bearerbar_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Int25_0123456789_bearerbar_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Int25_0123456789_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Int25_0123456789_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Int25_0123456789_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Int25_0123456789_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Int25_0123456789_stretchtext_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Int25_0123456789_stretchtext_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Itf14_0000123456789_bearerbar_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Itf14_0000123456789_bearerbar_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Itf14_0000123456789_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Itf14_0000123456789_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Itf14_0000123456789_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Itf14_0000123456789_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Itf14_0000123456789_stretchtext_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Itf14_0000123456789_stretchtext_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Leitcode_0000123456789_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Leitcode_0000123456789_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Leitcode_0000123456789_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Leitcode_0000123456789_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Planet_012345_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Planet_012345_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Planet_012345_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Planet_012345_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Postnet_012345_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Postnet_012345_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Postnet_012345_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Postnet_012345_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Royalmail_012345_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Royalmail_012345_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Royalmail_012345_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Royalmail_012345_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Upca_00123456789_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Upca_00123456789_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Upca_00123456789_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Upca_00123456789_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Upce_1234567_border_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Upce_1234567_border_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Upce_1234567_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_files/Upce_1234567_oriented_instructions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_fonts/COPYRIGHT.TXT -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_fonts/README.TXT -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_fonts/RELEASENOTES.TXT -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Object/_fonts/Vera.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Renderer/ImageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Renderer/PdfTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Renderer/SvgTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Renderer/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Renderer/_files/RendererNamespace.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Barcode/Renderer/_files/RendererNamespaceWithoutExtendingRendererAbstract.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/ApcBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/ClassFrontendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/CommonBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/CommonExtendedBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/CoreTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/FactoryException.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/FactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/FileBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/FileFrontendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/FunctionFrontendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/LibmemcachedBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/ManagerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/MemcachedBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/OutputFrontendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/PageFrontendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/SkipTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/SqliteBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/StaticBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/TwoLevelsBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/WinCacheBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/XcacheBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/ZendPlatformBackendTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/ZendServerDiskTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cache/ZendServerShMemTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Captcha/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Captcha/DumbTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Captcha/FigletTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Captcha/ImageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Captcha/ReCaptchaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/DocumentService/Adapter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/DocumentService/Adapter/SimpleDbTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/DocumentService/Adapter/WindowsAzureTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/DocumentService/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/DocumentService/FactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/DocumentService/TestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/Ec2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/RackspaceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testCreateInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testCreateInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testDeployInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testDeployInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testDestroyInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testDestroyInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testImagesInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testImagesInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testListInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testListInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testMonitorInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testMonitorInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testRebootInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testRebootInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testStartInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testStartInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testStopInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testStopInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testZonesInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/Ec2Test_testZonesInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testAuthenticate.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testCreateInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testCreateInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testDeployInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testDeployInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testDestroyInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testDestroyInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testImagesInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testImagesInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testListInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testListInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testMonitorInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testMonitorInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testRebootInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testRebootInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testStartInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testStartInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testStopInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testStopInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testZonesInstance.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/Adapter/_files/RackspaceTest_testZonesInstance.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/FactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/Infrastructure/TestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/Adapter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/Adapter/SqsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/Adapter/WindowsAzureTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/Adapter/ZendQueueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/FactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/TestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/_files/config/sqs.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/_files/config/windowsazure.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/QueueService/_files/config/zendqueue.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/Adapter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/Adapter/FileSystemTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/Adapter/NirvanixTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/Adapter/RackspaceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/Adapter/S3Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/Adapter/WindowsAzureTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/FactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/TestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/_files/config/filesystem.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/_files/config/nirvanix.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/_files/config/s3.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/_files/config/windowsazure.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Cloud/StorageService/_files/data/dummy_data.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/ClassTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/Docblock/Tag/ParamTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/Docblock/Tag/ReturnTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/Docblock/TagTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/DocblockTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/FileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/MethodTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/ParameterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/Property/DefaultValueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/PropertyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/_files/ClassAndInterfaces.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/_files/TestClassWithCodeInMethod.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/_files/TestClassWithManyProperties.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/_files/TestSampleSingleClass.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/_files/zf-11703.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CodeGenerator/Php/_files/zf-11703_1.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/IniTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/JsonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/ArrayTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/IniTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/JsonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/XmlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/YamlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/files/allsections-pretty.json -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/files/allsections.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/files/allsections.json -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/files/allsections.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/Writer/files/allsections.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/XmlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/YamlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/allsections.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/allsections.json -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/allsections.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/allsections.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/array.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/array.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/badindentation.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/booleans.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/circular.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/circular.json -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/circular.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/circular.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/config.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/config.json -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/config.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/config.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/constants.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/indentedcomments.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/inlinecomments.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/invalid.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/invalid.json -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/invalid.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/invalid.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/listbooleans.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/listconstants.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/multipleinheritance.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/multipleinheritance.json -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/nosections.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/nosections.json -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/onetoplevelstring.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/separator.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/shortparamsone.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/shortparamstwo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/toplevelstring.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/zf11934.yaml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/zf2843.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/zf5800.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/zf6508.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Config/_files/zf8159.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ConfigTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Console/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Console/GetoptTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/ActionStackTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/AjaxContextTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/AutoCompleteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/CacheTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/ContextSwitchTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/FlashMessengerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/JsonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/NamespaceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/RedirectorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/UrlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/Helper/ViewRendererTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/HelperBroker/PriorityStackTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Action/HelperBrokerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/ActionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Dispatcher/StandardTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/FrontTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Plugin/ActionStackTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Plugin/BrokerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Plugin/ErrorHandlerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Plugin/PutHandlerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Request/Apache404Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Request/HttpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Request/HttpTestCaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Request/SimpleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Response/HttpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Response/HttpTestCaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Router/RewriteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Router/Route/ChainTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Router/Route/HostnameTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Router/Route/ModuleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Router/Route/RegexTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Router/Route/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/Router/RouteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/Admin/BazController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/Admin/FooBarController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/Admin/FooController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/BazController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/EmptyController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/FooBarController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/FooController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/HelperBrokerController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/HelperFlashMessengerController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/Helpers/NamespacedHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/Helpers/TestHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/Helpers/Url.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/ManuallyIncludedControllers.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/ObController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/ViewController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/controllers/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/scripts/index/test.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/scripts/test.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/scripts/test/foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/baz-bat/controllers/FooController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/controllers/Admin/HelperController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/views/helpers/SampleZfHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/default/views/scripts/admin/helper/render.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/controllers/Admin/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/controllers/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/views/helpers/FooUseHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/foo/views/scripts/admin/index/use-helper.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/routes-root.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/_files/routes.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts/custom/renderScript.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts/foo-bar/baz-bat.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts/ob.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts/site.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts/view/index.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Controller/views/scripts/view/name.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/DiffieHellmanTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/HmacTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/Math/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/Math/BigInteger/BcmathTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/Math/BigInteger/GmpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/MathTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/Rsa/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/Rsa/RsaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/Rsa/_files/test.cert -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Crypt/Rsa/_files/test.pem -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Currency/ExchangeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Currency/Service.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/CurrencyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Date/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Date/DateObjectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/DateTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Db2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/MysqliTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Pdo/IbmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Pdo/MssqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Pdo/MysqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Pdo/OciTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Pdo/PgsqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Pdo/SqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Pdo/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/SkipTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/SqlsrvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/Static.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/Db2Statement.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/MyCompany1/Db/Adapter.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/MyCompany1/Dbadapter.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/MyCompany1/IsCaseSpecific.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/Mycompany2/Dbadapter.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/MysqliStatement.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/OracleStatement.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Test/PdoStatement.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Adapter/_files/Testnamespace/Static.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/Db2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/FirebugTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/MysqliTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/Pdo/IbmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/Pdo/MssqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/Pdo/MysqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/Pdo/OciTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/Pdo/PgsqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/Pdo/SqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/ProfilerCustom.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/SqlsrvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Profiler/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/Db2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/MysqliTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/OdbcTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/Pdo/IbmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/Pdo/MssqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/Pdo/MysqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/Pdo/OciTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/Pdo/PgsqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/Pdo/SqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/SqlsrvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Select/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/SkipTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/Db2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/MysqliTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/OdbcTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/Pdo/IbmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/Pdo/MssqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/Pdo/MysqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/Pdo/OciTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/Pdo/PgsqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/Pdo/SqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/Pdo/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/SqlsrvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/Static.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Statement/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Db2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/MysqliTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/OdbcTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Pdo/IbmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Pdo/MssqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Pdo/MysqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Pdo/OciTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Pdo/PgsqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Pdo/SqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/Db2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/MysqliTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/OdbcTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/Pdo/IbmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/Pdo/MssqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/Pdo/MysqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/Pdo/OciTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/Pdo/PgsqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/Pdo/SqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/SqlsrvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Relationships/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/Db2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/MysqliTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/OdbcTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/Pdo/IbmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/Pdo/MssqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/Pdo/MysqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/Pdo/OciTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/Pdo/PgsqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/Pdo/SqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/SqlsrvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Row/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/Db2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/MysqliTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/OdbcTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/Pdo/IbmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/Pdo/MssqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/Pdo/MysqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/Pdo/OciTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/Pdo/PgsqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/Pdo/SqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/SqlsrvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Rowset/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/Db2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/MysqliTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/OdbcTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/Pdo/IbmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/Pdo/MssqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/Pdo/MysqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/Pdo/OciTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/Pdo/PgsqlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/Pdo/SqliteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/SqlsrvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/Select/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/SqlsrvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/TestCommon.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/TestSetup.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/Row/TestMockRow.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/Row/TestMyRow.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/Row/TestStandaloneRow.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/Row/TestTableRow.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/Rowset/TestMyRowset.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableAccounts.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableAccountsCustom.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableBugs.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableBugsCustom.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableBugsProducts.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableBugsProductsCustom.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableCascadeRecursive.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableProducts.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableProductsCustom.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/My/ZendDbTable/TableSpecial.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestSetup.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Common.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Db2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Mysqli.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Oracle.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Pdo/Common.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Pdo/Ibm.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Pdo/Mssql.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Pdo/Mysql.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Pdo/Oci.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Pdo/Pgsql.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Pdo/Sqlite.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Sqlsrv.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Db/TestUtil/Static.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/DebugTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/BuildLayerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/DataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/DojoTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/AccordionContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/AccordionPaneTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/BorderContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/DijitContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/DijitElementTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/DijitFormTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/SplitContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/StackContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Decorator/TabContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/ButtonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/CheckBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/ComboBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/CurrencyTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/DateTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/DijitTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/EditorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/FilteringSelectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/HorizontalSliderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/NumberSpinnerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/NumberTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/PasswordTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/RadioButtonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/SimpleTextareaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/SubmitButtonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/TextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/TextareaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/TimeTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/ValidationTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/VerticalSliderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/Element/_files/locale/array.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/FormTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/Form/SubFormTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/AccordionContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/AccordionPaneTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/BorderContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/ButtonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/CheckBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/ComboBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/ContentPaneTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/CurrencyTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/CustomDijitTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/DateTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/DojoTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/EditorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/FilteringSelectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/FormTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/HorizontalSliderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/NumberSpinnerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/NumberTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/PasswordTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/RadioButtonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/SimpleTextareaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/SplitContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/StackContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/SubmitButtonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/TabContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/TextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/TextareaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/TimeTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/ValidationTextBoxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/View/Helper/VerticalSliderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/_files/BuildLayer.js -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/_files/BuildLayerJavascript.js -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/_files/BuildLayerOnLoad.js -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/_files/BuildProfile.js -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dojo/_files/BuildProfileWithDependencies.js -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dom/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dom/Query/Css2XpathTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dom/Query/ResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dom/QueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dom/_files/bad-sample.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Dom/_files/sample.xhtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/EventManagerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/FilterChainTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/GlobalEventManagerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/StaticEventManagerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/StaticIntegrationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/TestAsset/ClassWithEvents.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/TestAsset/Functor.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/TestAsset/MockAggregate.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/EventManager/TestAsset/StaticEventsMock.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ExceptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/ArrayAccessTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/AtomEntryOnlyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/AtomPublishingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/CountTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/ElementTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Entry/RssTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/ImportTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/IteratorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/Model/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/Model/SubscriptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/PublisherTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/PubsubhubbubTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/Subscriber/CallbackTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/Subscriber/_files/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/SubscriberHttpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/SubscriberTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/_files/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/_files/testRawPostData.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/AtomStandaloneEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/AtomTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/CommonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/RssTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/author/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/author/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/baseurl/plain/atom10-entrylevel.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/baseurl/plain/atom10-feedlevel.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain/dc10/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain/dc11/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain/none/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/category/plain/none/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentcount/plain/atom10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentcount/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentcount/plain/thread10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentlink/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentlink/plain/atom10-relative.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/commentlink/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/content/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/content/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/content/plain/atom10_Html.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/content/plain/atom10_HtmlCdata.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/content/plain/atom10_Xhtml.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/datecreated/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/datecreated/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/datemodified/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/datemodified/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/description/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/description/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/enclosure/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/enclosure/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/id/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/id/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/link/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/link/plain/atom10-norel.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/link/plain/atom10-relative.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/link/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/links/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/links/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/title/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Atom/title/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/author/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/category/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/commentlink/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/content/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/content/atom10_Html.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/content/atom10_HtmlCdata.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/content/atom10_Xhtml.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/datecreated/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/datemodified/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/description/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/enclosure/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/id/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/link/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/links/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/title/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Common/atom.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Common/atom_noencodingdefined.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Common/atom_rewrittenbydom.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Common/rss.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/author/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/category/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/atom10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/slash10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/slash10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/slash10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/slash10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/slash10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/slash10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/slash10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/thread10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/thread10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/thread10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/thread10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/thread10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/thread10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentcount/plain/thread10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/atom10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/thread10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/thread10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/thread10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/thread10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/thread10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/thread10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/thread10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/wellformedweb/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/wellformedweb/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/wellformedweb/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/wellformedweb/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/wellformedweb/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/wellformedweb/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentfeedlink/plain/wellformedweb/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/atom10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/commentlink/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/description/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/description/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/description/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/description/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/description/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/description/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/description/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/content/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/atom10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/rss20-zf-7908.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/datemodified/plain/rss20_en_US.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/description/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/enclosure/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/enclosure/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/title/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/title/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/title/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/title/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/title/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/title/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/id/plain/title/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/link/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/links/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/Rss/title/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/AtomSourceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/AtomTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/CommonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/RssTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/author/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/author/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain/dc10/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain/dc11/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain/none/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/category/plain/none/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/copyright/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/copyright/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/datecreated/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/datecreated/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/datemodified/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/datemodified/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/description/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/description/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/feedlink/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/feedlink/plain/atom10-relative.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/feedlink/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/feedlink/plain/atom10_NoFeedLink.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/generator/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/generator/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/hubs/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/hubs/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/icon/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/icon/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/icon/plain/none/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/icon/plain/none/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/id/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/id/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/image/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/image/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/image/plain/none/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/image/plain/none/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/language/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/language/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/link/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/link/plain/atom10-norel.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/link/plain/atom10-relative.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/link/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/title/plain/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Atom/title/plain/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/author/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/category/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/copyright/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/datecreated/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/datemodified/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/description/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/feedlink/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/generator/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/hubs/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/id/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/language/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/link/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/AtomSource/title/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Common/atom.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Common/atom_noencodingdefined.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Common/atom_rewrittenbydom.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Common/rss.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/atom10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/author/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/category/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/copyright/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/atom10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/datemodified/plain/rss20_en_US.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/description/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/feedlink/plain/rss20_NoFeedLink.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/generator/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/atom10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/hubs/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/image/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/rdf/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/language/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/lastbuilddate/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/lastbuilddate/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/link/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/atom10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/atom10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/atom10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/atom10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/atom10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/atom10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/atom10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc10/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc10/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc10/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc10/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc10/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc10/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc10/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc11/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc11/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc11/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc11/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc11/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc11/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/dc11/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/none/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/none/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/none/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/none/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/none/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/none/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/none/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Feed/_files/Rss/title/plain/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/H-OnlineComAtom10Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/LautDeRdfTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/PodcastRss2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/WordpressAtom10Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/WordpressRss2DcAtomTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/_files/h-online.com-atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/_files/laut.de-rdf.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/_files/podcast.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/_files/wordpress-atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Integration/_files/wordpress-rss2-dc-atom.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/My/Extension/JungleBooks/Entry.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/My/Extension/JungleBooks/Feed.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/atom03.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/rss090.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/rss091.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/rss092.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/rss093.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/rss094.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/rss10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/rss20.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/xxe-atom10.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/_files/Reader/xxe-info.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/ReaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Writer/DeletedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Writer/EntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Extension/ITunes/EntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Extension/ITunes/FeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Writer/FeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Renderer/Entry/AtomTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Renderer/Entry/RssTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Renderer/Feed/AtomTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/Writer/Renderer/Feed/RssTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomHOnline.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomPublishingTest-before-update.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomPublishingTest-created-entry.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomPublishingTest-expected-update.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomPublishingTest-updated-entry.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomTestGoogle.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomTestMozillazine.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomTestOReilly.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomTestPlanetPHP.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomTestSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomTestSample2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomTestSample3.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/AtomTestSample4.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/RssTest091Sample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/RssTest092Sample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/RssTest100Sample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/RssTest100Sample2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/RssTest200Sample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/RssTestCNN.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/RssTestHarvardLaw.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/RssTestPlanetPHP.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/RssTestSlashdot.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/TestAtomFeed.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/TestAtomFeedEntryOnly.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/TestAtomFeedNamespaced.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/TestFeedEntryRssContentEncoded.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Feed/_files/htmlPage.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/ClassFileLocatorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/TestAsset/LocatorShouldFindThis.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/Transfer/Adapter/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/Transfer/Adapter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/Transfer/Adapter/HttpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/Transfer/Adapter/_files/file1.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/Transfer/Adapter/_files/file2.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/Transfer/Adapter/_files/test.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/Transfer/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/_files/locator-should-skip-this.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/File/_files/locator-should-skip-this.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/AlnumTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/AlphaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/BaseNameTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/BooleanTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/CallbackTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Compress/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Compress/Bz2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Compress/GzTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Compress/LzfTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Compress/RarTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Compress/TarTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Compress/ZipTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/CompressTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/DecompressTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/DecryptTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/DigitsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/DirTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Encrypt/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Encrypt/McryptTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Encrypt/OpensslTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/EncryptTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/File/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/File/DecryptTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/File/EncryptTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/File/LowerCaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/File/RenameTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/File/UpperCaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/HtmlEntitiesTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/InflectorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/InputTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/IntTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/LocalizedToNormalizedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/NormalizedToLocalizedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/NullTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/PregReplaceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/RealPathTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/StringToLowerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/StringToUpperTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/StringTrimTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/StripNewlinesTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/StripTagsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/CamelCaseToDashTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/CamelCaseToSeparatorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/CamelCaseToUnderscoreTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/DashToCamelCaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/DashToSeparatorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/DashToUnderscoreTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/SeparatorToCamelCaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/SeparatorToDashTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/SeparatorToSeparatorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/UnderscoreToCamelCaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/UnderscoreToDashTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/Word/UnderscoreToSeparatorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/TestNamespace/MyDigits.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/TestNamespace/StringEquals.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/_testDir2/.placeholder -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/compressed.rar -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/encryption.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/evil.zip -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/file.1 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/latin-1-dash-only.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/latin-1-text.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/privatekey.pem -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/publickey.pem -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/testfile.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/testfile2.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Filter/_files/testkey.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/FilterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/CallbackTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/DescriptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/ErrorsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/FieldsetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/FileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/FormErrorsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/FormTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/HtmlTagTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/ImageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/LabelTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/PrepareElementsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/ReCaptchaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/ViewHelperTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Decorator/ViewScriptTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/DisplayGroupTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/ButtonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/CaptchaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/CheckboxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/FileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/HashTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/HiddenTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/ImageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/MultiCheckboxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/MultiselectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/PasswordTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/RadioTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/ResetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/SelectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/SubmitTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/TextTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/TextareaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/_files/Captcha/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/_files/TransferAdapter/Bar.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/_files/TransferAdapter/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/_files/filter/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/Element/_files/validator/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/ElementTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/FormTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/SubFormTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/config/multiOptions.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/config/multiOptions.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/config/zf3213.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/config/zf3250.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/decorators/Label.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/decorators/TableRow.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/locale/array.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/views/contentWrappingDecorator.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/views/decorator.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/views/decoratorCausesReplacement.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/views/replacingDecorator.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Form/_files/views/withouthelperinattribs.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Analytics/AccountFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Analytics/AccountQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Analytics/DataFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Analytics/DataQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Analytics/_files/TestAccountFeed.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Analytics/_files/TestDataFeed.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/AuthorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/BaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/CaptchaRequiredExceptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/CategoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/ContentTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/ControlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/EntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/FeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/GeneratorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/HttpExceptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/MockBase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/UtilTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files/AuthorElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files/CategoryElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files/ContentElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files/ContentElementSample2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files/ControlElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files/EntrySample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files/EntrySampleHttp1.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files/FeedSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/App/_files/GeneratorElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/AppTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/AttendeeStatusTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/AttendeeTypeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/AuthSubTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Books/CollectionEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Books/CollectionFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Books/VolumeEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Books/VolumeFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Books/_files/VolumeEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Books/_files/VolumeFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/BooksOnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/BooksTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/AccessLevelTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/ColorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/EventEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/EventQueryExceptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/EventQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/HiddenTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/LinkTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/QuickAddTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/SelectedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/SendEventNotificationsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/TimezoneTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/WebContentTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/AccessLevelElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/ColorElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/EventEntrySample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/EventFeedCompositeSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/HiddenElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/LinkElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/ListFeedSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/QuickAddElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/SelectedElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/SendEventNotificationsElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/TestDataEventFeedSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/TimezoneElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Calendar/_files/WebContentElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/CalendarEventTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/CalendarFeedCompositeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/CalendarFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/CalendarOnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/CalendarTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/CommentsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Docs/DocumentListEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Docs/DocumentListFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Docs/QueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Docs/_files/TestDataDocumentListEntrySample.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Docs/_files/TestDataDocumentListFeedSample.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/DocsOnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/DocsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/EntryLinkTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/EntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/EventStatusTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/ExtendedPropertyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/FeedLinkTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/FeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/EmailListEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/EmailListFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/EmailListQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/EmailListRecipientEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/EmailListRecipientFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/EmailListRecipientQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/EmailListTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/ErrorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/GroupEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/GroupFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/GroupQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/LoginTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/MemberEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/MemberFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/MemberQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/NameTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/NicknameEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/NicknameFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/NicknameQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/NicknameTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/OwnerEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/OwnerFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/OwnerQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/PropertyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/QuotaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/ServiceExceptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/UserEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/UserFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/UserQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/AppsForYourDomainElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/EmailListElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/EmailListEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/EmailListFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/EmailListRecipientEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/EmailListRecipientFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/GroupEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/GroupFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/LoginElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/MemberEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/MemberFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/NameElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/NicknameElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/NicknameEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/NicknameFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/OwnerEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/OwnerFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/PropertyElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/QuotaElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/UserEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Gapps/_files/UserFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/GappsOnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/GappsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/GdataOnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/GdataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/MediaMimeStreamTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/OpenSearchItemsPerPageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/OpenSearchStartIndexTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/OpenSearchTotalResultsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/OriginalEventTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosAlbumEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosAlbumFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosAlbumQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosCommentEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosPhotoEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosPhotoFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosPhotoQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosTagEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosUserEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosUserFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/PhotosUserQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files/TestAlbumEntry.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files/TestAlbumFeed.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files/TestCommentEntry.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files/TestPhotoEntry.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files/TestPhotoFeed.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files/TestTagEntry.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files/TestUserEntry.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files/TestUserFeed.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Photos/_files/test.jpg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/PhotosOnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/QueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/RecurrenceExceptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/RecurrenceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/ReminderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/SkipTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/CellEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/CellFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/CellTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/ColCountTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/CustomTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/DocumentQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/ListEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/ListFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/ListQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/RowCountTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/SpreadsheetFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/WorksheetEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/WorksheetFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/_files/TestDataCellFeedSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/_files/TestDataListFeedSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/_files/TestDataSpreadsheetFeedSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/Spreadsheets/_files/TestDataWorksheetFeedSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/SpreadsheetsOnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/SpreadsheetsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/TestUtility/MockHttpClient.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/TransparencyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/VisibilityTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/WhenTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/WhereTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/WhoTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/ActivityEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/ActivityFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/CommentEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/CommentFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/ContactEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/ContactFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/InboxEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/InboxFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/PlaylistListEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/PlaylistListFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/PlaylistVideoEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/PlaylistVideoFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/SubscriptionEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/SubscriptionFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/UserProfileEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/VideoEntryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/VideoFeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/VideoQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/ActivityEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/ActivityFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/CommentEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/CommentFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/ContactEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/ContactFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/FormUploadTokenResponseSample.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/InboxEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/InboxEntryDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/InboxFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/InboxFeedDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/PlaylistListEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/PlaylistListEntryDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/PlaylistListFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/PlaylistListFeedDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/PlaylistListVideoEntryDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/PlaylistVideoEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/PlaylistVideoEntryDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/PlaylistVideoFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/SubscriptionEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/SubscriptionEntryDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/SubscriptionEntryDataSample_channelV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/SubscriptionEntryDataSample_favoritesV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/SubscriptionEntryDataSample_playlistV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/SubscriptionEntryDataSample_queryV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/SubscriptionFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/SubscriptionFeedDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/UserProfileEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/UserProfileEntryDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/VideoEntryDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/VideoEntryDataSamplePrivate.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/VideoEntryDataSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTube/_files/VideoFeedDataSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTubeOnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/YouTubeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/AppSample1.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/AppSample2.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/AppSample3.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/AppSample4.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/AttendeeStatusElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/AttendeeTypeElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/CommentsElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/DocsTest.csv -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/EntryLinkElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/EntrySample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/EventStatusElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/ExtendedPropertyElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/FeedLinkElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/FeedSampleV1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/FeedSampleV2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/MediaMimeStreamSample1.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/OpenSearchItemsPerPageElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/OpenSearchStartIndexElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/OpenSearchTotalResultsElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/OriginalEventElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/RecurrenceElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/RecurrenceExceptionElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/ReminderElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/RsaCert.pem -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/RsaKey.pem -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/TransparencyElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/VisibilityElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/WhenElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/WhereElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/WhoElementSample1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Gdata/_files/testImage.jpg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/CommonHttpTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/CurlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/ProxyAdapterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/SkipTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/SocketKeepaliveTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/SocketPersistentTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/SocketTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/StaticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/TestAdapterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/ZF10645-PutContentType.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/ZF2098-multibytepostdata.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/ZF4236-clientbodyretainsfieldordering.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/ZF4236-fileuploadrequest.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/ZF4238-zerolineresponse.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/ZF7038-multipartarrayrequest.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/ZF9404-doubleContentLength.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/staticFile.jpg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testCookies.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testDeleteData.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testExceptionOnReadTimeout.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testGetData.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testHeaders.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testHttpAuth.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testMultibyteChunkedResponseZF6218.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testPostData.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testPutData.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRawDeleteData.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRawPostData.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRawPutData.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRedirections.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testRelativeRedirections.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testResetParameters.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testSimpleRequests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testStreamRequest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Client/_files/testUploads.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/CookieJarTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/CookieTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Header/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/Header/SetCookieTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/ResponseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/DesktopDevice.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/Device/Browser/Features/Adapter.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/Device/Desktop.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/InvalidDevice.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/InvalidPluginLoader.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/PopulatedStorage.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/TestAsset/TestPluginLoader.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/UserAgent/AbstractDeviceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/UserAgent/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/UserAgent/Features/Adapter/BrowscapTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/UserAgent/Features/Adapter/DeviceAtlasTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/UserAgent/Features/Adapter/TeraWurflTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/UserAgentTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/body -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_302 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_302_iis -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_403_nomessage -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_404 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_500 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_chunked -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_chunked_case -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_crlf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_deflate -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_deflate_iis -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_gzip -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_leadingws -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_lfonly -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_multibyte_body -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_multiline_header -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_unknown -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_with_cookies -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/response_with_single_cookie -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/serialized_device.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/_files/var/cache/mobile/.placeholder -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Http/index.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/AssertionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/CipherTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/ProcessTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/XmlParsingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/encryptedkey.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/encryptedkey_bad_block.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/encryptedkey_missing_enc_algo.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/encryptedkey_missing_encryptionmethod.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/encryptedtoken.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/encryptedtoken2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/encryptedtoken_bad_type.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/security_token_bad_keyref.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/signedToken.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/signedToken_bad_type.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/ssl_private.cert -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/InfoCard/_files/ssl_pub.cert -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/JsonXMLTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/Server/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/Server/CacheTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/Server/ErrorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/Server/RequestTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/Server/ResponseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/Server/Smd/ServiceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/Server/SmdTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/ServerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Json/_files/ZF11356-NamespacedClass.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/JsonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/FunctionalTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/HelperTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/LayoutTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/PluginTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/MinimalCustomView.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/controllers/ZendLayoutFunctionalTestErrorController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/controllers/ZendLayoutFunctionalTestTestController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/layouts/layout.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/views/scripts/zend-layout-functional-test-error/error.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/functional-test-app/views/scripts/zend-layout-functional-test-test/index.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts-basepath/helpers/FooBar.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts-basepath/scripts/layout.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts-basepath/scripts/layout2.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts/layout.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts/plugin.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts/test/layout.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/AttributeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/BindTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/CanonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/ChangePasswordTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/ConnectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/ConverterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/CopyRenameTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/CrudTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Dn/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Dn/CreationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Dn/EscapingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Dn/ExplodingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Dn/ImplodingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Dn/MiscTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Dn/ModificationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/FilterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Ldif/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Ldif/SimpleDecoderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Ldif/SimpleEncoderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Node/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Node/AttributeIterationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Node/ChildrenIterationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Node/ChildrenTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Node/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Node/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Node/RootDseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Node/SchemaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/Node/UpdateTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/OnlineTestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/OriginalBindTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/OriginalCanonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/OriginalConnectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/OriginalOfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/SearchTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/TestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Ldap/_files/AttributeTest.input.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AutoloadDoesNotHideParseError.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AutoloadableClass.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/ResourceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/forms/ZendLoaderAutoloaderResourceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/models/Baz.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/models/ZendLoaderAutoloaderResourceMethodOverloading.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/models/ZendLoaderAutoloaderResourceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/Autoloader/_files/services/ZendLoaderAutoloaderResourceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AutoloaderFactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AutoloaderMultiVersionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/AutoloaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/ClassMapAutoloaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/MyLoader.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/MyOverloader.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/PluginLoaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/StandardAutoloaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/ClassMappedClass.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/Name_Space/Namespaced/Class.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/NamespacedClass.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/StandardAutoloader.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/TestPluginMap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/TestPlugins/Bar.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/TestPlugins/Baz.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/TestPlugins/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/TestPrefix/FallbackCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/TestPrefix/NoDuplicateAutoloadersCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/TestAsset/UnusualPrefix/PrefixedClass.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/AutoloaderClosure.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/InvalidInterfaceAutoloader.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/ParseError.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/ZendLoaderAutoloader/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/Zend_LoaderTest.phar -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/ZfTest/CacheTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/ZfTest/FormSubmit.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/Zfns/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/Zfns/Foo/Bar.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/badmap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/classmap.phar -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Loader/_files/goodmap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/LoaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Locale/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Locale/DataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Locale/FormatTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Locale/MathTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/LocaleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Filter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Filter/ChainingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Filter/MessageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Filter/PriorityTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Filter/SuppressTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Formatter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Formatter/FirebugTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Formatter/SimpleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Formatter/XmlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/LogTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/DbTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/FirebugTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/MailTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/MockTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/NullTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/StreamTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/SyslogTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/ZendMonitorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/Writer/_files/layout.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Log/_files/Zfns/Writer.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/FileTransportTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/ImapTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/InterfaceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MailTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MaildirFolderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MaildirMessageOldTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MaildirTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MaildirWritableTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MboxFolderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MboxMessageOldTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MboxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/MessageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/Pop3Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/SmtpOfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/SmtpProtocolTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/SmtpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/_files/mail.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/_files/test.maildir/maildir.tar -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/_files/test.mbox/INBOX -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mail/_files/test.mbox/subfolder/test -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Markup/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Markup/BbcodeAndHtmlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Markup/FactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Markup/ParserIntegrityTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Markup/Test/Parser/MockParser.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Markup/Test/Renderer/Html/Bar.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Markup/Test/Renderer/MockRenderer.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Markup/TextileAndHtmlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/AccelerationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/AngleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/AreaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/BinaryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/CapacitanceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/Cooking/VolumeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/Cooking/WeightTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/CurrentTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/DensityTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/EnergyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/Flow/MassTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/Flow/MoleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/Flow/VolumeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/ForceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/FrequencyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/IlluminationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/LengthTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/LightnessTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/NumberTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/PowerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/PressureTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/SpeedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/TemperatureTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/TimeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/TorqueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/Viscosity/DynamicTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/Viscosity/KinematicTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/VolumeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Measure/WeightTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Memory/AccessControllerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Memory/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Memory/LockedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Memory/MemoryManagerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Memory/MemoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Memory/MovableTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Memory/ValueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mime/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mime/MessageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mime/PartTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/MimeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/ApnsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/GcmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message/ApnsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message/GcmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message/Mpns/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message/Mpns/RawTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message/Mpns/TileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Message/Mpns/ToastTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/MpnsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Response/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/Response/GcmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Mobile/Push/certificate.pem -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/ContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/Page/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/Page/MvcTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/Page/UriTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/PageFactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/PageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/_files/My/Container.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/_files/My/InvalidPage.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/_files/My/Page.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/_files/My/SchemeHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Navigation/_files/My/UrlHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/NavigationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/ConsumerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Http/AccessTokenTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Http/RequestTokenTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Http/UserAuthorizationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Http/UtilityTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Signature/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Signature/HmacTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Signature/PlaintextTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Signature/RsaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Token/AccessTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Token/AuthorizedRequestTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/Oauth/Token/RequestTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Oauth/OauthTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenId/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenId/Consumer/Storage/FileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenId/ConsumerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenId/Extension/SregTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenId/ExtensionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenId/Provider/Storage/FileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenId/Provider/User/SessionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenId/ProviderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenId/ResponseHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/OpenIdTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter/ArrayTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter/DbSelect/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter/DbSelectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter/DbTableSelect/OracleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter/DbTableSelectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter/IteratorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/Adapter/NullTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/ScrollingStyle/AllTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/ScrollingStyle/ElasticTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/ScrollingStyle/JumpingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/ScrollingStyle/SlidingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/_files/TestTable.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/_files/Zf4207.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/_files/config.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/_files/scripts/partial.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/_files/test.sqlite -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Paginator/_files/testempty.sqlite -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/PaginatorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/ActionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/DestinationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/DrawingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/ArrayTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/BooleanTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/DictionaryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/NameTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/NullTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/NumericTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/Object/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/Object/StreamTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/ObjectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/StreamTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/String/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/String/BinaryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Element/StringTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/FactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Filter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Filter/Ascii85Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/Filter/RunLengthTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/NamedDestinationsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/ProcessingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_files/ZF-8462.pdf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_files/pdfarchiving.pdf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_files/stamp.jpg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_files/stamp.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_files/stamp.tif -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/COPYRIGHT.TXT -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/README.TXT -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/RELEASENOTES.TXT -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/Vera.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraBI.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraBd.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraIt.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraMoBI.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraMoBd.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraMoIt.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraMono.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraSe.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Pdf/_fonts/VeraSeBd.ttf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/Adapter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/Adapter/ConsoleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/Adapter/JsPullTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/Adapter/JsPushTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/Adapter/MockupStream.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ProgressBar/ProgressBarTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/ActivemqOfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/ActivemqTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/AdapterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/ArrayTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/DbTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/Iterator2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/MemcacheqTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/MessageTestClass.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/NullTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/PlatformJobQueueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Adapter/WARNING.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Custom/DbForUpdate.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Custom/Message.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Custom/Messages.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Custom/Queue.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/CustomTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/FactoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Message/IteratorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/MessageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Queue1Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Queue2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/QueueBaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/QueueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Stomp/ClientTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Queue/Stomp/FrameTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/ClassTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/Docblock/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/Docblock/Tag/ParamTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/Docblock/Tag/ReturnTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/Docblock/TagTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/DocblockTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/ExtensionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/FileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/FunctionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/MethodTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/ParameterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/PropertyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/_files/FileOfFunctions.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/_files/FunctionWithEmbeddedVariableInString.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/_files/TestSampleClass.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/_files/TestSampleInterface.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Reflection/_files/ZF9018TestClass.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/RegistryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/ClientTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/ControllerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/ResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/RouteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/ServerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnArray.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnEmptyStatus.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnFalse.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnInt.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnNestedArray.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnObject.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnString.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnTrue.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Rest/responses/returnVoid.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/AnalysisTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/DocumentTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/FSMTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/FieldTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/DictionaryLoaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/FieldInfoTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/SegmentInfoTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/SegmentMergerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/TermInfoTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/TermTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/TermsPriorityQueueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_files/mergedSegment.cfs.sample -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files/_0.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files/_1.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files/_1.sti -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files/_2.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files/_3.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files/_3.del -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files/_4.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files/deletable -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Index/_source/_files/segments -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/LuceneTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/PriorityQueueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Search23Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/SearchHighlightTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/SearchTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Storage/DirectoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Storage/FileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Storage/_files/sample_data -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample/_files/_0.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample/_files/_1.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample/_files/_2.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample/_files/_3.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample/_files/_3_1.del -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample/_files/_4.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample/_files/segments.gen -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index23Sample/_files/segments_8 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_files/_0.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_files/_1.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_files/_2.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_files/_3.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_files/_3.del -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_files/_4.cfs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_files/deletable -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_files/segments -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/_6.fdt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/_6.fdx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/_6.fnm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/_6.frq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/_6.nrm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/_6.prx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/_6.tii -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/_6.tis -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/segments.gen -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSample/_nonCompoundIndexFiles/segments_8 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/about-pear.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/authors.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/contributing.bugs.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/contributing.documentation.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/contributing.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/contributing.newpackage.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/contributing.patches.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/contributing.wishlist.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/copyright.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_indexSource/_files/core.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_openXmlDocuments/test.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_openXmlDocuments/test.pptx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_openXmlDocuments/test.xlsx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_openXmlDocuments/test2.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_openXmlDocuments/test3.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/Amf0Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/Amf3Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/IgbinaryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/JsonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/PhpCodeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/PhpSerializeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/PythonPickleSerializeProtocol0Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/PythonPickleSerializeProtocol1Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/PythonPickleUnserializeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/Adapter/WddxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/SerializerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Serializer/_files/Dummy.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/DefinitionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Method/CallbackTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Method/DefinitionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Method/ParameterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Method/PrototypeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Reflection/ClassTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Reflection/FunctionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Reflection/MethodTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Reflection/NodeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Reflection/ParameterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Reflection/PrototypeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/Reflection/ReturnValueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Server/ReflectionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/AkismetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Authentication/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Authentication/S3Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Authentication/V1Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Authentication/V2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Authentication/_files/ec2_v2_return.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Authentication/_files/sqs_v2_get_return.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/AvailabilityzonesTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/CloudWatchTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/EbsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/Ec2Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/ElasticipTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/ImageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/InstanceReservedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/InstanceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/InstanceWindowsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/KeypairTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/RegionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Ec2/SecuritygroupsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/S3/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/S3/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/S3/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/S3/StreamTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/S3/_files/testdata -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/S3/_files/testdata.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/SimpleDb/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/SimpleDb/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/SimpleDb/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Sqs/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Sqs/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/Sqs/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/_files/amazon-response-invalid.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/_files/amazon-response-valid.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/_files/mozart_result.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Amazon/_files/offers_with_names.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/AlbumDataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/ArtistTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/AudioscrobblerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/AudioscrobblerTestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/GroupTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/ProfileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/TagDataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/TrackDataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/_files/errorNoUserExists -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Audioscrobbler/_files/errorResponseStatusError -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Delicious/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Delicious/PostTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Delicious/PrivateDataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Delicious/PublicDataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Delicious/SimplePostTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Delicious/SkipTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/AllOfflineTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/AllOnlineTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/BaseUserServiceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/ConferenceCallTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/IpLocationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/LocalSearchTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineBaseUserServiceTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineClientTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineConferenceCallTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineCredentialTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineIpLocationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineLocalSearchParametersTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/OfflineSecurityTokenServerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/SecurityTokenServerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/SendSmsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/SmsValidationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/DeveloperGarden/VoiceCallTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/_files/ClientCustom.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/_files/error.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/_files/find-items-advanced.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/_files/get-search-keywords-recomendation.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/_files/histogram-aspect.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/Finding/_files/histogram-category.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Ebay/_files/Concrete.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_427883923.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_427883924.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_427883929.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_427883930.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_427884394.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_427884398.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_427884401.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_427884403.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_427887192.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic-result_428222530.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosBasic.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testGroupPoolGetPhotosExceptionGroupIdInvalid.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_427883923.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_427883924.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_427883929.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_427883930.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_427884394.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_427884398.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_427884401.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_427884403.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_427887192.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic-result_428222530.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testTagSearchBasic.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testUserSearchExceptionEmailInvalid.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Flickr/_files/testUserSearchExceptionUsernameInvalid.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/LiveDocx/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/LiveDocx/LiveDocxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/LiveDocx/MailMerge/image-01.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/LiveDocx/MailMerge/image-02.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/LiveDocx/MailMerge/phpunit-template-block-fields.doc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/LiveDocx/MailMerge/phpunit-template.docx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/LiveDocx/MailMergeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Nirvanix/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Nirvanix/ExceptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Nirvanix/FunctionalTestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Nirvanix/Namespace/BaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Nirvanix/Namespace/ImfsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Nirvanix/NirvanixTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Nirvanix/ResponseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testCopyObject.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testCopyObject.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testCreateContainer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testCreateContainer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testDeleteContainer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testDeleteContainer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testDeleteObject.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testDeleteObject.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testDeleteObject2.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testDeleteObject2.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testEnableCdnContainer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testEnableCdnContainer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetCdnContainers.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetCdnContainers.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetContainer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetContainer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetContainers.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetContainers.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetCountContainers.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetCountContainers.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetCountObjects.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetCountObjects.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetInfoAccount.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetInfoAccount.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetMetadataContainer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetMetadataContainer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetMetadataObject.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetMetadataObject.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetObject.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetObject.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetObjects.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetObjects.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetSizeContainers.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testGetSizeContainers.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testSetMetadataObject.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testSetMetadataObject.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testStoreObject.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testStoreObject.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testUpdateCdnContainer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Files/_files/testUpdateCdnContainer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/test.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testAuthentication.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testAuthentication.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testChangeBackupSchedule.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testChangeBackupSchedule.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testChangeServerName.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testChangeServerName.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testChangeServerPassword.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testChangeServerPassword.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testConfirmResizeServer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testConfirmResizeServer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testCreateImage.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testCreateImage.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testCreateServer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testCreateServer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testCreateSharedIpGroup.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testCreateSharedIpGroup.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testDeleteImage.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testDeleteImage.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testDeleteServer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testDeleteServer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testDeleteSharedIpGroup.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testDeleteSharedIpGroup.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testDisableBackupSchedule.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testDisableBackupSchedule.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetBackupSchedule.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetBackupSchedule.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetFlavor.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetFlavor.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetImage.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetImage.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetImageInfo.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetImageInfo.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetServer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetServer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetServerIp.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetServerIp.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetServerPrivateIp.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetServerPrivateIp.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetServerPublicIp.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetServerPublicIp.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetSharedIpGroup.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testGetSharedIpGroup.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testHardRebootServer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testHardRebootServer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testListFlavors.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testListFlavors.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testListImages.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testListImages.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testListServers.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testListServers.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testListSharedIpGroups.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testListSharedIpGroups.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testRebuildServer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testRebuildServer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testRechangeServerName.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testRechangeServerName.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testResizeServer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testResizeServer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testRevertResizeServer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testRevertResizeServer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testSoftRebootServer.request -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/Servers/_files/testSoftRebootServer.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/_files/testAuthenticate.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Rackspace/_files/testAuthenticateError.response -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ReCaptcha/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ReCaptcha/MailHideTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ReCaptcha/ReCaptchaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ReCaptcha/ResponseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ShortUrl/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ShortUrl/BitLyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ShortUrl/IsGdTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ShortUrl/JdemCzTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ShortUrl/MetamarkNetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/ShortUrl/TinyUrlComTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/SlideShare/_files/demo.ppt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/SlideShareTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/SqlAzure/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/SqlAzure/Management/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/SqlAzure/Management/ManagementClientTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/SqlAzure/Management/_files/management.cer -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/SqlAzure/Management/_files/management.pem -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/SqlAzure/Management/_files/management.pfx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/BaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/DecoratorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/ExceptionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/NoSoapTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/SalesUseTaxBasicTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/StrikeIronTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/USAddressVerificationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/StrikeIron/ZipCodeInfoTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/AuthorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/BlogInfoResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/CosmosResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/CosmosResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/DailyCountsResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/DailyCountsResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/GetInfoResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/KeyInfoResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/ResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/ResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/SearchResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/SearchResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TagResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TagResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TagsResultSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TagsResultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TechnoratiTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/TestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/UtilsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/WeblogTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/MISSING -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestAuthor.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestAuthorNullFields.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoErrorUrlNotWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoResult.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoResultUrlWithInvalidSchema.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogInfoSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogPostTagsError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogPostTagsErrorUrlNotWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestBlogPostTagsSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogLink.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogLinkClaim.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogWeblogClaim.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetBlogWeblogClaim2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetSiteLink.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetSiteUrlWithInvalidSchema.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetSiteWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosResultSetSiteWeblogWithMissingInboundblogs.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestCosmosSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestDailyCountsError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestDailyCountsResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestDailyCountsSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestGetInfoError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestGetInfoResult.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestGetInfoSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestKeyInfoError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestKeyInfoResult.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestKeyInfoSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestSearchResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestSearchSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTagError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTagResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTagSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTagsResultSet.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTopTagsError.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestTopTagsSuccess.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestWeblog.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Technorati/_files/TestWeblogTwoAuthors.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/TwitterSearchTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/TwitterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/account.verify_credentials.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/blocks.blocking.ids.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/blocks.blocking.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/blocks.create.twitter.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/blocks.destroy.twitter.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/blocks.exists.padraicb.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/blocks.exists.twitter.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/favorites.create.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/favorites.destroy.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/favorites.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/friendships.create.twitter.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/friendships.destroy.twitter.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/friendships.exists.twitter.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/public_timeline.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/rate_limit_status.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/statuses.destroy.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/statuses.followers.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/statuses.friends.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/statuses.friends_timeline.page.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/statuses.mentions.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/statuses.show.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/statuses.update.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/user_timeline.twitter.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Twitter/_files/users.show.twitter.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/BlobSessionHandlerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/BlobStorageSharedAccessTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/BlobStorageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/BlobStreamTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Credentials/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Credentials/SharedAccessSignatureTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Credentials/SharedKeyLiteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Credentials/SharedKeyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Diagnostics/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Diagnostics/ManagerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/DynamicTableEntityTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Management/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Management/ManagementClientTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Management/_files/PhpOnAzure.cspkg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Management/_files/ServiceConfiguration.cscfg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Management/_files/management.cer -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Management/_files/management.pem -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/Management/_files/management.pfx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/QueueStorageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/RetryPolicyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/SessionHandlerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/StorageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/TableEntityQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/TableEntityTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/TableSessionHandlerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/TableStorageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/WindowsAzure/_files/WindowsAzure.gif -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Yahoo/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Yahoo/OfflineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Service/Yahoo/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Session/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Session/README.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Session/SaveHandler/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Session/SaveHandler/DbTableTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Session/SessionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Session/SessionTestHelper.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Session/Validator/NoticeValidator.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/AutoDiscover/OnlineTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/AutoDiscoverTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/ClientTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/ServerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/TestAsset/commontypes.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/Wsdl/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/Wsdl/ArrayOfTypeComplexStrategyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/Wsdl/ArrayOfTypeSequenceStrategyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/Wsdl/CompositeStrategyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/Wsdl/DefaultComplexTypeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/WsdlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/_files/cert_file -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/_files/commontypes.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/_files/fulltests/server1.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/_files/fulltests/server2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/_files/wsdl_documentation.wsdl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/_files/wsdl_example.wsdl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Soap/schemas/wsdl.xsd -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Stdlib/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Stdlib/CallbackHandlerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Stdlib/PriorityQueueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Stdlib/SplPriorityQueueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Stdlib/TestAsset/SignalHandlers/InstanceMethod.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Stdlib/TestAsset/SignalHandlers/Invokable.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Stdlib/TestAsset/SignalHandlers/ObjectCallback.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Stdlib/TestAsset/SignalHandlers/Overloadable.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/CloudTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/Decorator/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/Decorator/HtmlCloudTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/Decorator/HtmlTagTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/_classes/CloudDummy.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/_classes/CloudDummy1.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/_classes/CloudDummy2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/Cloud/_classes/TagDummy.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/ItemListTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tag/ItemTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/DbAdapterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/DbStatementTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Constraint/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Constraint/DomQueryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/ControllerTestCaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/ConnectionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/DataSet/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/DataSet/DataSetTestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/DataSet/DbRowsetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/DataSet/DbTableDataSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/DataSet/DbTableTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/DataSet/QueryDataSetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/DataSet/QueryTableTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Integration/AbstractTestCase.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Integration/MysqlIntegrationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Integration/SqLiteIntegrationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Integration/_files/sqliteIntegrationFixture.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Metadata/GenericTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Operation/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Operation/DeleteAllTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Operation/InsertTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Operation/TruncateTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Operation/_files/insertFixture.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/Operation/_files/truncateFixture.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/SimpleTesterTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/Db/TestCaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/controllers/ErrorController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/controllers/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/controllers/ZendTestPhpUnitFooController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/controllers/ZendTestRedirectFromInitController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/controllers/ZendTestRedirectFromPreDispatchController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/plugins/RedirectFromDispatchLoopStartup.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/plugins/RedirectFromPreDispatch.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/plugins/RedirectFromRouteShutdown.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/plugins/RedirectFromRouteStartup.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/views/scripts/error/error.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/views/scripts/zend-test-php-unit-foo/bar.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/views/scripts/zend-test-php-unit-foo/baz.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/bootstrap.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/CharWrapLeftToRight.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/CharWrapRightToLeft.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/CorrectEncoding.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/GenerateDummies.sh -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/GzippedFont.gz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/InvalidFont.flf -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/NoSmush.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/NoSmushRightToLeft.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/OutputWidth50AlignRight.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/ParagraphOff.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/ParagraphOn.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/SmushDefault.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/SmushForced.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/StandardAlignCenter.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/StandardAlignLeft.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/StandardAlignRight.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/StandardRightToLeftAlignCenter.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/StandardRightToLeftAlignLeft.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/StandardRightToLeftAlignRight.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/WordWrapLeftToRight.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/Figlet/WordWrapRightToLeft.figlet -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/FigletTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/MultiByteTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Text/TableTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/TimeSyncTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Action/BaseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Action/RepositoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Action/_files/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client/Console/ArgumentParserTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client/Console/HelpSystemTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client/RequestTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client/ResponseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Loader/IncludePathLoaderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/ProviderMetadataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/RepositoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/_files/ActionOne.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/_files/ActionTwo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/_files/ManifestBadMetadata.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/_files/ManifestBadProvider.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/_files/ManifestGoodOne.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/_files/ManifestGoodTwo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/_files/ProviderOne.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Manifest/_files/ProviderTwo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Metadata/ActionMetadataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Metadata/MetadataTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/RepositoryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/SignatureTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/_files/ProviderAltName.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/_files/ProviderFullFeatured.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/_files/ProviderFullFeatured2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/_files/ProviderFullFeaturedBadSpecialties.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/_files/ProviderFullFeaturedBadSpecialties2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/_files/ProviderOne.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Provider/_files/ProviderTwo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/RegistryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/_files/EmptyClient.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/_files/EmptyLoader.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Project/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Project/Context/RegistryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Project/ProfileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Project/Provider/ControllerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Tool/Project/_files/.zfproject.xml.orig -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/ArrayTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/CsvTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/GettextTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/IniTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/QtTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/TbxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/TmxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/XliffTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/XmlTmTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed.csv -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed.tbx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed.tmx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed.ts -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed.xliff -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed.xmltm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed2.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed3.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/failed3.po -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testarray/de_AT/LC_TEST/translation-de_DE.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testarray/en_GB/LC_OTHER/translation-en_US.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testarray/ja/translation-ja.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testcsv/de_AT/LC_TEST/translation-de_DE.csv -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testcsv/en_GB/LC_OTHER/translation-en_US.csv -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testini/de_AT/LC_TEST/translation-de_DE.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testini/en_GB/LC_OTHER/translation-en_US.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testmo/de_AT/LC_TEST/translation-de_DE.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testmo/en_GB/LC_OTHER/translation-en_US.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtbx/de_AT/LC_TEST/translation-de_DE.tbx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtbx/en_GB/LC_OTHER/translation-en_US.tbx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtmx/de_AT/LC_TEST/translation-de_DE.tmx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testtmx/en_GB/LC_OTHER/translation-en_US.tmx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testts/de_AT/LC_TEST/translation-de_DE.ts -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testts/en_GB/LC_OTHER/translation-en_US.ts -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxliff/de_AT/LC_TEST/translation-de_DE.xliff -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxliff/en_GB/LC_OTHER/translation-en_US.xliff -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxmltm/de_AT/LC_TEST/translation-de_DE.xmltm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/testxmltm/en_GB/LC_OTHER/translation-en_US.xmltm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_bigendian.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.csv -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.po -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.tbx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.tmx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.ts -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.xliff -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_empty.xmltm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.csv -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.po -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.tbx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.tmx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.ts -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.xliff -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en.xmltm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.csv -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.ini -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.po -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.tbx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.tmx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.ts -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.xliff -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en2.xmltm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en3.tbx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en3.tmx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en3.ts -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en3.xliff -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en3.xmltm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_en_8375.tmx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_otherdelimiter.csv -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_otherencoding.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_otherencoding.po -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_specialchars.csv -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_withoutencoding.tbx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_withoutencoding.tmx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/Adapter/_files/translation_withoutencoding.xmltm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Translate/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/TranslateTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Uri/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Uri/HttpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Uri/_files/testVeryLongUriZF3712.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/UriTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/AbstractTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/AlnumTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/AlphaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/BarcodeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/BetweenTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/CallbackTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/CcnumTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/CreditCardTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/DateTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Db/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Db/NoRecordExistsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Db/RecordExistsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Db/_files/Db/MockHasResult.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Db/_files/Db/MockNoResult.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/DigitsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/EmailAddressTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/CountTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/Crc32Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/ExcludeExtensionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/ExcludeMimeTypeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/ExistsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/ExtensionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/FilesSizeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/HashTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/ImageSizeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/IsCompressedTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/IsImageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/Md5Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/MimeTypeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/NotExistsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/Sha1Test.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/SizeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/UploadTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/WordCountTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/_files/badpicture.jpg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/_files/magic.mime -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/_files/picture.jpg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/_files/test.zip -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/_files/testsize.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/_files/testsize2.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/_files/testsize3.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/_files/testsize4.mo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/File/_files/wordcount.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/FloatTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/GreaterThanTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/HexTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/HostnameTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/IbanTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/IdenticalTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/InArrayTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/IntTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/IpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/IsbnTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/LessThanTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/MessageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/NotEmptyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/PostCodeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/RegexTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Sitemap/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Sitemap/ChangefreqTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Sitemap/LastmodTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Sitemap/LocTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/Sitemap/PriorityTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/StringLengthTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/_files/MyBarcode1.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/_files/MyBarcode2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/_files/MyBarcode3.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/_files/MyBarcode4.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Validate/_files/MyBarcode5.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ValidateTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/VersionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/ActionTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/AttributeJsEscapingTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/BaseUrlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/CurrencyTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/CycleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/DeclareVarsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/DoctypeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FieldsetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormButtonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormCheckboxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormErrorsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormFileTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormImageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormLabelTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormMultiCheckboxTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormPasswordTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormRadioTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormResetTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormSelectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormSubmitTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormTextTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/FormTextareaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/GravatarTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HeadLinkTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HeadMetaTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HeadScriptTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HeadStyleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HeadTitleTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HtmlFlashTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HtmlListTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HtmlObjectTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HtmlPageTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/HtmlQuicktimeTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/InlineScriptTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/JsonTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/LayoutTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/BreadcrumbsTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/LinksTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/MenuTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/NavigationTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/SitemapTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/TestAbstract.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/bc/acl.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/bc/default.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/bc/linklast.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/bc/maxdepth.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/bc/partial.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/bc/separator.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/bc/translated.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/accesskey.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/acl.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/acl_role_interface.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/acl_string.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/bothdepts.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/css.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/customhtmlattribs.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/default1.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/default2.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/expandbranch.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/expandbranch_onlyactivebranch.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/indent4.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/indent8.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/maxdepth.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/mindepth.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/normalize-id-prefix-with-content.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/normalize-id-prefix-with-null.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/normalize-id-prefix-without-content.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/onlyactivebranch.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/onlyactivebranch_bothdepts.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/onlyactivebranch_maxdepth.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/onlyactivebranch_mindepth.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/onlyactivebranch_noparents.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/onlyactivebranch_np_bd.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/onlyactivebranch_np_bd2.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/partial.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/menu/translated.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/acl.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/acl2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/default1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/default2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/depth1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/depth2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/depth3.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/invalid.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/nodecl.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/serverurl1.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/expected/sitemap/serverurl2.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/helpers/Menu.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/mvc/views/bc.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/mvc/views/menu.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/navigation.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/PaginationControlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/PartialLoopTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/PartialTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Placeholder/ContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Placeholder/RegistryTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/Placeholder/StandaloneContainerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/PlaceholderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/RenderToPlaceholderTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/ServerUrlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/TinySrcTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/TranslateTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/UrlTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/controllers/ActionBarController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/controllers/ActionFooController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/action-bar/baz.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/action-foo/bar.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/action-foo/baz.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/partialActionCall.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/partialLoop.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/partialLoopCouter.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/partialLoopObject.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/partialObj.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/partialOne.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/partialThree.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/partialVars.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/controllers/BazController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/controllers/FooController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/baz/bar-one.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/baz/bar-three.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/baz/bar-two.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/foo/bar.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/foo/nest.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/foo/nested.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/partialLoop.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/foo/views/scripts/partialTwo.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/scripts/rendertoplaceholderscript.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/scripts/testPagination.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_stubs/FilterDir1/Foo.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_stubs/HelperDir1/Stub1.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_stubs/HelperDir1/StubEmpty.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_stubs/HelperDir2/Datetime.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_stubs/HelperDir2/Stub1.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_stubs/HelperDir2/Stub2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_stubs/scripts/LfiProtectionCheck.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_templates/test.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_templates/testParent.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_templates/testStrictVars.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_templates/testSubTemplate.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/View/_templates/testZf995.phtml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/ViewTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Wildfire/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Wildfire/WildfireTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/Wildfire/_files/IndexController.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/BigIntegerValueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/ClientTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/FaultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/GeneratorTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/Request/HttpTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/RequestTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/ResponseTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/Server/CacheTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/Server/FaultTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/ServerTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/TestProvider.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/ValueTest.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/_files/ZF12293-payload.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/_files/ZF12293-request.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/_files/ZF12293-response.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/XmlRpc/_files/ZF1897-response-chunked.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir1/Class1.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir1/Class1/Subclass2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir1/Class3.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir1/Class4.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir1/ClassNonexistent.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir1/Interface1.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Zend/_files/_testDir2/Class2.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/phpunit.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/resources/AllTests.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/resources/languages/AllTests.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 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth/application -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId/mvc_auth -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/OpenId -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Mobile/Push -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Mobile -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Mail/mbox/subfolder -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Mail/mbox -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Mail/maildir -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Mail -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Locale -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoBrowser -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Gdata/YouTubeVideoApp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Gdata/MyLibrary -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Gdata/BooksBrowser -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Gdata/3LeggedOAuth -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Gdata -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Feeds -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/public -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/library/CloudExplorer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/library -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/storage -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/queue -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/index -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/error -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts/document -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views/scripts -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/views -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/controllers -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application/configs -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp/application -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud/cloudexp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend/Cloud -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos/Zend -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demos -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/manual/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/manual -%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%DATADIR%%/library/Zend/XmlRpc/composer.json +%%DATADIR%%/resources/composer.json +%%DATADIR%%/resources/languages/ar/Zend_Captcha.php +%%DATADIR%%/resources/languages/ar/Zend_Validate.php +%%DATADIR%%/resources/languages/bg/Zend_Captcha.php +%%DATADIR%%/resources/languages/bg/Zend_Validate.php +%%DATADIR%%/resources/languages/ca/Zend_Captcha.php +%%DATADIR%%/resources/languages/ca/Zend_Validate.php +%%DATADIR%%/resources/languages/cs/Zend_Captcha.php +%%DATADIR%%/resources/languages/cs/Zend_Validate.php +%%DATADIR%%/resources/languages/de/Zend_Captcha.php +%%DATADIR%%/resources/languages/de/Zend_Validate.php +%%DATADIR%%/resources/languages/en/Zend_Captcha.php +%%DATADIR%%/resources/languages/en/Zend_Validate.php +%%DATADIR%%/resources/languages/es/Zend_Validate.php +%%DATADIR%%/resources/languages/fi/Zend_Validate.php +%%DATADIR%%/resources/languages/fr/Zend_Captcha.php +%%DATADIR%%/resources/languages/fr/Zend_Validate.php +%%DATADIR%%/resources/languages/hr/Zend_Validate.php +%%DATADIR%%/resources/languages/it/Zend_Captcha.php +%%DATADIR%%/resources/languages/it/Zend_Validate.php +%%DATADIR%%/resources/languages/ja/Zend_Validate.php +%%DATADIR%%/resources/languages/nl/Zend_Validate.php +%%DATADIR%%/resources/languages/no/Zend_Captcha.php +%%DATADIR%%/resources/languages/no/Zend_Validate.php +%%DATADIR%%/resources/languages/pl/Zend_Validate.php +%%DATADIR%%/resources/languages/pt_BR/Zend_Captcha.php +%%DATADIR%%/resources/languages/pt_BR/Zend_Validate.php +%%DATADIR%%/resources/languages/ru/Zend_Validate.php +%%DATADIR%%/resources/languages/se/Zend_Captcha.php +%%DATADIR%%/resources/languages/se/Zend_Validate.php +%%DATADIR%%/resources/languages/sk/Zend_Captcha.php +%%DATADIR%%/resources/languages/sk/Zend_Validate.php +%%DATADIR%%/resources/languages/sl/Zend_Captcha.php +%%DATADIR%%/resources/languages/sl/Zend_Validate.php +%%DATADIR%%/resources/languages/sr/Zend_Validate.php +%%DATADIR%%/resources/languages/tr/Zend_Captcha.php +%%DATADIR%%/resources/languages/tr/Zend_Validate.php +%%DATADIR%%/resources/languages/uk/Zend_Validate.php +%%DATADIR%%/resources/languages/zh/Zend_Captcha.php +%%DATADIR%%/resources/languages/zh/Zend_Validate.php +%%DATADIR%%/resources/languages/zh_TW/Zend_Captcha.php +%%DATADIR%%/resources/languages/zh_TW/Zend_Validate.php +@dirrm %%DATADIR%%/resources/languages/zh_TW +@dirrm %%DATADIR%%/resources/languages/zh +@dirrm %%DATADIR%%/resources/languages/uk +@dirrm %%DATADIR%%/resources/languages/tr +@dirrm %%DATADIR%%/resources/languages/sr +@dirrm %%DATADIR%%/resources/languages/sl +@dirrm %%DATADIR%%/resources/languages/sk +@dirrm %%DATADIR%%/resources/languages/se +@dirrm %%DATADIR%%/resources/languages/ru +@dirrm %%DATADIR%%/resources/languages/pt_BR +@dirrm %%DATADIR%%/resources/languages/pl +@dirrm %%DATADIR%%/resources/languages/no +@dirrm %%DATADIR%%/resources/languages/nl +@dirrm %%DATADIR%%/resources/languages/ja +@dirrm %%DATADIR%%/resources/languages/it +@dirrm %%DATADIR%%/resources/languages/hr +@dirrm %%DATADIR%%/resources/languages/fr +@dirrm %%DATADIR%%/resources/languages/fi +@dirrm %%DATADIR%%/resources/languages/es +@dirrm %%DATADIR%%/resources/languages/en +@dirrm %%DATADIR%%/resources/languages/de +@dirrm %%DATADIR%%/resources/languages/cs +@dirrm %%DATADIR%%/resources/languages/ca +@dirrm %%DATADIR%%/resources/languages/bg +@dirrm %%DATADIR%%/resources/languages/ar +@dirrm %%DATADIR%%/resources/languages +@dirrm %%DATADIR%%/resources @dirrm %%DATADIR%%/library/Zend/XmlRpc/Value +@dirrm %%DATADIR%%/library/Zend/XmlRpc/Server/Exception @dirrm %%DATADIR%%/library/Zend/XmlRpc/Server @dirrm %%DATADIR%%/library/Zend/XmlRpc/Response @dirrm %%DATADIR%%/library/Zend/XmlRpc/Request @dirrm %%DATADIR%%/library/Zend/XmlRpc/Generator +@dirrm %%DATADIR%%/library/Zend/XmlRpc/Exception +@dirrm %%DATADIR%%/library/Zend/XmlRpc/Client/Exception @dirrm %%DATADIR%%/library/Zend/XmlRpc/Client @dirrm %%DATADIR%%/library/Zend/XmlRpc -@dirrm %%DATADIR%%/library/Zend/Wildfire/Protocol -@dirrm %%DATADIR%%/library/Zend/Wildfire/Plugin/FirePhp -@dirrm %%DATADIR%%/library/Zend/Wildfire/Plugin -@dirrm %%DATADIR%%/library/Zend/Wildfire/Channel -@dirrm %%DATADIR%%/library/Zend/Wildfire -@dirrm %%DATADIR%%/library/Zend/View/Helper/Placeholder/Registry +@dirrm %%DATADIR%%/library/Zend/View/Strategy +@dirrm %%DATADIR%%/library/Zend/View/Resolver +@dirrm %%DATADIR%%/library/Zend/View/Renderer +@dirrm %%DATADIR%%/library/Zend/View/Model +@dirrm %%DATADIR%%/library/Zend/View/Helper/Service @dirrm %%DATADIR%%/library/Zend/View/Helper/Placeholder/Container @dirrm %%DATADIR%%/library/Zend/View/Helper/Placeholder -@dirrm %%DATADIR%%/library/Zend/View/Helper/Partial +@dirrm %%DATADIR%%/library/Zend/View/Helper/Navigation/Listener @dirrm %%DATADIR%%/library/Zend/View/Helper/Navigation +@dirrm %%DATADIR%%/library/Zend/View/Helper/Escaper @dirrm %%DATADIR%%/library/Zend/View/Helper +@dirrm %%DATADIR%%/library/Zend/View/Exception @dirrm %%DATADIR%%/library/Zend/View -@dirrm %%DATADIR%%/library/Zend/Validate/Sitemap -@dirrm %%DATADIR%%/library/Zend/Validate/Ldap -@dirrm %%DATADIR%%/library/Zend/Validate/Hostname -@dirrm %%DATADIR%%/library/Zend/Validate/File -@dirrm %%DATADIR%%/library/Zend/Validate/Db -@dirrm %%DATADIR%%/library/Zend/Validate/Barcode -@dirrm %%DATADIR%%/library/Zend/Validate +@dirrm %%DATADIR%%/library/Zend/Version +@dirrm %%DATADIR%%/library/Zend/Validator/Translator +@dirrm %%DATADIR%%/library/Zend/Validator/Sitemap +@dirrm %%DATADIR%%/library/Zend/Validator/Hostname +@dirrm %%DATADIR%%/library/Zend/Validator/File +@dirrm %%DATADIR%%/library/Zend/Validator/Exception +@dirrm %%DATADIR%%/library/Zend/Validator/Db +@dirrm %%DATADIR%%/library/Zend/Validator/Barcode +@dirrm %%DATADIR%%/library/Zend/Validator +@dirrm %%DATADIR%%/library/Zend/Uri/Exception @dirrm %%DATADIR%%/library/Zend/Uri -@dirrm %%DATADIR%%/library/Zend/Translate/Adapter -@dirrm %%DATADIR%%/library/Zend/Translate -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Provider -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Profile/Resource -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Profile/Iterator -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Profile/FileParser -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Profile -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Context/Zf -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Context/System -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Context/Filesystem -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Context/Content/Engine -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Context/Content -@dirrm %%DATADIR%%/library/Zend/Tool/Project/Context -@dirrm %%DATADIR%%/library/Zend/Tool/Project -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/System/Provider -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/System/Action -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/System -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Registry -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Provider -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Metadata -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Manifest -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Loader/IncludePathLoader -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Loader -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Client/Storage -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Client/Response/ContentDecorator -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Client/Response -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Client/Interactive -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Client/Console/ResponseDecorator -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Client/Console -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Client -@dirrm %%DATADIR%%/library/Zend/Tool/Framework/Action -@dirrm %%DATADIR%%/library/Zend/Tool/Framework -@dirrm %%DATADIR%%/library/Zend/Tool -@dirrm %%DATADIR%%/library/Zend/TimeSync +@dirrm %%DATADIR%%/library/Zend/Text/Table/Exception @dirrm %%DATADIR%%/library/Zend/Text/Table/Decorator @dirrm %%DATADIR%%/library/Zend/Text/Table +@dirrm %%DATADIR%%/library/Zend/Text/Figlet/Exception @dirrm %%DATADIR%%/library/Zend/Text/Figlet +@dirrm %%DATADIR%%/library/Zend/Text/Exception @dirrm %%DATADIR%%/library/Zend/Text -@dirrm %%DATADIR%%/library/Zend/Test/PHPUnit/Db/Operation -@dirrm %%DATADIR%%/library/Zend/Test/PHPUnit/Db/Metadata -@dirrm %%DATADIR%%/library/Zend/Test/PHPUnit/Db/DataSet -@dirrm %%DATADIR%%/library/Zend/Test/PHPUnit/Db -@dirrm %%DATADIR%%/library/Zend/Test/PHPUnit/Constraint +@dirrm %%DATADIR%%/library/Zend/Test/Util +@dirrm %%DATADIR%%/library/Zend/Test/PHPUnit/Controller @dirrm %%DATADIR%%/library/Zend/Test/PHPUnit @dirrm %%DATADIR%%/library/Zend/Test +@dirrm %%DATADIR%%/library/Zend/Tag/Exception +@dirrm %%DATADIR%%/library/Zend/Tag/Cloud/Decorator/Exception @dirrm %%DATADIR%%/library/Zend/Tag/Cloud/Decorator @dirrm %%DATADIR%%/library/Zend/Tag/Cloud @dirrm %%DATADIR%%/library/Zend/Tag +@dirrm %%DATADIR%%/library/Zend/Stdlib/compatibility +@dirrm %%DATADIR%%/library/Zend/Stdlib/StringWrapper +@dirrm %%DATADIR%%/library/Zend/Stdlib/Hydrator/Strategy +@dirrm %%DATADIR%%/library/Zend/Stdlib/Hydrator/Filter +@dirrm %%DATADIR%%/library/Zend/Stdlib/Hydrator/Aggregate +@dirrm %%DATADIR%%/library/Zend/Stdlib/Hydrator @dirrm %%DATADIR%%/library/Zend/Stdlib/Exception +@dirrm %%DATADIR%%/library/Zend/Stdlib/ArrayObject @dirrm %%DATADIR%%/library/Zend/Stdlib -@dirrm %%DATADIR%%/library/Zend/Soap/Wsdl/Strategy +@dirrm %%DATADIR%%/library/Zend/Soap/Wsdl/ComplexTypeStrategy @dirrm %%DATADIR%%/library/Zend/Soap/Wsdl @dirrm %%DATADIR%%/library/Zend/Soap/Server +@dirrm %%DATADIR%%/library/Zend/Soap/Exception @dirrm %%DATADIR%%/library/Zend/Soap/Client +@dirrm %%DATADIR%%/library/Zend/Soap/AutoDiscover/DiscoveryStrategy @dirrm %%DATADIR%%/library/Zend/Soap/AutoDiscover @dirrm %%DATADIR%%/library/Zend/Soap +@dirrm %%DATADIR%%/library/Zend/Session/compatibility @dirrm %%DATADIR%%/library/Zend/Session/Validator +@dirrm %%DATADIR%%/library/Zend/Session/Storage/SessionArrayStorage +@dirrm %%DATADIR%%/library/Zend/Session/Storage +@dirrm %%DATADIR%%/library/Zend/Session/Service @dirrm %%DATADIR%%/library/Zend/Session/SaveHandler +@dirrm %%DATADIR%%/library/Zend/Session/Exception +@dirrm %%DATADIR%%/library/Zend/Session/Container +@dirrm %%DATADIR%%/library/Zend/Session/Config @dirrm %%DATADIR%%/library/Zend/Session -@dirrm %%DATADIR%%/library/Zend/Service/Yahoo -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/Storage/Blob -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/Storage -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/RetryPolicy -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/Management -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/Log/Writer -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/Log/Formatter -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/Log -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/Diagnostics -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/Credentials -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/resources/WebPICmdLine -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/resources -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web/bin -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources/PhpOnAzure.Web -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/resources -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/Scaffolders -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure/CommandLine -@dirrm %%DATADIR%%/library/Zend/Service/WindowsAzure -@dirrm %%DATADIR%%/library/Zend/Service/Twitter -@dirrm %%DATADIR%%/library/Zend/Service/Technorati -@dirrm %%DATADIR%%/library/Zend/Service/StrikeIron -@dirrm %%DATADIR%%/library/Zend/Service/SqlAzure/Management -@dirrm %%DATADIR%%/library/Zend/Service/SqlAzure -@dirrm %%DATADIR%%/library/Zend/Service/SlideShare -@dirrm %%DATADIR%%/library/Zend/Service/ShortUrl -@dirrm %%DATADIR%%/library/Zend/Service/ReCaptcha/MailHide -@dirrm %%DATADIR%%/library/Zend/Service/ReCaptcha -@dirrm %%DATADIR%%/library/Zend/Service/Rackspace/Servers -@dirrm %%DATADIR%%/library/Zend/Service/Rackspace/Files -@dirrm %%DATADIR%%/library/Zend/Service/Rackspace -@dirrm %%DATADIR%%/library/Zend/Service/Nirvanix/Namespace -@dirrm %%DATADIR%%/library/Zend/Service/Nirvanix -@dirrm %%DATADIR%%/library/Zend/Service/LiveDocx -@dirrm %%DATADIR%%/library/Zend/Service/Flickr -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Set -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Search/Item -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Search -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Response -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Error/Data -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Error -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Category/Histogram -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Category -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Aspect/Histogram/Value -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Aspect/Histogram -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding/Aspect -@dirrm %%DATADIR%%/library/Zend/Service/Ebay/Finding -@dirrm %%DATADIR%%/library/Zend/Service/Ebay -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Wsdl -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/SecurityTokenServer -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/VoiceButler -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SmsValidation -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SendSms -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/SecurityTokenServer -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/LocalSearch -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/IpLocation -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/ConferenceCall -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Response/BaseUserService -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Response -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/VoiceButler -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SmsValidation -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/SendSms -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/LocalSearch -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/IpLocation -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/ConferenceCall -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Request/BaseUserService -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Request -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/LocalSearch -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/IpLocation -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/ConferenceCall -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/Client -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden/BaseUserService -@dirrm %%DATADIR%%/library/Zend/Service/DeveloperGarden -@dirrm %%DATADIR%%/library/Zend/Service/Delicious -@dirrm %%DATADIR%%/library/Zend/Service/Amazon/Sqs -@dirrm %%DATADIR%%/library/Zend/Service/Amazon/SimpleDb -@dirrm %%DATADIR%%/library/Zend/Service/Amazon/S3 -@dirrm %%DATADIR%%/library/Zend/Service/Amazon/Ec2/Instance -@dirrm %%DATADIR%%/library/Zend/Service/Amazon/Ec2 -@dirrm %%DATADIR%%/library/Zend/Service/Amazon/Authentication -@dirrm %%DATADIR%%/library/Zend/Service/Amazon -@dirrm %%DATADIR%%/library/Zend/Service -@dirrm %%DATADIR%%/library/Zend/Server/Reflection/Function +@dirrm %%DATADIR%%/library/Zend/ServiceManager/Proxy +@dirrm %%DATADIR%%/library/Zend/ServiceManager/Exception +@dirrm %%DATADIR%%/library/Zend/ServiceManager/Di +@dirrm %%DATADIR%%/library/Zend/ServiceManager +@dirrm %%DATADIR%%/library/Zend/Server/Reflection/Exception @dirrm %%DATADIR%%/library/Zend/Server/Reflection @dirrm %%DATADIR%%/library/Zend/Server/Method +@dirrm %%DATADIR%%/library/Zend/Server/Exception @dirrm %%DATADIR%%/library/Zend/Server +@dirrm %%DATADIR%%/library/Zend/Serializer/Exception @dirrm %%DATADIR%%/library/Zend/Serializer/Adapter @dirrm %%DATADIR%%/library/Zend/Serializer -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Storage/File -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Storage/Directory -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Storage -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Search/Weight -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Search/Similarity -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Search/QueryEntry -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Search/Query/Preprocessing -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Search/Query -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Search/Highlighter -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Search -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Interface -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Index/TermsStream -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Index/SegmentWriter -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Index -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Document -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Analysis/TokenFilter -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8 -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/TextNum -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common/Text -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer/Common -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Analysis/Analyzer -@dirrm %%DATADIR%%/library/Zend/Search/Lucene/Analysis -@dirrm %%DATADIR%%/library/Zend/Search/Lucene -@dirrm %%DATADIR%%/library/Zend/Search -@dirrm %%DATADIR%%/library/Zend/Rest/Server -@dirrm %%DATADIR%%/library/Zend/Rest/Client/Result -@dirrm %%DATADIR%%/library/Zend/Rest/Client -@dirrm %%DATADIR%%/library/Zend/Rest -@dirrm %%DATADIR%%/library/Zend/Reflection/Docblock/Tag -@dirrm %%DATADIR%%/library/Zend/Reflection/Docblock -@dirrm %%DATADIR%%/library/Zend/Reflection -@dirrm %%DATADIR%%/library/Zend/Queue/Stomp/IO -@dirrm %%DATADIR%%/library/Zend/Queue/Stomp/Frame -@dirrm %%DATADIR%%/library/Zend/Queue/Stomp/Client/Connection -@dirrm %%DATADIR%%/library/Zend/Queue/Stomp/Client -@dirrm %%DATADIR%%/library/Zend/Queue/Stomp/Base -@dirrm %%DATADIR%%/library/Zend/Queue/Stomp -@dirrm %%DATADIR%%/library/Zend/Queue/Message -@dirrm %%DATADIR%%/library/Zend/Queue/Adapter/Db -@dirrm %%DATADIR%%/library/Zend/Queue/Adapter -@dirrm %%DATADIR%%/library/Zend/Queue +@dirrm %%DATADIR%%/library/Zend/ProgressBar/Upload +@dirrm %%DATADIR%%/library/Zend/ProgressBar/Exception +@dirrm %%DATADIR%%/library/Zend/ProgressBar/Adapter/Exception @dirrm %%DATADIR%%/library/Zend/ProgressBar/Adapter @dirrm %%DATADIR%%/library/Zend/ProgressBar -@dirrm %%DATADIR%%/library/Zend/Pdf/Trailer -@dirrm %%DATADIR%%/library/Zend/Pdf/Resource/Image -@dirrm %%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Standard -@dirrm %%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple/Parsed -@dirrm %%DATADIR%%/library/Zend/Pdf/Resource/Font/Simple -@dirrm %%DATADIR%%/library/Zend/Pdf/Resource/Font/CidFont -@dirrm %%DATADIR%%/library/Zend/Pdf/Resource/Font -@dirrm %%DATADIR%%/library/Zend/Pdf/Resource -@dirrm %%DATADIR%%/library/Zend/Pdf/Outline -@dirrm %%DATADIR%%/library/Zend/Pdf/Filter/Compression -@dirrm %%DATADIR%%/library/Zend/Pdf/Filter -@dirrm %%DATADIR%%/library/Zend/Pdf/FileParserDataSource -@dirrm %%DATADIR%%/library/Zend/Pdf/FileParser/Image -@dirrm %%DATADIR%%/library/Zend/Pdf/FileParser/Font/OpenType -@dirrm %%DATADIR%%/library/Zend/Pdf/FileParser/Font -@dirrm %%DATADIR%%/library/Zend/Pdf/FileParser -@dirrm %%DATADIR%%/library/Zend/Pdf/ElementFactory -@dirrm %%DATADIR%%/library/Zend/Pdf/Element/String -@dirrm %%DATADIR%%/library/Zend/Pdf/Element/Reference -@dirrm %%DATADIR%%/library/Zend/Pdf/Element/Object -@dirrm %%DATADIR%%/library/Zend/Pdf/Element -@dirrm %%DATADIR%%/library/Zend/Pdf/Destination -@dirrm %%DATADIR%%/library/Zend/Pdf/Color -@dirrm %%DATADIR%%/library/Zend/Pdf/Cmap/ByteEncoding -@dirrm %%DATADIR%%/library/Zend/Pdf/Cmap -@dirrm %%DATADIR%%/library/Zend/Pdf/Canvas -@dirrm %%DATADIR%%/library/Zend/Pdf/Annotation -@dirrm %%DATADIR%%/library/Zend/Pdf/Action -@dirrm %%DATADIR%%/library/Zend/Pdf +@dirrm %%DATADIR%%/library/Zend/Permissions/Rbac/Exception +@dirrm %%DATADIR%%/library/Zend/Permissions/Rbac +@dirrm %%DATADIR%%/library/Zend/Permissions/Acl/Role +@dirrm %%DATADIR%%/library/Zend/Permissions/Acl/Resource +@dirrm %%DATADIR%%/library/Zend/Permissions/Acl/Exception +@dirrm %%DATADIR%%/library/Zend/Permissions/Acl/Assertion +@dirrm %%DATADIR%%/library/Zend/Permissions/Acl +@dirrm %%DATADIR%%/library/Zend/Permissions @dirrm %%DATADIR%%/library/Zend/Paginator/ScrollingStyle +@dirrm %%DATADIR%%/library/Zend/Paginator/Exception +@dirrm %%DATADIR%%/library/Zend/Paginator/Adapter/Service +@dirrm %%DATADIR%%/library/Zend/Paginator/Adapter/Exception @dirrm %%DATADIR%%/library/Zend/Paginator/Adapter @dirrm %%DATADIR%%/library/Zend/Paginator -@dirrm %%DATADIR%%/library/Zend/OpenId/Provider/User -@dirrm %%DATADIR%%/library/Zend/OpenId/Provider/Storage -@dirrm %%DATADIR%%/library/Zend/OpenId/Provider -@dirrm %%DATADIR%%/library/Zend/OpenId/Extension -@dirrm %%DATADIR%%/library/Zend/OpenId/Consumer/Storage -@dirrm %%DATADIR%%/library/Zend/OpenId/Consumer -@dirrm %%DATADIR%%/library/Zend/OpenId -@dirrm %%DATADIR%%/library/Zend/Oauth/Token -@dirrm %%DATADIR%%/library/Zend/Oauth/Signature -@dirrm %%DATADIR%%/library/Zend/Oauth/Http -@dirrm %%DATADIR%%/library/Zend/Oauth/Config -@dirrm %%DATADIR%%/library/Zend/Oauth +@dirrm %%DATADIR%%/library/Zend/Navigation/View +@dirrm %%DATADIR%%/library/Zend/Navigation/Service @dirrm %%DATADIR%%/library/Zend/Navigation/Page +@dirrm %%DATADIR%%/library/Zend/Navigation/Exception @dirrm %%DATADIR%%/library/Zend/Navigation -@dirrm %%DATADIR%%/library/Zend/Mobile/Push/Test -@dirrm %%DATADIR%%/library/Zend/Mobile/Push/Response -@dirrm %%DATADIR%%/library/Zend/Mobile/Push/Message/Mpns -@dirrm %%DATADIR%%/library/Zend/Mobile/Push/Message -@dirrm %%DATADIR%%/library/Zend/Mobile/Push/Exception -@dirrm %%DATADIR%%/library/Zend/Mobile/Push -@dirrm %%DATADIR%%/library/Zend/Mobile +@dirrm %%DATADIR%%/library/Zend/Mvc/View/Http +@dirrm %%DATADIR%%/library/Zend/Mvc/View/Console +@dirrm %%DATADIR%%/library/Zend/Mvc/View +@dirrm %%DATADIR%%/library/Zend/Mvc/Service +@dirrm %%DATADIR%%/library/Zend/Mvc/Router/Http +@dirrm %%DATADIR%%/library/Zend/Mvc/Router/Exception +@dirrm %%DATADIR%%/library/Zend/Mvc/Router/Console +@dirrm %%DATADIR%%/library/Zend/Mvc/Router +@dirrm %%DATADIR%%/library/Zend/Mvc/ResponseSender +@dirrm %%DATADIR%%/library/Zend/Mvc/I18n +@dirrm %%DATADIR%%/library/Zend/Mvc/Exception +@dirrm %%DATADIR%%/library/Zend/Mvc/Controller/Plugin/Service +@dirrm %%DATADIR%%/library/Zend/Mvc/Controller/Plugin +@dirrm %%DATADIR%%/library/Zend/Mvc/Controller +@dirrm %%DATADIR%%/library/Zend/Mvc +@dirrm %%DATADIR%%/library/Zend/ModuleManager/Listener/Exception +@dirrm %%DATADIR%%/library/Zend/ModuleManager/Listener +@dirrm %%DATADIR%%/library/Zend/ModuleManager/Feature +@dirrm %%DATADIR%%/library/Zend/ModuleManager/Exception +@dirrm %%DATADIR%%/library/Zend/ModuleManager +@dirrm %%DATADIR%%/library/Zend/Mime/Exception @dirrm %%DATADIR%%/library/Zend/Mime +@dirrm %%DATADIR%%/library/Zend/Memory/Exception @dirrm %%DATADIR%%/library/Zend/Memory/Container @dirrm %%DATADIR%%/library/Zend/Memory -@dirrm %%DATADIR%%/library/Zend/Measure/Viscosity -@dirrm %%DATADIR%%/library/Zend/Measure/Flow -@dirrm %%DATADIR%%/library/Zend/Measure/Cooking -@dirrm %%DATADIR%%/library/Zend/Measure -@dirrm %%DATADIR%%/library/Zend/Markup/Renderer/Html -@dirrm %%DATADIR%%/library/Zend/Markup/Renderer -@dirrm %%DATADIR%%/library/Zend/Markup/Parser -@dirrm %%DATADIR%%/library/Zend/Markup +@dirrm %%DATADIR%%/library/Zend/Math/Source +@dirrm %%DATADIR%%/library/Zend/Math/Exception +@dirrm %%DATADIR%%/library/Zend/Math/BigInteger/Exception +@dirrm %%DATADIR%%/library/Zend/Math/BigInteger/Adapter +@dirrm %%DATADIR%%/library/Zend/Math/BigInteger +@dirrm %%DATADIR%%/library/Zend/Math +@dirrm %%DATADIR%%/library/Zend/Mail/Transport/Exception @dirrm %%DATADIR%%/library/Zend/Mail/Transport @dirrm %%DATADIR%%/library/Zend/Mail/Storage/Writable +@dirrm %%DATADIR%%/library/Zend/Mail/Storage/Part/Exception +@dirrm %%DATADIR%%/library/Zend/Mail/Storage/Part +@dirrm %%DATADIR%%/library/Zend/Mail/Storage/Message @dirrm %%DATADIR%%/library/Zend/Mail/Storage/Folder +@dirrm %%DATADIR%%/library/Zend/Mail/Storage/Exception @dirrm %%DATADIR%%/library/Zend/Mail/Storage @dirrm %%DATADIR%%/library/Zend/Mail/Protocol/Smtp/Auth @dirrm %%DATADIR%%/library/Zend/Mail/Protocol/Smtp +@dirrm %%DATADIR%%/library/Zend/Mail/Protocol/Exception @dirrm %%DATADIR%%/library/Zend/Mail/Protocol -@dirrm %%DATADIR%%/library/Zend/Mail/Part -@dirrm %%DATADIR%%/library/Zend/Mail/Message +@dirrm %%DATADIR%%/library/Zend/Mail/Header/Exception +@dirrm %%DATADIR%%/library/Zend/Mail/Header +@dirrm %%DATADIR%%/library/Zend/Mail/Exception +@dirrm %%DATADIR%%/library/Zend/Mail/Address @dirrm %%DATADIR%%/library/Zend/Mail +@dirrm %%DATADIR%%/library/Zend/Log/Writer/FirePhp +@dirrm %%DATADIR%%/library/Zend/Log/Writer/ChromePhp @dirrm %%DATADIR%%/library/Zend/Log/Writer +@dirrm %%DATADIR%%/library/Zend/Log/Processor @dirrm %%DATADIR%%/library/Zend/Log/Formatter @dirrm %%DATADIR%%/library/Zend/Log/Filter +@dirrm %%DATADIR%%/library/Zend/Log/Exception @dirrm %%DATADIR%%/library/Zend/Log -@dirrm %%DATADIR%%/library/Zend/Locale/Math -@dirrm %%DATADIR%%/library/Zend/Locale/Data -@dirrm %%DATADIR%%/library/Zend/Locale -@dirrm %%DATADIR%%/library/Zend/Loader/PluginLoader @dirrm %%DATADIR%%/library/Zend/Loader/Exception -@dirrm %%DATADIR%%/library/Zend/Loader/Autoloader @dirrm %%DATADIR%%/library/Zend/Loader @dirrm %%DATADIR%%/library/Zend/Ldap/Node/Schema/ObjectClass @dirrm %%DATADIR%%/library/Zend/Ldap/Node/Schema/AttributeType @@ -11493,101 +2612,68 @@ @dirrm %%DATADIR%%/library/Zend/Ldap/Node/RootDse @dirrm %%DATADIR%%/library/Zend/Ldap/Node @dirrm %%DATADIR%%/library/Zend/Ldap/Ldif +@dirrm %%DATADIR%%/library/Zend/Ldap/Filter/Exception @dirrm %%DATADIR%%/library/Zend/Ldap/Filter +@dirrm %%DATADIR%%/library/Zend/Ldap/Exception +@dirrm %%DATADIR%%/library/Zend/Ldap/Converter/Exception @dirrm %%DATADIR%%/library/Zend/Ldap/Converter -@dirrm %%DATADIR%%/library/Zend/Ldap/Collection/Iterator @dirrm %%DATADIR%%/library/Zend/Ldap/Collection @dirrm %%DATADIR%%/library/Zend/Ldap -@dirrm %%DATADIR%%/library/Zend/Layout/Controller/Plugin -@dirrm %%DATADIR%%/library/Zend/Layout/Controller/Action/Helper -@dirrm %%DATADIR%%/library/Zend/Layout/Controller/Action -@dirrm %%DATADIR%%/library/Zend/Layout/Controller -@dirrm %%DATADIR%%/library/Zend/Layout @dirrm %%DATADIR%%/library/Zend/Json/Server/Smd @dirrm %%DATADIR%%/library/Zend/Json/Server/Response @dirrm %%DATADIR%%/library/Zend/Json/Server/Request +@dirrm %%DATADIR%%/library/Zend/Json/Server/Exception @dirrm %%DATADIR%%/library/Zend/Json/Server +@dirrm %%DATADIR%%/library/Zend/Json/Exception @dirrm %%DATADIR%%/library/Zend/Json -@dirrm %%DATADIR%%/library/Zend/InfoCard/Xml/Security/Transform -@dirrm %%DATADIR%%/library/Zend/InfoCard/Xml/Security -@dirrm %%DATADIR%%/library/Zend/InfoCard/Xml/KeyInfo -@dirrm %%DATADIR%%/library/Zend/InfoCard/Xml/EncryptedData -@dirrm %%DATADIR%%/library/Zend/InfoCard/Xml/Element -@dirrm %%DATADIR%%/library/Zend/InfoCard/Xml/Assertion -@dirrm %%DATADIR%%/library/Zend/InfoCard/Xml -@dirrm %%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric/Aes256cbc -@dirrm %%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric/Aes128cbc -@dirrm %%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric/Adapter -@dirrm %%DATADIR%%/library/Zend/InfoCard/Cipher/Symmetric -@dirrm %%DATADIR%%/library/Zend/InfoCard/Cipher/Pki/Rsa -@dirrm %%DATADIR%%/library/Zend/InfoCard/Cipher/Pki/Adapter -@dirrm %%DATADIR%%/library/Zend/InfoCard/Cipher/Pki -@dirrm %%DATADIR%%/library/Zend/InfoCard/Cipher -@dirrm %%DATADIR%%/library/Zend/InfoCard/Adapter -@dirrm %%DATADIR%%/library/Zend/InfoCard -@dirrm %%DATADIR%%/library/Zend/Http/UserAgent/Storage -@dirrm %%DATADIR%%/library/Zend/Http/UserAgent/Features/Adapter -@dirrm %%DATADIR%%/library/Zend/Http/UserAgent/Features -@dirrm %%DATADIR%%/library/Zend/Http/UserAgent +@dirrm %%DATADIR%%/library/Zend/InputFilter/Exception +@dirrm %%DATADIR%%/library/Zend/InputFilter +@dirrm %%DATADIR%%/library/Zend/I18n/View/Helper +@dirrm %%DATADIR%%/library/Zend/I18n/View +@dirrm %%DATADIR%%/library/Zend/I18n/Validator/PhoneNumber +@dirrm %%DATADIR%%/library/Zend/I18n/Validator +@dirrm %%DATADIR%%/library/Zend/I18n/Translator/Plural +@dirrm %%DATADIR%%/library/Zend/I18n/Translator/Loader +@dirrm %%DATADIR%%/library/Zend/I18n/Translator +@dirrm %%DATADIR%%/library/Zend/I18n/Filter +@dirrm %%DATADIR%%/library/Zend/I18n/Exception +@dirrm %%DATADIR%%/library/Zend/I18n @dirrm %%DATADIR%%/library/Zend/Http/Response +@dirrm %%DATADIR%%/library/Zend/Http/PhpEnvironment @dirrm %%DATADIR%%/library/Zend/Http/Header/Exception +@dirrm %%DATADIR%%/library/Zend/Http/Header/Accept/FieldValuePart +@dirrm %%DATADIR%%/library/Zend/Http/Header/Accept @dirrm %%DATADIR%%/library/Zend/Http/Header +@dirrm %%DATADIR%%/library/Zend/Http/Exception +@dirrm %%DATADIR%%/library/Zend/Http/Client/Exception +@dirrm %%DATADIR%%/library/Zend/Http/Client/Adapter/Exception @dirrm %%DATADIR%%/library/Zend/Http/Client/Adapter @dirrm %%DATADIR%%/library/Zend/Http/Client @dirrm %%DATADIR%%/library/Zend/Http -@dirrm %%DATADIR%%/library/Zend/Gdata/YouTube/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/YouTube -@dirrm %%DATADIR%%/library/Zend/Gdata/Spreadsheets/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Spreadsheets -@dirrm %%DATADIR%%/library/Zend/Gdata/Photos/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Photos -@dirrm %%DATADIR%%/library/Zend/Gdata/Media/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Media -@dirrm %%DATADIR%%/library/Zend/Gdata/Kind -@dirrm %%DATADIR%%/library/Zend/Gdata/Health/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Health -@dirrm %%DATADIR%%/library/Zend/Gdata/Geo/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Geo -@dirrm %%DATADIR%%/library/Zend/Gdata/Gbase/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Gbase -@dirrm %%DATADIR%%/library/Zend/Gdata/Gapps/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Gapps -@dirrm %%DATADIR%%/library/Zend/Gdata/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Exif/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Exif -@dirrm %%DATADIR%%/library/Zend/Gdata/DublinCore/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/DublinCore -@dirrm %%DATADIR%%/library/Zend/Gdata/Docs -@dirrm %%DATADIR%%/library/Zend/Gdata/Calendar/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Calendar -@dirrm %%DATADIR%%/library/Zend/Gdata/Books/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Books -@dirrm %%DATADIR%%/library/Zend/Gdata/App/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/App -@dirrm %%DATADIR%%/library/Zend/Gdata/Analytics/Extension -@dirrm %%DATADIR%%/library/Zend/Gdata/Analytics -@dirrm %%DATADIR%%/library/Zend/Gdata +@dirrm %%DATADIR%%/library/Zend/Form/View/Helper/File +@dirrm %%DATADIR%%/library/Zend/Form/View/Helper/Captcha +@dirrm %%DATADIR%%/library/Zend/Form/View/Helper +@dirrm %%DATADIR%%/library/Zend/Form/View +@dirrm %%DATADIR%%/library/Zend/Form/Exception @dirrm %%DATADIR%%/library/Zend/Form/Element -@dirrm %%DATADIR%%/library/Zend/Form/Decorator/Marker/File -@dirrm %%DATADIR%%/library/Zend/Form/Decorator/Marker -@dirrm %%DATADIR%%/library/Zend/Form/Decorator/Captcha -@dirrm %%DATADIR%%/library/Zend/Form/Decorator +@dirrm %%DATADIR%%/library/Zend/Form/Annotation @dirrm %%DATADIR%%/library/Zend/Form -@dirrm %%DATADIR%%/library/Zend/Filter/Word/Separator @dirrm %%DATADIR%%/library/Zend/Filter/Word @dirrm %%DATADIR%%/library/Zend/Filter/File +@dirrm %%DATADIR%%/library/Zend/Filter/Exception @dirrm %%DATADIR%%/library/Zend/Filter/Encrypt @dirrm %%DATADIR%%/library/Zend/Filter/Compress @dirrm %%DATADIR%%/library/Zend/Filter +@dirrm %%DATADIR%%/library/Zend/File/Transfer/Exception @dirrm %%DATADIR%%/library/Zend/File/Transfer/Adapter @dirrm %%DATADIR%%/library/Zend/File/Transfer +@dirrm %%DATADIR%%/library/Zend/File/Exception @dirrm %%DATADIR%%/library/Zend/File @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Feed/Atom @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Feed @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Entry/Atom @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Renderer/Entry @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Renderer -@dirrm %%DATADIR%%/library/Zend/Feed/Writer/Feed @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Extension/WellFormedWeb/Renderer @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Extension/WellFormedWeb @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Extension/Threading/Renderer @@ -11605,6 +2691,7 @@ @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Extension @dirrm %%DATADIR%%/library/Zend/Feed/Writer/Exception @dirrm %%DATADIR%%/library/Zend/Feed/Writer +@dirrm %%DATADIR%%/library/Zend/Feed/Reader/Http @dirrm %%DATADIR%%/library/Zend/Feed/Reader/Feed/Atom @dirrm %%DATADIR%%/library/Zend/Feed/Reader/Feed @dirrm %%DATADIR%%/library/Zend/Feed/Reader/Extension/WellFormedWeb @@ -11617,777 +2704,133 @@ @dirrm %%DATADIR%%/library/Zend/Feed/Reader/Extension/Content @dirrm %%DATADIR%%/library/Zend/Feed/Reader/Extension/Atom @dirrm %%DATADIR%%/library/Zend/Feed/Reader/Extension +@dirrm %%DATADIR%%/library/Zend/Feed/Reader/Exception @dirrm %%DATADIR%%/library/Zend/Feed/Reader/Entry @dirrm %%DATADIR%%/library/Zend/Feed/Reader/Collection @dirrm %%DATADIR%%/library/Zend/Feed/Reader -@dirrm %%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Subscriber -@dirrm %%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Model -@dirrm %%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Http -@dirrm %%DATADIR%%/library/Zend/Feed/Pubsubhubbub -@dirrm %%DATADIR%%/library/Zend/Feed/Entry -@dirrm %%DATADIR%%/library/Zend/Feed/Builder/Header -@dirrm %%DATADIR%%/library/Zend/Feed/Builder +@dirrm %%DATADIR%%/library/Zend/Feed/PubSubHubbub/Subscriber +@dirrm %%DATADIR%%/library/Zend/Feed/PubSubHubbub/Model +@dirrm %%DATADIR%%/library/Zend/Feed/PubSubHubbub/Exception +@dirrm %%DATADIR%%/library/Zend/Feed/PubSubHubbub +@dirrm %%DATADIR%%/library/Zend/Feed/Exception @dirrm %%DATADIR%%/library/Zend/Feed @dirrm %%DATADIR%%/library/Zend/EventManager/Filter @dirrm %%DATADIR%%/library/Zend/EventManager/Exception @dirrm %%DATADIR%%/library/Zend/EventManager -@dirrm %%DATADIR%%/library/Zend/Dom/Query +@dirrm %%DATADIR%%/library/Zend/Escaper/Exception +@dirrm %%DATADIR%%/library/Zend/Escaper +@dirrm %%DATADIR%%/library/Zend/Dom/Exception @dirrm %%DATADIR%%/library/Zend/Dom -@dirrm %%DATADIR%%/library/Zend/Dojo/View/Helper/Dojo -@dirrm %%DATADIR%%/library/Zend/Dojo/View/Helper -@dirrm %%DATADIR%%/library/Zend/Dojo/View -@dirrm %%DATADIR%%/library/Zend/Dojo/Form/Element -@dirrm %%DATADIR%%/library/Zend/Dojo/Form/Decorator -@dirrm %%DATADIR%%/library/Zend/Dojo/Form -@dirrm %%DATADIR%%/library/Zend/Dojo -@dirrm %%DATADIR%%/library/Zend/Db/Table/Select -@dirrm %%DATADIR%%/library/Zend/Db/Table/Rowset -@dirrm %%DATADIR%%/library/Zend/Db/Table/Row -@dirrm %%DATADIR%%/library/Zend/Db/Table -@dirrm %%DATADIR%%/library/Zend/Db/Statement/Sqlsrv -@dirrm %%DATADIR%%/library/Zend/Db/Statement/Pdo -@dirrm %%DATADIR%%/library/Zend/Db/Statement/Oracle -@dirrm %%DATADIR%%/library/Zend/Db/Statement/Mysqli -@dirrm %%DATADIR%%/library/Zend/Db/Statement/Db2 -@dirrm %%DATADIR%%/library/Zend/Db/Statement -@dirrm %%DATADIR%%/library/Zend/Db/Select -@dirrm %%DATADIR%%/library/Zend/Db/Profiler -@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Sqlsrv -@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Pdo/Ibm -@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Pdo -@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Oracle -@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Mysqli -@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Db2 +@dirrm %%DATADIR%%/library/Zend/Di/ServiceLocator +@dirrm %%DATADIR%%/library/Zend/Di/Exception +@dirrm %%DATADIR%%/library/Zend/Di/Display +@dirrm %%DATADIR%%/library/Zend/Di/Definition/Builder +@dirrm %%DATADIR%%/library/Zend/Di/Definition/Annotation +@dirrm %%DATADIR%%/library/Zend/Di/Definition +@dirrm %%DATADIR%%/library/Zend/Di +@dirrm %%DATADIR%%/library/Zend/Debug +@dirrm %%DATADIR%%/library/Zend/Db/TableGateway/Feature/EventFeature +@dirrm %%DATADIR%%/library/Zend/Db/TableGateway/Feature +@dirrm %%DATADIR%%/library/Zend/Db/TableGateway/Exception +@dirrm %%DATADIR%%/library/Zend/Db/TableGateway +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Predicate +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Platform/SqlServer +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Platform/Oracle +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql/Ddl +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Platform +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Exception +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Ddl/Constraint +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Ddl/Column +@dirrm %%DATADIR%%/library/Zend/Db/Sql/Ddl +@dirrm %%DATADIR%%/library/Zend/Db/Sql +@dirrm %%DATADIR%%/library/Zend/Db/RowGateway/Feature +@dirrm %%DATADIR%%/library/Zend/Db/RowGateway/Exception +@dirrm %%DATADIR%%/library/Zend/Db/RowGateway +@dirrm %%DATADIR%%/library/Zend/Db/ResultSet/Exception +@dirrm %%DATADIR%%/library/Zend/Db/ResultSet +@dirrm %%DATADIR%%/library/Zend/Db/Metadata/Source +@dirrm %%DATADIR%%/library/Zend/Db/Metadata/Object +@dirrm %%DATADIR%%/library/Zend/Db/Metadata +@dirrm %%DATADIR%%/library/Zend/Db/Exception +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Profiler +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Platform +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Exception +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver/Sqlsrv/Exception +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver/Sqlsrv +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver/Pgsql +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver/Pdo/Feature +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver/Pdo +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver/Oci8 +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver/Mysqli +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver/IbmDb2 +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver/Feature +@dirrm %%DATADIR%%/library/Zend/Db/Adapter/Driver @dirrm %%DATADIR%%/library/Zend/Db/Adapter @dirrm %%DATADIR%%/library/Zend/Db -@dirrm %%DATADIR%%/library/Zend/Date -@dirrm %%DATADIR%%/library/Zend/Currency -@dirrm %%DATADIR%%/library/Zend/Crypt/Rsa/Key -@dirrm %%DATADIR%%/library/Zend/Crypt/Rsa -@dirrm %%DATADIR%%/library/Zend/Crypt/Math/BigInteger -@dirrm %%DATADIR%%/library/Zend/Crypt/Math -@dirrm %%DATADIR%%/library/Zend/Crypt/Hmac -@dirrm %%DATADIR%%/library/Zend/Crypt/DiffieHellman +@dirrm %%DATADIR%%/library/Zend/Crypt/Symmetric/Padding +@dirrm %%DATADIR%%/library/Zend/Crypt/Symmetric/Exception +@dirrm %%DATADIR%%/library/Zend/Crypt/Symmetric +@dirrm %%DATADIR%%/library/Zend/Crypt/PublicKey/Rsa/Exception +@dirrm %%DATADIR%%/library/Zend/Crypt/PublicKey/Rsa +@dirrm %%DATADIR%%/library/Zend/Crypt/PublicKey +@dirrm %%DATADIR%%/library/Zend/Crypt/Password/Exception +@dirrm %%DATADIR%%/library/Zend/Crypt/Password +@dirrm %%DATADIR%%/library/Zend/Crypt/Key/Derivation/Exception +@dirrm %%DATADIR%%/library/Zend/Crypt/Key/Derivation +@dirrm %%DATADIR%%/library/Zend/Crypt/Key +@dirrm %%DATADIR%%/library/Zend/Crypt/Exception @dirrm %%DATADIR%%/library/Zend/Crypt -@dirrm %%DATADIR%%/library/Zend/Controller/Router/Route -@dirrm %%DATADIR%%/library/Zend/Controller/Router -@dirrm %%DATADIR%%/library/Zend/Controller/Response -@dirrm %%DATADIR%%/library/Zend/Controller/Request -@dirrm %%DATADIR%%/library/Zend/Controller/Plugin -@dirrm %%DATADIR%%/library/Zend/Controller/Dispatcher -@dirrm %%DATADIR%%/library/Zend/Controller/Action/HelperBroker -@dirrm %%DATADIR%%/library/Zend/Controller/Action/Helper/AutoComplete -@dirrm %%DATADIR%%/library/Zend/Controller/Action/Helper -@dirrm %%DATADIR%%/library/Zend/Controller/Action -@dirrm %%DATADIR%%/library/Zend/Controller -@dirrm %%DATADIR%%/library/Zend/Console/Getopt +@dirrm %%DATADIR%%/library/Zend/Console/Prompt +@dirrm %%DATADIR%%/library/Zend/Console/Exception +@dirrm %%DATADIR%%/library/Zend/Console/Color +@dirrm %%DATADIR%%/library/Zend/Console/Charset +@dirrm %%DATADIR%%/library/Zend/Console/Adapter @dirrm %%DATADIR%%/library/Zend/Console @dirrm %%DATADIR%%/library/Zend/Config/Writer +@dirrm %%DATADIR%%/library/Zend/Config/Reader +@dirrm %%DATADIR%%/library/Zend/Config/Processor +@dirrm %%DATADIR%%/library/Zend/Config/Exception @dirrm %%DATADIR%%/library/Zend/Config -@dirrm %%DATADIR%%/library/Zend/CodeGenerator/Php/Property -@dirrm %%DATADIR%%/library/Zend/CodeGenerator/Php/Parameter -@dirrm %%DATADIR%%/library/Zend/CodeGenerator/Php/Member -@dirrm %%DATADIR%%/library/Zend/CodeGenerator/Php/Docblock/Tag -@dirrm %%DATADIR%%/library/Zend/CodeGenerator/Php/Docblock -@dirrm %%DATADIR%%/library/Zend/CodeGenerator/Php -@dirrm %%DATADIR%%/library/Zend/CodeGenerator -@dirrm %%DATADIR%%/library/Zend/Cloud/StorageService/Adapter -@dirrm %%DATADIR%%/library/Zend/Cloud/StorageService -@dirrm %%DATADIR%%/library/Zend/Cloud/QueueService/Adapter -@dirrm %%DATADIR%%/library/Zend/Cloud/QueueService -@dirrm %%DATADIR%%/library/Zend/Cloud/Infrastructure/Adapter -@dirrm %%DATADIR%%/library/Zend/Cloud/Infrastructure -@dirrm %%DATADIR%%/library/Zend/Cloud/DocumentService/Adapter/WindowsAzure -@dirrm %%DATADIR%%/library/Zend/Cloud/DocumentService/Adapter/SimpleDb -@dirrm %%DATADIR%%/library/Zend/Cloud/DocumentService/Adapter -@dirrm %%DATADIR%%/library/Zend/Cloud/DocumentService -@dirrm %%DATADIR%%/library/Zend/Cloud +@dirrm %%DATADIR%%/library/Zend/Code/Scanner +@dirrm %%DATADIR%%/library/Zend/Code/Reflection/Exception +@dirrm %%DATADIR%%/library/Zend/Code/Reflection/DocBlock/Tag +@dirrm %%DATADIR%%/library/Zend/Code/Reflection/DocBlock +@dirrm %%DATADIR%%/library/Zend/Code/Reflection +@dirrm %%DATADIR%%/library/Zend/Code/Generator/Exception +@dirrm %%DATADIR%%/library/Zend/Code/Generator/DocBlock/Tag +@dirrm %%DATADIR%%/library/Zend/Code/Generator/DocBlock +@dirrm %%DATADIR%%/library/Zend/Code/Generator +@dirrm %%DATADIR%%/library/Zend/Code/Exception +@dirrm %%DATADIR%%/library/Zend/Code/Annotation/Parser +@dirrm %%DATADIR%%/library/Zend/Code/Annotation +@dirrm %%DATADIR%%/library/Zend/Code +@dirrm %%DATADIR%%/library/Zend/Captcha/Exception @dirrm %%DATADIR%%/library/Zend/Captcha -@dirrm %%DATADIR%%/library/Zend/Cache/Frontend -@dirrm %%DATADIR%%/library/Zend/Cache/Backend/ZendServer -@dirrm %%DATADIR%%/library/Zend/Cache/Backend +@dirrm %%DATADIR%%/library/Zend/Cache/Storage/Plugin +@dirrm %%DATADIR%%/library/Zend/Cache/Storage/Adapter +@dirrm %%DATADIR%%/library/Zend/Cache/Storage +@dirrm %%DATADIR%%/library/Zend/Cache/Service +@dirrm %%DATADIR%%/library/Zend/Cache/Pattern +@dirrm %%DATADIR%%/library/Zend/Cache/Exception @dirrm %%DATADIR%%/library/Zend/Cache +@dirrm %%DATADIR%%/library/Zend/Barcode/Renderer/Exception @dirrm %%DATADIR%%/library/Zend/Barcode/Renderer +@dirrm %%DATADIR%%/library/Zend/Barcode/Object/Exception @dirrm %%DATADIR%%/library/Zend/Barcode/Object +@dirrm %%DATADIR%%/library/Zend/Barcode/Exception @dirrm %%DATADIR%%/library/Zend/Barcode -@dirrm %%DATADIR%%/library/Zend/Auth/Storage -@dirrm %%DATADIR%%/library/Zend/Auth/Adapter/Http/Resolver -@dirrm %%DATADIR%%/library/Zend/Auth/Adapter/Http -@dirrm %%DATADIR%%/library/Zend/Auth/Adapter -@dirrm %%DATADIR%%/library/Zend/Auth -@dirrm %%DATADIR%%/library/Zend/Application/Resource -@dirrm %%DATADIR%%/library/Zend/Application/Module -@dirrm %%DATADIR%%/library/Zend/Application/Bootstrap -@dirrm %%DATADIR%%/library/Zend/Application -@dirrm %%DATADIR%%/library/Zend/Amf/Value/Messaging -@dirrm %%DATADIR%%/library/Zend/Amf/Value -@dirrm %%DATADIR%%/library/Zend/Amf/Util -@dirrm %%DATADIR%%/library/Zend/Amf/Server -@dirrm %%DATADIR%%/library/Zend/Amf/Response -@dirrm %%DATADIR%%/library/Zend/Amf/Request -@dirrm %%DATADIR%%/library/Zend/Amf/Parse/Resource -@dirrm %%DATADIR%%/library/Zend/Amf/Parse/Amf3 -@dirrm %%DATADIR%%/library/Zend/Amf/Parse/Amf0 -@dirrm %%DATADIR%%/library/Zend/Amf/Parse -@dirrm %%DATADIR%%/library/Zend/Amf/Auth -@dirrm %%DATADIR%%/library/Zend/Amf/Adobe -@dirrm %%DATADIR%%/library/Zend/Amf -@dirrm %%DATADIR%%/library/Zend/Acl/Role/Registry -@dirrm %%DATADIR%%/library/Zend/Acl/Role -@dirrm %%DATADIR%%/library/Zend/Acl/Resource -@dirrm %%DATADIR%%/library/Zend/Acl/Assert -@dirrm %%DATADIR%%/library/Zend/Acl +@dirrm %%DATADIR%%/library/Zend/Authentication/Validator +@dirrm %%DATADIR%%/library/Zend/Authentication/Storage +@dirrm %%DATADIR%%/library/Zend/Authentication/Exception +@dirrm %%DATADIR%%/library/Zend/Authentication/Adapter/Http/Exception +@dirrm %%DATADIR%%/library/Zend/Authentication/Adapter/Http +@dirrm %%DATADIR%%/library/Zend/Authentication/Adapter/Exception +@dirrm %%DATADIR%%/library/Zend/Authentication/Adapter/DbTable/Exception +@dirrm %%DATADIR%%/library/Zend/Authentication/Adapter/DbTable +@dirrm %%DATADIR%%/library/Zend/Authentication/Adapter +@dirrm %%DATADIR%%/library/Zend/Authentication @dirrm %%DATADIR%%/library/Zend @dirrm %%DATADIR%%/library -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery/View/Helper/JQuery -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery/View/Helper -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery/View -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery/Form/Element -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery/Form/Decorator -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery/Form -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery/Controller/Action/Helper -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery/Controller/Action -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery/Controller -@dirrm %%DATADIR%%/extras/library/ZendX/JQuery -@dirrm %%DATADIR%%/extras/library/ZendX/Db/Statement/Firebird -@dirrm %%DATADIR%%/extras/library/ZendX/Db/Statement -@dirrm %%DATADIR%%/extras/library/ZendX/Db/Adapter/Firebird -@dirrm %%DATADIR%%/extras/library/ZendX/Db/Adapter -@dirrm %%DATADIR%%/extras/library/ZendX/Db -@dirrm %%DATADIR%%/extras/library/ZendX/Console/Process -@dirrm %%DATADIR%%/extras/library/ZendX/Console -@dirrm %%DATADIR%%/extras/library/ZendX/Application/Resource -@dirrm %%DATADIR%%/extras/library/ZendX/Application -@dirrm %%DATADIR%%/extras/library/ZendX -@dirrm %%DATADIR%%/extras/library -@dirrm %%DATADIR%%/extras -@dirrm %%DATADIR%%/externals/dojo/util/shrinksafe/tests -@dirrm %%DATADIR%%/externals/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe/resources -@dirrm %%DATADIR%%/externals/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe -@dirrm %%DATADIR%%/externals/dojo/util/shrinksafe/src/org/dojotoolkit -@dirrm %%DATADIR%%/externals/dojo/util/shrinksafe/src/org -@dirrm %%DATADIR%%/externals/dojo/util/shrinksafe/src -@dirrm %%DATADIR%%/externals/dojo/util/shrinksafe -@dirrm %%DATADIR%%/externals/dojo/util/migration -@dirrm %%DATADIR%%/externals/dojo/util/doh/tests -@dirrm %%DATADIR%%/externals/dojo/util/doh/robot -@dirrm %%DATADIR%%/externals/dojo/util/doh/_sounds -@dirrm %%DATADIR%%/externals/dojo/util/doh -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/zoneinfo -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/web/WEB-INF -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/web -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/src/org/dtk -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/src/org -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/src -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/lib -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server/js -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/webbuild/server -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/webbuild -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/tests/profiles -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/tests/foo/page -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/tests/foo -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/tests/css/blue/two -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/tests/css/blue -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/tests/css -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/tests -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/profiles -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/jslib -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/cldr/lib -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/cldr/ldml -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts/cldr -@dirrm %%DATADIR%%/externals/dojo/util/buildscripts -@dirrm %%DATADIR%%/externals/dojo/util -@dirrm %%DATADIR%%/externals/dojo/dojox/xmpp/widget/templates -@dirrm %%DATADIR%%/externals/dojo/dojox/xmpp/widget -@dirrm %%DATADIR%%/externals/dojo/dojox/xmpp -@dirrm %%DATADIR%%/externals/dojo/dojox/xml -@dirrm %%DATADIR%%/externals/dojo/dojox/wire/ml -@dirrm %%DATADIR%%/externals/dojo/dojox/wire -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/rotator -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/th -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/ro -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/kk -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/it -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/he -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/es -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/el -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/de -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/da -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/nls -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/gauge -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Wizard -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/UpgradeBar -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Toaster -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Standby/images -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Standby -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/SortList -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/RollingList -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Portlet/images -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Portlet -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Pager/images -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Pager -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Loader/icons -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Loader -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/FisheyeList -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/FilePicker/images -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/FilePicker -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/DocTester -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Dialog/images -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Dialog -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/ColorPicker/images -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/ColorPicker -@dirrm %%DATADIR%%/externals/dojo/dojox/widget/Calendar -@dirrm %%DATADIR%%/externals/dojo/dojox/widget -@dirrm %%DATADIR%%/externals/dojo/dojox/validate -@dirrm %%DATADIR%%/externals/dojo/dojox/uuid -@dirrm %%DATADIR%%/externals/dojo/dojox/timing -@dirrm %%DATADIR%%/externals/dojo/dojox/testing -@dirrm %%DATADIR%%/externals/dojo/dojox/string -@dirrm %%DATADIR%%/externals/dojo/dojox/storage -@dirrm %%DATADIR%%/externals/dojo/dojox/sql -@dirrm %%DATADIR%%/externals/dojo/dojox/sketch/resources/images -@dirrm %%DATADIR%%/externals/dojo/dojox/sketch/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/sketch -@dirrm %%DATADIR%%/externals/dojo/dojox/secure -@dirrm %%DATADIR%%/externals/dojo/dojox/rpc/SMDLibrary -@dirrm %%DATADIR%%/externals/dojo/dojox/rpc -@dirrm %%DATADIR%%/externals/dojo/dojox/robot -@dirrm %%DATADIR%%/externals/dojo/dojox/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/rails -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/images -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone/compat -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/themes/iphone -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/themes/compat -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/themes/android/compat -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/themes/android -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/themes -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/build/profiles -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/build -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile/app -@dirrm %%DATADIR%%/externals/dojo/dojox/mobile -@dirrm %%DATADIR%%/externals/dojo/dojox/mdnd/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/mdnd/dropMode -@dirrm %%DATADIR%%/externals/dojo/dojox/mdnd/adapter -@dirrm %%DATADIR%%/externals/dojo/dojox/mdnd -@dirrm %%DATADIR%%/externals/dojo/dojox/math/random -@dirrm %%DATADIR%%/externals/dojo/dojox/math -@dirrm %%DATADIR%%/externals/dojo/dojox/layout/resources/icons -@dirrm %%DATADIR%%/externals/dojo/dojox/layout/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/layout/ext-dijit/layout -@dirrm %%DATADIR%%/externals/dojo/dojox/layout/ext-dijit -@dirrm %%DATADIR%%/externals/dojo/dojox/layout/dnd -@dirrm %%DATADIR%%/externals/dojo/dojox/layout -@dirrm %%DATADIR%%/externals/dojo/dojox/lang/oo -@dirrm %%DATADIR%%/externals/dojo/dojox/lang/functional -@dirrm %%DATADIR%%/externals/dojo/dojox/lang/async -@dirrm %%DATADIR%%/externals/dojo/dojox/lang/aspect -@dirrm %%DATADIR%%/externals/dojo/dojox/lang -@dirrm %%DATADIR%%/externals/dojo/dojox/jsonPath -@dirrm %%DATADIR%%/externals/dojo/dojox/json -@dirrm %%DATADIR%%/externals/dojo/dojox/jq -@dirrm %%DATADIR%%/externals/dojo/dojox/io/proxy -@dirrm %%DATADIR%%/externals/dojo/dojox/io -@dirrm %%DATADIR%%/externals/dojo/dojox/image/resources/images -@dirrm %%DATADIR%%/externals/dojo/dojox/image/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/image -@dirrm %%DATADIR%%/externals/dojo/dojox/html/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/html/ext-dojo -@dirrm %%DATADIR%%/externals/dojo/dojox/html -@dirrm %%DATADIR%%/externals/dojo/dojox/highlight/resources/pygments -@dirrm %%DATADIR%%/externals/dojo/dojox/highlight/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/highlight/languages/pygments -@dirrm %%DATADIR%%/externals/dojo/dojox/highlight/languages -@dirrm %%DATADIR%%/externals/dojo/dojox/highlight -@dirrm %%DATADIR%%/externals/dojo/dojox/help -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/resources/images -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/resources/images -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/plugins -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/th -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ro -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/kk -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/it -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/he -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/es -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/el -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/de -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/da -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/nls -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced/dnd -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/enhanced -@dirrm %%DATADIR%%/externals/dojo/dojox/grid/cells -@dirrm %%DATADIR%%/externals/dojo/dojox/grid -@dirrm %%DATADIR%%/externals/dojo/dojox/gfx3d -@dirrm %%DATADIR%%/externals/dojo/dojox/gfx/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/gfx -@dirrm %%DATADIR%%/externals/dojo/dojox/geo/charting/widget -@dirrm %%DATADIR%%/externals/dojo/dojox/geo/charting/resources/markers -@dirrm %%DATADIR%%/externals/dojo/dojox/geo/charting/resources/img -@dirrm %%DATADIR%%/externals/dojo/dojox/geo/charting/resources/data -@dirrm %%DATADIR%%/externals/dojo/dojox/geo/charting/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/geo/charting -@dirrm %%DATADIR%%/externals/dojo/dojox/geo -@dirrm %%DATADIR%%/externals/dojo/dojox/fx/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/fx/ext-dojo -@dirrm %%DATADIR%%/externals/dojo/dojox/fx -@dirrm %%DATADIR%%/externals/dojo/dojox/form/resources/images -@dirrm %%DATADIR%%/externals/dojo/dojox/form/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/th -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/ro -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/kk -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/it -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/he -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/es -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/el -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/de -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/da -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dojox/form/nls -@dirrm %%DATADIR%%/externals/dojo/dojox/form/manager -@dirrm %%DATADIR%%/externals/dojo/dojox/form -@dirrm %%DATADIR%%/externals/dojo/dojox/flash -@dirrm %%DATADIR%%/externals/dojo/dojox/encoding/digests -@dirrm %%DATADIR%%/externals/dojo/dojox/encoding/crypto -@dirrm %%DATADIR%%/externals/dojo/dojox/encoding/compression -@dirrm %%DATADIR%%/externals/dojo/dojox/encoding -@dirrm %%DATADIR%%/externals/dojo/dojox/embed/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/embed/IE -@dirrm %%DATADIR%%/externals/dojo/dojox/embed -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/tundra -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/soria -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/nihilo -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/claro -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images/blockelems -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/images -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/tundra -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/soria -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/nihilo -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons/claro -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/icons -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/emoticons -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources/css -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/th -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ro -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/kk -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/it -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/he -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/es -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/el -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/de -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/da -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins/nls -@dirrm %%DATADIR%%/externals/dojo/dojox/editor/plugins -@dirrm %%DATADIR%%/externals/dojo/dojox/editor -@dirrm %%DATADIR%%/externals/dojo/dojox/dtl/utils -@dirrm %%DATADIR%%/externals/dojo/dojox/dtl/tag -@dirrm %%DATADIR%%/externals/dojo/dojox/dtl/render -@dirrm %%DATADIR%%/externals/dojo/dojox/dtl/filter -@dirrm %%DATADIR%%/externals/dojo/dojox/dtl/ext-dojo -@dirrm %%DATADIR%%/externals/dojo/dojox/dtl/contrib -@dirrm %%DATADIR%%/externals/dojo/dojox/dtl -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/util -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/ui/dom -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/ui -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/tools/custom -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/tools -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/stencil -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/resources/images -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/plugins/tools -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/plugins/drawing -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/plugins -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/manager -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/library -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing/annotations -@dirrm %%DATADIR%%/externals/dojo/dojox/drawing -@dirrm %%DATADIR%%/externals/dojo/dojox/dnd -@dirrm %%DATADIR%%/externals/dojo/dojox/date/zoneinfo -@dirrm %%DATADIR%%/externals/dojo/dojox/date/islamic -@dirrm %%DATADIR%%/externals/dojo/dojox/date/hebrew -@dirrm %%DATADIR%%/externals/dojo/dojox/date/buddhist -@dirrm %%DATADIR%%/externals/dojo/dojox/date -@dirrm %%DATADIR%%/externals/dojo/dojox/data/util -@dirrm %%DATADIR%%/externals/dojo/dojox/data/s3 -@dirrm %%DATADIR%%/externals/dojo/dojox/data -@dirrm %%DATADIR%%/externals/dojo/dojox/css3 -@dirrm %%DATADIR%%/externals/dojo/dojox/cometd -@dirrm %%DATADIR%%/externals/dojo/dojox/color -@dirrm %%DATADIR%%/externals/dojo/dojox/collections -@dirrm %%DATADIR%%/externals/dojo/dojox/charting/widget -@dirrm %%DATADIR%%/externals/dojo/dojox/charting/themes/PlotKit -@dirrm %%DATADIR%%/externals/dojo/dojox/charting/themes/ET -@dirrm %%DATADIR%%/externals/dojo/dojox/charting/themes -@dirrm %%DATADIR%%/externals/dojo/dojox/charting/scaler -@dirrm %%DATADIR%%/externals/dojo/dojox/charting/plot3d -@dirrm %%DATADIR%%/externals/dojo/dojox/charting/plot2d -@dirrm %%DATADIR%%/externals/dojo/dojox/charting/axis2d -@dirrm %%DATADIR%%/externals/dojo/dojox/charting/action2d -@dirrm %%DATADIR%%/externals/dojo/dojox/charting -@dirrm %%DATADIR%%/externals/dojo/dojox/av/widget/resources/images -@dirrm %%DATADIR%%/externals/dojo/dojox/av/widget/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/av/widget -@dirrm %%DATADIR%%/externals/dojo/dojox/av/resources -@dirrm %%DATADIR%%/externals/dojo/dojox/av -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/templates/css -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/templates -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/th -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ro -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/kk -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/it -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/he -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/es -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/el -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/de -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/da -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget/nls -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/widget -@dirrm %%DATADIR%%/externals/dojo/dojox/atom/io -@dirrm %%DATADIR%%/externals/dojo/dojox/atom -@dirrm %%DATADIR%%/externals/dojo/dojox/analytics/profiles -@dirrm %%DATADIR%%/externals/dojo/dojox/analytics/plugins -@dirrm %%DATADIR%%/externals/dojo/dojox/analytics/logger/logs -@dirrm %%DATADIR%%/externals/dojo/dojox/analytics/logger -@dirrm %%DATADIR%%/externals/dojo/dojox/analytics -@dirrm %%DATADIR%%/externals/dojo/dojox -@dirrm %%DATADIR%%/externals/dojo/dojo/rpc -@dirrm %%DATADIR%%/externals/dojo/dojo/resources/images -@dirrm %%DATADIR%%/externals/dojo/dojo/resources -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/th -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/ro -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/kk -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/it -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/he -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/es -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/el -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/de -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/da -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dojo/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dojo/nls -@dirrm %%DATADIR%%/externals/dojo/dojo/io -@dirrm %%DATADIR%%/externals/dojo/dojo/fx -@dirrm %%DATADIR%%/externals/dojo/dojo/dnd -@dirrm %%DATADIR%%/externals/dojo/dojo/date -@dirrm %%DATADIR%%/externals/dojo/dojo/data/util -@dirrm %%DATADIR%%/externals/dojo/dojo/data/api -@dirrm %%DATADIR%%/externals/dojo/dojo/data -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/th -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/it -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/he -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/es -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/en-gb -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/en-ca -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/en-au -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/en -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/el -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/de -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/da -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr/nls -@dirrm %%DATADIR%%/externals/dojo/dojo/cldr -@dirrm %%DATADIR%%/externals/dojo/dojo/_firebug -@dirrm %%DATADIR%%/externals/dojo/dojo/_base/_loader -@dirrm %%DATADIR%%/externals/dojo/dojo/_base -@dirrm %%DATADIR%%/externals/dojo/dojo -@dirrm %%DATADIR%%/externals/dojo/dijit/tree -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/tundra/layout -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/tundra/images -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/tundra/form -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/tundra -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/themeTesterImages -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/soria/layout -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/soria/images -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/soria/form -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/soria -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/nihilo/layout -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/nihilo/images -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/nihilo/form -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/nihilo -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/claro/layout/images -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/claro/layout -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/claro/images -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/claro/form/images -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/claro/form -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/claro -@dirrm %%DATADIR%%/externals/dojo/dijit/themes/a11y -@dirrm %%DATADIR%%/externals/dojo/dijit/themes -@dirrm %%DATADIR%%/externals/dojo/dijit/tests/_data -@dirrm %%DATADIR%%/externals/dojo/dijit/tests -@dirrm %%DATADIR%%/externals/dojo/dijit/templates -@dirrm %%DATADIR%%/externals/dojo/dijit/resources -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/th -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/ro -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/kk -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/it -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/he -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/es -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/el -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/de -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/da -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dijit/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dijit/nls -@dirrm %%DATADIR%%/externals/dojo/dijit/layout/templates -@dirrm %%DATADIR%%/externals/dojo/dijit/layout -@dirrm %%DATADIR%%/externals/dojo/dijit/icons/images -@dirrm %%DATADIR%%/externals/dojo/dijit/icons -@dirrm %%DATADIR%%/externals/dojo/dijit/form/templates -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/th -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/ro -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/kk -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/it -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/he -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/es -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/el -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/de -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/da -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dijit/form/nls -@dirrm %%DATADIR%%/externals/dojo/dijit/form -@dirrm %%DATADIR%%/externals/dojo/dijit/_tree -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/plugins -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/zh-tw -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/zh -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/tr -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/th -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/sv -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/sl -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/sk -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/ru -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/ro -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/pt-pt -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/pt -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/pl -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/nl -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/nb -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/ko -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/kk -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/ja -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/it -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/hu -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/he -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/fr -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/fi -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/es -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/el -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/de -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/da -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/cs -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/ca -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls/ar -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor/nls -@dirrm %%DATADIR%%/externals/dojo/dijit/_editor -@dirrm %%DATADIR%%/externals/dojo/dijit/_base -@dirrm %%DATADIR%%/externals/dojo/dijit -@dirrm %%DATADIR%%/externals/dojo -@dirrm %%DATADIR%%/externals +@dirrm %%DATADIR%%/bin @dirrm %%DATADIR%% -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/foo -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/View/Helper/_files/modules/default/views/scripts/bar -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/View/Helper/Navigation/_files/mvc/controllers -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Tool/Project/_files/project1 -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/System -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client/_files -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Tool/Framework/Client/Cli -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Test/PHPUnit/_files/application/views/scripts/index -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_index/_files -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/_files -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Search/Lucene/Storage/_tempFiles/_files -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Paginator/_files/cachedata -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/OpenId/_files -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/OpenId/Provider/Storage/_files -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Memory/_files -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Layout/_files/layouts-basepath/filters -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/commentcount -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Feed/Reader/Entry/_files/AtomStandaloneEntry/baseurl -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Feed/Pubsubhubbub/Http -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Db/Table/_files/cachefiles -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Controller/views/helpers -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Controller/views/filters -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/helpers -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Controller/_files/modules/bar/views/filters -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Config/Writer/temp -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/tests/Zend/Auth/Adapter/OpenId/_files -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-formats/cache -%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/demos/Zend/Service/LiveDocx/MailMerge/supported-fonts/cache -@exec mkdir -p %D/%%DATADIR%%/library/Zend/Queue/Stomp/IO -@exec mkdir -p %D/%%DATADIR%%/library/Zend/Queue/Stomp/Frame -@exec mkdir -p %D/%%DATADIR%%/library/Zend/Queue/Stomp/Client/Connection -@exec mkdir -p %D/%%DATADIR%%/library/Zend/Queue/Stomp/Base -@exec mkdir -p %D/%%DATADIR%%/library/Zend/Feed/Pubsubhubbub/Http -@exec mkdir -p %D/%%DATADIR%%/externals/dojo/dojox/analytics/logger/logs Index: www/zend-framework1/Makefile =================================================================== --- www/zend-framework1/Makefile (working copy) +++ www/zend-framework1/Makefile (working copy) @@ -21,6 +21,8 @@ LICENSE= BSD +CONFLICTS= ZendFramework-2.* + SUB_FILES= pkg-message OPTIONS_DEFINE= DOCS EXAMPLES MYSQL MYSQLI DBLIB PGSQL ODBC SQLITE REQPHP OPTPHP