aboutsummaryrefslogtreecommitdiff
path: root/www/ojs2
diff options
context:
space:
mode:
authorGreg Larkin <glarkin@FreeBSD.org>2008-07-25 18:59:16 +0000
committerGreg Larkin <glarkin@FreeBSD.org>2008-07-25 18:59:16 +0000
commiteea4d6e19717a8527e59d5216281a02bc1ad4bcf (patch)
tree3592034dc6d92fd4811ef3dfada1ba530af7001d /www/ojs2
parente7abd3a82026f64a675a7fd94385b4f9df17cf5a (diff)
downloadports-eea4d6e19717a8527e59d5216281a02bc1ad4bcf.tar.gz
ports-eea4d6e19717a8527e59d5216281a02bc1ad4bcf.zip
Notes
Diffstat (limited to 'www/ojs2')
-rw-r--r--www/ojs2/Makefile86
-rw-r--r--www/ojs2/distinfo6
-rw-r--r--www/ojs2/pkg-descr7
-rw-r--r--www/ojs2/pkg-message69
-rw-r--r--www/ojs2/pkg-plist8288
5 files changed, 4463 insertions, 3993 deletions
diff --git a/www/ojs2/Makefile b/www/ojs2/Makefile
index 9d6995c110e6..5e76df53890b 100644
--- a/www/ojs2/Makefile
+++ b/www/ojs2/Makefile
@@ -6,37 +6,42 @@
#
PORTNAME= ojs2
-PORTVERSION= 2.2
+PORTVERSION= 2.2.1
CATEGORIES= www
-MASTER_SITES= http://pkp.sfu.ca/ojs/download/
-DISTNAME= ojs-2.2
+MASTER_SITES= http://pkp.sfu.ca/ojs/download/ \
+ http://socpvs.org/pkp/ \
+ LOCAL/glarkin
+DISTNAME= ojs-2.2.1
MAINTAINER= filiperocha@gmail.com
-COMMENT= Open Journal Systems
+COMMENT= A journal management and publishing system
DIST_SUBDIR= ${PORTNAME}
NO_BUILD= yes
-USE_PHP= mbstring
+USE_PHP= mbstring session
+DEFAULT_PHP_VER=5
WANT_PHP_WEB= yes
-OJSDIR?= www/ojs2
+OPTIONS= MYSQL "Use a MySQL database" on \
+ PGSQL "Use a PostgreSQL database" off \
+ LDAP "Use LDAP authentication" off \
+ CURL "Use cURL" on \
+ MEMCACHE "Use memcached cache system" off\
-OPTIONS= MYSQL "Use a MYSQL Database" on \
- PGSQL "Use a PostgreSQL Database" off \
- LDAP "Use LDAP Authentication" off
-
-pre-everything::
- @${ECHO_MSG} "=============================================================================================="
- @${ECHO_MSG} ""
- @${ECHO_MSG} "If you are upgrading please refer to docs/UPGRADE or browse to http://pkp.sfu.ca/ojs/UPGRADE"
+pre-install::
+ @${ECHO_MSG} "======================================================================"
+ @${ECHO_MSG} "If you are upgrading please refer to docs/UPGRADE or browse to"
+ @${ECHO_MSG} "http://pkp.sfu.ca/ojs/UPGRADE"
@${ECHO_MSG} ""
- @${ECHO_MSG} "=============================================================================================="
+ @${ECHO_MSG} "You need to backup your config.inc.php and your ojs2 directory"
+ @${ECHO_MSG} "Hit Control-C now"
+ @${ECHO_MSG} "======================================================================"
.include <bsd.port.pre.mk>
.if defined(WITHOUT_MYSQL) && !defined(WITH_PGSQL)
-IGNORE= needs at least least one DB backend; please run 'make config'
+IGNORE= needs at least least one DB backend; please rerun 'make config'
.endif
.ifndef(WITHOUT_MYSQL)
@@ -51,19 +56,48 @@ USE_PHP+= pgsql
USE_PHP+= ldap
.endif
+.ifdef(WITH_CURL)
+USE_PHP+= curl
+.endif
+
+.ifdef(WITH_MEMCACHE)
+USE_PHP+= memcache
+.endif
+
+NONDOCS= cache/fc-locale-list.php classes config.inc.php \
+ dbscripts help includes index.php js lib locale pages \
+ plugins public registry rt styles templates tools
+.if !defined(NOPORTDOCS)
+DOCS= docs
+.endif
+
+PLIST_SUB+= ECHO_MSG=${ECHO_MSG}
+
do-install:
- @${INSTALL_DATA} -d ${PREFIX}/${OJSDIR}
- @${CP} -Rn ${WRKSRC}/* ${PREFIX}/${OJSDIR}
- @${FIND} ${PREFIX}/${OJSDIR} -type d -exec ${CHMOD} a+x {} \;
- @${FIND} ${PREFIX}/${OJSDIR}/cache/t_cache/ -type d -exec ${CHMOD} -R +rw {} \;
- @${FIND} ${PREFIX}/${OJSDIR}/cache/t_compile/ -type d -exec ${CHMOD} -R +rw {} \;
- @${FIND} ${PREFIX}/${OJSDIR}/cache/t_config/ -type d -exec ${CHMOD} -R +rw {} \;
- @${FIND} ${PREFIX}/${OJSDIR}/cache/_db/ -type d -exec ${CHMOD} -R +rw {} \;
- @${FIND} ${PREFIX}/${OJSDIR}/config.inc.php -type d -exec ${CHMOD} -R +rw {} \;
- @${FIND} ${PREFIX}/${OJSDIR}/public/ -type d -exec ${CHMOD} -R +rw {} \;
- @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${OJSDIR}
+ @cd ${WRKSRC} && ${COPYTREE_SHARE} "${NONDOCS}" ${WWWDIR}
+ @cd ${WRKSRC} && ${CP} config.inc.php ${WWWDIR}/config.inc.php.sample
+ @${INSTALL} -d ${WWWDIR}/cache/_db
+ @${INSTALL} -d ${WWWDIR}/cache/t_cache
+ @${INSTALL} -d ${WWWDIR}/cache/t_compile
+ @${INSTALL} -d ${WWWDIR}/cache/t_config
+ @${INSTALL} -d ${WWWDIR}/locale/en_US/images
+ @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
+ @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \
+ ${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST}
+ @${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644
+ @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \
+ ${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST}
+ @${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755
+ @${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \
+ ${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST}
+.if !defined(NOPORTDOCS)
+ @cd ${WRKSRC}/${DOCS} && ${COPYTREE_SHARE} . ${DOCSDIR}
+.endif
post-install:
@${CAT} ${PKGMESSAGE}
+post-deinstall:
+ @${RM} -rf ${WWWDIR}/cache
+
.include <bsd.port.post.mk>
diff --git a/www/ojs2/distinfo b/www/ojs2/distinfo
index 206337f7559c..ad47695dbfbb 100644
--- a/www/ojs2/distinfo
+++ b/www/ojs2/distinfo
@@ -1,3 +1,3 @@
-MD5 (ojs2/ojs-2.2.tar.gz) = 241ee360d914b813f9af1dd684f8a04b
-SHA256 (ojs2/ojs-2.2.tar.gz) = 0213faa147c439a0a1a4badf1da50dd61e2888c1911467638d7b3d331d74e5bf
-SIZE (ojs2/ojs-2.2.tar.gz) = 5079464
+MD5 (ojs2/ojs-2.2.1.tar.gz) = acb1c775217fcabb807473893cc238ca
+SHA256 (ojs2/ojs-2.2.1.tar.gz) = 46ef6eda59c166998f35574671f4ca4925f218a58e7f3f5e905a8ad77787523d
+SIZE (ojs2/ojs-2.2.1.tar.gz) = 5899060
diff --git a/www/ojs2/pkg-descr b/www/ojs2/pkg-descr
index b6ca7e4adcfb..9a86243625cd 100644
--- a/www/ojs2/pkg-descr
+++ b/www/ojs2/pkg-descr
@@ -1,4 +1,5 @@
-Open Journal Systems (OJS) has been developed by the Public Knowledge Project.
-For general information about OJS and other open research systems, visit the PKP
+Open Journal Systems (OJS) has been developed by the Public Knowledge
+Project. For general information about OJS and other open research
+systems, visit the PKP web site.
-WWW: http://pkp.sfu.ca/
+WWW: http://pkp.sfu.ca/
diff --git a/www/ojs2/pkg-message b/www/ojs2/pkg-message
index 35971805cb8e..024063857422 100644
--- a/www/ojs2/pkg-message
+++ b/www/ojs2/pkg-message
@@ -1,32 +1,57 @@
-==================================================================================
-* Please read docs/README (http://pkp.sfu.ca/ojs/README) or browse to
- http://pkp.sfu.ca/ojs_documentation
- on HOW-TO get OJS fully functional
+======================================================================
+* Please read docs/README (http://pkp.sfu.ca/ojs/README) or browse
+to http://pkp.sfu.ca/ojs_documentation on HOW-TO get OJS fully
+functional
-* See lib/libraries.txt for a list of third-party
- libraries used by OJS.
+* See lib/libraries.txt for a list of third-party libraries used
+by OJS.
-Recommended Configuration
--------------------------
+Recommended Configuration -------------------------
-A secure deployment can be best achieved by using the following policies:
+A secure deployment can be best achieved by using the following
+policies:
- * Dedicate a database to OJS; use unique credentials to access it.
- Configure this database to perform automated backups on a regular
- basis. Perform a manual backup when upgrading or performing
- maintenance.
+ * Dedicate a database to OJS; use unique credentials to
+ access it. Configure this database to perform automated
+ backups on a regular basis. Perform a manual backup when
+ upgrading or performing maintenance.
- * Configure OJS (config.inc.php) to use SHA1 hashing rather than MD5.
+ * Configure OJS (config.inc.php) to use SHA1 hashing rather
+ than MD5.
- * Configure OJS (config.inc.php) to use force_ssl_login so that
- authenticated users communicate with the server via HTTPS.
+ * Configure OJS (config.inc.php) to use force_ssl_login so
+ that authenticated users communicate with the server via
+ HTTPS.
- * Install OJS so that the files directory is NOT a subdirectory of
- the OJS installation and cannot be accessed directly via the web
- server. Restrict file permissions as much as possible. Automated
- backups of this directory should be roughly synchronized with
- database backups.
+ * Install OJS so that the files directory is NOT a subdirectory
+ of the OJS installation and cannot be accessed directly via
+ the web server. Restrict file permissions as much as possible.
+ Automated backups of this directory should be roughly
+ synchronized with database backups.
Forum: <http://pkp.sfu.ca/support/forum/>
-=================================================================================
+======================================================================
+OJS now supports article galleys that will be automatically rendered
+from an uploaded XML source file, using a specific XSL stylesheet
+transformation.
+
+If you want to use this feature please install:
+
+ * textproc/php5-xsl if you have PHP 5 installed
+
+ * textproc/php4-xslt if you have PHP 4 installed
+
+ * External command-line XSLT renderer (eg. Xalan) and enter
+ the complete path to the XSLT renderer tool, with any
+ required arguments in the XMLGalleyPlugin settings.
+
+If you want to enable rendering PDF galleys using XSL-FO you may
+want to install a FO processor (eg. textproc/fop) and configure it
+in the XMLGalleyPlugin settings.
+
+If you have chosen memcached you need to configure your memcached
+server setting on config.inc.php.
+
+There are other options that can and should be configured at
+config.inc.php.
diff --git a/www/ojs2/pkg-plist b/www/ojs2/pkg-plist
index ab68953d6423..9aadca974e21 100644
--- a/www/ojs2/pkg-plist
+++ b/www/ojs2/pkg-plist
@@ -1,3939 +1,4349 @@
-www/ojs2/cache/fc-locale-list.php
-www/ojs2/cache/t_compile/%%04^04F^04F6FBD0%%editorialTeamBoard.tpl.php
-www/ojs2/cache/t_compile/%%19^19D^19DCFE45%%aboutThisPublishingSystem.tpl.php
-www/ojs2/cache/t_compile/%%22^226^2262C33A%%memberships.tpl.php
-www/ojs2/cache/t_compile/%%42^42F^42FD737A%%editorialTeam.tpl.php
-www/ojs2/cache/t_compile/%%5A^5A5^5A5A0067%%index.tpl.php
-www/ojs2/cache/t_compile/%%5C^5C2^5C21797E%%site.tpl.php
-www/ojs2/cache/t_compile/%%62^62F^62FCC9FC%%importConflicts.tpl.php
-www/ojs2/cache/t_compile/%%69^696^696396EF%%contact.tpl.php
-www/ojs2/cache/t_compile/%%79^790^7909A37A%%editorialTeamBio.tpl.php
-www/ojs2/cache/t_compile/%%7E^7E1^7E1EBAAB%%editorialPolicies.tpl.php
-www/ojs2/cache/t_compile/%%87^878^878FC2A8%%index.tpl.php
-www/ojs2/cache/t_compile/%%87^87A^87A1ECC2%%statistics.tpl.php
-www/ojs2/cache/t_compile/%%A9^A99^A99D266D%%importOJS1.tpl.php
-www/ojs2/cache/t_compile/%%BE^BE3^BE3F36E7%%sourceSettings.tpl.php
-www/ojs2/cache/t_compile/%%CB^CB5^CB5B9D9E%%submissions.tpl.php
-www/ojs2/cache/t_compile/%%D0^D01^D01ECFAE%%subscriptions.tpl.php
-www/ojs2/cache/t_compile/%%DE^DE8^DE8BD81D%%journalSponsorship.tpl.php
-www/ojs2/cache/t_compile/%%EE^EE6^EE6F4E36%%sources.tpl.php
-www/ojs2/cache/t_compile/%%F3^F32^F3218F1A%%siteMap.tpl.php
-www/ojs2/cache/t_compile/%%F3^F34^F34568E5%%displayMembership.tpl.php
-www/ojs2/classes/admin/form/ImportOJS1Form.inc.php
-www/ojs2/classes/admin/form/JournalSiteSettingsForm.inc.php
-www/ojs2/classes/admin/form/SiteSettingsForm.inc.php
-www/ojs2/classes/announcement/Announcement.inc.php
-www/ojs2/classes/announcement/AnnouncementDAO.inc.php
-www/ojs2/classes/announcement/AnnouncementType.inc.php
-www/ojs2/classes/announcement/AnnouncementTypeDAO.inc.php
-www/ojs2/classes/article/Article.inc.php
-www/ojs2/classes/article/ArticleComment.inc.php
-www/ojs2/classes/article/ArticleCommentDAO.inc.php
-www/ojs2/classes/article/ArticleDAO.inc.php
-www/ojs2/classes/article/ArticleFile.inc.php
-www/ojs2/classes/article/ArticleFileDAO.inc.php
-www/ojs2/classes/article/ArticleGalley.inc.php
-www/ojs2/classes/article/ArticleGalleyDAO.inc.php
-www/ojs2/classes/article/ArticleHTMLGalley.inc.php
-www/ojs2/classes/article/ArticleNote.inc.php
-www/ojs2/classes/article/ArticleNoteDAO.inc.php
-www/ojs2/classes/article/Author.inc.php
-www/ojs2/classes/article/AuthorDAO.inc.php
-www/ojs2/classes/article/PublishedArticle.inc.php
-www/ojs2/classes/article/PublishedArticleDAO.inc.php
-www/ojs2/classes/article/SuppFile.inc.php
-www/ojs2/classes/article/SuppFileDAO.inc.php
-www/ojs2/classes/article/log/ArticleEmailLogDAO.inc.php
-www/ojs2/classes/article/log/ArticleEmailLogEntry.inc.php
-www/ojs2/classes/article/log/ArticleEventLogDAO.inc.php
-www/ojs2/classes/article/log/ArticleEventLogEntry.inc.php
-www/ojs2/classes/article/log/ArticleLog.inc.php
-www/ojs2/classes/author/form/submit/AuthorSubmitForm.inc.php
-www/ojs2/classes/author/form/submit/AuthorSubmitStep1Form.inc.php
-www/ojs2/classes/author/form/submit/AuthorSubmitStep2Form.inc.php
-www/ojs2/classes/author/form/submit/AuthorSubmitStep3Form.inc.php
-www/ojs2/classes/author/form/submit/AuthorSubmitStep4Form.inc.php
-www/ojs2/classes/author/form/submit/AuthorSubmitStep5Form.inc.php
-www/ojs2/classes/author/form/submit/AuthorSubmitSuppFileForm.inc.php
-www/ojs2/classes/cache/CacheManager.inc.php
-www/ojs2/classes/cache/FileCache.inc.php
-www/ojs2/classes/cache/GenericCache.inc.php
-www/ojs2/classes/cache/MemcacheCache.inc.php
-www/ojs2/classes/captcha/Captcha.inc.php
-www/ojs2/classes/captcha/CaptchaDAO.inc.php
-www/ojs2/classes/captcha/CaptchaManager.inc.php
-www/ojs2/classes/comment/Comment.inc.php
-www/ojs2/classes/comment/CommentDAO.inc.php
-www/ojs2/classes/comment/form/CommentForm.inc.php
-www/ojs2/classes/config/Config.inc.php
-www/ojs2/classes/config/ConfigParser.inc.php
-www/ojs2/classes/core/ArrayItemIterator.inc.php
-www/ojs2/classes/core/Core.inc.php
-www/ojs2/classes/core/DataObject.inc.php
-www/ojs2/classes/core/Handler.inc.php
-www/ojs2/classes/core/ItemIterator.inc.php
-www/ojs2/classes/core/Registry.inc.php
-www/ojs2/classes/core/Request.inc.php
-www/ojs2/classes/core/String.inc.php
-www/ojs2/classes/core/Transcoder.inc.php
-www/ojs2/classes/core/VirtualArrayIterator.inc.php
-www/ojs2/classes/currency/Currency.inc.php
-www/ojs2/classes/currency/CurrencyDAO.inc.php
-www/ojs2/classes/db/DAO.inc.php
-www/ojs2/classes/db/DAORegistry.inc.php
-www/ojs2/classes/db/DAOResultFactory.inc.php
-www/ojs2/classes/db/DBConnection.inc.php
-www/ojs2/classes/db/DBDataXMLParser.inc.php
-www/ojs2/classes/db/DBResultRange.inc.php
-www/ojs2/classes/db/DBRowIterator.inc.php
-www/ojs2/classes/db/SQLParser.inc.php
-www/ojs2/classes/db/XMLDAO.inc.php
-www/ojs2/classes/file/ArticleFileManager.inc.php
-www/ojs2/classes/file/FileManager.inc.php
-www/ojs2/classes/file/FileWrapper.inc.php
-www/ojs2/classes/file/JournalFileManager.inc.php
-www/ojs2/classes/file/PublicFileManager.inc.php
-www/ojs2/classes/file/TemporaryFile.inc.php
-www/ojs2/classes/file/TemporaryFileDAO.inc.php
-www/ojs2/classes/file/TemporaryFileManager.inc.php
-www/ojs2/classes/form/Form.inc.php
-www/ojs2/classes/form/FormError.inc.php
-www/ojs2/classes/form/validation/FormValidator.inc.php
-www/ojs2/classes/form/validation/FormValidatorAlphaNum.inc.php
-www/ojs2/classes/form/validation/FormValidatorArray.inc.php
-www/ojs2/classes/form/validation/FormValidatorArrayCustom.inc.php
-www/ojs2/classes/form/validation/FormValidatorCaptcha.inc.php
-www/ojs2/classes/form/validation/FormValidatorCustom.inc.php
-www/ojs2/classes/form/validation/FormValidatorEmail.inc.php
-www/ojs2/classes/form/validation/FormValidatorInSet.inc.php
-www/ojs2/classes/form/validation/FormValidatorLength.inc.php
-www/ojs2/classes/form/validation/FormValidatorLocale.inc.php
-www/ojs2/classes/form/validation/FormValidatorLocaleEmail.inc.php
-www/ojs2/classes/form/validation/FormValidatorPost.inc.php
-www/ojs2/classes/form/validation/FormValidatorRegExp.inc.php
-www/ojs2/classes/form/validation/FormValidatorUrl.inc.php
-www/ojs2/classes/group/Group.inc.php
-www/ojs2/classes/group/GroupDAO.inc.php
-www/ojs2/classes/group/GroupMembership.inc.php
-www/ojs2/classes/group/GroupMembershipDAO.inc.php
-www/ojs2/classes/help/Help.inc.php
-www/ojs2/classes/help/HelpMappingFile.inc.php
-www/ojs2/classes/help/HelpToc.inc.php
-www/ojs2/classes/help/HelpTocDAO.inc.php
-www/ojs2/classes/help/HelpTopic.inc.php
-www/ojs2/classes/help/HelpTopicDAO.inc.php
-www/ojs2/classes/help/HelpTopicSection.inc.php
-www/ojs2/classes/help/OJSHelpMappingFile.inc.php
-www/ojs2/classes/help/PluginHelpMappingFile.inc.php
-www/ojs2/classes/i18n/LanguageAction.inc.php
-www/ojs2/classes/i18n/Locale.inc.php
-www/ojs2/classes/i18n/LocaleFile.inc.php
-www/ojs2/classes/install/Install.inc.php
-www/ojs2/classes/install/Installer.inc.php
-www/ojs2/classes/install/Upgrade.inc.php
-www/ojs2/classes/install/form/InstallForm.inc.php
-www/ojs2/classes/install/form/UpgradeForm.inc.php
-www/ojs2/classes/issue/Issue.inc.php
-www/ojs2/classes/issue/IssueAction.inc.php
-www/ojs2/classes/issue/IssueDAO.inc.php
-www/ojs2/classes/issue/form/IssueForm.inc.php
-www/ojs2/classes/journal/Journal.inc.php
-www/ojs2/classes/journal/JournalDAO.inc.php
-www/ojs2/classes/journal/JournalReportIterator.inc.php
-www/ojs2/classes/journal/JournalSettingsDAO.inc.php
-www/ojs2/classes/journal/JournalStatisticsDAO.inc.php
-www/ojs2/classes/journal/NotificationStatusDAO.inc.php
-www/ojs2/classes/journal/Section.inc.php
-www/ojs2/classes/journal/SectionDAO.inc.php
-www/ojs2/classes/journal/SectionEditorsDAO.inc.php
-www/ojs2/classes/mail/ArticleMailTemplate.inc.php
-www/ojs2/classes/mail/EmailTemplate.inc.php
-www/ojs2/classes/mail/EmailTemplateDAO.inc.php
-www/ojs2/classes/mail/Mail.inc.php
-www/ojs2/classes/mail/MailTemplate.inc.php
-www/ojs2/classes/mail/MassMail.inc.php
-www/ojs2/classes/mail/SMTPMailer.inc.php
-www/ojs2/classes/manager/form/AnnouncementForm.inc.php
-www/ojs2/classes/manager/form/AnnouncementTypeForm.inc.php
-www/ojs2/classes/manager/form/EmailTemplateForm.inc.php
-www/ojs2/classes/manager/form/GroupForm.inc.php
-www/ojs2/classes/manager/form/LanguageSettingsForm.inc.php
-www/ojs2/classes/manager/form/PayMethodSettingsForm.inc.php
-www/ojs2/classes/manager/form/PaymentSettingsForm.inc.php
-www/ojs2/classes/manager/form/SectionForm.inc.php
-www/ojs2/classes/manager/form/UserManagementForm.inc.php
-www/ojs2/classes/manager/form/setup/JournalSetupForm.inc.php
-www/ojs2/classes/manager/form/setup/JournalSetupStep1Form.inc.php
-www/ojs2/classes/manager/form/setup/JournalSetupStep2Form.inc.php
-www/ojs2/classes/manager/form/setup/JournalSetupStep3Form.inc.php
-www/ojs2/classes/manager/form/setup/JournalSetupStep4Form.inc.php
-www/ojs2/classes/manager/form/setup/JournalSetupStep5Form.inc.php
-www/ojs2/classes/oai/OAI.inc.php
-www/ojs2/classes/oai/OAIStruct.inc.php
-www/ojs2/classes/oai/format/OAIMetadataFormat_DC.inc.php
-www/ojs2/classes/oai/format/OAIMetadataFormat_MARC.inc.php
-www/ojs2/classes/oai/format/OAIMetadataFormat_MARC21.inc.php
-www/ojs2/classes/oai/format/OAIMetadataFormat_RFC1807.inc.php
-www/ojs2/classes/oai/ojs/JournalOAI.inc.php
-www/ojs2/classes/oai/ojs/OAIDAO.inc.php
-www/ojs2/classes/payment/Payment.inc.php
-www/ojs2/classes/payment/PaymentManager.inc.php
-www/ojs2/classes/payment/QueuedPayment.inc.php
-www/ojs2/classes/payment/QueuedPaymentDAO.inc.php
-www/ojs2/classes/payment/ojs/OJSCompletedPayment.inc.php
-www/ojs2/classes/payment/ojs/OJSCompletedPaymentDAO.inc.php
-www/ojs2/classes/payment/ojs/OJSPaymentManager.inc.php
-www/ojs2/classes/payment/ojs/OJSQueuedPayment.inc.php
-www/ojs2/classes/plugins/AuthPlugin.inc.php
-www/ojs2/classes/plugins/BlockPlugin.inc.php
-www/ojs2/classes/plugins/CitationPlugin.inc.php
-www/ojs2/classes/plugins/GatewayPlugin.inc.php
-www/ojs2/classes/plugins/GenericPlugin.inc.php
-www/ojs2/classes/plugins/HookRegistry.inc.php
-www/ojs2/classes/plugins/ImportExportPlugin.inc.php
-www/ojs2/classes/plugins/PaymethodPlugin.inc.php
-www/ojs2/classes/plugins/Plugin.inc.php
-www/ojs2/classes/plugins/PluginRegistry.inc.php
-www/ojs2/classes/plugins/PluginSettingsDAO.inc.php
-www/ojs2/classes/plugins/ThemePlugin.inc.php
-www/ojs2/classes/rt/RT.inc.php
-www/ojs2/classes/rt/RTAdmin.inc.php
-www/ojs2/classes/rt/RTStruct.inc.php
-www/ojs2/classes/rt/RTXMLParser.inc.php
-www/ojs2/classes/rt/ojs/JournalRT.inc.php
-www/ojs2/classes/rt/ojs/JournalRTAdmin.inc.php
-www/ojs2/classes/rt/ojs/RTDAO.inc.php
-www/ojs2/classes/rt/ojs/form/ContextForm.inc.php
-www/ojs2/classes/rt/ojs/form/SearchForm.inc.php
-www/ojs2/classes/rt/ojs/form/VersionForm.inc.php
-www/ojs2/classes/scheduledTask/ScheduledTask.inc.php
-www/ojs2/classes/scheduledTask/ScheduledTaskDAO.inc.php
-www/ojs2/classes/search/ArticleSearch.inc.php
-www/ojs2/classes/search/ArticleSearchDAO.inc.php
-www/ojs2/classes/search/ArticleSearchIndex.inc.php
-www/ojs2/classes/search/SearchFileParser.inc.php
-www/ojs2/classes/search/SearchHTMLParser.inc.php
-www/ojs2/classes/search/SearchHelperParser.inc.php
-www/ojs2/classes/sectionEditor/form/CreateReviewerForm.inc.php
-www/ojs2/classes/security/AccessKey.inc.php
-www/ojs2/classes/security/AccessKeyDAO.inc.php
-www/ojs2/classes/security/AccessKeyManager.inc.php
-www/ojs2/classes/security/AuthSource.inc.php
-www/ojs2/classes/security/AuthSourceDAO.inc.php
-www/ojs2/classes/security/Role.inc.php
-www/ojs2/classes/security/RoleDAO.inc.php
-www/ojs2/classes/security/Validation.inc.php
-www/ojs2/classes/security/form/AuthSourceSettingsForm.inc.php
-www/ojs2/classes/session/Session.inc.php
-www/ojs2/classes/session/SessionDAO.inc.php
-www/ojs2/classes/session/SessionManager.inc.php
-www/ojs2/classes/site/ImportOJS1.inc.php
-www/ojs2/classes/site/Site.inc.php
-www/ojs2/classes/site/SiteDAO.inc.php
-www/ojs2/classes/site/Version.inc.php
-www/ojs2/classes/site/VersionCheck.inc.php
-www/ojs2/classes/site/VersionDAO.inc.php
-www/ojs2/classes/submission/author/AuthorAction.inc.php
-www/ojs2/classes/submission/author/AuthorSubmission.inc.php
-www/ojs2/classes/submission/author/AuthorSubmissionDAO.inc.php
-www/ojs2/classes/submission/common/Action.inc.php
-www/ojs2/classes/submission/copyAssignment/CopyAssignment.inc.php
-www/ojs2/classes/submission/copyAssignment/CopyAssignmentDAO.inc.php
-www/ojs2/classes/submission/copyeditor/CopyeditorAction.inc.php
-www/ojs2/classes/submission/copyeditor/CopyeditorSubmission.inc.php
-www/ojs2/classes/submission/copyeditor/CopyeditorSubmissionDAO.inc.php
-www/ojs2/classes/submission/editAssignment/EditAssignment.inc.php
-www/ojs2/classes/submission/editAssignment/EditAssignmentDAO.inc.php
-www/ojs2/classes/submission/editor/EditorAction.inc.php
-www/ojs2/classes/submission/editor/EditorSubmission.inc.php
-www/ojs2/classes/submission/editor/EditorSubmissionDAO.inc.php
-www/ojs2/classes/submission/form/ArticleGalleyForm.inc.php
-www/ojs2/classes/submission/form/MetadataForm.inc.php
-www/ojs2/classes/submission/form/SuppFileForm.inc.php
-www/ojs2/classes/submission/form/comment/CommentForm.inc.php
-www/ojs2/classes/submission/form/comment/CopyeditCommentForm.inc.php
-www/ojs2/classes/submission/form/comment/EditCommentForm.inc.php
-www/ojs2/classes/submission/form/comment/EditorDecisionCommentForm.inc.php
-www/ojs2/classes/submission/form/comment/LayoutCommentForm.inc.php
-www/ojs2/classes/submission/form/comment/PeerReviewCommentForm.inc.php
-www/ojs2/classes/submission/form/comment/ProofreadCommentForm.inc.php
-www/ojs2/classes/submission/layoutAssignment/LayoutAssignment.inc.php
-www/ojs2/classes/submission/layoutAssignment/LayoutAssignmentDAO.inc.php
-www/ojs2/classes/submission/layoutEditor/LayoutEditorAction.inc.php
-www/ojs2/classes/submission/layoutEditor/LayoutEditorSubmission.inc.php
-www/ojs2/classes/submission/layoutEditor/LayoutEditorSubmissionDAO.inc.php
-www/ojs2/classes/submission/proofAssignment/ProofAssignment.inc.php
-www/ojs2/classes/submission/proofAssignment/ProofAssignmentDAO.inc.php
-www/ojs2/classes/submission/proofreader/ProofreaderAction.inc.php
-www/ojs2/classes/submission/proofreader/ProofreaderSubmission.inc.php
-www/ojs2/classes/submission/proofreader/ProofreaderSubmissionDAO.inc.php
-www/ojs2/classes/submission/reviewAssignment/ReviewAssignment.inc.php
-www/ojs2/classes/submission/reviewAssignment/ReviewAssignmentDAO.inc.php
-www/ojs2/classes/submission/reviewer/ReviewerAction.inc.php
-www/ojs2/classes/submission/reviewer/ReviewerSubmission.inc.php
-www/ojs2/classes/submission/reviewer/ReviewerSubmissionDAO.inc.php
-www/ojs2/classes/submission/sectionEditor/SectionEditorAction.inc.php
-www/ojs2/classes/submission/sectionEditor/SectionEditorSubmission.inc.php
-www/ojs2/classes/submission/sectionEditor/SectionEditorSubmissionDAO.inc.php
-www/ojs2/classes/subscription/Subscription.inc.php
-www/ojs2/classes/subscription/SubscriptionDAO.inc.php
-www/ojs2/classes/subscription/SubscriptionType.inc.php
-www/ojs2/classes/subscription/SubscriptionTypeDAO.inc.php
-www/ojs2/classes/subscription/form/SubscriptionForm.inc.php
-www/ojs2/classes/subscription/form/SubscriptionPolicyForm.inc.php
-www/ojs2/classes/subscription/form/SubscriptionTypeForm.inc.php
-www/ojs2/classes/tasks/OpenAccessNotification.inc.php
-www/ojs2/classes/tasks/ReviewReminder.inc.php
-www/ojs2/classes/tasks/SubscriptionExpiryReminder.inc.php
-www/ojs2/classes/template/TemplateManager.inc.php
-www/ojs2/classes/user/CountryDAO.inc.php
-www/ojs2/classes/user/DisciplineDAO.inc.php
-www/ojs2/classes/user/User.inc.php
-www/ojs2/classes/user/UserDAO.inc.php
-www/ojs2/classes/user/UserSettingsDAO.inc.php
-www/ojs2/classes/user/form/ChangePasswordForm.inc.php
-www/ojs2/classes/user/form/LoginChangePasswordForm.inc.php
-www/ojs2/classes/user/form/ProfileForm.inc.php
-www/ojs2/classes/user/form/RegistrationForm.inc.php
-www/ojs2/classes/xml/XMLCustomWriter.inc.php
-www/ojs2/classes/xml/XMLNode.inc.php
-www/ojs2/classes/xml/XMLParser.inc.php
-www/ojs2/classes/xml/XMLParserDOMHandler.inc.php
-www/ojs2/config.TEMPLATE.inc.php
-www/ojs2/config.inc.php
-www/ojs2/dbscripts/xml/data/email_templates.xml
-www/ojs2/dbscripts/xml/data/locale/de_DE/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/en_US/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/es_ES/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/fr_CA/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/hr_HR/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/it_IT/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/ja_JP/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/pt_BR/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/ru_RU/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/tr_TR/email_templates_data.xml
-www/ojs2/dbscripts/xml/data/locale/vi_VN/email_templates_data.xml
-www/ojs2/dbscripts/xml/dtd/install.dtd
-www/ojs2/dbscripts/xml/dtd/locales.dtd
-www/ojs2/dbscripts/xml/dtd/pluginSettings.dtd
-www/ojs2/dbscripts/xml/dtd/xmldata.dtd
-www/ojs2/dbscripts/xml/dtd/xmlschema.dtd
-www/ojs2/dbscripts/xml/install.xml
-www/ojs2/dbscripts/xml/ojs_schema.xml
-www/ojs2/dbscripts/xml/ojs_schema_stage1.xml
-www/ojs2/dbscripts/xml/upgrade.xml
-www/ojs2/dbscripts/xml/upgrade/2.0.1_update.xml
-www/ojs2/dbscripts/xml/upgrade/2.0.2_preupdate.xml
-www/ojs2/dbscripts/xml/upgrade/2.0.2_update.xml
-www/ojs2/dbscripts/xml/upgrade/2.1.0_update.xml
-www/ojs2/dbscripts/xml/upgrade/2.1.1_update.xml
-www/ojs2/dbscripts/xml/upgrade/2.2.0_localize.xml
-www/ojs2/dbscripts/xml/upgrade/2.2.0_preupdate.xml
-www/ojs2/dbscripts/xml/upgrade/2.2.0_update.xml
-www/ojs2/dbscripts/xml/upgrade/2.2.0_usersettings.xml
-www/ojs2/dbscripts/xml/upgrade/2.2.0_usersettings2.xml
-www/ojs2/dbscripts/xml/version.xml
-www/ojs2/docs/COPYING
-www/ojs2/docs/COPYING_pt
-www/ojs2/docs/ChangeLog
-www/ojs2/docs/FAQ
-www/ojs2/docs/FAQ_pt
-www/ojs2/docs/IMPORTEXPORT
-www/ojs2/docs/INSTALL
-www/ojs2/docs/INSTALL_pt
-www/ojs2/docs/LICENSE
-www/ojs2/docs/LICENSE_pt
-www/ojs2/docs/README
-www/ojs2/docs/README-CVS
-www/ojs2/docs/README-CVS_pt
-www/ojs2/docs/README-DEV
-www/ojs2/docs/README_jp
-www/ojs2/docs/README_pt
-www/ojs2/docs/RELEASE
-www/ojs2/docs/REPORTING-BUGS
-www/ojs2/docs/REPORTING-BUGS_pt
-www/ojs2/docs/UPGRADE
-www/ojs2/docs/UPGRADE_pt
-www/ojs2/docs/release-notes/ChangeLog-2.0.1
-www/ojs2/docs/release-notes/ChangeLog-2.0.2
-www/ojs2/docs/release-notes/ChangeLog-2.1
-www/ojs2/docs/release-notes/ChangeLog-2.1.1
-www/ojs2/docs/release-notes/ChangeLog-2.2
-www/ojs2/docs/release-notes/README-2.0.1
-www/ojs2/docs/release-notes/README-2.0.2
-www/ojs2/docs/release-notes/README-2.1.0
-www/ojs2/docs/release-notes/README-2.1.1
-www/ojs2/docs/release-notes/README-2.2.0
-www/ojs2/help/en_US/editorial/toc/000000.xml
-www/ojs2/help/en_US/editorial/toc/000001.xml
-www/ojs2/help/en_US/editorial/toc/000002.xml
-www/ojs2/help/en_US/editorial/toc/000003.xml
-www/ojs2/help/en_US/editorial/toc/000004.xml
-www/ojs2/help/en_US/editorial/toc/000005.xml
-www/ojs2/help/en_US/editorial/toc/000006.xml
-www/ojs2/help/en_US/editorial/toc/000007.xml
-www/ojs2/help/en_US/editorial/toc/000008.xml
-www/ojs2/help/en_US/editorial/toc/000009.xml
-www/ojs2/help/en_US/editorial/toc/000010.xml
-www/ojs2/help/en_US/editorial/toc/000011.xml
-www/ojs2/help/en_US/editorial/toc/000012.xml
-www/ojs2/help/en_US/editorial/toc/000013.xml
-www/ojs2/help/en_US/editorial/toc/000014.xml
-www/ojs2/help/en_US/editorial/topic/000000.xml
-www/ojs2/help/en_US/editorial/topic/000001.xml
-www/ojs2/help/en_US/editorial/topic/000002.xml
-www/ojs2/help/en_US/editorial/topic/000003.xml
-www/ojs2/help/en_US/editorial/topic/000004.xml
-www/ojs2/help/en_US/editorial/topic/000005.xml
-www/ojs2/help/en_US/editorial/topic/000006.xml
-www/ojs2/help/en_US/editorial/topic/000007.xml
-www/ojs2/help/en_US/editorial/topic/000008.xml
-www/ojs2/help/en_US/editorial/topic/000009.xml
-www/ojs2/help/en_US/editorial/topic/000010.xml
-www/ojs2/help/en_US/editorial/topic/000011.xml
-www/ojs2/help/en_US/editorial/topic/000012.xml
-www/ojs2/help/en_US/editorial/topic/000013.xml
-www/ojs2/help/en_US/editorial/topic/000014.xml
-www/ojs2/help/en_US/editorial/topic/000015.xml
-www/ojs2/help/en_US/editorial/topic/000016.xml
-www/ojs2/help/en_US/editorial/topic/000017.xml
-www/ojs2/help/en_US/editorial/topic/000018.xml
-www/ojs2/help/en_US/editorial/topic/000019.xml
-www/ojs2/help/en_US/editorial/topic/000020.xml
-www/ojs2/help/en_US/editorial/topic/000021.xml
-www/ojs2/help/en_US/editorial/topic/000022.xml
-www/ojs2/help/en_US/editorial/topic/000023.xml
-www/ojs2/help/en_US/editorial/topic/000024.xml
-www/ojs2/help/en_US/editorial/topic/000025.xml
-www/ojs2/help/en_US/editorial/topic/000026.xml
-www/ojs2/help/en_US/editorial/topic/000027.xml
-www/ojs2/help/en_US/editorial/topic/000028.xml
-www/ojs2/help/en_US/editorial/topic/000029.xml
-www/ojs2/help/en_US/editorial/topic/000030.xml
-www/ojs2/help/en_US/editorial/topic/000031.xml
-www/ojs2/help/en_US/editorial/topic/000032.xml
-www/ojs2/help/en_US/editorial/topic/000033.xml
-www/ojs2/help/en_US/editorial/topic/000034.xml
-www/ojs2/help/en_US/editorial/topic/000035.xml
-www/ojs2/help/en_US/editorial/topic/000036.xml
-www/ojs2/help/en_US/editorial/topic/000037.xml
-www/ojs2/help/en_US/editorial/topic/000038.xml
-www/ojs2/help/en_US/editorial/topic/000039.xml
-www/ojs2/help/en_US/editorial/topic/000040.xml
-www/ojs2/help/en_US/editorial/topic/000041.xml
-www/ojs2/help/en_US/editorial/topic/000042.xml
-www/ojs2/help/en_US/editorial/topic/000043.xml
-www/ojs2/help/en_US/editorial/topic/000044.xml
-www/ojs2/help/en_US/index/toc/000000.xml
-www/ojs2/help/en_US/index/topic/000000.xml
-www/ojs2/help/en_US/intro/toc/000000.xml
-www/ojs2/help/en_US/intro/topic/000000.xml
-www/ojs2/help/en_US/intro/topic/000001.xml
-www/ojs2/help/en_US/journal/toc/000000.xml
-www/ojs2/help/en_US/journal/toc/000001.xml
-www/ojs2/help/en_US/journal/toc/000002.xml
-www/ojs2/help/en_US/journal/toc/000003.xml
-www/ojs2/help/en_US/journal/toc/000005.xml
-www/ojs2/help/en_US/journal/topic/000000.xml
-www/ojs2/help/en_US/journal/topic/000001.xml
-www/ojs2/help/en_US/journal/topic/000002.xml
-www/ojs2/help/en_US/journal/topic/000003.xml
-www/ojs2/help/en_US/journal/topic/000004.xml
-www/ojs2/help/en_US/journal/topic/000005.xml
-www/ojs2/help/en_US/journal/topic/000006.xml
-www/ojs2/help/en_US/journal/topic/000007.xml
-www/ojs2/help/en_US/journal/topic/000008.xml
-www/ojs2/help/en_US/journal/topic/000009.xml
-www/ojs2/help/en_US/journal/topic/000010.xml
-www/ojs2/help/en_US/journal/topic/000011.xml
-www/ojs2/help/en_US/journal/topic/000012.xml
-www/ojs2/help/en_US/journal/topic/000013.xml
-www/ojs2/help/en_US/journal/topic/000014.xml
-www/ojs2/help/en_US/journal/topic/000015.xml
-www/ojs2/help/en_US/journal/topic/000016.xml
-www/ojs2/help/en_US/journal/topic/000017.xml
-www/ojs2/help/en_US/journal/topic/000018.xml
-www/ojs2/help/en_US/journal/topic/000019.xml
-www/ojs2/help/en_US/journal/topic/000020.xml
-www/ojs2/help/en_US/journal/topic/000021.xml
-www/ojs2/help/en_US/journal/topic/000022.xml
-www/ojs2/help/en_US/journal/topic/000023.xml
-www/ojs2/help/en_US/journal/topic/000025.xml
-www/ojs2/help/en_US/journal/topic/000026.xml
-www/ojs2/help/en_US/journal/topic/000027.xml
-www/ojs2/help/en_US/journal/topic/000028.xml
-www/ojs2/help/en_US/journal/topic/000029.xml
-www/ojs2/help/en_US/journal/topic/000030.xml
-www/ojs2/help/en_US/journal/topic/000031.xml
-www/ojs2/help/en_US/journal/topic/000032.xml
-www/ojs2/help/en_US/journal/topic/000033.xml
-www/ojs2/help/en_US/journal/topic/000034.xml
-www/ojs2/help/en_US/journal/topic/000035.xml
-www/ojs2/help/en_US/publishing/toc/000000.xml
-www/ojs2/help/en_US/publishing/topic/000000.xml
-www/ojs2/help/en_US/publishing/topic/000001.xml
-www/ojs2/help/en_US/publishing/topic/000002.xml
-www/ojs2/help/en_US/publishing/topic/000003.xml
-www/ojs2/help/en_US/publishing/topic/000004.xml
-www/ojs2/help/en_US/site/toc/000000.xml
-www/ojs2/help/en_US/site/topic/000000.xml
-www/ojs2/help/en_US/site/topic/000001.xml
-www/ojs2/help/en_US/site/topic/000002.xml
-www/ojs2/help/en_US/site/topic/000003.xml
-www/ojs2/help/en_US/submission/toc/000000.xml
-www/ojs2/help/en_US/submission/topic/000000.xml
-www/ojs2/help/en_US/submission/topic/000001.xml
-www/ojs2/help/en_US/submission/topic/000002.xml
-www/ojs2/help/en_US/submission/topic/000003.xml
-www/ojs2/help/en_US/submission/topic/000004.xml
-www/ojs2/help/en_US/user/toc/000000.xml
-www/ojs2/help/en_US/user/topic/000000.xml
-www/ojs2/help/en_US/user/topic/000001.xml
-www/ojs2/help/en_US/user/topic/000002.xml
-www/ojs2/help/en_US/user/topic/000003.xml
-www/ojs2/help/en_US/user/topic/000004.xml
-www/ojs2/help/en_US/user/topic/000005.xml
-www/ojs2/help/en_US/user/topic/000006.xml
-www/ojs2/help/en_US/user/topic/000007.xml
-www/ojs2/help/fr_CA/editorial/toc/000000.xml
-www/ojs2/help/fr_CA/editorial/toc/000001.xml
-www/ojs2/help/fr_CA/editorial/toc/000002.xml
-www/ojs2/help/fr_CA/editorial/toc/000003.xml
-www/ojs2/help/fr_CA/editorial/toc/000004.xml
-www/ojs2/help/fr_CA/editorial/toc/000005.xml
-www/ojs2/help/fr_CA/editorial/toc/000006.xml
-www/ojs2/help/fr_CA/editorial/toc/000007.xml
-www/ojs2/help/fr_CA/editorial/toc/000008.xml
-www/ojs2/help/fr_CA/editorial/toc/000009.xml
-www/ojs2/help/fr_CA/editorial/toc/000010.xml
-www/ojs2/help/fr_CA/editorial/toc/000011.xml
-www/ojs2/help/fr_CA/editorial/toc/000012.xml
-www/ojs2/help/fr_CA/editorial/toc/000013.xml
-www/ojs2/help/fr_CA/editorial/toc/000014.xml
-www/ojs2/help/fr_CA/editorial/topic/000000.xml
-www/ojs2/help/fr_CA/editorial/topic/000001.xml
-www/ojs2/help/fr_CA/editorial/topic/000002.xml
-www/ojs2/help/fr_CA/editorial/topic/000003.xml
-www/ojs2/help/fr_CA/editorial/topic/000004.xml
-www/ojs2/help/fr_CA/editorial/topic/000005.xml
-www/ojs2/help/fr_CA/editorial/topic/000006.xml
-www/ojs2/help/fr_CA/editorial/topic/000007.xml
-www/ojs2/help/fr_CA/editorial/topic/000008.xml
-www/ojs2/help/fr_CA/editorial/topic/000009.xml
-www/ojs2/help/fr_CA/editorial/topic/000010.xml
-www/ojs2/help/fr_CA/editorial/topic/000011.xml
-www/ojs2/help/fr_CA/editorial/topic/000012.xml
-www/ojs2/help/fr_CA/editorial/topic/000013.xml
-www/ojs2/help/fr_CA/editorial/topic/000014.xml
-www/ojs2/help/fr_CA/editorial/topic/000015.xml
-www/ojs2/help/fr_CA/editorial/topic/000016.xml
-www/ojs2/help/fr_CA/editorial/topic/000017.xml
-www/ojs2/help/fr_CA/editorial/topic/000018.xml
-www/ojs2/help/fr_CA/editorial/topic/000019.xml
-www/ojs2/help/fr_CA/editorial/topic/000020.xml
-www/ojs2/help/fr_CA/editorial/topic/000021.xml
-www/ojs2/help/fr_CA/editorial/topic/000022.xml
-www/ojs2/help/fr_CA/editorial/topic/000023.xml
-www/ojs2/help/fr_CA/editorial/topic/000024.xml
-www/ojs2/help/fr_CA/editorial/topic/000025.xml
-www/ojs2/help/fr_CA/editorial/topic/000026.xml
-www/ojs2/help/fr_CA/editorial/topic/000027.xml
-www/ojs2/help/fr_CA/editorial/topic/000028.xml
-www/ojs2/help/fr_CA/editorial/topic/000029.xml
-www/ojs2/help/fr_CA/editorial/topic/000030.xml
-www/ojs2/help/fr_CA/editorial/topic/000031.xml
-www/ojs2/help/fr_CA/editorial/topic/000032.xml
-www/ojs2/help/fr_CA/editorial/topic/000033.xml
-www/ojs2/help/fr_CA/editorial/topic/000034.xml
-www/ojs2/help/fr_CA/editorial/topic/000035.xml
-www/ojs2/help/fr_CA/editorial/topic/000036.xml
-www/ojs2/help/fr_CA/editorial/topic/000037.xml
-www/ojs2/help/fr_CA/editorial/topic/000038.xml
-www/ojs2/help/fr_CA/editorial/topic/000039.xml
-www/ojs2/help/fr_CA/editorial/topic/000040.xml
-www/ojs2/help/fr_CA/editorial/topic/000041.xml
-www/ojs2/help/fr_CA/editorial/topic/000042.xml
-www/ojs2/help/fr_CA/editorial/topic/000043.xml
-www/ojs2/help/fr_CA/editorial/topic/000044.xml
-www/ojs2/help/fr_CA/index/toc/000000.xml
-www/ojs2/help/fr_CA/index/topic/000000.xml
-www/ojs2/help/fr_CA/intro/toc/000000.xml
-www/ojs2/help/fr_CA/intro/topic/000000.xml
-www/ojs2/help/fr_CA/intro/topic/000001.xml
-www/ojs2/help/fr_CA/journal/toc/000000.xml
-www/ojs2/help/fr_CA/journal/toc/000001.xml
-www/ojs2/help/fr_CA/journal/toc/000002.xml
-www/ojs2/help/fr_CA/journal/toc/000003.xml
-www/ojs2/help/fr_CA/journal/toc/000005.xml
-www/ojs2/help/fr_CA/journal/topic/000000.xml
-www/ojs2/help/fr_CA/journal/topic/000001.xml
-www/ojs2/help/fr_CA/journal/topic/000002.xml
-www/ojs2/help/fr_CA/journal/topic/000003.xml
-www/ojs2/help/fr_CA/journal/topic/000004.xml
-www/ojs2/help/fr_CA/journal/topic/000005.xml
-www/ojs2/help/fr_CA/journal/topic/000006.xml
-www/ojs2/help/fr_CA/journal/topic/000007.xml
-www/ojs2/help/fr_CA/journal/topic/000008.xml
-www/ojs2/help/fr_CA/journal/topic/000009.xml
-www/ojs2/help/fr_CA/journal/topic/000010.xml
-www/ojs2/help/fr_CA/journal/topic/000011.xml
-www/ojs2/help/fr_CA/journal/topic/000012.xml
-www/ojs2/help/fr_CA/journal/topic/000013.xml
-www/ojs2/help/fr_CA/journal/topic/000014.xml
-www/ojs2/help/fr_CA/journal/topic/000015.xml
-www/ojs2/help/fr_CA/journal/topic/000016.xml
-www/ojs2/help/fr_CA/journal/topic/000017.xml
-www/ojs2/help/fr_CA/journal/topic/000018.xml
-www/ojs2/help/fr_CA/journal/topic/000019.xml
-www/ojs2/help/fr_CA/journal/topic/000020.xml
-www/ojs2/help/fr_CA/journal/topic/000021.xml
-www/ojs2/help/fr_CA/journal/topic/000022.xml
-www/ojs2/help/fr_CA/journal/topic/000023.xml
-www/ojs2/help/fr_CA/journal/topic/000025.xml
-www/ojs2/help/fr_CA/journal/topic/000026.xml
-www/ojs2/help/fr_CA/journal/topic/000027.xml
-www/ojs2/help/fr_CA/journal/topic/000028.xml
-www/ojs2/help/fr_CA/journal/topic/000029.xml
-www/ojs2/help/fr_CA/journal/topic/000030.xml
-www/ojs2/help/fr_CA/journal/topic/000031.xml
-www/ojs2/help/fr_CA/journal/topic/000032.xml
-www/ojs2/help/fr_CA/journal/topic/000033.xml
-www/ojs2/help/fr_CA/journal/topic/000034.xml
-www/ojs2/help/fr_CA/publishing/toc/000000.xml
-www/ojs2/help/fr_CA/publishing/topic/000000.xml
-www/ojs2/help/fr_CA/publishing/topic/000001.xml
-www/ojs2/help/fr_CA/publishing/topic/000002.xml
-www/ojs2/help/fr_CA/publishing/topic/000003.xml
-www/ojs2/help/fr_CA/publishing/topic/000004.xml
-www/ojs2/help/fr_CA/site/toc/000000.xml
-www/ojs2/help/fr_CA/site/topic/000000.xml
-www/ojs2/help/fr_CA/site/topic/000001.xml
-www/ojs2/help/fr_CA/site/topic/000002.xml
-www/ojs2/help/fr_CA/site/topic/000003.xml
-www/ojs2/help/fr_CA/submission/toc/000000.xml
-www/ojs2/help/fr_CA/submission/topic/000000.xml
-www/ojs2/help/fr_CA/submission/topic/000001.xml
-www/ojs2/help/fr_CA/submission/topic/000002.xml
-www/ojs2/help/fr_CA/submission/topic/000003.xml
-www/ojs2/help/fr_CA/submission/topic/000004.xml
-www/ojs2/help/fr_CA/user/toc/000000.xml
-www/ojs2/help/fr_CA/user/topic/000000.xml
-www/ojs2/help/fr_CA/user/topic/000001.xml
-www/ojs2/help/fr_CA/user/topic/000002.xml
-www/ojs2/help/fr_CA/user/topic/000003.xml
-www/ojs2/help/fr_CA/user/topic/000004.xml
-www/ojs2/help/fr_CA/user/topic/000005.xml
-www/ojs2/help/fr_CA/user/topic/000006.xml
-www/ojs2/help/fr_CA/user/topic/000007.xml
-www/ojs2/help/help.dtd
-www/ojs2/help/help.xml
-www/ojs2/help/it_IT/editorial/toc/000000.xml
-www/ojs2/help/it_IT/editorial/toc/000001.xml
-www/ojs2/help/it_IT/editorial/toc/000002.xml
-www/ojs2/help/it_IT/editorial/toc/000003.xml
-www/ojs2/help/it_IT/editorial/toc/000004.xml
-www/ojs2/help/it_IT/editorial/toc/000005.xml
-www/ojs2/help/it_IT/editorial/toc/000006.xml
-www/ojs2/help/it_IT/editorial/toc/000007.xml
-www/ojs2/help/it_IT/editorial/toc/000008.xml
-www/ojs2/help/it_IT/editorial/toc/000009.xml
-www/ojs2/help/it_IT/editorial/toc/000010.xml
-www/ojs2/help/it_IT/editorial/toc/000011.xml
-www/ojs2/help/it_IT/editorial/toc/000012.xml
-www/ojs2/help/it_IT/editorial/toc/000013.xml
-www/ojs2/help/it_IT/editorial/toc/000014.xml
-www/ojs2/help/it_IT/editorial/topic/000000.xml
-www/ojs2/help/it_IT/editorial/topic/000001.xml
-www/ojs2/help/it_IT/editorial/topic/000002.xml
-www/ojs2/help/it_IT/editorial/topic/000003.xml
-www/ojs2/help/it_IT/editorial/topic/000004.xml
-www/ojs2/help/it_IT/editorial/topic/000005.xml
-www/ojs2/help/it_IT/editorial/topic/000006.xml
-www/ojs2/help/it_IT/editorial/topic/000007.xml
-www/ojs2/help/it_IT/editorial/topic/000008.xml
-www/ojs2/help/it_IT/editorial/topic/000009.xml
-www/ojs2/help/it_IT/editorial/topic/000010.xml
-www/ojs2/help/it_IT/editorial/topic/000011.xml
-www/ojs2/help/it_IT/editorial/topic/000012.xml
-www/ojs2/help/it_IT/editorial/topic/000013.xml
-www/ojs2/help/it_IT/editorial/topic/000014.xml
-www/ojs2/help/it_IT/editorial/topic/000015.xml
-www/ojs2/help/it_IT/editorial/topic/000016.xml
-www/ojs2/help/it_IT/editorial/topic/000017.xml
-www/ojs2/help/it_IT/editorial/topic/000018.xml
-www/ojs2/help/it_IT/editorial/topic/000019.xml
-www/ojs2/help/it_IT/editorial/topic/000020.xml
-www/ojs2/help/it_IT/editorial/topic/000021.xml
-www/ojs2/help/it_IT/editorial/topic/000022.xml
-www/ojs2/help/it_IT/editorial/topic/000023.xml
-www/ojs2/help/it_IT/editorial/topic/000024.xml
-www/ojs2/help/it_IT/editorial/topic/000025.xml
-www/ojs2/help/it_IT/editorial/topic/000026.xml
-www/ojs2/help/it_IT/editorial/topic/000027.xml
-www/ojs2/help/it_IT/editorial/topic/000028.xml
-www/ojs2/help/it_IT/editorial/topic/000029.xml
-www/ojs2/help/it_IT/editorial/topic/000030.xml
-www/ojs2/help/it_IT/editorial/topic/000031.xml
-www/ojs2/help/it_IT/editorial/topic/000032.xml
-www/ojs2/help/it_IT/editorial/topic/000033.xml
-www/ojs2/help/it_IT/editorial/topic/000034.xml
-www/ojs2/help/it_IT/editorial/topic/000035.xml
-www/ojs2/help/it_IT/editorial/topic/000036.xml
-www/ojs2/help/it_IT/editorial/topic/000037.xml
-www/ojs2/help/it_IT/editorial/topic/000038.xml
-www/ojs2/help/it_IT/editorial/topic/000039.xml
-www/ojs2/help/it_IT/editorial/topic/000040.xml
-www/ojs2/help/it_IT/editorial/topic/000041.xml
-www/ojs2/help/it_IT/editorial/topic/000042.xml
-www/ojs2/help/it_IT/editorial/topic/000043.xml
-www/ojs2/help/it_IT/editorial/topic/000044.xml
-www/ojs2/help/it_IT/index/toc/000000.xml
-www/ojs2/help/it_IT/index/topic/000000.xml
-www/ojs2/help/it_IT/intro/toc/000000.xml
-www/ojs2/help/it_IT/intro/topic/000000.xml
-www/ojs2/help/it_IT/intro/topic/000001.xml
-www/ojs2/help/it_IT/journal/toc/000000.xml
-www/ojs2/help/it_IT/journal/toc/000001.xml
-www/ojs2/help/it_IT/journal/toc/000002.xml
-www/ojs2/help/it_IT/journal/toc/000003.xml
-www/ojs2/help/it_IT/journal/toc/000005.xml
-www/ojs2/help/it_IT/journal/topic/000000.xml
-www/ojs2/help/it_IT/journal/topic/000001.xml
-www/ojs2/help/it_IT/journal/topic/000002.xml
-www/ojs2/help/it_IT/journal/topic/000003.xml
-www/ojs2/help/it_IT/journal/topic/000004.xml
-www/ojs2/help/it_IT/journal/topic/000005.xml
-www/ojs2/help/it_IT/journal/topic/000006.xml
-www/ojs2/help/it_IT/journal/topic/000007.xml
-www/ojs2/help/it_IT/journal/topic/000008.xml
-www/ojs2/help/it_IT/journal/topic/000009.xml
-www/ojs2/help/it_IT/journal/topic/000010.xml
-www/ojs2/help/it_IT/journal/topic/000011.xml
-www/ojs2/help/it_IT/journal/topic/000012.xml
-www/ojs2/help/it_IT/journal/topic/000013.xml
-www/ojs2/help/it_IT/journal/topic/000014.xml
-www/ojs2/help/it_IT/journal/topic/000015.xml
-www/ojs2/help/it_IT/journal/topic/000016.xml
-www/ojs2/help/it_IT/journal/topic/000017.xml
-www/ojs2/help/it_IT/journal/topic/000018.xml
-www/ojs2/help/it_IT/journal/topic/000019.xml
-www/ojs2/help/it_IT/journal/topic/000020.xml
-www/ojs2/help/it_IT/journal/topic/000021.xml
-www/ojs2/help/it_IT/journal/topic/000022.xml
-www/ojs2/help/it_IT/journal/topic/000023.xml
-www/ojs2/help/it_IT/journal/topic/000025.xml
-www/ojs2/help/it_IT/journal/topic/000026.xml
-www/ojs2/help/it_IT/journal/topic/000027.xml
-www/ojs2/help/it_IT/journal/topic/000028.xml
-www/ojs2/help/it_IT/journal/topic/000029.xml
-www/ojs2/help/it_IT/journal/topic/000030.xml
-www/ojs2/help/it_IT/journal/topic/000031.xml
-www/ojs2/help/it_IT/journal/topic/000032.xml
-www/ojs2/help/it_IT/journal/topic/000033.xml
-www/ojs2/help/it_IT/journal/topic/000034.xml
-www/ojs2/help/it_IT/publishing/toc/000000.xml
-www/ojs2/help/it_IT/publishing/topic/000000.xml
-www/ojs2/help/it_IT/publishing/topic/000001.xml
-www/ojs2/help/it_IT/publishing/topic/000002.xml
-www/ojs2/help/it_IT/publishing/topic/000003.xml
-www/ojs2/help/it_IT/publishing/topic/000004.xml
-www/ojs2/help/it_IT/site/toc/000000.xml
-www/ojs2/help/it_IT/site/topic/000000.xml
-www/ojs2/help/it_IT/site/topic/000001.xml
-www/ojs2/help/it_IT/site/topic/000002.xml
-www/ojs2/help/it_IT/site/topic/000003.xml
-www/ojs2/help/it_IT/submission/toc/000000.xml
-www/ojs2/help/it_IT/submission/topic/000000.xml
-www/ojs2/help/it_IT/submission/topic/000001.xml
-www/ojs2/help/it_IT/submission/topic/000002.xml
-www/ojs2/help/it_IT/submission/topic/000003.xml
-www/ojs2/help/it_IT/submission/topic/000004.xml
-www/ojs2/help/it_IT/user/toc/000000.xml
-www/ojs2/help/it_IT/user/topic/000000.xml
-www/ojs2/help/it_IT/user/topic/000001.xml
-www/ojs2/help/it_IT/user/topic/000002.xml
-www/ojs2/help/it_IT/user/topic/000003.xml
-www/ojs2/help/it_IT/user/topic/000004.xml
-www/ojs2/help/it_IT/user/topic/000005.xml
-www/ojs2/help/it_IT/user/topic/000006.xml
-www/ojs2/help/it_IT/user/topic/000007.xml
-www/ojs2/help/ja_JP/editorial/toc/000000.xml
-www/ojs2/help/ja_JP/editorial/toc/000001.xml
-www/ojs2/help/ja_JP/editorial/toc/000002.xml
-www/ojs2/help/ja_JP/editorial/toc/000003.xml
-www/ojs2/help/ja_JP/editorial/toc/000004.xml
-www/ojs2/help/ja_JP/editorial/toc/000005.xml
-www/ojs2/help/ja_JP/editorial/toc/000006.xml
-www/ojs2/help/ja_JP/editorial/toc/000007.xml
-www/ojs2/help/ja_JP/editorial/toc/000008.xml
-www/ojs2/help/ja_JP/editorial/toc/000009.xml
-www/ojs2/help/ja_JP/editorial/toc/000010.xml
-www/ojs2/help/ja_JP/editorial/toc/000011.xml
-www/ojs2/help/ja_JP/editorial/toc/000012.xml
-www/ojs2/help/ja_JP/editorial/toc/000013.xml
-www/ojs2/help/ja_JP/editorial/toc/000014.xml
-www/ojs2/help/ja_JP/editorial/topic/000000.xml
-www/ojs2/help/ja_JP/editorial/topic/000001.xml
-www/ojs2/help/ja_JP/editorial/topic/000002.xml
-www/ojs2/help/ja_JP/editorial/topic/000003.xml
-www/ojs2/help/ja_JP/editorial/topic/000004.xml
-www/ojs2/help/ja_JP/editorial/topic/000005.xml
-www/ojs2/help/ja_JP/editorial/topic/000006.xml
-www/ojs2/help/ja_JP/editorial/topic/000007.xml
-www/ojs2/help/ja_JP/editorial/topic/000008.xml
-www/ojs2/help/ja_JP/editorial/topic/000009.xml
-www/ojs2/help/ja_JP/editorial/topic/000010.xml
-www/ojs2/help/ja_JP/editorial/topic/000011.xml
-www/ojs2/help/ja_JP/editorial/topic/000012.xml
-www/ojs2/help/ja_JP/editorial/topic/000013.xml
-www/ojs2/help/ja_JP/editorial/topic/000014.xml
-www/ojs2/help/ja_JP/editorial/topic/000015.xml
-www/ojs2/help/ja_JP/editorial/topic/000016.xml
-www/ojs2/help/ja_JP/editorial/topic/000017.xml
-www/ojs2/help/ja_JP/editorial/topic/000018.xml
-www/ojs2/help/ja_JP/editorial/topic/000019.xml
-www/ojs2/help/ja_JP/editorial/topic/000020.xml
-www/ojs2/help/ja_JP/editorial/topic/000021.xml
-www/ojs2/help/ja_JP/editorial/topic/000022.xml
-www/ojs2/help/ja_JP/editorial/topic/000023.xml
-www/ojs2/help/ja_JP/editorial/topic/000024.xml
-www/ojs2/help/ja_JP/editorial/topic/000025.xml
-www/ojs2/help/ja_JP/editorial/topic/000026.xml
-www/ojs2/help/ja_JP/editorial/topic/000027.xml
-www/ojs2/help/ja_JP/editorial/topic/000028.xml
-www/ojs2/help/ja_JP/editorial/topic/000029.xml
-www/ojs2/help/ja_JP/editorial/topic/000030.xml
-www/ojs2/help/ja_JP/editorial/topic/000031.xml
-www/ojs2/help/ja_JP/editorial/topic/000032.xml
-www/ojs2/help/ja_JP/editorial/topic/000033.xml
-www/ojs2/help/ja_JP/editorial/topic/000034.xml
-www/ojs2/help/ja_JP/editorial/topic/000035.xml
-www/ojs2/help/ja_JP/editorial/topic/000036.xml
-www/ojs2/help/ja_JP/editorial/topic/000037.xml
-www/ojs2/help/ja_JP/editorial/topic/000038.xml
-www/ojs2/help/ja_JP/editorial/topic/000039.xml
-www/ojs2/help/ja_JP/editorial/topic/000040.xml
-www/ojs2/help/ja_JP/editorial/topic/000041.xml
-www/ojs2/help/ja_JP/editorial/topic/000042.xml
-www/ojs2/help/ja_JP/editorial/topic/000043.xml
-www/ojs2/help/ja_JP/editorial/topic/000044.xml
-www/ojs2/help/ja_JP/index/toc/000000.xml
-www/ojs2/help/ja_JP/index/topic/000000.xml
-www/ojs2/help/ja_JP/intro/toc/000000.xml
-www/ojs2/help/ja_JP/intro/topic/000000.xml
-www/ojs2/help/ja_JP/intro/topic/000001.xml
-www/ojs2/help/ja_JP/journal/toc/000000.xml
-www/ojs2/help/ja_JP/journal/toc/000001.xml
-www/ojs2/help/ja_JP/journal/toc/000002.xml
-www/ojs2/help/ja_JP/journal/toc/000003.xml
-www/ojs2/help/ja_JP/journal/toc/000005.xml
-www/ojs2/help/ja_JP/journal/topic/000000.xml
-www/ojs2/help/ja_JP/journal/topic/000001.xml
-www/ojs2/help/ja_JP/journal/topic/000002.xml
-www/ojs2/help/ja_JP/journal/topic/000003.xml
-www/ojs2/help/ja_JP/journal/topic/000004.xml
-www/ojs2/help/ja_JP/journal/topic/000005.xml
-www/ojs2/help/ja_JP/journal/topic/000006.xml
-www/ojs2/help/ja_JP/journal/topic/000007.xml
-www/ojs2/help/ja_JP/journal/topic/000008.xml
-www/ojs2/help/ja_JP/journal/topic/000009.xml
-www/ojs2/help/ja_JP/journal/topic/000010.xml
-www/ojs2/help/ja_JP/journal/topic/000011.xml
-www/ojs2/help/ja_JP/journal/topic/000012.xml
-www/ojs2/help/ja_JP/journal/topic/000013.xml
-www/ojs2/help/ja_JP/journal/topic/000014.xml
-www/ojs2/help/ja_JP/journal/topic/000015.xml
-www/ojs2/help/ja_JP/journal/topic/000016.xml
-www/ojs2/help/ja_JP/journal/topic/000017.xml
-www/ojs2/help/ja_JP/journal/topic/000018.xml
-www/ojs2/help/ja_JP/journal/topic/000019.xml
-www/ojs2/help/ja_JP/journal/topic/000020.xml
-www/ojs2/help/ja_JP/journal/topic/000021.xml
-www/ojs2/help/ja_JP/journal/topic/000022.xml
-www/ojs2/help/ja_JP/journal/topic/000023.xml
-www/ojs2/help/ja_JP/journal/topic/000025.xml
-www/ojs2/help/ja_JP/journal/topic/000026.xml
-www/ojs2/help/ja_JP/journal/topic/000027.xml
-www/ojs2/help/ja_JP/journal/topic/000028.xml
-www/ojs2/help/ja_JP/journal/topic/000029.xml
-www/ojs2/help/ja_JP/journal/topic/000030.xml
-www/ojs2/help/ja_JP/journal/topic/000031.xml
-www/ojs2/help/ja_JP/journal/topic/000032.xml
-www/ojs2/help/ja_JP/journal/topic/000033.xml
-www/ojs2/help/ja_JP/journal/topic/000034.xml
-www/ojs2/help/ja_JP/publishing/toc/000000.xml
-www/ojs2/help/ja_JP/publishing/topic/000000.xml
-www/ojs2/help/ja_JP/publishing/topic/000001.xml
-www/ojs2/help/ja_JP/publishing/topic/000002.xml
-www/ojs2/help/ja_JP/publishing/topic/000003.xml
-www/ojs2/help/ja_JP/publishing/topic/000004.xml
-www/ojs2/help/ja_JP/site/toc/000000.xml
-www/ojs2/help/ja_JP/site/topic/000000.xml
-www/ojs2/help/ja_JP/site/topic/000001.xml
-www/ojs2/help/ja_JP/site/topic/000002.xml
-www/ojs2/help/ja_JP/site/topic/000003.xml
-www/ojs2/help/ja_JP/submission/toc/000000.xml
-www/ojs2/help/ja_JP/submission/topic/000000.xml
-www/ojs2/help/ja_JP/submission/topic/000001.xml
-www/ojs2/help/ja_JP/submission/topic/000002.xml
-www/ojs2/help/ja_JP/submission/topic/000003.xml
-www/ojs2/help/ja_JP/submission/topic/000004.xml
-www/ojs2/help/ja_JP/user/toc/000000.xml
-www/ojs2/help/ja_JP/user/topic/000000.xml
-www/ojs2/help/ja_JP/user/topic/000001.xml
-www/ojs2/help/ja_JP/user/topic/000002.xml
-www/ojs2/help/ja_JP/user/topic/000003.xml
-www/ojs2/help/ja_JP/user/topic/000004.xml
-www/ojs2/help/ja_JP/user/topic/000005.xml
-www/ojs2/help/ja_JP/user/topic/000006.xml
-www/ojs2/help/ja_JP/user/topic/000007.xml
-www/ojs2/help/pt_BR/editorial/toc/000000.xml
-www/ojs2/help/pt_BR/editorial/toc/000001.xml
-www/ojs2/help/pt_BR/editorial/toc/000002.xml
-www/ojs2/help/pt_BR/editorial/toc/000003.xml
-www/ojs2/help/pt_BR/editorial/toc/000004.xml
-www/ojs2/help/pt_BR/editorial/toc/000005.xml
-www/ojs2/help/pt_BR/editorial/toc/000006.xml
-www/ojs2/help/pt_BR/editorial/toc/000007.xml
-www/ojs2/help/pt_BR/editorial/toc/000008.xml
-www/ojs2/help/pt_BR/editorial/toc/000009.xml
-www/ojs2/help/pt_BR/editorial/toc/000010.xml
-www/ojs2/help/pt_BR/editorial/toc/000011.xml
-www/ojs2/help/pt_BR/editorial/toc/000012.xml
-www/ojs2/help/pt_BR/editorial/toc/000013.xml
-www/ojs2/help/pt_BR/editorial/toc/000014.xml
-www/ojs2/help/pt_BR/editorial/topic/000000.xml
-www/ojs2/help/pt_BR/editorial/topic/000001.xml
-www/ojs2/help/pt_BR/editorial/topic/000002.xml
-www/ojs2/help/pt_BR/editorial/topic/000003.xml
-www/ojs2/help/pt_BR/editorial/topic/000004.xml
-www/ojs2/help/pt_BR/editorial/topic/000005.xml
-www/ojs2/help/pt_BR/editorial/topic/000006.xml
-www/ojs2/help/pt_BR/editorial/topic/000007.xml
-www/ojs2/help/pt_BR/editorial/topic/000008.xml
-www/ojs2/help/pt_BR/editorial/topic/000009.xml
-www/ojs2/help/pt_BR/editorial/topic/000010.xml
-www/ojs2/help/pt_BR/editorial/topic/000011.xml
-www/ojs2/help/pt_BR/editorial/topic/000012.xml
-www/ojs2/help/pt_BR/editorial/topic/000013.xml
-www/ojs2/help/pt_BR/editorial/topic/000014.xml
-www/ojs2/help/pt_BR/editorial/topic/000015.xml
-www/ojs2/help/pt_BR/editorial/topic/000016.xml
-www/ojs2/help/pt_BR/editorial/topic/000017.xml
-www/ojs2/help/pt_BR/editorial/topic/000018.xml
-www/ojs2/help/pt_BR/editorial/topic/000019.xml
-www/ojs2/help/pt_BR/editorial/topic/000020.xml
-www/ojs2/help/pt_BR/editorial/topic/000021.xml
-www/ojs2/help/pt_BR/editorial/topic/000022.xml
-www/ojs2/help/pt_BR/editorial/topic/000023.xml
-www/ojs2/help/pt_BR/editorial/topic/000024.xml
-www/ojs2/help/pt_BR/editorial/topic/000025.xml
-www/ojs2/help/pt_BR/editorial/topic/000026.xml
-www/ojs2/help/pt_BR/editorial/topic/000027.xml
-www/ojs2/help/pt_BR/editorial/topic/000028.xml
-www/ojs2/help/pt_BR/editorial/topic/000029.xml
-www/ojs2/help/pt_BR/editorial/topic/000030.xml
-www/ojs2/help/pt_BR/editorial/topic/000031.xml
-www/ojs2/help/pt_BR/editorial/topic/000032.xml
-www/ojs2/help/pt_BR/editorial/topic/000033.xml
-www/ojs2/help/pt_BR/editorial/topic/000034.xml
-www/ojs2/help/pt_BR/editorial/topic/000035.xml
-www/ojs2/help/pt_BR/editorial/topic/000036.xml
-www/ojs2/help/pt_BR/editorial/topic/000037.xml
-www/ojs2/help/pt_BR/editorial/topic/000038.xml
-www/ojs2/help/pt_BR/editorial/topic/000039.xml
-www/ojs2/help/pt_BR/editorial/topic/000040.xml
-www/ojs2/help/pt_BR/editorial/topic/000041.xml
-www/ojs2/help/pt_BR/editorial/topic/000042.xml
-www/ojs2/help/pt_BR/editorial/topic/000043.xml
-www/ojs2/help/pt_BR/editorial/topic/000044.xml
-www/ojs2/help/pt_BR/index/toc/000000.xml
-www/ojs2/help/pt_BR/index/topic/000000.xml
-www/ojs2/help/pt_BR/intro/toc/000000.xml
-www/ojs2/help/pt_BR/intro/topic/000000.xml
-www/ojs2/help/pt_BR/intro/topic/000001.xml
-www/ojs2/help/pt_BR/journal/toc/000000.xml
-www/ojs2/help/pt_BR/journal/toc/000001.xml
-www/ojs2/help/pt_BR/journal/toc/000002.xml
-www/ojs2/help/pt_BR/journal/toc/000003.xml
-www/ojs2/help/pt_BR/journal/toc/000005.xml
-www/ojs2/help/pt_BR/journal/topic/000000.xml
-www/ojs2/help/pt_BR/journal/topic/000001.xml
-www/ojs2/help/pt_BR/journal/topic/000002.xml
-www/ojs2/help/pt_BR/journal/topic/000003.xml
-www/ojs2/help/pt_BR/journal/topic/000004.xml
-www/ojs2/help/pt_BR/journal/topic/000005.xml
-www/ojs2/help/pt_BR/journal/topic/000006.xml
-www/ojs2/help/pt_BR/journal/topic/000007.xml
-www/ojs2/help/pt_BR/journal/topic/000008.xml
-www/ojs2/help/pt_BR/journal/topic/000009.xml
-www/ojs2/help/pt_BR/journal/topic/000010.xml
-www/ojs2/help/pt_BR/journal/topic/000011.xml
-www/ojs2/help/pt_BR/journal/topic/000012.xml
-www/ojs2/help/pt_BR/journal/topic/000013.xml
-www/ojs2/help/pt_BR/journal/topic/000014.xml
-www/ojs2/help/pt_BR/journal/topic/000015.xml
-www/ojs2/help/pt_BR/journal/topic/000016.xml
-www/ojs2/help/pt_BR/journal/topic/000017.xml
-www/ojs2/help/pt_BR/journal/topic/000018.xml
-www/ojs2/help/pt_BR/journal/topic/000019.xml
-www/ojs2/help/pt_BR/journal/topic/000020.xml
-www/ojs2/help/pt_BR/journal/topic/000021.xml
-www/ojs2/help/pt_BR/journal/topic/000022.xml
-www/ojs2/help/pt_BR/journal/topic/000023.xml
-www/ojs2/help/pt_BR/journal/topic/000025.xml
-www/ojs2/help/pt_BR/journal/topic/000026.xml
-www/ojs2/help/pt_BR/journal/topic/000027.xml
-www/ojs2/help/pt_BR/journal/topic/000028.xml
-www/ojs2/help/pt_BR/journal/topic/000029.xml
-www/ojs2/help/pt_BR/journal/topic/000030.xml
-www/ojs2/help/pt_BR/journal/topic/000031.xml
-www/ojs2/help/pt_BR/journal/topic/000032.xml
-www/ojs2/help/pt_BR/journal/topic/000033.xml
-www/ojs2/help/pt_BR/journal/topic/000034.xml
-www/ojs2/help/pt_BR/publishing/toc/000000.xml
-www/ojs2/help/pt_BR/publishing/topic/000000.xml
-www/ojs2/help/pt_BR/publishing/topic/000001.xml
-www/ojs2/help/pt_BR/publishing/topic/000002.xml
-www/ojs2/help/pt_BR/publishing/topic/000003.xml
-www/ojs2/help/pt_BR/publishing/topic/000004.xml
-www/ojs2/help/pt_BR/site/toc/000000.xml
-www/ojs2/help/pt_BR/site/topic/000000.xml
-www/ojs2/help/pt_BR/site/topic/000001.xml
-www/ojs2/help/pt_BR/site/topic/000002.xml
-www/ojs2/help/pt_BR/site/topic/000003.xml
-www/ojs2/help/pt_BR/submission/toc/000000.xml
-www/ojs2/help/pt_BR/submission/topic/000000.xml
-www/ojs2/help/pt_BR/submission/topic/000001.xml
-www/ojs2/help/pt_BR/submission/topic/000002.xml
-www/ojs2/help/pt_BR/submission/topic/000003.xml
-www/ojs2/help/pt_BR/submission/topic/000004.xml
-www/ojs2/help/pt_BR/user/toc/000000.xml
-www/ojs2/help/pt_BR/user/topic/000000.xml
-www/ojs2/help/pt_BR/user/topic/000001.xml
-www/ojs2/help/pt_BR/user/topic/000002.xml
-www/ojs2/help/pt_BR/user/topic/000003.xml
-www/ojs2/help/pt_BR/user/topic/000004.xml
-www/ojs2/help/pt_BR/user/topic/000005.xml
-www/ojs2/help/pt_BR/user/topic/000006.xml
-www/ojs2/help/pt_BR/user/topic/000007.xml
-www/ojs2/help/toc.dtd
-www/ojs2/help/topic.dtd
-www/ojs2/help/tr_TR/editorial/toc/000000.xml
-www/ojs2/help/tr_TR/editorial/toc/000001.xml
-www/ojs2/help/tr_TR/editorial/toc/000002.xml
-www/ojs2/help/tr_TR/editorial/toc/000003.xml
-www/ojs2/help/tr_TR/editorial/toc/000004.xml
-www/ojs2/help/tr_TR/editorial/toc/000005.xml
-www/ojs2/help/tr_TR/editorial/toc/000006.xml
-www/ojs2/help/tr_TR/editorial/toc/000007.xml
-www/ojs2/help/tr_TR/editorial/toc/000008.xml
-www/ojs2/help/tr_TR/editorial/toc/000009.xml
-www/ojs2/help/tr_TR/editorial/toc/000010.xml
-www/ojs2/help/tr_TR/editorial/toc/000011.xml
-www/ojs2/help/tr_TR/editorial/toc/000012.xml
-www/ojs2/help/tr_TR/editorial/toc/000013.xml
-www/ojs2/help/tr_TR/editorial/toc/000014.xml
-www/ojs2/help/tr_TR/editorial/topic/000000.xml
-www/ojs2/help/tr_TR/editorial/topic/000001.xml
-www/ojs2/help/tr_TR/editorial/topic/000002.xml
-www/ojs2/help/tr_TR/editorial/topic/000003.xml
-www/ojs2/help/tr_TR/editorial/topic/000004.xml
-www/ojs2/help/tr_TR/editorial/topic/000005.xml
-www/ojs2/help/tr_TR/editorial/topic/000006.xml
-www/ojs2/help/tr_TR/editorial/topic/000007.xml
-www/ojs2/help/tr_TR/editorial/topic/000008.xml
-www/ojs2/help/tr_TR/editorial/topic/000009.xml
-www/ojs2/help/tr_TR/editorial/topic/000010.xml
-www/ojs2/help/tr_TR/editorial/topic/000011.xml
-www/ojs2/help/tr_TR/editorial/topic/000012.xml
-www/ojs2/help/tr_TR/editorial/topic/000013.xml
-www/ojs2/help/tr_TR/editorial/topic/000014.xml
-www/ojs2/help/tr_TR/editorial/topic/000015.xml
-www/ojs2/help/tr_TR/editorial/topic/000016.xml
-www/ojs2/help/tr_TR/editorial/topic/000017.xml
-www/ojs2/help/tr_TR/editorial/topic/000018.xml
-www/ojs2/help/tr_TR/editorial/topic/000019.xml
-www/ojs2/help/tr_TR/editorial/topic/000020.xml
-www/ojs2/help/tr_TR/editorial/topic/000021.xml
-www/ojs2/help/tr_TR/editorial/topic/000022.xml
-www/ojs2/help/tr_TR/editorial/topic/000023.xml
-www/ojs2/help/tr_TR/editorial/topic/000024.xml
-www/ojs2/help/tr_TR/editorial/topic/000025.xml
-www/ojs2/help/tr_TR/editorial/topic/000026.xml
-www/ojs2/help/tr_TR/editorial/topic/000027.xml
-www/ojs2/help/tr_TR/editorial/topic/000028.xml
-www/ojs2/help/tr_TR/editorial/topic/000029.xml
-www/ojs2/help/tr_TR/editorial/topic/000030.xml
-www/ojs2/help/tr_TR/editorial/topic/000031.xml
-www/ojs2/help/tr_TR/editorial/topic/000032.xml
-www/ojs2/help/tr_TR/editorial/topic/000033.xml
-www/ojs2/help/tr_TR/editorial/topic/000034.xml
-www/ojs2/help/tr_TR/editorial/topic/000035.xml
-www/ojs2/help/tr_TR/editorial/topic/000036.xml
-www/ojs2/help/tr_TR/editorial/topic/000037.xml
-www/ojs2/help/tr_TR/editorial/topic/000038.xml
-www/ojs2/help/tr_TR/editorial/topic/000039.xml
-www/ojs2/help/tr_TR/editorial/topic/000040.xml
-www/ojs2/help/tr_TR/editorial/topic/000041.xml
-www/ojs2/help/tr_TR/editorial/topic/000042.xml
-www/ojs2/help/tr_TR/editorial/topic/000043.xml
-www/ojs2/help/tr_TR/editorial/topic/000044.xml
-www/ojs2/help/tr_TR/index/toc/000000.xml
-www/ojs2/help/tr_TR/index/topic/000000.xml
-www/ojs2/help/tr_TR/intro/toc/000000.xml
-www/ojs2/help/tr_TR/intro/topic/000000.xml
-www/ojs2/help/tr_TR/intro/topic/000001.xml
-www/ojs2/help/tr_TR/journal/toc/000000.xml
-www/ojs2/help/tr_TR/journal/toc/000001.xml
-www/ojs2/help/tr_TR/journal/toc/000002.xml
-www/ojs2/help/tr_TR/journal/toc/000003.xml
-www/ojs2/help/tr_TR/journal/toc/000005.xml
-www/ojs2/help/tr_TR/journal/topic/000000.xml
-www/ojs2/help/tr_TR/journal/topic/000001.xml
-www/ojs2/help/tr_TR/journal/topic/000002.xml
-www/ojs2/help/tr_TR/journal/topic/000003.xml
-www/ojs2/help/tr_TR/journal/topic/000004.xml
-www/ojs2/help/tr_TR/journal/topic/000005.xml
-www/ojs2/help/tr_TR/journal/topic/000006.xml
-www/ojs2/help/tr_TR/journal/topic/000007.xml
-www/ojs2/help/tr_TR/journal/topic/000008.xml
-www/ojs2/help/tr_TR/journal/topic/000009.xml
-www/ojs2/help/tr_TR/journal/topic/000010.xml
-www/ojs2/help/tr_TR/journal/topic/000011.xml
-www/ojs2/help/tr_TR/journal/topic/000012.xml
-www/ojs2/help/tr_TR/journal/topic/000013.xml
-www/ojs2/help/tr_TR/journal/topic/000014.xml
-www/ojs2/help/tr_TR/journal/topic/000015.xml
-www/ojs2/help/tr_TR/journal/topic/000016.xml
-www/ojs2/help/tr_TR/journal/topic/000017.xml
-www/ojs2/help/tr_TR/journal/topic/000018.xml
-www/ojs2/help/tr_TR/journal/topic/000019.xml
-www/ojs2/help/tr_TR/journal/topic/000020.xml
-www/ojs2/help/tr_TR/journal/topic/000021.xml
-www/ojs2/help/tr_TR/journal/topic/000022.xml
-www/ojs2/help/tr_TR/journal/topic/000023.xml
-www/ojs2/help/tr_TR/journal/topic/000025.xml
-www/ojs2/help/tr_TR/journal/topic/000026.xml
-www/ojs2/help/tr_TR/journal/topic/000027.xml
-www/ojs2/help/tr_TR/journal/topic/000028.xml
-www/ojs2/help/tr_TR/journal/topic/000029.xml
-www/ojs2/help/tr_TR/journal/topic/000030.xml
-www/ojs2/help/tr_TR/journal/topic/000031.xml
-www/ojs2/help/tr_TR/journal/topic/000032.xml
-www/ojs2/help/tr_TR/journal/topic/000033.xml
-www/ojs2/help/tr_TR/journal/topic/000034.xml
-www/ojs2/help/tr_TR/publishing/toc/000000.xml
-www/ojs2/help/tr_TR/publishing/topic/000000.xml
-www/ojs2/help/tr_TR/publishing/topic/000001.xml
-www/ojs2/help/tr_TR/publishing/topic/000002.xml
-www/ojs2/help/tr_TR/publishing/topic/000003.xml
-www/ojs2/help/tr_TR/publishing/topic/000004.xml
-www/ojs2/help/tr_TR/site/toc/000000.xml
-www/ojs2/help/tr_TR/site/topic/000000.xml
-www/ojs2/help/tr_TR/site/topic/000001.xml
-www/ojs2/help/tr_TR/site/topic/000002.xml
-www/ojs2/help/tr_TR/site/topic/000003.xml
-www/ojs2/help/tr_TR/submission/toc/000000.xml
-www/ojs2/help/tr_TR/submission/topic/000000.xml
-www/ojs2/help/tr_TR/submission/topic/000001.xml
-www/ojs2/help/tr_TR/submission/topic/000002.xml
-www/ojs2/help/tr_TR/submission/topic/000003.xml
-www/ojs2/help/tr_TR/submission/topic/000004.xml
-www/ojs2/help/tr_TR/user/toc/000000.xml
-www/ojs2/help/tr_TR/user/topic/000000.xml
-www/ojs2/help/tr_TR/user/topic/000001.xml
-www/ojs2/help/tr_TR/user/topic/000002.xml
-www/ojs2/help/tr_TR/user/topic/000003.xml
-www/ojs2/help/tr_TR/user/topic/000004.xml
-www/ojs2/help/tr_TR/user/topic/000005.xml
-www/ojs2/help/tr_TR/user/topic/000006.xml
-www/ojs2/help/tr_TR/user/topic/000007.xml
-www/ojs2/help/vi_VN/editorial/toc/000000.xml
-www/ojs2/help/vi_VN/editorial/toc/000001.xml
-www/ojs2/help/vi_VN/editorial/toc/000002.xml
-www/ojs2/help/vi_VN/editorial/toc/000003.xml
-www/ojs2/help/vi_VN/editorial/toc/000004.xml
-www/ojs2/help/vi_VN/editorial/toc/000005.xml
-www/ojs2/help/vi_VN/editorial/toc/000006.xml
-www/ojs2/help/vi_VN/editorial/toc/000007.xml
-www/ojs2/help/vi_VN/editorial/toc/000008.xml
-www/ojs2/help/vi_VN/editorial/toc/000009.xml
-www/ojs2/help/vi_VN/editorial/toc/000010.xml
-www/ojs2/help/vi_VN/editorial/toc/000011.xml
-www/ojs2/help/vi_VN/editorial/toc/000012.xml
-www/ojs2/help/vi_VN/editorial/toc/000013.xml
-www/ojs2/help/vi_VN/editorial/toc/000014.xml
-www/ojs2/help/vi_VN/editorial/topic/000000.xml
-www/ojs2/help/vi_VN/editorial/topic/000001.xml
-www/ojs2/help/vi_VN/editorial/topic/000002.xml
-www/ojs2/help/vi_VN/editorial/topic/000003.xml
-www/ojs2/help/vi_VN/editorial/topic/000004.xml
-www/ojs2/help/vi_VN/editorial/topic/000005.xml
-www/ojs2/help/vi_VN/editorial/topic/000006.xml
-www/ojs2/help/vi_VN/editorial/topic/000007.xml
-www/ojs2/help/vi_VN/editorial/topic/000008.xml
-www/ojs2/help/vi_VN/editorial/topic/000009.xml
-www/ojs2/help/vi_VN/editorial/topic/000010.xml
-www/ojs2/help/vi_VN/editorial/topic/000011.xml
-www/ojs2/help/vi_VN/editorial/topic/000012.xml
-www/ojs2/help/vi_VN/editorial/topic/000013.xml
-www/ojs2/help/vi_VN/editorial/topic/000014.xml
-www/ojs2/help/vi_VN/editorial/topic/000015.xml
-www/ojs2/help/vi_VN/editorial/topic/000016.xml
-www/ojs2/help/vi_VN/editorial/topic/000017.xml
-www/ojs2/help/vi_VN/editorial/topic/000018.xml
-www/ojs2/help/vi_VN/editorial/topic/000019.xml
-www/ojs2/help/vi_VN/editorial/topic/000020.xml
-www/ojs2/help/vi_VN/editorial/topic/000021.xml
-www/ojs2/help/vi_VN/editorial/topic/000022.xml
-www/ojs2/help/vi_VN/editorial/topic/000023.xml
-www/ojs2/help/vi_VN/editorial/topic/000024.xml
-www/ojs2/help/vi_VN/editorial/topic/000025.xml
-www/ojs2/help/vi_VN/editorial/topic/000026.xml
-www/ojs2/help/vi_VN/editorial/topic/000027.xml
-www/ojs2/help/vi_VN/editorial/topic/000028.xml
-www/ojs2/help/vi_VN/editorial/topic/000029.xml
-www/ojs2/help/vi_VN/editorial/topic/000030.xml
-www/ojs2/help/vi_VN/editorial/topic/000031.xml
-www/ojs2/help/vi_VN/editorial/topic/000032.xml
-www/ojs2/help/vi_VN/editorial/topic/000033.xml
-www/ojs2/help/vi_VN/editorial/topic/000034.xml
-www/ojs2/help/vi_VN/editorial/topic/000035.xml
-www/ojs2/help/vi_VN/editorial/topic/000036.xml
-www/ojs2/help/vi_VN/editorial/topic/000037.xml
-www/ojs2/help/vi_VN/editorial/topic/000038.xml
-www/ojs2/help/vi_VN/editorial/topic/000039.xml
-www/ojs2/help/vi_VN/editorial/topic/000040.xml
-www/ojs2/help/vi_VN/editorial/topic/000041.xml
-www/ojs2/help/vi_VN/editorial/topic/000042.xml
-www/ojs2/help/vi_VN/editorial/topic/000043.xml
-www/ojs2/help/vi_VN/editorial/topic/000044.xml
-www/ojs2/help/vi_VN/index/toc/000000.xml
-www/ojs2/help/vi_VN/index/topic/000000.xml
-www/ojs2/help/vi_VN/intro/toc/000000.xml
-www/ojs2/help/vi_VN/intro/topic/000000.xml
-www/ojs2/help/vi_VN/intro/topic/000001.xml
-www/ojs2/help/vi_VN/journal/toc/000000.xml
-www/ojs2/help/vi_VN/journal/toc/000001.xml
-www/ojs2/help/vi_VN/journal/toc/000002.xml
-www/ojs2/help/vi_VN/journal/toc/000003.xml
-www/ojs2/help/vi_VN/journal/toc/000005.xml
-www/ojs2/help/vi_VN/journal/topic/000000.xml
-www/ojs2/help/vi_VN/journal/topic/000001.xml
-www/ojs2/help/vi_VN/journal/topic/000002.xml
-www/ojs2/help/vi_VN/journal/topic/000003.xml
-www/ojs2/help/vi_VN/journal/topic/000004.xml
-www/ojs2/help/vi_VN/journal/topic/000005.xml
-www/ojs2/help/vi_VN/journal/topic/000006.xml
-www/ojs2/help/vi_VN/journal/topic/000007.xml
-www/ojs2/help/vi_VN/journal/topic/000008.xml
-www/ojs2/help/vi_VN/journal/topic/000009.xml
-www/ojs2/help/vi_VN/journal/topic/000010.xml
-www/ojs2/help/vi_VN/journal/topic/000011.xml
-www/ojs2/help/vi_VN/journal/topic/000012.xml
-www/ojs2/help/vi_VN/journal/topic/000013.xml
-www/ojs2/help/vi_VN/journal/topic/000014.xml
-www/ojs2/help/vi_VN/journal/topic/000015.xml
-www/ojs2/help/vi_VN/journal/topic/000016.xml
-www/ojs2/help/vi_VN/journal/topic/000017.xml
-www/ojs2/help/vi_VN/journal/topic/000018.xml
-www/ojs2/help/vi_VN/journal/topic/000019.xml
-www/ojs2/help/vi_VN/journal/topic/000020.xml
-www/ojs2/help/vi_VN/journal/topic/000021.xml
-www/ojs2/help/vi_VN/journal/topic/000022.xml
-www/ojs2/help/vi_VN/journal/topic/000023.xml
-www/ojs2/help/vi_VN/journal/topic/000025.xml
-www/ojs2/help/vi_VN/journal/topic/000026.xml
-www/ojs2/help/vi_VN/journal/topic/000027.xml
-www/ojs2/help/vi_VN/journal/topic/000028.xml
-www/ojs2/help/vi_VN/journal/topic/000029.xml
-www/ojs2/help/vi_VN/journal/topic/000030.xml
-www/ojs2/help/vi_VN/journal/topic/000031.xml
-www/ojs2/help/vi_VN/journal/topic/000032.xml
-www/ojs2/help/vi_VN/journal/topic/000033.xml
-www/ojs2/help/vi_VN/journal/topic/000034.xml
-www/ojs2/help/vi_VN/publishing/toc/000000.xml
-www/ojs2/help/vi_VN/publishing/topic/000000.xml
-www/ojs2/help/vi_VN/publishing/topic/000001.xml
-www/ojs2/help/vi_VN/publishing/topic/000002.xml
-www/ojs2/help/vi_VN/publishing/topic/000003.xml
-www/ojs2/help/vi_VN/publishing/topic/000004.xml
-www/ojs2/help/vi_VN/site/toc/000000.xml
-www/ojs2/help/vi_VN/site/topic/000000.xml
-www/ojs2/help/vi_VN/site/topic/000001.xml
-www/ojs2/help/vi_VN/site/topic/000002.xml
-www/ojs2/help/vi_VN/site/topic/000003.xml
-www/ojs2/help/vi_VN/submission/toc/000000.xml
-www/ojs2/help/vi_VN/submission/topic/000000.xml
-www/ojs2/help/vi_VN/submission/topic/000001.xml
-www/ojs2/help/vi_VN/submission/topic/000002.xml
-www/ojs2/help/vi_VN/submission/topic/000003.xml
-www/ojs2/help/vi_VN/submission/topic/000004.xml
-www/ojs2/help/vi_VN/user/toc/000000.xml
-www/ojs2/help/vi_VN/user/topic/000000.xml
-www/ojs2/help/vi_VN/user/topic/000001.xml
-www/ojs2/help/vi_VN/user/topic/000002.xml
-www/ojs2/help/vi_VN/user/topic/000003.xml
-www/ojs2/help/vi_VN/user/topic/000004.xml
-www/ojs2/help/vi_VN/user/topic/000005.xml
-www/ojs2/help/vi_VN/user/topic/000006.xml
-www/ojs2/help/vi_VN/user/topic/000007.xml
-www/ojs2/includes/driver.inc.php
-www/ojs2/includes/functions.inc.php
-www/ojs2/index.php
-www/ojs2/js/general.js
-www/ojs2/lib/adodb/adodb-active-record.inc.php
-www/ojs2/lib/adodb/adodb-csvlib.inc.php
-www/ojs2/lib/adodb/adodb-datadict.inc.php
-www/ojs2/lib/adodb/adodb-error.inc.php
-www/ojs2/lib/adodb/adodb-errorhandler.inc.php
-www/ojs2/lib/adodb/adodb-errorpear.inc.php
-www/ojs2/lib/adodb/adodb-exceptions.inc.php
-www/ojs2/lib/adodb/adodb-iterator.inc.php
-www/ojs2/lib/adodb/adodb-lib.inc.php
-www/ojs2/lib/adodb/adodb-pager.inc.php
-www/ojs2/lib/adodb/adodb-pear.inc.php
-www/ojs2/lib/adodb/adodb-perf.inc.php
-www/ojs2/lib/adodb/adodb-php4.inc.php
-www/ojs2/lib/adodb/adodb-time.inc.php
-www/ojs2/lib/adodb/adodb-xmlschema.inc.php
-www/ojs2/lib/adodb/adodb-xmlschema03.inc.php
-www/ojs2/lib/adodb/adodb.inc.php
-www/ojs2/lib/adodb/datadict/datadict-access.inc.php
-www/ojs2/lib/adodb/datadict/datadict-db2.inc.php
-www/ojs2/lib/adodb/datadict/datadict-firebird.inc.php
-www/ojs2/lib/adodb/datadict/datadict-generic.inc.php
-www/ojs2/lib/adodb/datadict/datadict-ibase.inc.php
-www/ojs2/lib/adodb/datadict/datadict-informix.inc.php
-www/ojs2/lib/adodb/datadict/datadict-mssql.inc.php
-www/ojs2/lib/adodb/datadict/datadict-mysql.inc.php
-www/ojs2/lib/adodb/datadict/datadict-oci8.inc.php
-www/ojs2/lib/adodb/datadict/datadict-postgres.inc.php
-www/ojs2/lib/adodb/datadict/datadict-sapdb.inc.php
-www/ojs2/lib/adodb/datadict/datadict-sybase.inc.php
-www/ojs2/lib/adodb/drivers/adodb-access.inc.php
-www/ojs2/lib/adodb/drivers/adodb-ado.inc.php
-www/ojs2/lib/adodb/drivers/adodb-ado5.inc.php
-www/ojs2/lib/adodb/drivers/adodb-ado_access.inc.php
-www/ojs2/lib/adodb/drivers/adodb-ado_mssql.inc.php
-www/ojs2/lib/adodb/drivers/adodb-borland_ibase.inc.php
-www/ojs2/lib/adodb/drivers/adodb-csv.inc.php
-www/ojs2/lib/adodb/drivers/adodb-db2.inc.php
-www/ojs2/lib/adodb/drivers/adodb-fbsql.inc.php
-www/ojs2/lib/adodb/drivers/adodb-firebird.inc.php
-www/ojs2/lib/adodb/drivers/adodb-ibase.inc.php
-www/ojs2/lib/adodb/drivers/adodb-informix.inc.php
-www/ojs2/lib/adodb/drivers/adodb-informix72.inc.php
-www/ojs2/lib/adodb/drivers/adodb-ldap.inc.php
-www/ojs2/lib/adodb/drivers/adodb-mssql.inc.php
-www/ojs2/lib/adodb/drivers/adodb-mssqlpo.inc.php
-www/ojs2/lib/adodb/drivers/adodb-mysql.inc.php
-www/ojs2/lib/adodb/drivers/adodb-mysqli.inc.php
-www/ojs2/lib/adodb/drivers/adodb-mysqlt.inc.php
-www/ojs2/lib/adodb/drivers/adodb-netezza.inc.php
-www/ojs2/lib/adodb/drivers/adodb-oci8.inc.php
-www/ojs2/lib/adodb/drivers/adodb-oci805.inc.php
-www/ojs2/lib/adodb/drivers/adodb-oci8po.inc.php
-www/ojs2/lib/adodb/drivers/adodb-odbc.inc.php
-www/ojs2/lib/adodb/drivers/adodb-odbc_db2.inc.php
-www/ojs2/lib/adodb/drivers/adodb-odbc_mssql.inc.php
-www/ojs2/lib/adodb/drivers/adodb-odbc_oracle.inc.php
-www/ojs2/lib/adodb/drivers/adodb-odbtp.inc.php
-www/ojs2/lib/adodb/drivers/adodb-odbtp_unicode.inc.php
-www/ojs2/lib/adodb/drivers/adodb-oracle.inc.php
-www/ojs2/lib/adodb/drivers/adodb-pdo.inc.php
-www/ojs2/lib/adodb/drivers/adodb-pdo_mssql.inc.php
-www/ojs2/lib/adodb/drivers/adodb-pdo_mysql.inc.php
-www/ojs2/lib/adodb/drivers/adodb-pdo_oci.inc.php
-www/ojs2/lib/adodb/drivers/adodb-pdo_pgsql.inc.php
-www/ojs2/lib/adodb/drivers/adodb-postgres.inc.php
-www/ojs2/lib/adodb/drivers/adodb-postgres64.inc.php
-www/ojs2/lib/adodb/drivers/adodb-postgres7.inc.php
-www/ojs2/lib/adodb/drivers/adodb-postgres8.inc.php
-www/ojs2/lib/adodb/drivers/adodb-proxy.inc.php
-www/ojs2/lib/adodb/drivers/adodb-sapdb.inc.php
-www/ojs2/lib/adodb/drivers/adodb-sqlanywhere.inc.php
-www/ojs2/lib/adodb/drivers/adodb-sqlite.inc.php
-www/ojs2/lib/adodb/drivers/adodb-sqlitepo.inc.php
-www/ojs2/lib/adodb/drivers/adodb-sybase.inc.php
-www/ojs2/lib/adodb/drivers/adodb-sybase_ase.inc.php
-www/ojs2/lib/adodb/drivers/adodb-vfp.inc.php
-www/ojs2/lib/adodb/lang/adodb-ar.inc.php
-www/ojs2/lib/adodb/lang/adodb-bg.inc.php
-www/ojs2/lib/adodb/lang/adodb-bgutf8.inc.php
-www/ojs2/lib/adodb/lang/adodb-ca.inc.php
-www/ojs2/lib/adodb/lang/adodb-cn.inc.php
-www/ojs2/lib/adodb/lang/adodb-cz.inc.php
-www/ojs2/lib/adodb/lang/adodb-da.inc.php
-www/ojs2/lib/adodb/lang/adodb-de.inc.php
-www/ojs2/lib/adodb/lang/adodb-en.inc.php
-www/ojs2/lib/adodb/lang/adodb-es.inc.php
-www/ojs2/lib/adodb/lang/adodb-esperanto.inc.php
-www/ojs2/lib/adodb/lang/adodb-fr.inc.php
-www/ojs2/lib/adodb/lang/adodb-hu.inc.php
-www/ojs2/lib/adodb/lang/adodb-it.inc.php
-www/ojs2/lib/adodb/lang/adodb-nl.inc.php
-www/ojs2/lib/adodb/lang/adodb-pl.inc.php
-www/ojs2/lib/adodb/lang/adodb-pt-br.inc.php
-www/ojs2/lib/adodb/lang/adodb-ro.inc.php
-www/ojs2/lib/adodb/lang/adodb-ru1251.inc.php
-www/ojs2/lib/adodb/lang/adodb-sv.inc.php
-www/ojs2/lib/adodb/lang/adodb-uk1251.inc.php
-www/ojs2/lib/adodb/license.txt
-www/ojs2/lib/adodb/perf/perf-db2.inc.php
-www/ojs2/lib/adodb/perf/perf-informix.inc.php
-www/ojs2/lib/adodb/perf/perf-mssql.inc.php
-www/ojs2/lib/adodb/perf/perf-mysql.inc.php
-www/ojs2/lib/adodb/perf/perf-oci8.inc.php
-www/ojs2/lib/adodb/perf/perf-postgres.inc.php
-www/ojs2/lib/adodb/pivottable.inc.php
-www/ojs2/lib/adodb/readme.txt
-www/ojs2/lib/adodb/rsfilter.inc.php
-www/ojs2/lib/adodb/toexport.inc.php
-www/ojs2/lib/adodb/tohtml.inc.php
-www/ojs2/lib/adodb/xmlschema.dtd
-www/ojs2/lib/adodb/xmlschema03.dtd
-www/ojs2/lib/libraries.txt
-www/ojs2/lib/smarty/COPYING.lib
-www/ojs2/lib/smarty/Config_File.class.php
-www/ojs2/lib/smarty/Smarty.class.php
-www/ojs2/lib/smarty/Smarty_Compiler.class.php
-www/ojs2/lib/smarty/debug.tpl
-www/ojs2/lib/smarty/internals/core.assemble_plugin_filepath.php
-www/ojs2/lib/smarty/internals/core.assign_smarty_interface.php
-www/ojs2/lib/smarty/internals/core.create_dir_structure.php
-www/ojs2/lib/smarty/internals/core.display_debug_console.php
-www/ojs2/lib/smarty/internals/core.get_include_path.php
-www/ojs2/lib/smarty/internals/core.get_microtime.php
-www/ojs2/lib/smarty/internals/core.get_php_resource.php
-www/ojs2/lib/smarty/internals/core.is_secure.php
-www/ojs2/lib/smarty/internals/core.is_trusted.php
-www/ojs2/lib/smarty/internals/core.load_plugins.php
-www/ojs2/lib/smarty/internals/core.load_resource_plugin.php
-www/ojs2/lib/smarty/internals/core.process_cached_inserts.php
-www/ojs2/lib/smarty/internals/core.process_compiled_include.php
-www/ojs2/lib/smarty/internals/core.read_cache_file.php
-www/ojs2/lib/smarty/internals/core.rm_auto.php
-www/ojs2/lib/smarty/internals/core.rmdir.php
-www/ojs2/lib/smarty/internals/core.run_insert_handler.php
-www/ojs2/lib/smarty/internals/core.smarty_include_php.php
-www/ojs2/lib/smarty/internals/core.write_cache_file.php
-www/ojs2/lib/smarty/internals/core.write_compiled_include.php
-www/ojs2/lib/smarty/internals/core.write_compiled_resource.php
-www/ojs2/lib/smarty/internals/core.write_file.php
-www/ojs2/lib/smarty/plugins/block.textformat.php
-www/ojs2/lib/smarty/plugins/compiler.assign.php
-www/ojs2/lib/smarty/plugins/function.assign_debug_info.php
-www/ojs2/lib/smarty/plugins/function.config_load.php
-www/ojs2/lib/smarty/plugins/function.counter.php
-www/ojs2/lib/smarty/plugins/function.cycle.php
-www/ojs2/lib/smarty/plugins/function.debug.php
-www/ojs2/lib/smarty/plugins/function.eval.php
-www/ojs2/lib/smarty/plugins/function.fetch.php
-www/ojs2/lib/smarty/plugins/function.html_checkboxes.php
-www/ojs2/lib/smarty/plugins/function.html_image.php
-www/ojs2/lib/smarty/plugins/function.html_options.php
-www/ojs2/lib/smarty/plugins/function.html_radios.php
-www/ojs2/lib/smarty/plugins/function.html_select_date.php
-www/ojs2/lib/smarty/plugins/function.html_select_time.php
-www/ojs2/lib/smarty/plugins/function.html_table.php
-www/ojs2/lib/smarty/plugins/function.mailto.php
-www/ojs2/lib/smarty/plugins/function.math.php
-www/ojs2/lib/smarty/plugins/function.popup.php
-www/ojs2/lib/smarty/plugins/function.popup_init.php
-www/ojs2/lib/smarty/plugins/modifier.capitalize.php
-www/ojs2/lib/smarty/plugins/modifier.cat.php
-www/ojs2/lib/smarty/plugins/modifier.count_characters.php
-www/ojs2/lib/smarty/plugins/modifier.count_paragraphs.php
-www/ojs2/lib/smarty/plugins/modifier.count_sentences.php
-www/ojs2/lib/smarty/plugins/modifier.count_words.php
-www/ojs2/lib/smarty/plugins/modifier.date_format.php
-www/ojs2/lib/smarty/plugins/modifier.debug_print_var.php
-www/ojs2/lib/smarty/plugins/modifier.default.php
-www/ojs2/lib/smarty/plugins/modifier.escape.php
-www/ojs2/lib/smarty/plugins/modifier.indent.php
-www/ojs2/lib/smarty/plugins/modifier.lower.php
-www/ojs2/lib/smarty/plugins/modifier.nl2br.php
-www/ojs2/lib/smarty/plugins/modifier.regex_replace.php
-www/ojs2/lib/smarty/plugins/modifier.replace.php
-www/ojs2/lib/smarty/plugins/modifier.spacify.php
-www/ojs2/lib/smarty/plugins/modifier.string_format.php
-www/ojs2/lib/smarty/plugins/modifier.strip.php
-www/ojs2/lib/smarty/plugins/modifier.strip_tags.php
-www/ojs2/lib/smarty/plugins/modifier.truncate.php
-www/ojs2/lib/smarty/plugins/modifier.upper.php
-www/ojs2/lib/smarty/plugins/modifier.wordwrap.php
-www/ojs2/lib/smarty/plugins/outputfilter.trimwhitespace.php
-www/ojs2/lib/smarty/plugins/shared.escape_special_chars.php
-www/ojs2/lib/smarty/plugins/shared.make_timestamp.php
-www/ojs2/lib/tinymce/changelog
-www/ojs2/lib/tinymce/docs/index.html
-www/ojs2/lib/tinymce/examples/example_advanced.css
-www/ojs2/lib/tinymce/examples/example_advanced.htm
-www/ojs2/lib/tinymce/examples/example_flash_list.js
-www/ojs2/lib/tinymce/examples/example_full.css
-www/ojs2/lib/tinymce/examples/example_full.htm
-www/ojs2/lib/tinymce/examples/example_image_list.js
-www/ojs2/lib/tinymce/examples/example_link_list.js
-www/ojs2/lib/tinymce/examples/example_media_list.js
-www/ojs2/lib/tinymce/examples/example_simple.htm
-www/ojs2/lib/tinymce/examples/example_template.htm
-www/ojs2/lib/tinymce/examples/example_template_list.js
-www/ojs2/lib/tinymce/examples/example_word.css
-www/ojs2/lib/tinymce/examples/example_word.htm
-www/ojs2/lib/tinymce/examples/logo.jpg
-www/ojs2/lib/tinymce/examples/logo_over.jpg
-www/ojs2/lib/tinymce/examples/templates/count.htm
-www/ojs2/lib/tinymce/examples/templates/editing_details.htm
-www/ojs2/lib/tinymce/examples/templates/editors_comment.htm
-www/ojs2/lib/tinymce/examples/templates/invoice.htm
-www/ojs2/lib/tinymce/examples/templates/layout1.htm
-www/ojs2/lib/tinymce/examples/templates/snippet1.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/blank.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/langs/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/license.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/images/advhr.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/rule.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/images/sample.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/functions.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/functions.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/autosave/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/cleanup/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu/css/contextmenu.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu/images/spacer.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/css/devkit.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/css/devkit_ui.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/devkit.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/images/flip_down.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/images/flip_up.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/jscripts/devkit.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/jscripts/diff.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/directionality/images/ltr.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/directionality/images/rtl.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/directionality/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/directionality/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/emotions.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cool.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cry.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-embarassed.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-foot-in-mouth.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-frown.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-innocent.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-kiss.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-laughing.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-money-mouth.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-sealed.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-smile.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-surprised.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-tongue-out.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-undecided.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-wink.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-yell.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/functions.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/css/content.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/css/flash.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/flash.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/images/flash.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/flash.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/blank.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/images/add.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/images/fullpage.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/images/move_down.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/images/move_up.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/images/remove.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/jscripts/fullpage.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/css/page.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/images/fullscreen.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/iespell/images/iespell.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/iespell/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/iespell/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css/inlinepopup.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/spacer.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/window_close.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/window_maximize.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/window_minimize.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/window_resize.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/mcwindows.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/insertdate.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/inserttime.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/images/absolute.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/images/backward.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/images/forward.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/images/insert_layer.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/images/insertlayer.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/images/movebackward.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/images/moveforward.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/css/content.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/css/media.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/images/flash.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/images/media.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/images/quicktime.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/images/realmedia.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/images/shockwave.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/images/windowsmedia.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/jscripts/embed.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/jscripts/media.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/media.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking/images/nonbreaking.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/noneditable/css/noneditable.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/noneditable/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/blank.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/css/blank.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/css/pasteword.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/images/pastetext.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/images/pasteword.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/images/selectall.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pastetext.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pasteword.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/example.html
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/images/preview.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/print/images/print.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/print/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/print/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/save/images/cancel.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/save/images/save.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/save/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/save/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/replace.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/replace_all_button_bg.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/replace_button_bg.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/search.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/searchreplace.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/css/props.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/images/apply_button_bg.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/images/style_info.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/images/styleprops.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/jscripts/props.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/props.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/cell.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/css/row.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/css/table.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/buttons.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_cell_props.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_delete.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_delete_col.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_delete_row.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_insert_col_after.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_insert_col_before.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_insert_row_after.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_insert_row_before.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_merge_cells.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_row_props.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images/table_split_cells.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/jscripts/cell.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/jscripts/merge_cells.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/jscripts/row.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/jscripts/table.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/row.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/table.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/blank.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/css/template.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/images/template.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/jscripts/template.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/template.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/visualchars/images/visualchars.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/xhtmlxtras.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/abbr.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/acronym.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/attribs.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/cite.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/date_time.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/del.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/ins.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/remove_button_bg.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/abbr.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/acronym.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/attributes.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/cite.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/del.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/element_common.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/ins.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/zoom/readme.txt
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/about.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/css/colorpicker.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_content.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_popup.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/css/editor_ui.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/about.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/common_buttons.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/create_accessible_content.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_anchor_window.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_image_window.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_link_window.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images/insert_table_window.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/index.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_anchor_button.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_image_button.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_link_button.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/insert_table_button.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/style.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/image.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/anchor.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/anchor_symbol.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/backcolor.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/bold.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_de_se.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_es.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_fr.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_ru.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/bold_tw.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/browse.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/bullist.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/button_menu.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/buttons.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/cancel_button_bg.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/charmap.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/cleanup.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/close.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/code.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/color.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/colors.jpg
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/copy.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/custom_1.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/cut.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/forecolor.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/help.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/hr.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/image.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/indent.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/insert_button_bg.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/italic.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_de_se.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_es.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_ru.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/italic_tw.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/justifycenter.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/justifyfull.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/justifyleft.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/justifyright.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/link.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/menu_check.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/newdocument.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/numlist.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/opacity.png
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/outdent.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/paste.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/redo.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/removeformat.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/separator.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/spacer.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/statusbar_resize.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/strikethrough.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/sub.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/sup.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/underline.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_es.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_fr.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_ru.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/underline_tw.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/undo.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/unlink.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/visualaid.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_bg.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_end.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_sel_bg.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tab_sel_end.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/tabs_bg.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/about.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/color_picker.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/image.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/link.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/link.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/css/editor_content.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/css/editor_popup.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/css/editor_ui.css
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/bold.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/bold_de_se.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/bold_fr.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/bold_ru.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/bold_tw.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/bullist.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/buttons.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/cleanup.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/italic.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/italic_de_se.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/italic_ru.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/italic_tw.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/numlist.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/redo.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/separator.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/spacer.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/strikethrough.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/underline.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/underline_fr.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/underline_ru.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/underline_tw.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images/undo.gif
-www/ojs2/lib/tinymce/jscripts/tiny_mce/tiny_mce.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php
-www/ojs2/lib/tinymce/jscripts/tiny_mce/tiny_mce_popup.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/tiny_mce_src.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/utils/editable_selects.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/utils/form_utils.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/utils/mclayer.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/utils/mctabs.js
-www/ojs2/lib/tinymce/jscripts/tiny_mce/utils/validate.js
-www/ojs2/lib/tinymce/readme
-www/ojs2/locale/de_DE/currencies.xml
-www/ojs2/locale/de_DE/edprocess.png
-www/ojs2/locale/de_DE/edprocesslarge.png
-www/ojs2/locale/de_DE/locale.xml
-www/ojs2/locale/en_US/currencies.xml
-www/ojs2/locale/en_US/edprocess.png
-www/ojs2/locale/en_US/edprocesslarge.png
-www/ojs2/locale/en_US/locale.xml
-www/ojs2/locale/es_ES/currencies.xml
-www/ojs2/locale/es_ES/edprocess.png
-www/ojs2/locale/es_ES/edprocesslarge.png
-www/ojs2/locale/es_ES/locale.xml
-www/ojs2/locale/fr_CA/currencies.xml
-www/ojs2/locale/fr_CA/edprocess.png
-www/ojs2/locale/fr_CA/edprocesslarge.png
-www/ojs2/locale/fr_CA/locale.xml
-www/ojs2/locale/hr_HR/currencies.xml
-www/ojs2/locale/hr_HR/edprocesslarge.png
-www/ojs2/locale/hr_HR/locale.xml
-www/ojs2/locale/it_IT/currencies.xml
-www/ojs2/locale/it_IT/edprocess.png
-www/ojs2/locale/it_IT/edprocesslarge.png
-www/ojs2/locale/it_IT/locale.xml
-www/ojs2/locale/ja_JP/currencies.xml
-www/ojs2/locale/ja_JP/locale.xml
-www/ojs2/locale/locale.dtd
-www/ojs2/locale/pt_BR/currencies.xml
-www/ojs2/locale/pt_BR/edprocess.png
-www/ojs2/locale/pt_BR/edprocesslarge.png
-www/ojs2/locale/pt_BR/locale.xml
-www/ojs2/locale/ru_RU/currencies.xml
-www/ojs2/locale/ru_RU/edprocess.png
-www/ojs2/locale/ru_RU/edprocesslarge.png
-www/ojs2/locale/ru_RU/locale.xml
-www/ojs2/locale/tr_TR/currencies.xml
-www/ojs2/locale/tr_TR/edprocess.png
-www/ojs2/locale/tr_TR/edprocesslarge.png
-www/ojs2/locale/tr_TR/locale.xml
-www/ojs2/locale/vi_VN/currencies.xml
-www/ojs2/locale/vi_VN/locale.xml
-www/ojs2/pages/about/AboutHandler.inc.php
-www/ojs2/pages/about/index.php
-www/ojs2/pages/admin/AdminFunctionsHandler.inc.php
-www/ojs2/pages/admin/AdminHandler.inc.php
-www/ojs2/pages/admin/AdminJournalHandler.inc.php
-www/ojs2/pages/admin/AdminLanguagesHandler.inc.php
-www/ojs2/pages/admin/AdminPeopleHandler.inc.php
-www/ojs2/pages/admin/AdminSettingsHandler.inc.php
-www/ojs2/pages/admin/AuthSourcesHandler.inc.php
-www/ojs2/pages/admin/index.php
-www/ojs2/pages/announcement/AnnouncementHandler.inc.php
-www/ojs2/pages/announcement/index.php
-www/ojs2/pages/article/ArticleHandler.inc.php
-www/ojs2/pages/article/index.php
-www/ojs2/pages/author/AuthorHandler.inc.php
-www/ojs2/pages/author/SubmissionCommentsHandler.inc.php
-www/ojs2/pages/author/SubmitHandler.inc.php
-www/ojs2/pages/author/TrackSubmissionHandler.inc.php
-www/ojs2/pages/author/index.php
-www/ojs2/pages/comment/CommentHandler.inc.php
-www/ojs2/pages/comment/index.php
-www/ojs2/pages/copyeditor/CopyeditorHandler.inc.php
-www/ojs2/pages/copyeditor/SubmissionCommentsHandler.inc.php
-www/ojs2/pages/copyeditor/SubmissionCopyeditHandler.inc.php
-www/ojs2/pages/copyeditor/index.php
-www/ojs2/pages/donations/DonationsHandler.inc.php
-www/ojs2/pages/donations/index.php
-www/ojs2/pages/editor/EditorHandler.inc.php
-www/ojs2/pages/editor/IssueManagementHandler.inc.php
-www/ojs2/pages/editor/index.php
-www/ojs2/pages/gateway/GatewayHandler.inc.php
-www/ojs2/pages/gateway/index.php
-www/ojs2/pages/help/HelpHandler.inc.php
-www/ojs2/pages/help/index.php
-www/ojs2/pages/index/IndexHandler.inc.php
-www/ojs2/pages/index/index.php
-www/ojs2/pages/information/InformationHandler.inc.php
-www/ojs2/pages/information/index.php
-www/ojs2/pages/install/InstallHandler.inc.php
-www/ojs2/pages/install/index.php
-www/ojs2/pages/issue/IssueHandler.inc.php
-www/ojs2/pages/issue/index.php
-www/ojs2/pages/layoutEditor/LayoutEditorHandler.inc.php
-www/ojs2/pages/layoutEditor/SubmissionCommentsHandler.inc.php
-www/ojs2/pages/layoutEditor/SubmissionLayoutHandler.inc.php
-www/ojs2/pages/layoutEditor/index.php
-www/ojs2/pages/login/LoginHandler.inc.php
-www/ojs2/pages/login/index.php
-www/ojs2/pages/manager/AnnouncementHandler.inc.php
-www/ojs2/pages/manager/EmailHandler.inc.php
-www/ojs2/pages/manager/FilesHandler.inc.php
-www/ojs2/pages/manager/GroupHandler.inc.php
-www/ojs2/pages/manager/ImportExportHandler.inc.php
-www/ojs2/pages/manager/JournalLanguagesHandler.inc.php
-www/ojs2/pages/manager/ManagerHandler.inc.php
-www/ojs2/pages/manager/ManagerPaymentHandler.inc.php
-www/ojs2/pages/manager/PeopleHandler.inc.php
-www/ojs2/pages/manager/PluginHandler.inc.php
-www/ojs2/pages/manager/SectionHandler.inc.php
-www/ojs2/pages/manager/SetupHandler.inc.php
-www/ojs2/pages/manager/StatisticsHandler.inc.php
-www/ojs2/pages/manager/SubscriptionHandler.inc.php
-www/ojs2/pages/manager/index.php
-www/ojs2/pages/oai/OAIHandler.inc.php
-www/ojs2/pages/oai/index.php
-www/ojs2/pages/payment/PaymentHandler.inc.php
-www/ojs2/pages/payment/index.php
-www/ojs2/pages/proofreader/ProofreaderHandler.inc.php
-www/ojs2/pages/proofreader/SubmissionCommentsHandler.inc.php
-www/ojs2/pages/proofreader/SubmissionProofreadHandler.inc.php
-www/ojs2/pages/proofreader/index.php
-www/ojs2/pages/reviewer/ReviewerHandler.inc.php
-www/ojs2/pages/reviewer/SubmissionCommentsHandler.inc.php
-www/ojs2/pages/reviewer/SubmissionReviewHandler.inc.php
-www/ojs2/pages/reviewer/index.php
-www/ojs2/pages/rt/RTHandler.inc.php
-www/ojs2/pages/rt/index.php
-www/ojs2/pages/rtadmin/RTAdminHandler.inc.php
-www/ojs2/pages/rtadmin/RTContextHandler.inc.php
-www/ojs2/pages/rtadmin/RTSearchHandler.inc.php
-www/ojs2/pages/rtadmin/RTSetupHandler.inc.php
-www/ojs2/pages/rtadmin/RTVersionHandler.inc.php
-www/ojs2/pages/rtadmin/index.php
-www/ojs2/pages/search/SearchHandler.inc.php
-www/ojs2/pages/search/index.php
-www/ojs2/pages/sectionEditor/SectionEditorHandler.inc.php
-www/ojs2/pages/sectionEditor/SubmissionCommentsHandler.inc.php
-www/ojs2/pages/sectionEditor/SubmissionEditHandler.inc.php
-www/ojs2/pages/sectionEditor/index.php
-www/ojs2/pages/subscriptionManager/SubscriptionManagerHandler.inc.php
-www/ojs2/pages/subscriptionManager/index.php
-www/ojs2/pages/user/EmailHandler.inc.php
-www/ojs2/pages/user/ProfileHandler.inc.php
-www/ojs2/pages/user/RegistrationHandler.inc.php
-www/ojs2/pages/user/UserHandler.inc.php
-www/ojs2/pages/user/index.php
-www/ojs2/plugins/auth/ldap/LDAPAuthPlugin.inc.php
-www/ojs2/plugins/auth/ldap/index.php
-www/ojs2/plugins/auth/ldap/locale/de_DE/locale.xml
-www/ojs2/plugins/auth/ldap/locale/en_US/locale.xml
-www/ojs2/plugins/auth/ldap/locale/es_ES/locale.xml
-www/ojs2/plugins/auth/ldap/locale/fr_CA/locale.xml
-www/ojs2/plugins/auth/ldap/locale/hr_HR/locale.xml
-www/ojs2/plugins/auth/ldap/locale/it_IT/locale.xml
-www/ojs2/plugins/auth/ldap/locale/ja_JP/locale.xml
-www/ojs2/plugins/auth/ldap/locale/pt_BR/locale.xml
-www/ojs2/plugins/auth/ldap/locale/ru_RU/locale.xml
-www/ojs2/plugins/auth/ldap/locale/tr_TR/locale.xml
-www/ojs2/plugins/auth/ldap/locale/vi_VN/locale.xml
-www/ojs2/plugins/auth/ldap/settings.tpl
-www/ojs2/plugins/blocks/developedBy/DevelopedByBlockPlugin.inc.php
-www/ojs2/plugins/blocks/developedBy/block.tpl
-www/ojs2/plugins/blocks/developedBy/index.php
-www/ojs2/plugins/blocks/developedBy/locale/en_US/locale.xml
-www/ojs2/plugins/blocks/developedBy/locale/es_ES/locale.xml
-www/ojs2/plugins/blocks/developedBy/locale/fr_CA/locale.xml
-www/ojs2/plugins/blocks/developedBy/locale/it_IT/locale.xml
-www/ojs2/plugins/blocks/developedBy/locale/pt_BR/locale.xml
-www/ojs2/plugins/blocks/developedBy/settings.xml
-www/ojs2/plugins/blocks/donation/DonationBlockPlugin.inc.php
-www/ojs2/plugins/blocks/donation/block.tpl
-www/ojs2/plugins/blocks/donation/index.php
-www/ojs2/plugins/blocks/donation/locale/en_US/locale.xml
-www/ojs2/plugins/blocks/donation/locale/es_ES/locale.xml
-www/ojs2/plugins/blocks/donation/locale/fr_CA/locale.xml
-www/ojs2/plugins/blocks/donation/locale/it_IT/locale.xml
-www/ojs2/plugins/blocks/donation/locale/pt_BR/locale.xml
-www/ojs2/plugins/blocks/donation/settings.xml
-www/ojs2/plugins/blocks/fontSize/FontSizeBlockPlugin.inc.php
-www/ojs2/plugins/blocks/fontSize/block.tpl
-www/ojs2/plugins/blocks/fontSize/header.tpl
-www/ojs2/plugins/blocks/fontSize/index.php
-www/ojs2/plugins/blocks/fontSize/large.css
-www/ojs2/plugins/blocks/fontSize/large.gif
-www/ojs2/plugins/blocks/fontSize/locale/en_US/locale.xml
-www/ojs2/plugins/blocks/fontSize/locale/es_ES/locale.xml
-www/ojs2/plugins/blocks/fontSize/locale/fr_CA/locale.xml
-www/ojs2/plugins/blocks/fontSize/locale/it_IT/locale.xml
-www/ojs2/plugins/blocks/fontSize/locale/pt_BR/locale.xml
-www/ojs2/plugins/blocks/fontSize/medium.css
-www/ojs2/plugins/blocks/fontSize/medium.gif
-www/ojs2/plugins/blocks/fontSize/settings.xml
-www/ojs2/plugins/blocks/fontSize/sizer.js
-www/ojs2/plugins/blocks/fontSize/small.css
-www/ojs2/plugins/blocks/fontSize/small.gif
-www/ojs2/plugins/blocks/help/HelpBlockPlugin.inc.php
-www/ojs2/plugins/blocks/help/block.tpl
-www/ojs2/plugins/blocks/help/index.php
-www/ojs2/plugins/blocks/help/locale/en_US/locale.xml
-www/ojs2/plugins/blocks/help/locale/es_ES/locale.xml
-www/ojs2/plugins/blocks/help/locale/fr_CA/locale.xml
-www/ojs2/plugins/blocks/help/locale/it_IT/locale.xml
-www/ojs2/plugins/blocks/help/locale/pt_BR/locale.xml
-www/ojs2/plugins/blocks/help/settings.xml
-www/ojs2/plugins/blocks/information/InformationBlockPlugin.inc.php
-www/ojs2/plugins/blocks/information/block.tpl
-www/ojs2/plugins/blocks/information/index.php
-www/ojs2/plugins/blocks/information/locale/en_US/locale.xml
-www/ojs2/plugins/blocks/information/locale/es_ES/locale.xml
-www/ojs2/plugins/blocks/information/locale/fr_CA/locale.xml
-www/ojs2/plugins/blocks/information/locale/it_IT/locale.xml
-www/ojs2/plugins/blocks/information/locale/pt_BR/locale.xml
-www/ojs2/plugins/blocks/information/settings.xml
-www/ojs2/plugins/blocks/languageToggle/LanguageToggleBlockPlugin.inc.php
-www/ojs2/plugins/blocks/languageToggle/block.tpl
-www/ojs2/plugins/blocks/languageToggle/index.php
-www/ojs2/plugins/blocks/languageToggle/locale/en_US/locale.xml
-www/ojs2/plugins/blocks/languageToggle/locale/fr_CA/locale.xml
-www/ojs2/plugins/blocks/languageToggle/locale/it_IT/locale.xml
-www/ojs2/plugins/blocks/languageToggle/locale/pt_BR/locale.xml
-www/ojs2/plugins/blocks/languageToggle/settings.xml
-www/ojs2/plugins/blocks/navigation/NavigationBlockPlugin.inc.php
-www/ojs2/plugins/blocks/navigation/block.tpl
-www/ojs2/plugins/blocks/navigation/index.php
-www/ojs2/plugins/blocks/navigation/locale/en_US/locale.xml
-www/ojs2/plugins/blocks/navigation/locale/es_ES/locale.xml
-www/ojs2/plugins/blocks/navigation/locale/fr_CA/locale.xml
-www/ojs2/plugins/blocks/navigation/locale/it_IT/locale.xml
-www/ojs2/plugins/blocks/navigation/locale/pt_BR/locale.xml
-www/ojs2/plugins/blocks/navigation/settings.xml
-www/ojs2/plugins/blocks/role/RoleBlockPlugin.inc.php
-www/ojs2/plugins/blocks/role/author.tpl
-www/ojs2/plugins/blocks/role/copyeditor.tpl
-www/ojs2/plugins/blocks/role/editor.tpl
-www/ojs2/plugins/blocks/role/index.php
-www/ojs2/plugins/blocks/role/layoutEditor.tpl
-www/ojs2/plugins/blocks/role/locale/en_US/locale.xml
-www/ojs2/plugins/blocks/role/locale/es_ES/locale.xml
-www/ojs2/plugins/blocks/role/locale/fr_CA/locale.xml
-www/ojs2/plugins/blocks/role/locale/it_IT/locale.xml
-www/ojs2/plugins/blocks/role/locale/pt_BR/locale.xml
-www/ojs2/plugins/blocks/role/proofreader.tpl
-www/ojs2/plugins/blocks/role/reviewer.tpl
-www/ojs2/plugins/blocks/role/sectionEditor.tpl
-www/ojs2/plugins/blocks/role/settings.xml
-www/ojs2/plugins/blocks/user/UserBlockPlugin.inc.php
-www/ojs2/plugins/blocks/user/block.tpl
-www/ojs2/plugins/blocks/user/index.php
-www/ojs2/plugins/blocks/user/locale/en_US/locale.xml
-www/ojs2/plugins/blocks/user/locale/es_ES/locale.xml
-www/ojs2/plugins/blocks/user/locale/fr_CA/locale.xml
-www/ojs2/plugins/blocks/user/locale/it_IT/locale.xml
-www/ojs2/plugins/blocks/user/locale/pt_BR/locale.xml
-www/ojs2/plugins/blocks/user/settings.xml
-www/ojs2/plugins/citationFormats/abnt/AbntCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/abnt/citation.tpl
-www/ojs2/plugins/citationFormats/abnt/index.php
-www/ojs2/plugins/citationFormats/abnt/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/abnt/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/abnt/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/abnt/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/abnt/locale/pt_BR/locale.xml
-www/ojs2/plugins/citationFormats/apa/ApaCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/apa/citation.tpl
-www/ojs2/plugins/citationFormats/apa/index.php
-www/ojs2/plugins/citationFormats/apa/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/apa/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/apa/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/apa/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/apa/locale/pt_BR/locale.xml
-www/ojs2/plugins/citationFormats/bibtex/BibtexCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/bibtex/citation.tpl
-www/ojs2/plugins/citationFormats/bibtex/index.php
-www/ojs2/plugins/citationFormats/bibtex/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/bibtex/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/bibtex/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/bibtex/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/bibtex/locale/pt_BR/locale.xml
-www/ojs2/plugins/citationFormats/cbe/CbeCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/cbe/citation.tpl
-www/ojs2/plugins/citationFormats/cbe/index.php
-www/ojs2/plugins/citationFormats/cbe/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/cbe/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/cbe/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/cbe/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/cbe/locale/pt_BR/locale.xml
-www/ojs2/plugins/citationFormats/endNote/EndNoteCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/endNote/citation.tpl
-www/ojs2/plugins/citationFormats/endNote/index.php
-www/ojs2/plugins/citationFormats/endNote/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/endNote/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/endNote/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/endNote/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/endNote/locale/pt_BR/locale.xml
-www/ojs2/plugins/citationFormats/mla/MlaCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/mla/citation.tpl
-www/ojs2/plugins/citationFormats/mla/index.php
-www/ojs2/plugins/citationFormats/mla/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/mla/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/mla/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/mla/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/mla/locale/pt_BR/locale.xml
-www/ojs2/plugins/citationFormats/proCite/ProCiteCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/proCite/citation.tpl
-www/ojs2/plugins/citationFormats/proCite/index.php
-www/ojs2/plugins/citationFormats/proCite/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/proCite/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/proCite/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/proCite/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/proCite/locale/pt_BR/locale.xml
-www/ojs2/plugins/citationFormats/refMan/RefManCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/refMan/citation.tpl
-www/ojs2/plugins/citationFormats/refMan/index.php
-www/ojs2/plugins/citationFormats/refMan/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/refMan/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/refMan/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/refMan/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/refMan/locale/pt_BR/locale.xml
-www/ojs2/plugins/citationFormats/refWorks/RefWorksCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/refWorks/citation.tpl
-www/ojs2/plugins/citationFormats/refWorks/index.php
-www/ojs2/plugins/citationFormats/refWorks/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/refWorks/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/refWorks/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/refWorks/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/refWorks/locale/pt_BR/locale.xml
-www/ojs2/plugins/citationFormats/turabian/TurabianCitationPlugin.inc.php
-www/ojs2/plugins/citationFormats/turabian/citation.tpl
-www/ojs2/plugins/citationFormats/turabian/index.php
-www/ojs2/plugins/citationFormats/turabian/locale/en_US/locale.xml
-www/ojs2/plugins/citationFormats/turabian/locale/es_ES/locale.xml
-www/ojs2/plugins/citationFormats/turabian/locale/fr_CA/locale.xml
-www/ojs2/plugins/citationFormats/turabian/locale/it_IT/locale.xml
-www/ojs2/plugins/citationFormats/turabian/locale/pt_BR/locale.xml
-www/ojs2/plugins/gateways/googleScholar/GoogleScholarPlugin.inc.php
-www/ojs2/plugins/gateways/googleScholar/GoogleScholarSettingsForm.inc.php
-www/ojs2/plugins/gateways/googleScholar/README
-www/ojs2/plugins/gateways/googleScholar/errors.tpl
-www/ojs2/plugins/gateways/googleScholar/index.php
-www/ojs2/plugins/gateways/googleScholar/locale/de_DE/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/en_US/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/es_ES/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/fr_CA/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/hr_HR/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/it_IT/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/ja_JP/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/pt_BR/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/ru_RU/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/tr_TR/locale.xml
-www/ojs2/plugins/gateways/googleScholar/locale/vi_VN/locale.xml
-www/ojs2/plugins/gateways/googleScholar/settingsForm.tpl
-www/ojs2/plugins/gateways/resolver/README
-www/ojs2/plugins/gateways/resolver/ResolverPlugin.inc.php
-www/ojs2/plugins/gateways/resolver/index.php
-www/ojs2/plugins/gateways/resolver/locale/de_DE/locale.xml
-www/ojs2/plugins/gateways/resolver/locale/en_US/locale.xml
-www/ojs2/plugins/gateways/resolver/locale/es_ES/locale.xml
-www/ojs2/plugins/gateways/resolver/locale/fr_CA/locale.xml
-www/ojs2/plugins/gateways/resolver/locale/hr_HR/locale.xml
-www/ojs2/plugins/gateways/resolver/locale/it_IT/locale.xml
-www/ojs2/plugins/gateways/resolver/locale/ja_JP/locale.xml
-www/ojs2/plugins/gateways/resolver/locale/pt_BR/locale.xml
-www/ojs2/plugins/gateways/resolver/locale/tr_TR/locale.xml
-www/ojs2/plugins/gateways/resolver/locale/vi_VN/locale.xml
-www/ojs2/plugins/gateways/resolver/settings.xml
-www/ojs2/plugins/generic/cms/CmsBlockPlugin.inc.php
-www/ojs2/plugins/generic/cms/CmsHandler.inc.php
-www/ojs2/plugins/generic/cms/CmsPlugin.inc.php
-www/ojs2/plugins/generic/cms/CmsSettingsForm.inc.php
-www/ojs2/plugins/generic/cms/ContentManager.inc.php
-www/ojs2/plugins/generic/cms/README.rtf
-www/ojs2/plugins/generic/cms/block.tpl
-www/ojs2/plugins/generic/cms/content.tpl
-www/ojs2/plugins/generic/cms/index.php
-www/ojs2/plugins/generic/cms/locale/en_US/locale.xml
-www/ojs2/plugins/generic/cms/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/cms/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/cms/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/cms/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/cms/settingsForm.tpl
-www/ojs2/plugins/generic/cms/tinyMCEPlugins/heading/editor_plugin.js
-www/ojs2/plugins/generic/cms/tinyMCEPlugins/heading/images/h1.gif
-www/ojs2/plugins/generic/cms/tinyMCEPlugins/heading/images/h2.gif
-www/ojs2/plugins/generic/cms/tinyMCEPlugins/heading/images/h3.gif
-www/ojs2/plugins/generic/cms/tinyMCEPlugins/heading/images/h4.gif
-www/ojs2/plugins/generic/cms/tinyMCEPlugins/heading/images/h5.gif
-www/ojs2/plugins/generic/cms/tinyMCEPlugins/heading/images/h6.gif
-www/ojs2/plugins/generic/cmsRSS/CmsRssPlugin.inc.php
-www/ojs2/plugins/generic/cmsRSS/CmsRssSettingsForm.inc.php
-www/ojs2/plugins/generic/cmsRSS/README.rtf
-www/ojs2/plugins/generic/cmsRSS/SimplePie.inc.php
-www/ojs2/plugins/generic/cmsRSS/index.php
-www/ojs2/plugins/generic/cmsRSS/locale/en_US/locale.xml
-www/ojs2/plugins/generic/cmsRSS/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/cmsRSS/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/cmsRSS/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/cmsRSS/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/cmsRSS/rss.tpl
-www/ojs2/plugins/generic/cmsRSS/settingsForm.tpl
-www/ojs2/plugins/generic/counter/CounterHandler.inc.php
-www/ojs2/plugins/generic/counter/CounterPlugin.inc.php
-www/ojs2/plugins/generic/counter/LogEntry.inc.php
-www/ojs2/plugins/generic/counter/LogEntryDAO.inc.php
-www/ojs2/plugins/generic/counter/README
-www/ojs2/plugins/generic/counter/browser.tpl
-www/ojs2/plugins/generic/counter/index.php
-www/ojs2/plugins/generic/counter/index.tpl
-www/ojs2/plugins/generic/counter/locale/de_DE/locale.xml
-www/ojs2/plugins/generic/counter/locale/en_US/locale.xml
-www/ojs2/plugins/generic/counter/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/counter/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/counter/locale/hr_HR/locale.xml
-www/ojs2/plugins/generic/counter/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/counter/locale/ja_JP/locale.xml
-www/ojs2/plugins/generic/counter/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/counter/locale/vi_VN/locale.xml
-www/ojs2/plugins/generic/googleAnalytics/GoogleAnalyticsPlugin.inc.php
-www/ojs2/plugins/generic/googleAnalytics/GoogleAnalyticsSettingsForm.inc.php
-www/ojs2/plugins/generic/googleAnalytics/index.php
-www/ojs2/plugins/generic/googleAnalytics/locale/en_US/locale.xml
-www/ojs2/plugins/generic/googleAnalytics/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/googleAnalytics/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/googleAnalytics/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/googleAnalytics/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/googleAnalytics/pageTag.tpl
-www/ojs2/plugins/generic/googleAnalytics/settingsForm.tpl
-www/ojs2/plugins/generic/openAds/Ad.inc.php
-www/ojs2/plugins/generic/openAds/OpenAdsBlockPlugin.inc.php
-www/ojs2/plugins/generic/openAds/OpenAdsConnection.inc.php
-www/ojs2/plugins/generic/openAds/OpenAdsPlugin.inc.php
-www/ojs2/plugins/generic/openAds/OpenAdsSettingsForm.inc.php
-www/ojs2/plugins/generic/openAds/README
-www/ojs2/plugins/generic/openAds/index.php
-www/ojs2/plugins/generic/openAds/locale/en_US/locale.xml
-www/ojs2/plugins/generic/openAds/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/openAds/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/openAds/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/openAds/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/openAds/settingsForm.tpl
-www/ojs2/plugins/generic/phpMyVisites/PhpMyVisitesPlugin.inc.php
-www/ojs2/plugins/generic/phpMyVisites/PhpMyVisitesSettingsForm.inc.php
-www/ojs2/plugins/generic/phpMyVisites/index.php
-www/ojs2/plugins/generic/phpMyVisites/locale/en_US/locale.xml
-www/ojs2/plugins/generic/phpMyVisites/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/phpMyVisites/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/phpMyVisites/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/phpMyVisites/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/phpMyVisites/pageTag.tpl
-www/ojs2/plugins/generic/phpMyVisites/settingsForm.tpl
-www/ojs2/plugins/generic/roundedCorners/RoundedCornersPlugin.inc.php
-www/ojs2/plugins/generic/roundedCorners/index.php
-www/ojs2/plugins/generic/roundedCorners/locale/en_US/locale.xml
-www/ojs2/plugins/generic/roundedCorners/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/roundedCorners/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/roundedCorners/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/roundedCorners/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/roundedCorners/roundedcorners.css
-www/ojs2/plugins/generic/sehl/SehlPlugin.inc.php
-www/ojs2/plugins/generic/sehl/index.php
-www/ojs2/plugins/generic/sehl/locale/en_US/locale.xml
-www/ojs2/plugins/generic/sehl/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/sehl/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/sehl/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/sehl/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/sehl/sehl.css
-www/ojs2/plugins/generic/thesis/StudentThesisForm.inc.php
-www/ojs2/plugins/generic/thesis/Thesis.inc.php
-www/ojs2/plugins/generic/thesis/ThesisDAO.inc.php
-www/ojs2/plugins/generic/thesis/ThesisForm.inc.php
-www/ojs2/plugins/generic/thesis/ThesisHandler.inc.php
-www/ojs2/plugins/generic/thesis/ThesisPlugin.inc.php
-www/ojs2/plugins/generic/thesis/ThesisSettingsForm.inc.php
-www/ojs2/plugins/generic/thesis/data.xml
-www/ojs2/plugins/generic/thesis/index.php
-www/ojs2/plugins/generic/thesis/index.tpl
-www/ojs2/plugins/generic/thesis/locale/de_DE/locale.xml
-www/ojs2/plugins/generic/thesis/locale/en_US/locale.xml
-www/ojs2/plugins/generic/thesis/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/thesis/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/thesis/locale/hr_HR/locale.xml
-www/ojs2/plugins/generic/thesis/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/thesis/locale/ja_JP/locale.xml
-www/ojs2/plugins/generic/thesis/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/thesis/locale/vi_VN/locale.xml
-www/ojs2/plugins/generic/thesis/metadata.tpl
-www/ojs2/plugins/generic/thesis/schema.xml
-www/ojs2/plugins/generic/thesis/settingsForm.tpl
-www/ojs2/plugins/generic/thesis/studentThesisForm.tpl
-www/ojs2/plugins/generic/thesis/theses.tpl
-www/ojs2/plugins/generic/thesis/thesisForm.tpl
-www/ojs2/plugins/generic/thesis/view.tpl
-www/ojs2/plugins/generic/tinymce/README
-www/ojs2/plugins/generic/tinymce/TinyMCEPlugin.inc.php
-www/ojs2/plugins/generic/tinymce/index.php
-www/ojs2/plugins/generic/tinymce/locale/de_DE/locale.xml
-www/ojs2/plugins/generic/tinymce/locale/en_US/locale.xml
-www/ojs2/plugins/generic/tinymce/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/tinymce/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/tinymce/locale/hr_HR/locale.xml
-www/ojs2/plugins/generic/tinymce/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/tinymce/locale/ja_JP/locale.xml
-www/ojs2/plugins/generic/tinymce/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/tinymce/locale/ru_RU/locale.xml
-www/ojs2/plugins/generic/tinymce/locale/vi_VN/locale.xml
-www/ojs2/plugins/generic/tinymce/settings.xml
-www/ojs2/plugins/generic/translator/EditableEmailFile.inc.php
-www/ojs2/plugins/generic/translator/EditableFile.inc.php
-www/ojs2/plugins/generic/translator/EditableLocaleFile.inc.php
-www/ojs2/plugins/generic/translator/TranslatorAction.inc.php
-www/ojs2/plugins/generic/translator/TranslatorHandler.inc.php
-www/ojs2/plugins/generic/translator/TranslatorPlugin.inc.php
-www/ojs2/plugins/generic/translator/editEmail.tpl
-www/ojs2/plugins/generic/translator/editMiscFile.tpl
-www/ojs2/plugins/generic/translator/errors.tpl
-www/ojs2/plugins/generic/translator/index.php
-www/ojs2/plugins/generic/translator/index.tpl
-www/ojs2/plugins/generic/translator/locale.tpl
-www/ojs2/plugins/generic/translator/locale/en_US/locale.xml
-www/ojs2/plugins/generic/translator/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/translator/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/translator/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/translator/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/translator/localeFile.tpl
-www/ojs2/plugins/generic/webFeed/README
-www/ojs2/plugins/generic/webFeed/SettingsForm.inc.php
-www/ojs2/plugins/generic/webFeed/WebFeedBlockPlugin.inc.php
-www/ojs2/plugins/generic/webFeed/WebFeedGatewayPlugin.inc.php
-www/ojs2/plugins/generic/webFeed/WebFeedPlugin.inc.php
-www/ojs2/plugins/generic/webFeed/index.php
-www/ojs2/plugins/generic/webFeed/locale/de_DE/locale.xml
-www/ojs2/plugins/generic/webFeed/locale/en_US/locale.xml
-www/ojs2/plugins/generic/webFeed/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/webFeed/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/webFeed/locale/hr_HR/locale.xml
-www/ojs2/plugins/generic/webFeed/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/webFeed/locale/ja_JP/locale.xml
-www/ojs2/plugins/generic/webFeed/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/webFeed/locale/vi_VN/locale.xml
-www/ojs2/plugins/generic/webFeed/settingsForm.tpl
-www/ojs2/plugins/generic/webFeed/templates/atom.tpl
-www/ojs2/plugins/generic/webFeed/templates/block.tpl
-www/ojs2/plugins/generic/webFeed/templates/images/atom10_logo.gif
-www/ojs2/plugins/generic/webFeed/templates/images/rss10_logo.gif
-www/ojs2/plugins/generic/webFeed/templates/images/rss20_logo.gif
-www/ojs2/plugins/generic/webFeed/templates/rss.tpl
-www/ojs2/plugins/generic/webFeed/templates/rss2.tpl
-www/ojs2/plugins/generic/xmlGalley/ArticleXMLGalley.inc.php
-www/ojs2/plugins/generic/xmlGalley/ArticleXMLGalleyDAO.inc.php
-www/ojs2/plugins/generic/xmlGalley/README
-www/ojs2/plugins/generic/xmlGalley/XMLGalleyPlugin.inc.php
-www/ojs2/plugins/generic/xmlGalley/XMLGalleySettingsForm.inc.php
-www/ojs2/plugins/generic/xmlGalley/index.php
-www/ojs2/plugins/generic/xmlGalley/locale/en_US/locale.xml
-www/ojs2/plugins/generic/xmlGalley/locale/es_ES/locale.xml
-www/ojs2/plugins/generic/xmlGalley/locale/fr_CA/locale.xml
-www/ojs2/plugins/generic/xmlGalley/locale/it_IT/locale.xml
-www/ojs2/plugins/generic/xmlGalley/locale/pt_BR/locale.xml
-www/ojs2/plugins/generic/xmlGalley/schema.xml
-www/ojs2/plugins/generic/xmlGalley/settingsForm.tpl
-www/ojs2/plugins/generic/xmlGalley/transform/nlm/functions.inc.xsl
-www/ojs2/plugins/generic/xmlGalley/transform/nlm/nlm-fo.xsl
-www/ojs2/plugins/generic/xmlGalley/transform/nlm/nlm-xhtml.xsl
-www/ojs2/plugins/generic/xmlGalley/transform/nlm/viewnlm-v2.xsl
-www/ojs2/plugins/generic/xmlGalley/transform/test.xml
-www/ojs2/plugins/generic/xmlGalley/transform/test.xsl
-www/ojs2/plugins/importexport/crossref/CrossRefExportDom.inc.php
-www/ojs2/plugins/importexport/crossref/CrossRefExportPlugin.inc.php
-www/ojs2/plugins/importexport/crossref/README
-www/ojs2/plugins/importexport/crossref/articles.tpl
-www/ojs2/plugins/importexport/crossref/index.php
-www/ojs2/plugins/importexport/crossref/index.tpl
-www/ojs2/plugins/importexport/crossref/issues.tpl
-www/ojs2/plugins/importexport/crossref/locale/de_DE/locale.xml
-www/ojs2/plugins/importexport/crossref/locale/en_US/locale.xml
-www/ojs2/plugins/importexport/crossref/locale/es_ES/locale.xml
-www/ojs2/plugins/importexport/crossref/locale/fr_CA/locale.xml
-www/ojs2/plugins/importexport/crossref/locale/hr_HR/locale.xml
-www/ojs2/plugins/importexport/crossref/locale/it_IT/locale.xml
-www/ojs2/plugins/importexport/crossref/locale/ja_JP/locale.xml
-www/ojs2/plugins/importexport/crossref/locale/pt_BR/locale.xml
-www/ojs2/plugins/importexport/crossref/locale/vi_VN/locale.xml
-www/ojs2/plugins/importexport/erudit/EruditExportDom.inc.php
-www/ojs2/plugins/importexport/erudit/EruditExportPlugin.inc.php
-www/ojs2/plugins/importexport/erudit/index.php
-www/ojs2/plugins/importexport/erudit/index.tpl
-www/ojs2/plugins/importexport/erudit/locale/de_DE/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/en_US/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/es_ES/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/fr_CA/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/hr_HR/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/it_IT/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/ja_JP/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/pt_BR/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/ru_RU/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/tr_TR/locale.xml
-www/ojs2/plugins/importexport/erudit/locale/vi_VN/locale.xml
-www/ojs2/plugins/importexport/native/NativeExportDom.inc.php
-www/ojs2/plugins/importexport/native/NativeImportDom.inc.php
-www/ojs2/plugins/importexport/native/NativeImportExportPlugin.inc.php
-www/ojs2/plugins/importexport/native/README
-www/ojs2/plugins/importexport/native/articleContext.tpl
-www/ojs2/plugins/importexport/native/articles.tpl
-www/ojs2/plugins/importexport/native/importError.tpl
-www/ojs2/plugins/importexport/native/importSuccess.tpl
-www/ojs2/plugins/importexport/native/index.php
-www/ojs2/plugins/importexport/native/index.tpl
-www/ojs2/plugins/importexport/native/issues.tpl
-www/ojs2/plugins/importexport/native/locale/de_DE/locale.xml
-www/ojs2/plugins/importexport/native/locale/en_US/locale.xml
-www/ojs2/plugins/importexport/native/locale/es_ES/locale.xml
-www/ojs2/plugins/importexport/native/locale/fr_CA/locale.xml
-www/ojs2/plugins/importexport/native/locale/hr_HR/locale.xml
-www/ojs2/plugins/importexport/native/locale/it_IT/locale.xml
-www/ojs2/plugins/importexport/native/locale/ja_JP/locale.xml
-www/ojs2/plugins/importexport/native/locale/pt_BR/locale.xml
-www/ojs2/plugins/importexport/native/locale/ru_RU/locale.xml
-www/ojs2/plugins/importexport/native/locale/tr_TR/locale.xml
-www/ojs2/plugins/importexport/native/locale/vi_VN/locale.xml
-www/ojs2/plugins/importexport/native/native-sample.xml
-www/ojs2/plugins/importexport/native/native.dtd
-www/ojs2/plugins/importexport/native/ojs1-to-ojs2.xsl
-www/ojs2/plugins/importexport/native/sample.xml
-www/ojs2/plugins/importexport/pubmed/PubMedExportDom.inc.php
-www/ojs2/plugins/importexport/pubmed/PubMedExportPlugin.inc.php
-www/ojs2/plugins/importexport/pubmed/README
-www/ojs2/plugins/importexport/pubmed/articles.tpl
-www/ojs2/plugins/importexport/pubmed/index.php
-www/ojs2/plugins/importexport/pubmed/index.tpl
-www/ojs2/plugins/importexport/pubmed/issues.tpl
-www/ojs2/plugins/importexport/pubmed/locale/de_DE/locale.xml
-www/ojs2/plugins/importexport/pubmed/locale/en_US/locale.xml
-www/ojs2/plugins/importexport/pubmed/locale/es_ES/locale.xml
-www/ojs2/plugins/importexport/pubmed/locale/fr_CA/locale.xml
-www/ojs2/plugins/importexport/pubmed/locale/hr_HR/locale.xml
-www/ojs2/plugins/importexport/pubmed/locale/it_IT/locale.xml
-www/ojs2/plugins/importexport/pubmed/locale/ja_JP/locale.xml
-www/ojs2/plugins/importexport/pubmed/locale/pt_BR/locale.xml
-www/ojs2/plugins/importexport/pubmed/locale/vi_VN/locale.xml
-www/ojs2/plugins/importexport/sample/SampleImportExportPlugin.inc.php
-www/ojs2/plugins/importexport/sample/index.php
-www/ojs2/plugins/importexport/sample/issues.tpl
-www/ojs2/plugins/importexport/sample/locale/de_DE/locale.xml
-www/ojs2/plugins/importexport/sample/locale/en_US/locale.xml
-www/ojs2/plugins/importexport/sample/locale/es_ES/locale.xml
-www/ojs2/plugins/importexport/sample/locale/fr_CA/locale.xml
-www/ojs2/plugins/importexport/sample/locale/hr_HR/locale.xml
-www/ojs2/plugins/importexport/sample/locale/it_IT/locale.xml
-www/ojs2/plugins/importexport/sample/locale/ja_JP/locale.xml
-www/ojs2/plugins/importexport/sample/locale/pt_BR/locale.xml
-www/ojs2/plugins/importexport/sample/locale/ru_RU/locale.xml
-www/ojs2/plugins/importexport/sample/locale/tr_TR/locale.xml
-www/ojs2/plugins/importexport/sample/locale/vi_VN/locale.xml
-www/ojs2/plugins/importexport/users/README
-www/ojs2/plugins/importexport/users/UserExportDom.inc.php
-www/ojs2/plugins/importexport/users/UserImportExportPlugin.inc.php
-www/ojs2/plugins/importexport/users/UserXMLParser.inc.php
-www/ojs2/plugins/importexport/users/importUsersConfirm.tpl
-www/ojs2/plugins/importexport/users/importUsersResults.tpl
-www/ojs2/plugins/importexport/users/index.php
-www/ojs2/plugins/importexport/users/index.tpl
-www/ojs2/plugins/importexport/users/locale/de_DE/locale.xml
-www/ojs2/plugins/importexport/users/locale/en_US/locale.xml
-www/ojs2/plugins/importexport/users/locale/es_ES/locale.xml
-www/ojs2/plugins/importexport/users/locale/fr_CA/locale.xml
-www/ojs2/plugins/importexport/users/locale/hr_HR/locale.xml
-www/ojs2/plugins/importexport/users/locale/it_IT/locale.xml
-www/ojs2/plugins/importexport/users/locale/ja_JP/locale.xml
-www/ojs2/plugins/importexport/users/locale/pt_BR/locale.xml
-www/ojs2/plugins/importexport/users/locale/ru_RU/locale.xml
-www/ojs2/plugins/importexport/users/locale/tr_TR/locale.xml
-www/ojs2/plugins/importexport/users/locale/vi_VN/locale.xml
-www/ojs2/plugins/importexport/users/sample.xml
-www/ojs2/plugins/importexport/users/users.dtd
-www/ojs2/plugins/paymethod/manual/ManualPaymentPlugin.inc.php
-www/ojs2/plugins/paymethod/manual/data.xml
-www/ojs2/plugins/paymethod/manual/index.php
-www/ojs2/plugins/paymethod/manual/locale/en_US/locale.xml
-www/ojs2/plugins/paymethod/manual/locale/es_ES/locale.xml
-www/ojs2/plugins/paymethod/manual/locale/fr_CA/locale.xml
-www/ojs2/plugins/paymethod/manual/locale/it_IT/locale.xml
-www/ojs2/plugins/paymethod/manual/locale/pt_BR/locale.xml
-www/ojs2/plugins/paymethod/manual/templates/paymentForm.tpl
-www/ojs2/plugins/paymethod/manual/templates/settingsForm.tpl
-www/ojs2/plugins/paymethod/paypal/PayPalDAO.inc.php
-www/ojs2/plugins/paymethod/paypal/PayPalPlugin.inc.php
-www/ojs2/plugins/paymethod/paypal/data.xml
-www/ojs2/plugins/paymethod/paypal/images/paypal_cards.png
-www/ojs2/plugins/paymethod/paypal/images/paypal_medium.png
-www/ojs2/plugins/paymethod/paypal/images/paypal_small.png
-www/ojs2/plugins/paymethod/paypal/index.php
-www/ojs2/plugins/paymethod/paypal/locale/en_US/locale.xml
-www/ojs2/plugins/paymethod/paypal/locale/es_ES/locale.xml
-www/ojs2/plugins/paymethod/paypal/locale/fr_CA/locale.xml
-www/ojs2/plugins/paymethod/paypal/locale/it_IT/locale.xml
-www/ojs2/plugins/paymethod/paypal/locale/pt_BR/locale.xml
-www/ojs2/plugins/paymethod/paypal/schema.xml
-www/ojs2/plugins/paymethod/paypal/templates/paymentForm.tpl
-www/ojs2/plugins/paymethod/paypal/templates/settingsForm.tpl
-www/ojs2/plugins/themes/classicBlue/ClassicBlueThemePlugin.inc.php
-www/ojs2/plugins/themes/classicBlue/classicBlue.css
-www/ojs2/plugins/themes/classicBlue/index.php
-www/ojs2/plugins/themes/classicBrown/ClassicBrownThemePlugin.inc.php
-www/ojs2/plugins/themes/classicBrown/classicBrown.css
-www/ojs2/plugins/themes/classicBrown/index.php
-www/ojs2/plugins/themes/classicGreen/ClassicGreenThemePlugin.inc.php
-www/ojs2/plugins/themes/classicGreen/classicGreen.css
-www/ojs2/plugins/themes/classicGreen/index.php
-www/ojs2/plugins/themes/classicNavy/ClassicNavyThemePlugin.inc.php
-www/ojs2/plugins/themes/classicNavy/classicNavy.css
-www/ojs2/plugins/themes/classicNavy/index.php
-www/ojs2/plugins/themes/classicRed/ClassicRedThemePlugin.inc.php
-www/ojs2/plugins/themes/classicRed/classicRed.css
-www/ojs2/plugins/themes/classicRed/index.php
-www/ojs2/plugins/themes/desert/DesertThemePlugin.inc.php
-www/ojs2/plugins/themes/desert/desert.css
-www/ojs2/plugins/themes/desert/index.php
-www/ojs2/plugins/themes/lilac/LilacThemePlugin.inc.php
-www/ojs2/plugins/themes/lilac/index.php
-www/ojs2/plugins/themes/lilac/lilac.css
-www/ojs2/plugins/themes/night/NightThemePlugin.inc.php
-www/ojs2/plugins/themes/night/index.php
-www/ojs2/plugins/themes/night/night.css
-www/ojs2/plugins/themes/redbar/RedbarThemePlugin.inc.php
-www/ojs2/plugins/themes/redbar/index.php
-www/ojs2/plugins/themes/redbar/redbar.css
-www/ojs2/plugins/themes/steel/SteelThemePlugin.inc.php
-www/ojs2/plugins/themes/steel/index.php
-www/ojs2/plugins/themes/steel/steel.css
-www/ojs2/plugins/themes/uncommon/UncommonThemePlugin.inc.php
-www/ojs2/plugins/themes/uncommon/index.php
-www/ojs2/plugins/themes/uncommon/uncommon.css
-www/ojs2/plugins/themes/vanilla/VanillaThemePlugin.inc.php
-www/ojs2/plugins/themes/vanilla/index.php
-www/ojs2/plugins/themes/vanilla/vanilla.css
-www/ojs2/public/index.html
-www/ojs2/registry/botAgents.txt
-www/ojs2/registry/inlineTypes.txt
-www/ojs2/registry/journalSettings.xml
-www/ojs2/registry/locale/de_DE/countries.xml
-www/ojs2/registry/locale/de_DE/disciplines.xml
-www/ojs2/registry/locale/en_US/countries.xml
-www/ojs2/registry/locale/en_US/disciplines.xml
-www/ojs2/registry/locale/es_ES/countries.xml
-www/ojs2/registry/locale/es_ES/disciplines.xml
-www/ojs2/registry/locale/fr_CA/countries.xml
-www/ojs2/registry/locale/fr_CA/disciplines.xml
-www/ojs2/registry/locale/hr_HR/countries.xml
-www/ojs2/registry/locale/it_IT/countries.xml
-www/ojs2/registry/locale/it_IT/disciplines.xml
-www/ojs2/registry/locale/ja_JP/countries.xml
-www/ojs2/registry/locale/pt_BR/countries.xml
-www/ojs2/registry/locale/ru_RU/countries.xml
-www/ojs2/registry/locale/tr_TR/countries.xml
-www/ojs2/registry/locale/vi_VN/countries.xml
-www/ojs2/registry/locales.xml
-www/ojs2/registry/scheduledTasks.xml
-www/ojs2/registry/stopwords.txt
-www/ojs2/rt/en_US/Agriculture.xml
-www/ojs2/rt/en_US/Art_Architecture.xml
-www/ojs2/rt/en_US/Astrophysics.xml
-www/ojs2/rt/en_US/Biology.xml
-www/ojs2/rt/en_US/Business.xml
-www/ojs2/rt/en_US/Chemistry.xml
-www/ojs2/rt/en_US/Cognitive_Science.xml
-www/ojs2/rt/en_US/Computer_Science.xml
-www/ojs2/rt/en_US/Economics.xml
-www/ojs2/rt/en_US/Education.xml
-www/ojs2/rt/en_US/Environment.xml
-www/ojs2/rt/en_US/General_Science.xml
-www/ojs2/rt/en_US/Generic.xml
-www/ojs2/rt/en_US/Humanities.xml
-www/ojs2/rt/en_US/Life_Sciences.xml
-www/ojs2/rt/en_US/Mathematics.xml
-www/ojs2/rt/en_US/Music.xml
-www/ojs2/rt/en_US/Physics.xml
-www/ojs2/rt/en_US/Social_Sciences.xml
-www/ojs2/rt/rt-version.dtd
-www/ojs2/styles/articleView.css
-www/ojs2/styles/bothSidebars.css
-www/ojs2/styles/comments.css
-www/ojs2/styles/common.css
-www/ojs2/styles/help.css
-www/ojs2/styles/leftSidebar.css
-www/ojs2/styles/rightSidebar.css
-www/ojs2/styles/rt.css
-www/ojs2/styles/sidebar.css
-www/ojs2/templates/about/aboutThisPublishingSystem.tpl
-www/ojs2/templates/about/contact.tpl
-www/ojs2/templates/about/displayMembership.tpl
-www/ojs2/templates/about/editorialPolicies.tpl
-www/ojs2/templates/about/editorialTeam.tpl
-www/ojs2/templates/about/editorialTeamBio.tpl
-www/ojs2/templates/about/editorialTeamBoard.tpl
-www/ojs2/templates/about/index.tpl
-www/ojs2/templates/about/journalSponsorship.tpl
-www/ojs2/templates/about/memberships.tpl
-www/ojs2/templates/about/site.tpl
-www/ojs2/templates/about/siteMap.tpl
-www/ojs2/templates/about/statistics.tpl
-www/ojs2/templates/about/submissions.tpl
-www/ojs2/templates/about/subscriptions.tpl
-www/ojs2/templates/admin/auth/sourceSettings.tpl
-www/ojs2/templates/admin/auth/sources.tpl
-www/ojs2/templates/admin/importConflicts.tpl
-www/ojs2/templates/admin/importOJS1.tpl
-www/ojs2/templates/admin/index.tpl
-www/ojs2/templates/admin/journalSettings.tpl
-www/ojs2/templates/admin/journals.tpl
-www/ojs2/templates/admin/languageDownloadErrors.tpl
-www/ojs2/templates/admin/languages.tpl
-www/ojs2/templates/admin/selectMergeUser.tpl
-www/ojs2/templates/admin/settings.tpl
-www/ojs2/templates/admin/systemConfig.tpl
-www/ojs2/templates/admin/systemConfigUpdated.tpl
-www/ojs2/templates/admin/systemInfo.tpl
-www/ojs2/templates/announcement/index.tpl
-www/ojs2/templates/announcement/list.tpl
-www/ojs2/templates/announcement/view.tpl
-www/ojs2/templates/article/article.tpl
-www/ojs2/templates/article/dublincore.tpl
-www/ojs2/templates/article/googlescholar.tpl
-www/ojs2/templates/article/interstitial.tpl
-www/ojs2/templates/article/pdfInterstitial.tpl
-www/ojs2/templates/article/view.tpl
-www/ojs2/templates/author/active.tpl
-www/ojs2/templates/author/completed.tpl
-www/ojs2/templates/author/index.tpl
-www/ojs2/templates/author/submission.tpl
-www/ojs2/templates/author/submission/authorFees.tpl
-www/ojs2/templates/author/submission/copyedit.tpl
-www/ojs2/templates/author/submission/editorDecision.tpl
-www/ojs2/templates/author/submission/layout.tpl
-www/ojs2/templates/author/submission/management.tpl
-www/ojs2/templates/author/submission/metadata.tpl
-www/ojs2/templates/author/submission/peerReview.tpl
-www/ojs2/templates/author/submission/proofread.tpl
-www/ojs2/templates/author/submission/status.tpl
-www/ojs2/templates/author/submission/summary.tpl
-www/ojs2/templates/author/submissionEditing.tpl
-www/ojs2/templates/author/submissionReview.tpl
-www/ojs2/templates/author/submit/authorFees.tpl
-www/ojs2/templates/author/submit/complete.tpl
-www/ojs2/templates/author/submit/step1.tpl
-www/ojs2/templates/author/submit/step2.tpl
-www/ojs2/templates/author/submit/step3.tpl
-www/ojs2/templates/author/submit/step4.tpl
-www/ojs2/templates/author/submit/step5.tpl
-www/ojs2/templates/author/submit/submitHeader.tpl
-www/ojs2/templates/author/submit/suppFile.tpl
-www/ojs2/templates/comment/comment.tpl
-www/ojs2/templates/comment/comments.tpl
-www/ojs2/templates/common/error.tpl
-www/ojs2/templates/common/footer.tpl
-www/ojs2/templates/common/formErrors.tpl
-www/ojs2/templates/common/header.tpl
-www/ojs2/templates/common/message.tpl
-www/ojs2/templates/common/progress.tpl
-www/ojs2/templates/copyeditor/active.tpl
-www/ojs2/templates/copyeditor/completed.tpl
-www/ojs2/templates/copyeditor/index.tpl
-www/ojs2/templates/copyeditor/submission.tpl
-www/ojs2/templates/copyeditor/submission/copyedit.tpl
-www/ojs2/templates/copyeditor/submission/layout.tpl
-www/ojs2/templates/copyeditor/submission/summary.tpl
-www/ojs2/templates/editor/index.tpl
-www/ojs2/templates/editor/issues/backIssues.tpl
-www/ojs2/templates/editor/issues/createIssue.tpl
-www/ojs2/templates/editor/issues/futureIssues.tpl
-www/ojs2/templates/editor/issues/issueData.tpl
-www/ojs2/templates/editor/issues/issueToc.tpl
-www/ojs2/templates/editor/notifyUsers.tpl
-www/ojs2/templates/editor/notifyUsersEmail.tpl
-www/ojs2/templates/editor/selectSectionEditor.tpl
-www/ojs2/templates/editor/submissions.tpl
-www/ojs2/templates/editor/submissionsArchives.tpl
-www/ojs2/templates/editor/submissionsInEditing.tpl
-www/ojs2/templates/editor/submissionsInReview.tpl
-www/ojs2/templates/editor/submissionsUnassigned.tpl
-www/ojs2/templates/email/email.tpl
-www/ojs2/templates/gateway/lockss.tpl
-www/ojs2/templates/help/footer.tpl
-www/ojs2/templates/help/header.tpl
-www/ojs2/templates/help/helpToc.tpl
-www/ojs2/templates/help/searchResults.tpl
-www/ojs2/templates/help/toc.tpl
-www/ojs2/templates/help/topic.tpl
-www/ojs2/templates/help/view.tpl
-www/ojs2/templates/images/help.gif
-www/ojs2/templates/images/icons/checked.gif
-www/ojs2/templates/images/icons/comment.gif
-www/ojs2/templates/images/icons/comment_disabled.gif
-www/ojs2/templates/images/icons/delete.gif
-www/ojs2/templates/images/icons/delete_disabled.gif
-www/ojs2/templates/images/icons/edit.gif
-www/ojs2/templates/images/icons/edit_disabled.gif
-www/ojs2/templates/images/icons/folder.gif
-www/ojs2/templates/images/icons/fulltext_open_large.png
-www/ojs2/templates/images/icons/fulltext_open_medium.png
-www/ojs2/templates/images/icons/fulltext_open_small.png
-www/ojs2/templates/images/icons/fulltext_restricted_large.png
-www/ojs2/templates/images/icons/fulltext_restricted_medium.png
-www/ojs2/templates/images/icons/fulltext_restricted_small.png
-www/ojs2/templates/images/icons/letter.gif
-www/ojs2/templates/images/icons/mail.gif
-www/ojs2/templates/images/icons/mail_disabled.gif
-www/ojs2/templates/images/icons/unchecked.gif
-www/ojs2/templates/images/icons/view.gif
-www/ojs2/templates/images/info.gif
-www/ojs2/templates/images/letter.gif
-www/ojs2/templates/images/lockss.gif
-www/ojs2/templates/images/mail.gif
-www/ojs2/templates/images/menulist.gif
-www/ojs2/templates/images/pkp.gif
-www/ojs2/templates/images/progbar.gif
-www/ojs2/templates/images/progbg.gif
-www/ojs2/templates/index/journal.tpl
-www/ojs2/templates/index/site.tpl
-www/ojs2/templates/information/information.tpl
-www/ojs2/templates/install/install.tpl
-www/ojs2/templates/install/installComplete.tpl
-www/ojs2/templates/install/upgrade.tpl
-www/ojs2/templates/install/upgradeComplete.tpl
-www/ojs2/templates/issue/archive.tpl
-www/ojs2/templates/issue/issue.tpl
-www/ojs2/templates/issue/view.tpl
-www/ojs2/templates/issue/viewPage.tpl
-www/ojs2/templates/layoutEditor/active.tpl
-www/ojs2/templates/layoutEditor/completed.tpl
-www/ojs2/templates/layoutEditor/futureIssues.tpl
-www/ojs2/templates/layoutEditor/index.tpl
-www/ojs2/templates/layoutEditor/submission.tpl
-www/ojs2/templates/layoutEditor/submission/layout.tpl
-www/ojs2/templates/layoutEditor/submission/proofread.tpl
-www/ojs2/templates/layoutEditor/submission/scheduling.tpl
-www/ojs2/templates/layoutEditor/submission/summary.tpl
-www/ojs2/templates/layoutEditor/submissions.tpl
-www/ojs2/templates/manager/announcement/announcementForm.tpl
-www/ojs2/templates/manager/announcement/announcementTypeForm.tpl
-www/ojs2/templates/manager/announcement/announcementTypes.tpl
-www/ojs2/templates/manager/announcement/announcements.tpl
-www/ojs2/templates/manager/emails/emailTemplateForm.tpl
-www/ojs2/templates/manager/emails/emails.tpl
-www/ojs2/templates/manager/files/index.tpl
-www/ojs2/templates/manager/groups/groupForm.tpl
-www/ojs2/templates/manager/groups/groups.tpl
-www/ojs2/templates/manager/groups/memberships.tpl
-www/ojs2/templates/manager/groups/selectUser.tpl
-www/ojs2/templates/manager/importexport/plugins.tpl
-www/ojs2/templates/manager/index.tpl
-www/ojs2/templates/manager/languageSettings.tpl
-www/ojs2/templates/manager/payments/payMethodSettingsForm.tpl
-www/ojs2/templates/manager/payments/paymentSettings.tpl
-www/ojs2/templates/manager/payments/viewPayment.tpl
-www/ojs2/templates/manager/payments/viewPayments.tpl
-www/ojs2/templates/manager/people/email.tpl
-www/ojs2/templates/manager/people/enrollSync.tpl
-www/ojs2/templates/manager/people/enrollment.tpl
-www/ojs2/templates/manager/people/searchUsers.tpl
-www/ojs2/templates/manager/people/selectMergeUser.tpl
-www/ojs2/templates/manager/people/userProfile.tpl
-www/ojs2/templates/manager/people/userProfileForm.tpl
-www/ojs2/templates/manager/plugins/plugins.tpl
-www/ojs2/templates/manager/sections/sectionForm.tpl
-www/ojs2/templates/manager/sections/sections.tpl
-www/ojs2/templates/manager/setup/index.tpl
-www/ojs2/templates/manager/setup/settingsSaved.tpl
-www/ojs2/templates/manager/setup/setupHeader.tpl
-www/ojs2/templates/manager/setup/step1.tpl
-www/ojs2/templates/manager/setup/step2.tpl
-www/ojs2/templates/manager/setup/step3.tpl
-www/ojs2/templates/manager/setup/step4.tpl
-www/ojs2/templates/manager/setup/step5.tpl
-www/ojs2/templates/manager/statistics/index.tpl
-www/ojs2/templates/manager/statistics/reportGenerator.tpl
-www/ojs2/templates/manager/statistics/statistics.tpl
-www/ojs2/templates/proofreader/active.tpl
-www/ojs2/templates/proofreader/completed.tpl
-www/ojs2/templates/proofreader/index.tpl
-www/ojs2/templates/proofreader/submission.tpl
-www/ojs2/templates/proofreader/submission/layout.tpl
-www/ojs2/templates/proofreader/submission/proofread.tpl
-www/ojs2/templates/proofreader/submission/scheduling.tpl
-www/ojs2/templates/proofreader/submission/summary.tpl
-www/ojs2/templates/reviewer/active.tpl
-www/ojs2/templates/reviewer/completed.tpl
-www/ojs2/templates/reviewer/index.tpl
-www/ojs2/templates/reviewer/submission.tpl
-www/ojs2/templates/rt/bio.tpl
-www/ojs2/templates/rt/captureCite.tpl
-www/ojs2/templates/rt/context.tpl
-www/ojs2/templates/rt/email.tpl
-www/ojs2/templates/rt/findingReferences.tpl
-www/ojs2/templates/rt/footer.tpl
-www/ojs2/templates/rt/header.tpl
-www/ojs2/templates/rt/index.html
-www/ojs2/templates/rt/metadata.tpl
-www/ojs2/templates/rt/printerFriendly.tpl
-www/ojs2/templates/rt/rt.tpl
-www/ojs2/templates/rt/sent.tpl
-www/ojs2/templates/rt/suppFileView.tpl
-www/ojs2/templates/rt/suppFiles.tpl
-www/ojs2/templates/rtadmin/context.tpl
-www/ojs2/templates/rtadmin/contexts.tpl
-www/ojs2/templates/rtadmin/exportXml.tpl
-www/ojs2/templates/rtadmin/index.tpl
-www/ojs2/templates/rtadmin/journals.tpl
-www/ojs2/templates/rtadmin/search.tpl
-www/ojs2/templates/rtadmin/searches.tpl
-www/ojs2/templates/rtadmin/settings.tpl
-www/ojs2/templates/rtadmin/validate.tpl
-www/ojs2/templates/rtadmin/version.tpl
-www/ojs2/templates/rtadmin/versions.tpl
-www/ojs2/templates/search/advancedSearch.tpl
-www/ojs2/templates/search/authorDetails.tpl
-www/ojs2/templates/search/authorIndex.tpl
-www/ojs2/templates/search/searchResults.tpl
-www/ojs2/templates/search/titleIndex.tpl
-www/ojs2/templates/sectionEditor/createReviewerForm.tpl
-www/ojs2/templates/sectionEditor/index.tpl
-www/ojs2/templates/sectionEditor/reviewerRecommendation.tpl
-www/ojs2/templates/sectionEditor/searchUsers.tpl
-www/ojs2/templates/sectionEditor/selectReviewer.tpl
-www/ojs2/templates/sectionEditor/selectUser.tpl
-www/ojs2/templates/sectionEditor/setDueDate.tpl
-www/ojs2/templates/sectionEditor/submission.tpl
-www/ojs2/templates/sectionEditor/submission/authorFees.tpl
-www/ojs2/templates/sectionEditor/submission/copyedit.tpl
-www/ojs2/templates/sectionEditor/submission/editorDecision.tpl
-www/ojs2/templates/sectionEditor/submission/editors.tpl
-www/ojs2/templates/sectionEditor/submission/layout.tpl
-www/ojs2/templates/sectionEditor/submission/management.tpl
-www/ojs2/templates/sectionEditor/submission/metadata.tpl
-www/ojs2/templates/sectionEditor/submission/peerReview.tpl
-www/ojs2/templates/sectionEditor/submission/proofread.tpl
-www/ojs2/templates/sectionEditor/submission/rounds.tpl
-www/ojs2/templates/sectionEditor/submission/scheduling.tpl
-www/ojs2/templates/sectionEditor/submission/status.tpl
-www/ojs2/templates/sectionEditor/submission/summary.tpl
-www/ojs2/templates/sectionEditor/submissionEditing.tpl
-www/ojs2/templates/sectionEditor/submissionEmailLog.tpl
-www/ojs2/templates/sectionEditor/submissionEmailLogEntry.tpl
-www/ojs2/templates/sectionEditor/submissionEventLog.tpl
-www/ojs2/templates/sectionEditor/submissionEventLogEntry.tpl
-www/ojs2/templates/sectionEditor/submissionHistory.tpl
-www/ojs2/templates/sectionEditor/submissionNotes.tpl
-www/ojs2/templates/sectionEditor/submissionRegrets.tpl
-www/ojs2/templates/sectionEditor/submissionReview.tpl
-www/ojs2/templates/sectionEditor/submissionsArchives.tpl
-www/ojs2/templates/sectionEditor/submissionsInEditing.tpl
-www/ojs2/templates/sectionEditor/submissionsInReview.tpl
-www/ojs2/templates/sectionEditor/userProfile.tpl
-www/ojs2/templates/submission/comment/comment.tpl
-www/ojs2/templates/submission/comment/commentEmail.tpl
-www/ojs2/templates/submission/comment/editComment.tpl
-www/ojs2/templates/submission/comment/editorDecisionComment.tpl
-www/ojs2/templates/submission/comment/editorDecisionEmail.tpl
-www/ojs2/templates/submission/comment/footer.tpl
-www/ojs2/templates/submission/comment/header.tpl
-www/ojs2/templates/submission/comment/peerReviewComment.tpl
-www/ojs2/templates/submission/instructions.tpl
-www/ojs2/templates/submission/layout/galleyForm.tpl
-www/ojs2/templates/submission/layout/galleyView.tpl
-www/ojs2/templates/submission/layout/proofGalley.tpl
-www/ojs2/templates/submission/layout/proofGalleyHTML.tpl
-www/ojs2/templates/submission/layout/proofGalleyTop.tpl
-www/ojs2/templates/submission/metadata/metadataEdit.tpl
-www/ojs2/templates/submission/metadata/metadataView.tpl
-www/ojs2/templates/submission/suppFile/suppFile.tpl
-www/ojs2/templates/submission/suppFile/suppFileView.tpl
-www/ojs2/templates/subscription/openAccessNotifyEmail.tpl
-www/ojs2/templates/subscription/subscriptionForm.tpl
-www/ojs2/templates/subscription/subscriptionPolicyForm.tpl
-www/ojs2/templates/subscription/subscriptionTypeForm.tpl
-www/ojs2/templates/subscription/subscriptionTypes.tpl
-www/ojs2/templates/subscription/subscriptions.tpl
-www/ojs2/templates/subscription/users.tpl
-www/ojs2/templates/user/changePassword.tpl
-www/ojs2/templates/user/index.tpl
-www/ojs2/templates/user/login.tpl
-www/ojs2/templates/user/loginChangePassword.tpl
-www/ojs2/templates/user/lostPassword.tpl
-www/ojs2/templates/user/profile.tpl
-www/ojs2/templates/user/register.tpl
-www/ojs2/templates/user/registerSite.tpl
-www/ojs2/tools/dbXMLtoSQL.php
-www/ojs2/tools/importExport.php
-www/ojs2/tools/includes/cliTool.inc.php
-www/ojs2/tools/install.php
-www/ojs2/tools/localeCheck.php
-www/ojs2/tools/migrate.php
-www/ojs2/tools/poToCountries.php
-www/ojs2/tools/poToCurrencies.php
-www/ojs2/tools/preCompile.php
-www/ojs2/tools/rebuildSearchIndex.php
-www/ojs2/tools/runScheduledTasks.php
-www/ojs2/tools/upgrade.php
-@dirrm www/ojs2/tools/includes
-@dirrm www/ojs2/tools
-@dirrm www/ojs2/templates/user
-@dirrm www/ojs2/templates/subscription
-@dirrm www/ojs2/templates/submission/suppFile
-@dirrm www/ojs2/templates/submission/metadata
-@dirrm www/ojs2/templates/submission/layout
-@dirrm www/ojs2/templates/submission/comment
-@dirrm www/ojs2/templates/submission
-@dirrm www/ojs2/templates/sectionEditor/submission
-@dirrm www/ojs2/templates/sectionEditor
-@dirrm www/ojs2/templates/search
-@dirrm www/ojs2/templates/rtadmin
-@dirrm www/ojs2/templates/rt
-@dirrm www/ojs2/templates/reviewer
-@dirrm www/ojs2/templates/proofreader/submission
-@dirrm www/ojs2/templates/proofreader
-@dirrm www/ojs2/templates/manager/statistics
-@dirrm www/ojs2/templates/manager/setup
-@dirrm www/ojs2/templates/manager/sections
-@dirrm www/ojs2/templates/manager/plugins
-@dirrm www/ojs2/templates/manager/people
-@dirrm www/ojs2/templates/manager/payments
-@dirrm www/ojs2/templates/manager/importexport
-@dirrm www/ojs2/templates/manager/groups
-@dirrm www/ojs2/templates/manager/files
-@dirrm www/ojs2/templates/manager/emails
-@dirrm www/ojs2/templates/manager/announcement
-@dirrm www/ojs2/templates/manager
-@dirrm www/ojs2/templates/layoutEditor/submission
-@dirrm www/ojs2/templates/layoutEditor
-@dirrm www/ojs2/templates/issue
-@dirrm www/ojs2/templates/install
-@dirrm www/ojs2/templates/information
-@dirrm www/ojs2/templates/index
-@dirrm www/ojs2/templates/images/icons
-@dirrm www/ojs2/templates/images
-@dirrm www/ojs2/templates/help
-@dirrm www/ojs2/templates/gateway
-@dirrm www/ojs2/templates/email
-@dirrm www/ojs2/templates/editor/issues
-@dirrm www/ojs2/templates/editor
-@dirrm www/ojs2/templates/copyeditor/submission
-@dirrm www/ojs2/templates/copyeditor
-@dirrm www/ojs2/templates/common
-@dirrm www/ojs2/templates/comment
-@dirrm www/ojs2/templates/author/submit
-@dirrm www/ojs2/templates/author/submission
-@dirrm www/ojs2/templates/author
-@dirrm www/ojs2/templates/article
-@dirrm www/ojs2/templates/announcement
-@dirrm www/ojs2/templates/admin/auth
-@dirrm www/ojs2/templates/admin
-@dirrm www/ojs2/templates/about
-@dirrm www/ojs2/templates
-@dirrm www/ojs2/styles
-@dirrm www/ojs2/rt/en_US
-@dirrm www/ojs2/rt
-@dirrm www/ojs2/registry/locale/vi_VN
-@dirrm www/ojs2/registry/locale/tr_TR
-@dirrm www/ojs2/registry/locale/ru_RU
-@dirrm www/ojs2/registry/locale/pt_BR
-@dirrm www/ojs2/registry/locale/ja_JP
-@dirrm www/ojs2/registry/locale/it_IT
-@dirrm www/ojs2/registry/locale/hr_HR
-@dirrm www/ojs2/registry/locale/fr_CA
-@dirrm www/ojs2/registry/locale/es_ES
-@dirrm www/ojs2/registry/locale/en_US
-@dirrm www/ojs2/registry/locale/de_DE
-@dirrm www/ojs2/registry/locale
-@dirrm www/ojs2/registry
-@dirrm www/ojs2/public
-@dirrm www/ojs2/plugins/themes/vanilla
-@dirrm www/ojs2/plugins/themes/uncommon
-@dirrm www/ojs2/plugins/themes/steel
-@dirrm www/ojs2/plugins/themes/redbar
-@dirrm www/ojs2/plugins/themes/night
-@dirrm www/ojs2/plugins/themes/lilac
-@dirrm www/ojs2/plugins/themes/desert
-@dirrm www/ojs2/plugins/themes/classicRed
-@dirrm www/ojs2/plugins/themes/classicNavy
-@dirrm www/ojs2/plugins/themes/classicGreen
-@dirrm www/ojs2/plugins/themes/classicBrown
-@dirrm www/ojs2/plugins/themes/classicBlue
-@dirrm www/ojs2/plugins/themes
-@dirrm www/ojs2/plugins/paymethod/paypal/templates
-@dirrm www/ojs2/plugins/paymethod/paypal/locale/pt_BR
-@dirrm www/ojs2/plugins/paymethod/paypal/locale/it_IT
-@dirrm www/ojs2/plugins/paymethod/paypal/locale/fr_CA
-@dirrm www/ojs2/plugins/paymethod/paypal/locale/es_ES
-@dirrm www/ojs2/plugins/paymethod/paypal/locale/en_US
-@dirrm www/ojs2/plugins/paymethod/paypal/locale
-@dirrm www/ojs2/plugins/paymethod/paypal/images
-@dirrm www/ojs2/plugins/paymethod/paypal
-@dirrm www/ojs2/plugins/paymethod/manual/templates
-@dirrm www/ojs2/plugins/paymethod/manual/locale/pt_BR
-@dirrm www/ojs2/plugins/paymethod/manual/locale/it_IT
-@dirrm www/ojs2/plugins/paymethod/manual/locale/fr_CA
-@dirrm www/ojs2/plugins/paymethod/manual/locale/es_ES
-@dirrm www/ojs2/plugins/paymethod/manual/locale/en_US
-@dirrm www/ojs2/plugins/paymethod/manual/locale
-@dirrm www/ojs2/plugins/paymethod/manual
-@dirrm www/ojs2/plugins/paymethod
-@dirrm www/ojs2/plugins/importexport/users/locale/vi_VN
-@dirrm www/ojs2/plugins/importexport/users/locale/tr_TR
-@dirrm www/ojs2/plugins/importexport/users/locale/ru_RU
-@dirrm www/ojs2/plugins/importexport/users/locale/pt_BR
-@dirrm www/ojs2/plugins/importexport/users/locale/ja_JP
-@dirrm www/ojs2/plugins/importexport/users/locale/it_IT
-@dirrm www/ojs2/plugins/importexport/users/locale/hr_HR
-@dirrm www/ojs2/plugins/importexport/users/locale/fr_CA
-@dirrm www/ojs2/plugins/importexport/users/locale/es_ES
-@dirrm www/ojs2/plugins/importexport/users/locale/en_US
-@dirrm www/ojs2/plugins/importexport/users/locale/de_DE
-@dirrm www/ojs2/plugins/importexport/users/locale
-@dirrm www/ojs2/plugins/importexport/users
-@dirrm www/ojs2/plugins/importexport/sample/locale/vi_VN
-@dirrm www/ojs2/plugins/importexport/sample/locale/tr_TR
-@dirrm www/ojs2/plugins/importexport/sample/locale/ru_RU
-@dirrm www/ojs2/plugins/importexport/sample/locale/pt_BR
-@dirrm www/ojs2/plugins/importexport/sample/locale/ja_JP
-@dirrm www/ojs2/plugins/importexport/sample/locale/it_IT
-@dirrm www/ojs2/plugins/importexport/sample/locale/hr_HR
-@dirrm www/ojs2/plugins/importexport/sample/locale/fr_CA
-@dirrm www/ojs2/plugins/importexport/sample/locale/es_ES
-@dirrm www/ojs2/plugins/importexport/sample/locale/en_US
-@dirrm www/ojs2/plugins/importexport/sample/locale/de_DE
-@dirrm www/ojs2/plugins/importexport/sample/locale
-@dirrm www/ojs2/plugins/importexport/sample
-@dirrm www/ojs2/plugins/importexport/pubmed/locale/vi_VN
-@dirrm www/ojs2/plugins/importexport/pubmed/locale/pt_BR
-@dirrm www/ojs2/plugins/importexport/pubmed/locale/ja_JP
-@dirrm www/ojs2/plugins/importexport/pubmed/locale/it_IT
-@dirrm www/ojs2/plugins/importexport/pubmed/locale/hr_HR
-@dirrm www/ojs2/plugins/importexport/pubmed/locale/fr_CA
-@dirrm www/ojs2/plugins/importexport/pubmed/locale/es_ES
-@dirrm www/ojs2/plugins/importexport/pubmed/locale/en_US
-@dirrm www/ojs2/plugins/importexport/pubmed/locale/de_DE
-@dirrm www/ojs2/plugins/importexport/pubmed/locale
-@dirrm www/ojs2/plugins/importexport/pubmed
-@dirrm www/ojs2/plugins/importexport/native/locale/vi_VN
-@dirrm www/ojs2/plugins/importexport/native/locale/tr_TR
-@dirrm www/ojs2/plugins/importexport/native/locale/ru_RU
-@dirrm www/ojs2/plugins/importexport/native/locale/pt_BR
-@dirrm www/ojs2/plugins/importexport/native/locale/ja_JP
-@dirrm www/ojs2/plugins/importexport/native/locale/it_IT
-@dirrm www/ojs2/plugins/importexport/native/locale/hr_HR
-@dirrm www/ojs2/plugins/importexport/native/locale/fr_CA
-@dirrm www/ojs2/plugins/importexport/native/locale/es_ES
-@dirrm www/ojs2/plugins/importexport/native/locale/en_US
-@dirrm www/ojs2/plugins/importexport/native/locale/de_DE
-@dirrm www/ojs2/plugins/importexport/native/locale
-@dirrm www/ojs2/plugins/importexport/native
-@dirrm www/ojs2/plugins/importexport/erudit/locale/vi_VN
-@dirrm www/ojs2/plugins/importexport/erudit/locale/tr_TR
-@dirrm www/ojs2/plugins/importexport/erudit/locale/ru_RU
-@dirrm www/ojs2/plugins/importexport/erudit/locale/pt_BR
-@dirrm www/ojs2/plugins/importexport/erudit/locale/ja_JP
-@dirrm www/ojs2/plugins/importexport/erudit/locale/it_IT
-@dirrm www/ojs2/plugins/importexport/erudit/locale/hr_HR
-@dirrm www/ojs2/plugins/importexport/erudit/locale/fr_CA
-@dirrm www/ojs2/plugins/importexport/erudit/locale/es_ES
-@dirrm www/ojs2/plugins/importexport/erudit/locale/en_US
-@dirrm www/ojs2/plugins/importexport/erudit/locale/de_DE
-@dirrm www/ojs2/plugins/importexport/erudit/locale
-@dirrm www/ojs2/plugins/importexport/erudit
-@dirrm www/ojs2/plugins/importexport/crossref/locale/vi_VN
-@dirrm www/ojs2/plugins/importexport/crossref/locale/pt_BR
-@dirrm www/ojs2/plugins/importexport/crossref/locale/ja_JP
-@dirrm www/ojs2/plugins/importexport/crossref/locale/it_IT
-@dirrm www/ojs2/plugins/importexport/crossref/locale/hr_HR
-@dirrm www/ojs2/plugins/importexport/crossref/locale/fr_CA
-@dirrm www/ojs2/plugins/importexport/crossref/locale/es_ES
-@dirrm www/ojs2/plugins/importexport/crossref/locale/en_US
-@dirrm www/ojs2/plugins/importexport/crossref/locale/de_DE
-@dirrm www/ojs2/plugins/importexport/crossref/locale
-@dirrm www/ojs2/plugins/importexport/crossref
-@dirrm www/ojs2/plugins/importexport
-@dirrm www/ojs2/plugins/generic/xmlGalley/transform/nlm
-@dirrm www/ojs2/plugins/generic/xmlGalley/transform
-@dirrm www/ojs2/plugins/generic/xmlGalley/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/xmlGalley/locale/it_IT
-@dirrm www/ojs2/plugins/generic/xmlGalley/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/xmlGalley/locale/es_ES
-@dirrm www/ojs2/plugins/generic/xmlGalley/locale/en_US
-@dirrm www/ojs2/plugins/generic/xmlGalley/locale
-@dirrm www/ojs2/plugins/generic/xmlGalley
-@dirrm www/ojs2/plugins/generic/webFeed/templates/images
-@dirrm www/ojs2/plugins/generic/webFeed/templates
-@dirrm www/ojs2/plugins/generic/webFeed/locale/vi_VN
-@dirrm www/ojs2/plugins/generic/webFeed/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/webFeed/locale/ja_JP
-@dirrm www/ojs2/plugins/generic/webFeed/locale/it_IT
-@dirrm www/ojs2/plugins/generic/webFeed/locale/hr_HR
-@dirrm www/ojs2/plugins/generic/webFeed/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/webFeed/locale/es_ES
-@dirrm www/ojs2/plugins/generic/webFeed/locale/en_US
-@dirrm www/ojs2/plugins/generic/webFeed/locale/de_DE
-@dirrm www/ojs2/plugins/generic/webFeed/locale
-@dirrm www/ojs2/plugins/generic/webFeed
-@dirrm www/ojs2/plugins/generic/translator/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/translator/locale/it_IT
-@dirrm www/ojs2/plugins/generic/translator/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/translator/locale/es_ES
-@dirrm www/ojs2/plugins/generic/translator/locale/en_US
-@dirrm www/ojs2/plugins/generic/translator/locale
-@dirrm www/ojs2/plugins/generic/translator
-@dirrm www/ojs2/plugins/generic/tinymce/locale/vi_VN
-@dirrm www/ojs2/plugins/generic/tinymce/locale/ru_RU
-@dirrm www/ojs2/plugins/generic/tinymce/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/tinymce/locale/ja_JP
-@dirrm www/ojs2/plugins/generic/tinymce/locale/it_IT
-@dirrm www/ojs2/plugins/generic/tinymce/locale/hr_HR
-@dirrm www/ojs2/plugins/generic/tinymce/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/tinymce/locale/es_ES
-@dirrm www/ojs2/plugins/generic/tinymce/locale/en_US
-@dirrm www/ojs2/plugins/generic/tinymce/locale/de_DE
-@dirrm www/ojs2/plugins/generic/tinymce/locale
-@dirrm www/ojs2/plugins/generic/tinymce
-@dirrm www/ojs2/plugins/generic/thesis/locale/vi_VN
-@dirrm www/ojs2/plugins/generic/thesis/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/thesis/locale/ja_JP
-@dirrm www/ojs2/plugins/generic/thesis/locale/it_IT
-@dirrm www/ojs2/plugins/generic/thesis/locale/hr_HR
-@dirrm www/ojs2/plugins/generic/thesis/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/thesis/locale/es_ES
-@dirrm www/ojs2/plugins/generic/thesis/locale/en_US
-@dirrm www/ojs2/plugins/generic/thesis/locale/de_DE
-@dirrm www/ojs2/plugins/generic/thesis/locale
-@dirrm www/ojs2/plugins/generic/thesis
-@dirrm www/ojs2/plugins/generic/sehl/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/sehl/locale/it_IT
-@dirrm www/ojs2/plugins/generic/sehl/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/sehl/locale/es_ES
-@dirrm www/ojs2/plugins/generic/sehl/locale/en_US
-@dirrm www/ojs2/plugins/generic/sehl/locale
-@dirrm www/ojs2/plugins/generic/sehl
-@dirrm www/ojs2/plugins/generic/roundedCorners/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/roundedCorners/locale/it_IT
-@dirrm www/ojs2/plugins/generic/roundedCorners/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/roundedCorners/locale/es_ES
-@dirrm www/ojs2/plugins/generic/roundedCorners/locale/en_US
-@dirrm www/ojs2/plugins/generic/roundedCorners/locale
-@dirrm www/ojs2/plugins/generic/roundedCorners
-@dirrm www/ojs2/plugins/generic/phpMyVisites/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/phpMyVisites/locale/it_IT
-@dirrm www/ojs2/plugins/generic/phpMyVisites/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/phpMyVisites/locale/es_ES
-@dirrm www/ojs2/plugins/generic/phpMyVisites/locale/en_US
-@dirrm www/ojs2/plugins/generic/phpMyVisites/locale
-@dirrm www/ojs2/plugins/generic/phpMyVisites
-@dirrm www/ojs2/plugins/generic/openAds/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/openAds/locale/it_IT
-@dirrm www/ojs2/plugins/generic/openAds/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/openAds/locale/es_ES
-@dirrm www/ojs2/plugins/generic/openAds/locale/en_US
-@dirrm www/ojs2/plugins/generic/openAds/locale
-@dirrm www/ojs2/plugins/generic/openAds
-@dirrm www/ojs2/plugins/generic/googleAnalytics/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/googleAnalytics/locale/it_IT
-@dirrm www/ojs2/plugins/generic/googleAnalytics/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/googleAnalytics/locale/es_ES
-@dirrm www/ojs2/plugins/generic/googleAnalytics/locale/en_US
-@dirrm www/ojs2/plugins/generic/googleAnalytics/locale
-@dirrm www/ojs2/plugins/generic/googleAnalytics
-@dirrm www/ojs2/plugins/generic/counter/locale/vi_VN
-@dirrm www/ojs2/plugins/generic/counter/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/counter/locale/ja_JP
-@dirrm www/ojs2/plugins/generic/counter/locale/it_IT
-@dirrm www/ojs2/plugins/generic/counter/locale/hr_HR
-@dirrm www/ojs2/plugins/generic/counter/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/counter/locale/es_ES
-@dirrm www/ojs2/plugins/generic/counter/locale/en_US
-@dirrm www/ojs2/plugins/generic/counter/locale/de_DE
-@dirrm www/ojs2/plugins/generic/counter/locale
-@dirrm www/ojs2/plugins/generic/counter
-@dirrm www/ojs2/plugins/generic/cmsRSS/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/cmsRSS/locale/it_IT
-@dirrm www/ojs2/plugins/generic/cmsRSS/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/cmsRSS/locale/es_ES
-@dirrm www/ojs2/plugins/generic/cmsRSS/locale/en_US
-@dirrm www/ojs2/plugins/generic/cmsRSS/locale
-@dirrm www/ojs2/plugins/generic/cmsRSS
-@dirrm www/ojs2/plugins/generic/cms/tinyMCEPlugins/heading/images
-@dirrm www/ojs2/plugins/generic/cms/tinyMCEPlugins/heading
-@dirrm www/ojs2/plugins/generic/cms/tinyMCEPlugins
-@dirrm www/ojs2/plugins/generic/cms/locale/pt_BR
-@dirrm www/ojs2/plugins/generic/cms/locale/it_IT
-@dirrm www/ojs2/plugins/generic/cms/locale/fr_CA
-@dirrm www/ojs2/plugins/generic/cms/locale/es_ES
-@dirrm www/ojs2/plugins/generic/cms/locale/en_US
-@dirrm www/ojs2/plugins/generic/cms/locale
-@dirrm www/ojs2/plugins/generic/cms
-@dirrm www/ojs2/plugins/generic
-@dirrm www/ojs2/plugins/gateways/resolver/locale/vi_VN
-@dirrm www/ojs2/plugins/gateways/resolver/locale/tr_TR
-@dirrm www/ojs2/plugins/gateways/resolver/locale/pt_BR
-@dirrm www/ojs2/plugins/gateways/resolver/locale/ja_JP
-@dirrm www/ojs2/plugins/gateways/resolver/locale/it_IT
-@dirrm www/ojs2/plugins/gateways/resolver/locale/hr_HR
-@dirrm www/ojs2/plugins/gateways/resolver/locale/fr_CA
-@dirrm www/ojs2/plugins/gateways/resolver/locale/es_ES
-@dirrm www/ojs2/plugins/gateways/resolver/locale/en_US
-@dirrm www/ojs2/plugins/gateways/resolver/locale/de_DE
-@dirrm www/ojs2/plugins/gateways/resolver/locale
-@dirrm www/ojs2/plugins/gateways/resolver
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/vi_VN
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/tr_TR
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/ru_RU
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/pt_BR
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/ja_JP
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/it_IT
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/hr_HR
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/fr_CA
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/es_ES
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/en_US
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale/de_DE
-@dirrm www/ojs2/plugins/gateways/googleScholar/locale
-@dirrm www/ojs2/plugins/gateways/googleScholar
-@dirrm www/ojs2/plugins/gateways
-@dirrm www/ojs2/plugins/citationFormats/turabian/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/turabian/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/turabian/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/turabian/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/turabian/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/turabian/locale
-@dirrm www/ojs2/plugins/citationFormats/turabian
-@dirrm www/ojs2/plugins/citationFormats/refWorks/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/refWorks/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/refWorks/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/refWorks/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/refWorks/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/refWorks/locale
-@dirrm www/ojs2/plugins/citationFormats/refWorks
-@dirrm www/ojs2/plugins/citationFormats/refMan/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/refMan/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/refMan/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/refMan/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/refMan/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/refMan/locale
-@dirrm www/ojs2/plugins/citationFormats/refMan
-@dirrm www/ojs2/plugins/citationFormats/proCite/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/proCite/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/proCite/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/proCite/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/proCite/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/proCite/locale
-@dirrm www/ojs2/plugins/citationFormats/proCite
-@dirrm www/ojs2/plugins/citationFormats/mla/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/mla/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/mla/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/mla/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/mla/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/mla/locale
-@dirrm www/ojs2/plugins/citationFormats/mla
-@dirrm www/ojs2/plugins/citationFormats/endNote/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/endNote/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/endNote/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/endNote/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/endNote/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/endNote/locale
-@dirrm www/ojs2/plugins/citationFormats/endNote
-@dirrm www/ojs2/plugins/citationFormats/cbe/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/cbe/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/cbe/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/cbe/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/cbe/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/cbe/locale
-@dirrm www/ojs2/plugins/citationFormats/cbe
-@dirrm www/ojs2/plugins/citationFormats/bibtex/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/bibtex/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/bibtex/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/bibtex/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/bibtex/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/bibtex/locale
-@dirrm www/ojs2/plugins/citationFormats/bibtex
-@dirrm www/ojs2/plugins/citationFormats/apa/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/apa/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/apa/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/apa/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/apa/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/apa/locale
-@dirrm www/ojs2/plugins/citationFormats/apa
-@dirrm www/ojs2/plugins/citationFormats/abnt/locale/pt_BR
-@dirrm www/ojs2/plugins/citationFormats/abnt/locale/it_IT
-@dirrm www/ojs2/plugins/citationFormats/abnt/locale/fr_CA
-@dirrm www/ojs2/plugins/citationFormats/abnt/locale/es_ES
-@dirrm www/ojs2/plugins/citationFormats/abnt/locale/en_US
-@dirrm www/ojs2/plugins/citationFormats/abnt/locale
-@dirrm www/ojs2/plugins/citationFormats/abnt
-@dirrm www/ojs2/plugins/citationFormats
-@dirrm www/ojs2/plugins/blocks/user/locale/pt_BR
-@dirrm www/ojs2/plugins/blocks/user/locale/it_IT
-@dirrm www/ojs2/plugins/blocks/user/locale/fr_CA
-@dirrm www/ojs2/plugins/blocks/user/locale/es_ES
-@dirrm www/ojs2/plugins/blocks/user/locale/en_US
-@dirrm www/ojs2/plugins/blocks/user/locale
-@dirrm www/ojs2/plugins/blocks/user
-@dirrm www/ojs2/plugins/blocks/role/locale/pt_BR
-@dirrm www/ojs2/plugins/blocks/role/locale/it_IT
-@dirrm www/ojs2/plugins/blocks/role/locale/fr_CA
-@dirrm www/ojs2/plugins/blocks/role/locale/es_ES
-@dirrm www/ojs2/plugins/blocks/role/locale/en_US
-@dirrm www/ojs2/plugins/blocks/role/locale
-@dirrm www/ojs2/plugins/blocks/role
-@dirrm www/ojs2/plugins/blocks/navigation/locale/pt_BR
-@dirrm www/ojs2/plugins/blocks/navigation/locale/it_IT
-@dirrm www/ojs2/plugins/blocks/navigation/locale/fr_CA
-@dirrm www/ojs2/plugins/blocks/navigation/locale/es_ES
-@dirrm www/ojs2/plugins/blocks/navigation/locale/en_US
-@dirrm www/ojs2/plugins/blocks/navigation/locale
-@dirrm www/ojs2/plugins/blocks/navigation
-@dirrm www/ojs2/plugins/blocks/languageToggle/locale/pt_BR
-@dirrm www/ojs2/plugins/blocks/languageToggle/locale/it_IT
-@dirrm www/ojs2/plugins/blocks/languageToggle/locale/fr_CA
-@dirrm www/ojs2/plugins/blocks/languageToggle/locale/en_US
-@dirrm www/ojs2/plugins/blocks/languageToggle/locale
-@dirrm www/ojs2/plugins/blocks/languageToggle
-@dirrm www/ojs2/plugins/blocks/information/locale/pt_BR
-@dirrm www/ojs2/plugins/blocks/information/locale/it_IT
-@dirrm www/ojs2/plugins/blocks/information/locale/fr_CA
-@dirrm www/ojs2/plugins/blocks/information/locale/es_ES
-@dirrm www/ojs2/plugins/blocks/information/locale/en_US
-@dirrm www/ojs2/plugins/blocks/information/locale
-@dirrm www/ojs2/plugins/blocks/information
-@dirrm www/ojs2/plugins/blocks/help/locale/pt_BR
-@dirrm www/ojs2/plugins/blocks/help/locale/it_IT
-@dirrm www/ojs2/plugins/blocks/help/locale/fr_CA
-@dirrm www/ojs2/plugins/blocks/help/locale/es_ES
-@dirrm www/ojs2/plugins/blocks/help/locale/en_US
-@dirrm www/ojs2/plugins/blocks/help/locale
-@dirrm www/ojs2/plugins/blocks/help
-@dirrm www/ojs2/plugins/blocks/fontSize/locale/pt_BR
-@dirrm www/ojs2/plugins/blocks/fontSize/locale/it_IT
-@dirrm www/ojs2/plugins/blocks/fontSize/locale/fr_CA
-@dirrm www/ojs2/plugins/blocks/fontSize/locale/es_ES
-@dirrm www/ojs2/plugins/blocks/fontSize/locale/en_US
-@dirrm www/ojs2/plugins/blocks/fontSize/locale
-@dirrm www/ojs2/plugins/blocks/fontSize
-@dirrm www/ojs2/plugins/blocks/donation/locale/pt_BR
-@dirrm www/ojs2/plugins/blocks/donation/locale/it_IT
-@dirrm www/ojs2/plugins/blocks/donation/locale/fr_CA
-@dirrm www/ojs2/plugins/blocks/donation/locale/es_ES
-@dirrm www/ojs2/plugins/blocks/donation/locale/en_US
-@dirrm www/ojs2/plugins/blocks/donation/locale
-@dirrm www/ojs2/plugins/blocks/donation
-@dirrm www/ojs2/plugins/blocks/developedBy/locale/pt_BR
-@dirrm www/ojs2/plugins/blocks/developedBy/locale/it_IT
-@dirrm www/ojs2/plugins/blocks/developedBy/locale/fr_CA
-@dirrm www/ojs2/plugins/blocks/developedBy/locale/es_ES
-@dirrm www/ojs2/plugins/blocks/developedBy/locale/en_US
-@dirrm www/ojs2/plugins/blocks/developedBy/locale
-@dirrm www/ojs2/plugins/blocks/developedBy
-@dirrm www/ojs2/plugins/blocks
-@dirrm www/ojs2/plugins/auth/ldap/locale/vi_VN
-@dirrm www/ojs2/plugins/auth/ldap/locale/tr_TR
-@dirrm www/ojs2/plugins/auth/ldap/locale/ru_RU
-@dirrm www/ojs2/plugins/auth/ldap/locale/pt_BR
-@dirrm www/ojs2/plugins/auth/ldap/locale/ja_JP
-@dirrm www/ojs2/plugins/auth/ldap/locale/it_IT
-@dirrm www/ojs2/plugins/auth/ldap/locale/hr_HR
-@dirrm www/ojs2/plugins/auth/ldap/locale/fr_CA
-@dirrm www/ojs2/plugins/auth/ldap/locale/es_ES
-@dirrm www/ojs2/plugins/auth/ldap/locale/en_US
-@dirrm www/ojs2/plugins/auth/ldap/locale/de_DE
-@dirrm www/ojs2/plugins/auth/ldap/locale
-@dirrm www/ojs2/plugins/auth/ldap
-@dirrm www/ojs2/plugins/auth
-@dirrm www/ojs2/plugins
-@dirrm www/ojs2/pages/user
-@dirrm www/ojs2/pages/subscriptionManager
-@dirrm www/ojs2/pages/sectionEditor
-@dirrm www/ojs2/pages/search
-@dirrm www/ojs2/pages/rtadmin
-@dirrm www/ojs2/pages/rt
-@dirrm www/ojs2/pages/reviewer
-@dirrm www/ojs2/pages/proofreader
-@dirrm www/ojs2/pages/payment
-@dirrm www/ojs2/pages/oai
-@dirrm www/ojs2/pages/manager
-@dirrm www/ojs2/pages/login
-@dirrm www/ojs2/pages/layoutEditor
-@dirrm www/ojs2/pages/issue
-@dirrm www/ojs2/pages/install
-@dirrm www/ojs2/pages/information
-@dirrm www/ojs2/pages/index
-@dirrm www/ojs2/pages/help
-@dirrm www/ojs2/pages/gateway
-@dirrm www/ojs2/pages/editor
-@dirrm www/ojs2/pages/donations
-@dirrm www/ojs2/pages/copyeditor
-@dirrm www/ojs2/pages/comment
-@dirrm www/ojs2/pages/author
-@dirrm www/ojs2/pages/article
-@dirrm www/ojs2/pages/announcement
-@dirrm www/ojs2/pages/admin
-@dirrm www/ojs2/pages/about
-@dirrm www/ojs2/pages
-@dirrm www/ojs2/locale/vi_VN
-@dirrm www/ojs2/locale/tr_TR
-@dirrm www/ojs2/locale/ru_RU
-@dirrm www/ojs2/locale/pt_BR
-@dirrm www/ojs2/locale/ja_JP
-@dirrm www/ojs2/locale/it_IT
-@dirrm www/ojs2/locale/hr_HR
-@dirrm www/ojs2/locale/fr_CA
-@dirrm www/ojs2/locale/es_ES
-@exec mkdir -p %D/www/ojs2/locale/en_US/images
-@dirrm www/ojs2/locale/en_US/images
-@dirrm www/ojs2/locale/en_US
-@dirrm www/ojs2/locale/de_DE
-@dirrm www/ojs2/locale
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/utils
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/simple
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images/xp
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs/en
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/docs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes/advanced
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/themes
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/zoom
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/visualchars/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/visualchars/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/visualchars
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/template
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/table
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/style
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/save/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/save/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/save
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/print/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/print/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/print
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/preview
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/paste
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/noneditable/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/noneditable
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/media
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/layer
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/iespell/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/iespell/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/iespell
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/fullpage
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/flash
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/emotions
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/directionality/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/directionality/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/directionality
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/devkit
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/cleanup
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/bbcode
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/autosave/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/autosave
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advlink
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advimage
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/images
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr/css
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins/advhr
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/plugins
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce/langs
-@dirrm www/ojs2/lib/tinymce/jscripts/tiny_mce
-@dirrm www/ojs2/lib/tinymce/jscripts
-@dirrm www/ojs2/lib/tinymce/examples/templates
-@dirrm www/ojs2/lib/tinymce/examples
-@dirrm www/ojs2/lib/tinymce/docs
-@dirrm www/ojs2/lib/tinymce
-@dirrm www/ojs2/lib/smarty/plugins
-@dirrm www/ojs2/lib/smarty/internals
-@dirrm www/ojs2/lib/smarty
-@dirrm www/ojs2/lib/adodb/perf
-@dirrm www/ojs2/lib/adodb/lang
-@dirrm www/ojs2/lib/adodb/drivers
-@dirrm www/ojs2/lib/adodb/datadict
-@dirrm www/ojs2/lib/adodb
-@dirrm www/ojs2/lib
-@dirrm www/ojs2/js
-@dirrm www/ojs2/includes
-@dirrm www/ojs2/help/vi_VN/user/topic
-@dirrm www/ojs2/help/vi_VN/user/toc
-@dirrm www/ojs2/help/vi_VN/user
-@dirrm www/ojs2/help/vi_VN/submission/topic
-@dirrm www/ojs2/help/vi_VN/submission/toc
-@dirrm www/ojs2/help/vi_VN/submission
-@dirrm www/ojs2/help/vi_VN/site/topic
-@dirrm www/ojs2/help/vi_VN/site/toc
-@dirrm www/ojs2/help/vi_VN/site
-@dirrm www/ojs2/help/vi_VN/publishing/topic
-@dirrm www/ojs2/help/vi_VN/publishing/toc
-@dirrm www/ojs2/help/vi_VN/publishing
-@dirrm www/ojs2/help/vi_VN/journal/topic
-@dirrm www/ojs2/help/vi_VN/journal/toc
-@dirrm www/ojs2/help/vi_VN/journal
-@dirrm www/ojs2/help/vi_VN/intro/topic
-@dirrm www/ojs2/help/vi_VN/intro/toc
-@dirrm www/ojs2/help/vi_VN/intro
-@dirrm www/ojs2/help/vi_VN/index/topic
-@dirrm www/ojs2/help/vi_VN/index/toc
-@dirrm www/ojs2/help/vi_VN/index
-@dirrm www/ojs2/help/vi_VN/editorial/topic
-@dirrm www/ojs2/help/vi_VN/editorial/toc
-@dirrm www/ojs2/help/vi_VN/editorial
-@dirrm www/ojs2/help/vi_VN
-@dirrm www/ojs2/help/tr_TR/user/topic
-@dirrm www/ojs2/help/tr_TR/user/toc
-@dirrm www/ojs2/help/tr_TR/user
-@dirrm www/ojs2/help/tr_TR/submission/topic
-@dirrm www/ojs2/help/tr_TR/submission/toc
-@dirrm www/ojs2/help/tr_TR/submission
-@dirrm www/ojs2/help/tr_TR/site/topic
-@dirrm www/ojs2/help/tr_TR/site/toc
-@dirrm www/ojs2/help/tr_TR/site
-@dirrm www/ojs2/help/tr_TR/publishing/topic
-@dirrm www/ojs2/help/tr_TR/publishing/toc
-@dirrm www/ojs2/help/tr_TR/publishing
-@dirrm www/ojs2/help/tr_TR/journal/topic
-@dirrm www/ojs2/help/tr_TR/journal/toc
-@dirrm www/ojs2/help/tr_TR/journal
-@dirrm www/ojs2/help/tr_TR/intro/topic
-@dirrm www/ojs2/help/tr_TR/intro/toc
-@dirrm www/ojs2/help/tr_TR/intro
-@dirrm www/ojs2/help/tr_TR/index/topic
-@dirrm www/ojs2/help/tr_TR/index/toc
-@dirrm www/ojs2/help/tr_TR/index
-@dirrm www/ojs2/help/tr_TR/editorial/topic
-@dirrm www/ojs2/help/tr_TR/editorial/toc
-@dirrm www/ojs2/help/tr_TR/editorial
-@dirrm www/ojs2/help/tr_TR
-@dirrm www/ojs2/help/pt_BR/user/topic
-@dirrm www/ojs2/help/pt_BR/user/toc
-@dirrm www/ojs2/help/pt_BR/user
-@dirrm www/ojs2/help/pt_BR/submission/topic
-@dirrm www/ojs2/help/pt_BR/submission/toc
-@dirrm www/ojs2/help/pt_BR/submission
-@dirrm www/ojs2/help/pt_BR/site/topic
-@dirrm www/ojs2/help/pt_BR/site/toc
-@dirrm www/ojs2/help/pt_BR/site
-@dirrm www/ojs2/help/pt_BR/publishing/topic
-@dirrm www/ojs2/help/pt_BR/publishing/toc
-@dirrm www/ojs2/help/pt_BR/publishing
-@dirrm www/ojs2/help/pt_BR/journal/topic
-@dirrm www/ojs2/help/pt_BR/journal/toc
-@dirrm www/ojs2/help/pt_BR/journal
-@dirrm www/ojs2/help/pt_BR/intro/topic
-@dirrm www/ojs2/help/pt_BR/intro/toc
-@dirrm www/ojs2/help/pt_BR/intro
-@dirrm www/ojs2/help/pt_BR/index/topic
-@dirrm www/ojs2/help/pt_BR/index/toc
-@dirrm www/ojs2/help/pt_BR/index
-@dirrm www/ojs2/help/pt_BR/editorial/topic
-@dirrm www/ojs2/help/pt_BR/editorial/toc
-@dirrm www/ojs2/help/pt_BR/editorial
-@dirrm www/ojs2/help/pt_BR
-@dirrm www/ojs2/help/ja_JP/user/topic
-@dirrm www/ojs2/help/ja_JP/user/toc
-@dirrm www/ojs2/help/ja_JP/user
-@dirrm www/ojs2/help/ja_JP/submission/topic
-@dirrm www/ojs2/help/ja_JP/submission/toc
-@dirrm www/ojs2/help/ja_JP/submission
-@dirrm www/ojs2/help/ja_JP/site/topic
-@dirrm www/ojs2/help/ja_JP/site/toc
-@dirrm www/ojs2/help/ja_JP/site
-@dirrm www/ojs2/help/ja_JP/publishing/topic
-@dirrm www/ojs2/help/ja_JP/publishing/toc
-@dirrm www/ojs2/help/ja_JP/publishing
-@dirrm www/ojs2/help/ja_JP/journal/topic
-@dirrm www/ojs2/help/ja_JP/journal/toc
-@dirrm www/ojs2/help/ja_JP/journal
-@dirrm www/ojs2/help/ja_JP/intro/topic
-@dirrm www/ojs2/help/ja_JP/intro/toc
-@dirrm www/ojs2/help/ja_JP/intro
-@dirrm www/ojs2/help/ja_JP/index/topic
-@dirrm www/ojs2/help/ja_JP/index/toc
-@dirrm www/ojs2/help/ja_JP/index
-@dirrm www/ojs2/help/ja_JP/editorial/topic
-@dirrm www/ojs2/help/ja_JP/editorial/toc
-@dirrm www/ojs2/help/ja_JP/editorial
-@dirrm www/ojs2/help/ja_JP
-@dirrm www/ojs2/help/it_IT/user/topic
-@dirrm www/ojs2/help/it_IT/user/toc
-@dirrm www/ojs2/help/it_IT/user
-@dirrm www/ojs2/help/it_IT/submission/topic
-@dirrm www/ojs2/help/it_IT/submission/toc
-@dirrm www/ojs2/help/it_IT/submission
-@dirrm www/ojs2/help/it_IT/site/topic
-@dirrm www/ojs2/help/it_IT/site/toc
-@dirrm www/ojs2/help/it_IT/site
-@dirrm www/ojs2/help/it_IT/publishing/topic
-@dirrm www/ojs2/help/it_IT/publishing/toc
-@dirrm www/ojs2/help/it_IT/publishing
-@dirrm www/ojs2/help/it_IT/journal/topic
-@dirrm www/ojs2/help/it_IT/journal/toc
-@dirrm www/ojs2/help/it_IT/journal
-@dirrm www/ojs2/help/it_IT/intro/topic
-@dirrm www/ojs2/help/it_IT/intro/toc
-@dirrm www/ojs2/help/it_IT/intro
-@dirrm www/ojs2/help/it_IT/index/topic
-@dirrm www/ojs2/help/it_IT/index/toc
-@dirrm www/ojs2/help/it_IT/index
-@dirrm www/ojs2/help/it_IT/editorial/topic
-@dirrm www/ojs2/help/it_IT/editorial/toc
-@dirrm www/ojs2/help/it_IT/editorial
-@dirrm www/ojs2/help/it_IT
-@dirrm www/ojs2/help/fr_CA/user/topic
-@dirrm www/ojs2/help/fr_CA/user/toc
-@dirrm www/ojs2/help/fr_CA/user
-@dirrm www/ojs2/help/fr_CA/submission/topic
-@dirrm www/ojs2/help/fr_CA/submission/toc
-@dirrm www/ojs2/help/fr_CA/submission
-@dirrm www/ojs2/help/fr_CA/site/topic
-@dirrm www/ojs2/help/fr_CA/site/toc
-@dirrm www/ojs2/help/fr_CA/site
-@dirrm www/ojs2/help/fr_CA/publishing/topic
-@dirrm www/ojs2/help/fr_CA/publishing/toc
-@dirrm www/ojs2/help/fr_CA/publishing
-@dirrm www/ojs2/help/fr_CA/journal/topic
-@dirrm www/ojs2/help/fr_CA/journal/toc
-@dirrm www/ojs2/help/fr_CA/journal
-@dirrm www/ojs2/help/fr_CA/intro/topic
-@dirrm www/ojs2/help/fr_CA/intro/toc
-@dirrm www/ojs2/help/fr_CA/intro
-@dirrm www/ojs2/help/fr_CA/index/topic
-@dirrm www/ojs2/help/fr_CA/index/toc
-@dirrm www/ojs2/help/fr_CA/index
-@dirrm www/ojs2/help/fr_CA/editorial/topic
-@dirrm www/ojs2/help/fr_CA/editorial/toc
-@dirrm www/ojs2/help/fr_CA/editorial
-@dirrm www/ojs2/help/fr_CA
-@dirrm www/ojs2/help/en_US/user/topic
-@dirrm www/ojs2/help/en_US/user/toc
-@dirrm www/ojs2/help/en_US/user
-@dirrm www/ojs2/help/en_US/submission/topic
-@dirrm www/ojs2/help/en_US/submission/toc
-@dirrm www/ojs2/help/en_US/submission
-@dirrm www/ojs2/help/en_US/site/topic
-@dirrm www/ojs2/help/en_US/site/toc
-@dirrm www/ojs2/help/en_US/site
-@dirrm www/ojs2/help/en_US/publishing/topic
-@dirrm www/ojs2/help/en_US/publishing/toc
-@dirrm www/ojs2/help/en_US/publishing
-@dirrm www/ojs2/help/en_US/journal/topic
-@dirrm www/ojs2/help/en_US/journal/toc
-@dirrm www/ojs2/help/en_US/journal
-@dirrm www/ojs2/help/en_US/intro/topic
-@dirrm www/ojs2/help/en_US/intro/toc
-@dirrm www/ojs2/help/en_US/intro
-@dirrm www/ojs2/help/en_US/index/topic
-@dirrm www/ojs2/help/en_US/index/toc
-@dirrm www/ojs2/help/en_US/index
-@dirrm www/ojs2/help/en_US/editorial/topic
-@dirrm www/ojs2/help/en_US/editorial/toc
-@dirrm www/ojs2/help/en_US/editorial
-@dirrm www/ojs2/help/en_US
-@dirrm www/ojs2/help
-@dirrm www/ojs2/docs/release-notes
-@dirrm www/ojs2/docs
-@dirrm www/ojs2/dbscripts/xml/upgrade
-@dirrm www/ojs2/dbscripts/xml/dtd
-@dirrm www/ojs2/dbscripts/xml/data/locale/vi_VN
-@dirrm www/ojs2/dbscripts/xml/data/locale/tr_TR
-@dirrm www/ojs2/dbscripts/xml/data/locale/ru_RU
-@dirrm www/ojs2/dbscripts/xml/data/locale/pt_BR
-@dirrm www/ojs2/dbscripts/xml/data/locale/ja_JP
-@dirrm www/ojs2/dbscripts/xml/data/locale/it_IT
-@dirrm www/ojs2/dbscripts/xml/data/locale/hr_HR
-@dirrm www/ojs2/dbscripts/xml/data/locale/fr_CA
-@dirrm www/ojs2/dbscripts/xml/data/locale/es_ES
-@dirrm www/ojs2/dbscripts/xml/data/locale/en_US
-@dirrm www/ojs2/dbscripts/xml/data/locale/de_DE
-@dirrm www/ojs2/dbscripts/xml/data/locale
-@dirrm www/ojs2/dbscripts/xml/data
-@dirrm www/ojs2/dbscripts/xml
-@dirrm www/ojs2/dbscripts
-@dirrm www/ojs2/classes/xml
-@dirrm www/ojs2/classes/user/form
-@dirrm www/ojs2/classes/user
-@dirrm www/ojs2/classes/template
-@dirrm www/ojs2/classes/tasks
-@dirrm www/ojs2/classes/subscription/form
-@dirrm www/ojs2/classes/subscription
-@dirrm www/ojs2/classes/submission/sectionEditor
-@dirrm www/ojs2/classes/submission/reviewer
-@dirrm www/ojs2/classes/submission/reviewAssignment
-@dirrm www/ojs2/classes/submission/proofreader
-@dirrm www/ojs2/classes/submission/proofAssignment
-@dirrm www/ojs2/classes/submission/layoutEditor
-@dirrm www/ojs2/classes/submission/layoutAssignment
-@dirrm www/ojs2/classes/submission/form/comment
-@dirrm www/ojs2/classes/submission/form
-@dirrm www/ojs2/classes/submission/editor
-@dirrm www/ojs2/classes/submission/editAssignment
-@dirrm www/ojs2/classes/submission/copyeditor
-@dirrm www/ojs2/classes/submission/copyAssignment
-@dirrm www/ojs2/classes/submission/common
-@dirrm www/ojs2/classes/submission/author
-@dirrm www/ojs2/classes/submission
-@dirrm www/ojs2/classes/site
-@dirrm www/ojs2/classes/session
-@dirrm www/ojs2/classes/security/form
-@dirrm www/ojs2/classes/security
-@dirrm www/ojs2/classes/sectionEditor/form
-@dirrm www/ojs2/classes/sectionEditor
-@dirrm www/ojs2/classes/search
-@dirrm www/ojs2/classes/scheduledTask
-@dirrm www/ojs2/classes/rt/ojs/form
-@dirrm www/ojs2/classes/rt/ojs
-@dirrm www/ojs2/classes/rt
-@dirrm www/ojs2/classes/plugins
-@dirrm www/ojs2/classes/payment/ojs
-@dirrm www/ojs2/classes/payment
-@dirrm www/ojs2/classes/oai/ojs
-@dirrm www/ojs2/classes/oai/format
-@dirrm www/ojs2/classes/oai
-@dirrm www/ojs2/classes/manager/form/setup
-@dirrm www/ojs2/classes/manager/form
-@dirrm www/ojs2/classes/manager
-@dirrm www/ojs2/classes/mail
-@dirrm www/ojs2/classes/journal
-@dirrm www/ojs2/classes/issue/form
-@dirrm www/ojs2/classes/issue
-@dirrm www/ojs2/classes/install/form
-@dirrm www/ojs2/classes/install
-@dirrm www/ojs2/classes/i18n
-@dirrm www/ojs2/classes/help
-@dirrm www/ojs2/classes/group
-@dirrm www/ojs2/classes/form/validation
-@dirrm www/ojs2/classes/form
-@dirrm www/ojs2/classes/file
-@dirrm www/ojs2/classes/db
-@dirrm www/ojs2/classes/currency
-@dirrm www/ojs2/classes/core
-@dirrm www/ojs2/classes/config
-@dirrm www/ojs2/classes/comment/form
-@dirrm www/ojs2/classes/comment
-@dirrm www/ojs2/classes/captcha
-@dirrm www/ojs2/classes/cache
-@dirrm www/ojs2/classes/author/form/submit
-@dirrm www/ojs2/classes/author/form
-@dirrm www/ojs2/classes/author
-@dirrm www/ojs2/classes/article/log
-@dirrm www/ojs2/classes/article
-@dirrm www/ojs2/classes/announcement
-@dirrm www/ojs2/classes/admin/form
-@dirrm www/ojs2/classes/admin
-@dirrm www/ojs2/classes
-@exec mkdir -p %D/www/ojs2/cache/t_config
-@dirrm www/ojs2/cache/t_config
-@exec mkdir -p %D/www/ojs2/cache/t_compile
-@dirrm www/ojs2/cache/t_compile
-@exec mkdir -p %D/www/ojs2/cache/t_cache
-@dirrm www/ojs2/cache/t_cache
-@exec mkdir -p %D/www/ojs2/cache/_db
-@dirrm www/ojs2/cache/_db
-@dirrm www/ojs2/cache
-@dirrm www/ojs2
+@exec mkdir -p %D/%%WWWDIR%%/cache/_db
+%%WWWDIR%%/cache/fc-locale-list.php
+@exec mkdir -p %D/%%WWWDIR%%/cache/t_cache
+@exec mkdir -p %D/%%WWWDIR%%/cache/t_compile
+@exec mkdir -p %D/%%WWWDIR%%/cache/t_config
+%%WWWDIR%%/classes/admin/form/ImportOJS1Form.inc.php
+%%WWWDIR%%/classes/admin/form/JournalSiteSettingsForm.inc.php
+%%WWWDIR%%/classes/admin/form/SiteSettingsForm.inc.php
+%%WWWDIR%%/classes/announcement/Announcement.inc.php
+%%WWWDIR%%/classes/announcement/AnnouncementDAO.inc.php
+%%WWWDIR%%/classes/announcement/AnnouncementType.inc.php
+%%WWWDIR%%/classes/announcement/AnnouncementTypeDAO.inc.php
+%%WWWDIR%%/classes/article/Article.inc.php
+%%WWWDIR%%/classes/article/ArticleComment.inc.php
+%%WWWDIR%%/classes/article/ArticleCommentDAO.inc.php
+%%WWWDIR%%/classes/article/ArticleDAO.inc.php
+%%WWWDIR%%/classes/article/ArticleFile.inc.php
+%%WWWDIR%%/classes/article/ArticleFileDAO.inc.php
+%%WWWDIR%%/classes/article/ArticleGalley.inc.php
+%%WWWDIR%%/classes/article/ArticleGalleyDAO.inc.php
+%%WWWDIR%%/classes/article/ArticleHTMLGalley.inc.php
+%%WWWDIR%%/classes/article/ArticleNote.inc.php
+%%WWWDIR%%/classes/article/ArticleNoteDAO.inc.php
+%%WWWDIR%%/classes/article/Author.inc.php
+%%WWWDIR%%/classes/article/AuthorDAO.inc.php
+%%WWWDIR%%/classes/article/PublishedArticle.inc.php
+%%WWWDIR%%/classes/article/PublishedArticleDAO.inc.php
+%%WWWDIR%%/classes/article/SuppFile.inc.php
+%%WWWDIR%%/classes/article/SuppFileDAO.inc.php
+%%WWWDIR%%/classes/article/log/ArticleEmailLogDAO.inc.php
+%%WWWDIR%%/classes/article/log/ArticleEmailLogEntry.inc.php
+%%WWWDIR%%/classes/article/log/ArticleEventLogDAO.inc.php
+%%WWWDIR%%/classes/article/log/ArticleEventLogEntry.inc.php
+%%WWWDIR%%/classes/article/log/ArticleLog.inc.php
+%%WWWDIR%%/classes/author/form/submit/AuthorSubmitForm.inc.php
+%%WWWDIR%%/classes/author/form/submit/AuthorSubmitStep1Form.inc.php
+%%WWWDIR%%/classes/author/form/submit/AuthorSubmitStep2Form.inc.php
+%%WWWDIR%%/classes/author/form/submit/AuthorSubmitStep3Form.inc.php
+%%WWWDIR%%/classes/author/form/submit/AuthorSubmitStep4Form.inc.php
+%%WWWDIR%%/classes/author/form/submit/AuthorSubmitStep5Form.inc.php
+%%WWWDIR%%/classes/author/form/submit/AuthorSubmitSuppFileForm.inc.php
+%%WWWDIR%%/classes/cache/CacheManager.inc.php
+%%WWWDIR%%/classes/cache/FileCache.inc.php
+%%WWWDIR%%/classes/cache/GenericCache.inc.php
+%%WWWDIR%%/classes/cache/MemcacheCache.inc.php
+%%WWWDIR%%/classes/captcha/Captcha.inc.php
+%%WWWDIR%%/classes/captcha/CaptchaDAO.inc.php
+%%WWWDIR%%/classes/captcha/CaptchaManager.inc.php
+%%WWWDIR%%/classes/comment/Comment.inc.php
+%%WWWDIR%%/classes/comment/CommentDAO.inc.php
+%%WWWDIR%%/classes/comment/form/CommentForm.inc.php
+%%WWWDIR%%/classes/config/Config.inc.php
+%%WWWDIR%%/classes/config/ConfigParser.inc.php
+%%WWWDIR%%/classes/core/ArrayItemIterator.inc.php
+%%WWWDIR%%/classes/core/Core.inc.php
+%%WWWDIR%%/classes/core/DataObject.inc.php
+%%WWWDIR%%/classes/core/Handler.inc.php
+%%WWWDIR%%/classes/core/ItemIterator.inc.php
+%%WWWDIR%%/classes/core/Registry.inc.php
+%%WWWDIR%%/classes/core/Request.inc.php
+%%WWWDIR%%/classes/core/String.inc.php
+%%WWWDIR%%/classes/core/Transcoder.inc.php
+%%WWWDIR%%/classes/core/VirtualArrayIterator.inc.php
+%%WWWDIR%%/classes/currency/Currency.inc.php
+%%WWWDIR%%/classes/currency/CurrencyDAO.inc.php
+%%WWWDIR%%/classes/db/DAO.inc.php
+%%WWWDIR%%/classes/db/DAORegistry.inc.php
+%%WWWDIR%%/classes/db/DAOResultFactory.inc.php
+%%WWWDIR%%/classes/db/DBConnection.inc.php
+%%WWWDIR%%/classes/db/DBDataXMLParser.inc.php
+%%WWWDIR%%/classes/db/DBResultRange.inc.php
+%%WWWDIR%%/classes/db/DBRowIterator.inc.php
+%%WWWDIR%%/classes/db/SQLParser.inc.php
+%%WWWDIR%%/classes/db/XMLDAO.inc.php
+%%WWWDIR%%/classes/file/ArticleFileManager.inc.php
+%%WWWDIR%%/classes/file/EditableFile.inc.php
+%%WWWDIR%%/classes/file/FileManager.inc.php
+%%WWWDIR%%/classes/file/FileWrapper.inc.php
+%%WWWDIR%%/classes/file/JournalFileManager.inc.php
+%%WWWDIR%%/classes/file/PublicFileManager.inc.php
+%%WWWDIR%%/classes/file/TemporaryFile.inc.php
+%%WWWDIR%%/classes/file/TemporaryFileDAO.inc.php
+%%WWWDIR%%/classes/file/TemporaryFileManager.inc.php
+%%WWWDIR%%/classes/form/Form.inc.php
+%%WWWDIR%%/classes/form/FormError.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidator.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorAlphaNum.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorArray.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorArrayCustom.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorCaptcha.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorCustom.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorEmail.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorInSet.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorLength.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorLocale.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorLocaleEmail.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorPost.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorRegExp.inc.php
+%%WWWDIR%%/classes/form/validation/FormValidatorUrl.inc.php
+%%WWWDIR%%/classes/group/Group.inc.php
+%%WWWDIR%%/classes/group/GroupDAO.inc.php
+%%WWWDIR%%/classes/group/GroupMembership.inc.php
+%%WWWDIR%%/classes/group/GroupMembershipDAO.inc.php
+%%WWWDIR%%/classes/help/Help.inc.php
+%%WWWDIR%%/classes/help/HelpMappingFile.inc.php
+%%WWWDIR%%/classes/help/HelpToc.inc.php
+%%WWWDIR%%/classes/help/HelpTocDAO.inc.php
+%%WWWDIR%%/classes/help/HelpTopic.inc.php
+%%WWWDIR%%/classes/help/HelpTopicDAO.inc.php
+%%WWWDIR%%/classes/help/HelpTopicSection.inc.php
+%%WWWDIR%%/classes/help/OJSHelpMappingFile.inc.php
+%%WWWDIR%%/classes/help/PluginHelpMappingFile.inc.php
+%%WWWDIR%%/classes/i18n/EditableEmailFile.inc.php
+%%WWWDIR%%/classes/i18n/EditableLocaleFile.inc.php
+%%WWWDIR%%/classes/i18n/LanguageAction.inc.php
+%%WWWDIR%%/classes/i18n/Locale.inc.php
+%%WWWDIR%%/classes/i18n/LocaleFile.inc.php
+%%WWWDIR%%/classes/install/Install.inc.php
+%%WWWDIR%%/classes/install/Installer.inc.php
+%%WWWDIR%%/classes/install/Upgrade.inc.php
+%%WWWDIR%%/classes/install/form/InstallForm.inc.php
+%%WWWDIR%%/classes/install/form/UpgradeForm.inc.php
+%%WWWDIR%%/classes/issue/Issue.inc.php
+%%WWWDIR%%/classes/issue/IssueAction.inc.php
+%%WWWDIR%%/classes/issue/IssueDAO.inc.php
+%%WWWDIR%%/classes/issue/form/IssueForm.inc.php
+%%WWWDIR%%/classes/journal/Journal.inc.php
+%%WWWDIR%%/classes/journal/JournalDAO.inc.php
+%%WWWDIR%%/classes/journal/JournalReportIterator.inc.php
+%%WWWDIR%%/classes/journal/JournalSettingsDAO.inc.php
+%%WWWDIR%%/classes/journal/JournalStatisticsDAO.inc.php
+%%WWWDIR%%/classes/journal/NotificationStatusDAO.inc.php
+%%WWWDIR%%/classes/journal/Section.inc.php
+%%WWWDIR%%/classes/journal/SectionDAO.inc.php
+%%WWWDIR%%/classes/journal/SectionEditorsDAO.inc.php
+%%WWWDIR%%/classes/mail/ArticleMailTemplate.inc.php
+%%WWWDIR%%/classes/mail/EmailTemplate.inc.php
+%%WWWDIR%%/classes/mail/EmailTemplateDAO.inc.php
+%%WWWDIR%%/classes/mail/Mail.inc.php
+%%WWWDIR%%/classes/mail/MailTemplate.inc.php
+%%WWWDIR%%/classes/mail/MassMail.inc.php
+%%WWWDIR%%/classes/mail/SMTPMailer.inc.php
+%%WWWDIR%%/classes/manager/form/AnnouncementForm.inc.php
+%%WWWDIR%%/classes/manager/form/AnnouncementTypeForm.inc.php
+%%WWWDIR%%/classes/manager/form/EmailTemplateForm.inc.php
+%%WWWDIR%%/classes/manager/form/GroupForm.inc.php
+%%WWWDIR%%/classes/manager/form/LanguageSettingsForm.inc.php
+%%WWWDIR%%/classes/manager/form/PayMethodSettingsForm.inc.php
+%%WWWDIR%%/classes/manager/form/PaymentSettingsForm.inc.php
+%%WWWDIR%%/classes/manager/form/ReviewFormElementForm.inc.php
+%%WWWDIR%%/classes/manager/form/ReviewFormForm.inc.php
+%%WWWDIR%%/classes/manager/form/SectionForm.inc.php
+%%WWWDIR%%/classes/manager/form/UserManagementForm.inc.php
+%%WWWDIR%%/classes/manager/form/setup/JournalSetupForm.inc.php
+%%WWWDIR%%/classes/manager/form/setup/JournalSetupStep1Form.inc.php
+%%WWWDIR%%/classes/manager/form/setup/JournalSetupStep2Form.inc.php
+%%WWWDIR%%/classes/manager/form/setup/JournalSetupStep3Form.inc.php
+%%WWWDIR%%/classes/manager/form/setup/JournalSetupStep4Form.inc.php
+%%WWWDIR%%/classes/manager/form/setup/JournalSetupStep5Form.inc.php
+%%WWWDIR%%/classes/oai/OAI.inc.php
+%%WWWDIR%%/classes/oai/OAIStruct.inc.php
+%%WWWDIR%%/classes/oai/format/OAIMetadataFormat_DC.inc.php
+%%WWWDIR%%/classes/oai/format/OAIMetadataFormat_MARC.inc.php
+%%WWWDIR%%/classes/oai/format/OAIMetadataFormat_MARC21.inc.php
+%%WWWDIR%%/classes/oai/format/OAIMetadataFormat_RFC1807.inc.php
+%%WWWDIR%%/classes/oai/ojs/JournalOAI.inc.php
+%%WWWDIR%%/classes/oai/ojs/OAIDAO.inc.php
+%%WWWDIR%%/classes/payment/Payment.inc.php
+%%WWWDIR%%/classes/payment/PaymentManager.inc.php
+%%WWWDIR%%/classes/payment/QueuedPayment.inc.php
+%%WWWDIR%%/classes/payment/QueuedPaymentDAO.inc.php
+%%WWWDIR%%/classes/payment/ojs/OJSCompletedPayment.inc.php
+%%WWWDIR%%/classes/payment/ojs/OJSCompletedPaymentDAO.inc.php
+%%WWWDIR%%/classes/payment/ojs/OJSPaymentManager.inc.php
+%%WWWDIR%%/classes/payment/ojs/OJSQueuedPayment.inc.php
+%%WWWDIR%%/classes/plugins/AuthPlugin.inc.php
+%%WWWDIR%%/classes/plugins/BlockPlugin.inc.php
+%%WWWDIR%%/classes/plugins/CitationPlugin.inc.php
+%%WWWDIR%%/classes/plugins/GatewayPlugin.inc.php
+%%WWWDIR%%/classes/plugins/GenericPlugin.inc.php
+%%WWWDIR%%/classes/plugins/HookRegistry.inc.php
+%%WWWDIR%%/classes/plugins/ImplicitAuthPlugin.inc.php
+%%WWWDIR%%/classes/plugins/ImportExportPlugin.inc.php
+%%WWWDIR%%/classes/plugins/PaymethodPlugin.inc.php
+%%WWWDIR%%/classes/plugins/Plugin.inc.php
+%%WWWDIR%%/classes/plugins/PluginRegistry.inc.php
+%%WWWDIR%%/classes/plugins/PluginSettingsDAO.inc.php
+%%WWWDIR%%/classes/plugins/ReportPlugin.inc.php
+%%WWWDIR%%/classes/plugins/ThemePlugin.inc.php
+%%WWWDIR%%/classes/reviewForm/ReviewForm.inc.php
+%%WWWDIR%%/classes/reviewForm/ReviewFormDAO.inc.php
+%%WWWDIR%%/classes/reviewForm/ReviewFormElement.inc.php
+%%WWWDIR%%/classes/reviewForm/ReviewFormElementDAO.inc.php
+%%WWWDIR%%/classes/reviewForm/ReviewFormResponse.inc.php
+%%WWWDIR%%/classes/reviewForm/ReviewFormResponseDAO.inc.php
+%%WWWDIR%%/classes/rt/RT.inc.php
+%%WWWDIR%%/classes/rt/RTAdmin.inc.php
+%%WWWDIR%%/classes/rt/RTStruct.inc.php
+%%WWWDIR%%/classes/rt/RTXMLParser.inc.php
+%%WWWDIR%%/classes/rt/ojs/JournalRT.inc.php
+%%WWWDIR%%/classes/rt/ojs/JournalRTAdmin.inc.php
+%%WWWDIR%%/classes/rt/ojs/RTDAO.inc.php
+%%WWWDIR%%/classes/rt/ojs/form/ContextForm.inc.php
+%%WWWDIR%%/classes/rt/ojs/form/SearchForm.inc.php
+%%WWWDIR%%/classes/rt/ojs/form/VersionForm.inc.php
+%%WWWDIR%%/classes/scheduledTask/ScheduledTask.inc.php
+%%WWWDIR%%/classes/scheduledTask/ScheduledTaskDAO.inc.php
+%%WWWDIR%%/classes/search/ArticleSearch.inc.php
+%%WWWDIR%%/classes/search/ArticleSearchDAO.inc.php
+%%WWWDIR%%/classes/search/ArticleSearchIndex.inc.php
+%%WWWDIR%%/classes/search/SearchFileParser.inc.php
+%%WWWDIR%%/classes/search/SearchHTMLParser.inc.php
+%%WWWDIR%%/classes/search/SearchHelperParser.inc.php
+%%WWWDIR%%/classes/sectionEditor/form/CreateReviewerForm.inc.php
+%%WWWDIR%%/classes/security/AccessKey.inc.php
+%%WWWDIR%%/classes/security/AccessKeyDAO.inc.php
+%%WWWDIR%%/classes/security/AccessKeyManager.inc.php
+%%WWWDIR%%/classes/security/AuthSource.inc.php
+%%WWWDIR%%/classes/security/AuthSourceDAO.inc.php
+%%WWWDIR%%/classes/security/Role.inc.php
+%%WWWDIR%%/classes/security/RoleDAO.inc.php
+%%WWWDIR%%/classes/security/Validation.inc.php
+%%WWWDIR%%/classes/security/form/AuthSourceSettingsForm.inc.php
+%%WWWDIR%%/classes/session/Session.inc.php
+%%WWWDIR%%/classes/session/SessionDAO.inc.php
+%%WWWDIR%%/classes/session/SessionManager.inc.php
+%%WWWDIR%%/classes/site/ImportOJS1.inc.php
+%%WWWDIR%%/classes/site/Site.inc.php
+%%WWWDIR%%/classes/site/SiteDAO.inc.php
+%%WWWDIR%%/classes/site/SiteSettingsDAO.inc.php
+%%WWWDIR%%/classes/site/Version.inc.php
+%%WWWDIR%%/classes/site/VersionCheck.inc.php
+%%WWWDIR%%/classes/site/VersionDAO.inc.php
+%%WWWDIR%%/classes/submission/author/AuthorAction.inc.php
+%%WWWDIR%%/classes/submission/author/AuthorSubmission.inc.php
+%%WWWDIR%%/classes/submission/author/AuthorSubmissionDAO.inc.php
+%%WWWDIR%%/classes/submission/common/Action.inc.php
+%%WWWDIR%%/classes/submission/copyAssignment/CopyAssignment.inc.php
+%%WWWDIR%%/classes/submission/copyAssignment/CopyAssignmentDAO.inc.php
+%%WWWDIR%%/classes/submission/copyeditor/CopyeditorAction.inc.php
+%%WWWDIR%%/classes/submission/copyeditor/CopyeditorSubmission.inc.php
+%%WWWDIR%%/classes/submission/copyeditor/CopyeditorSubmissionDAO.inc.php
+%%WWWDIR%%/classes/submission/editAssignment/EditAssignment.inc.php
+%%WWWDIR%%/classes/submission/editAssignment/EditAssignmentDAO.inc.php
+%%WWWDIR%%/classes/submission/editor/EditorAction.inc.php
+%%WWWDIR%%/classes/submission/editor/EditorSubmission.inc.php
+%%WWWDIR%%/classes/submission/editor/EditorSubmissionDAO.inc.php
+%%WWWDIR%%/classes/submission/form/ArticleGalleyForm.inc.php
+%%WWWDIR%%/classes/submission/form/MetadataForm.inc.php
+%%WWWDIR%%/classes/submission/form/ReviewFormResponseForm.inc.php
+%%WWWDIR%%/classes/submission/form/SuppFileForm.inc.php
+%%WWWDIR%%/classes/submission/form/comment/CommentForm.inc.php
+%%WWWDIR%%/classes/submission/form/comment/CopyeditCommentForm.inc.php
+%%WWWDIR%%/classes/submission/form/comment/EditCommentForm.inc.php
+%%WWWDIR%%/classes/submission/form/comment/EditorDecisionCommentForm.inc.php
+%%WWWDIR%%/classes/submission/form/comment/LayoutCommentForm.inc.php
+%%WWWDIR%%/classes/submission/form/comment/PeerReviewCommentForm.inc.php
+%%WWWDIR%%/classes/submission/form/comment/ProofreadCommentForm.inc.php
+%%WWWDIR%%/classes/submission/layoutAssignment/LayoutAssignment.inc.php
+%%WWWDIR%%/classes/submission/layoutAssignment/LayoutAssignmentDAO.inc.php
+%%WWWDIR%%/classes/submission/layoutEditor/LayoutEditorAction.inc.php
+%%WWWDIR%%/classes/submission/layoutEditor/LayoutEditorSubmission.inc.php
+%%WWWDIR%%/classes/submission/layoutEditor/LayoutEditorSubmissionDAO.inc.php
+%%WWWDIR%%/classes/submission/proofAssignment/ProofAssignment.inc.php
+%%WWWDIR%%/classes/submission/proofAssignment/ProofAssignmentDAO.inc.php
+%%WWWDIR%%/classes/submission/proofreader/ProofreaderAction.inc.php
+%%WWWDIR%%/classes/submission/proofreader/ProofreaderSubmission.inc.php
+%%WWWDIR%%/classes/submission/proofreader/ProofreaderSubmissionDAO.inc.php
+%%WWWDIR%%/classes/submission/reviewAssignment/ReviewAssignment.inc.php
+%%WWWDIR%%/classes/submission/reviewAssignment/ReviewAssignmentDAO.inc.php
+%%WWWDIR%%/classes/submission/reviewer/ReviewerAction.inc.php
+%%WWWDIR%%/classes/submission/reviewer/ReviewerSubmission.inc.php
+%%WWWDIR%%/classes/submission/reviewer/ReviewerSubmissionDAO.inc.php
+%%WWWDIR%%/classes/submission/sectionEditor/SectionEditorAction.inc.php
+%%WWWDIR%%/classes/submission/sectionEditor/SectionEditorSubmission.inc.php
+%%WWWDIR%%/classes/submission/sectionEditor/SectionEditorSubmissionDAO.inc.php
+%%WWWDIR%%/classes/subscription/Subscription.inc.php
+%%WWWDIR%%/classes/subscription/SubscriptionDAO.inc.php
+%%WWWDIR%%/classes/subscription/SubscriptionType.inc.php
+%%WWWDIR%%/classes/subscription/SubscriptionTypeDAO.inc.php
+%%WWWDIR%%/classes/subscription/form/SubscriptionForm.inc.php
+%%WWWDIR%%/classes/subscription/form/SubscriptionPolicyForm.inc.php
+%%WWWDIR%%/classes/subscription/form/SubscriptionTypeForm.inc.php
+%%WWWDIR%%/classes/tasks/OpenAccessNotification.inc.php
+%%WWWDIR%%/classes/tasks/ReviewReminder.inc.php
+%%WWWDIR%%/classes/tasks/SubscriptionExpiryReminder.inc.php
+%%WWWDIR%%/classes/template/TemplateManager.inc.php
+%%WWWDIR%%/classes/user/CountryDAO.inc.php
+%%WWWDIR%%/classes/user/User.inc.php
+%%WWWDIR%%/classes/user/UserDAO.inc.php
+%%WWWDIR%%/classes/user/UserSettingsDAO.inc.php
+%%WWWDIR%%/classes/user/form/ChangePasswordForm.inc.php
+%%WWWDIR%%/classes/user/form/LoginChangePasswordForm.inc.php
+%%WWWDIR%%/classes/user/form/ProfileForm.inc.php
+%%WWWDIR%%/classes/user/form/RegistrationForm.inc.php
+%%WWWDIR%%/classes/xml/XMLCustomWriter.inc.php
+%%WWWDIR%%/classes/xml/XMLNode.inc.php
+%%WWWDIR%%/classes/xml/XMLParser.inc.php
+%%WWWDIR%%/classes/xml/XMLParserDOMHandler.inc.php
+@unexec if cmp -s %D/%%WWWDIR%%/config.inc.php.sample %D/%%WWWDIR%%/config.inc.php; then rm -f %D/%%WWWDIR%%/config.inc.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/config.inc.php has not been removed"; fi
+%%WWWDIR%%/config.inc.php.sample
+@exec if [ ! -f %D/%%WWWDIR%%/config.inc.php ]; then cp -p %D/%F %B/config.inc.php; else %%ECHO_MSG%% "===> Customized %D/%%WWWDIR%%/config.inc.php has not been overwritten"; fi
+%%WWWDIR%%/dbscripts/xml/data/email_templates.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/de_DE/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/el_GR/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/en_US/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/es_ES/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/fr_CA/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/hr_HR/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/it_IT/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/ja_JP/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/no_NO/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/pt_BR/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/ru_RU/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/tr_TR/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/vi_VN/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/data/locale/zh_TW/email_templates_data.xml
+%%WWWDIR%%/dbscripts/xml/dtd/install.dtd
+%%WWWDIR%%/dbscripts/xml/dtd/locales.dtd
+%%WWWDIR%%/dbscripts/xml/dtd/pluginSettings.dtd
+%%WWWDIR%%/dbscripts/xml/dtd/xmldata.dtd
+%%WWWDIR%%/dbscripts/xml/dtd/xmlschema.dtd
+%%WWWDIR%%/dbscripts/xml/install.xml
+%%WWWDIR%%/dbscripts/xml/ojs_schema.xml
+%%WWWDIR%%/dbscripts/xml/ojs_schema_stage1.xml
+%%WWWDIR%%/dbscripts/xml/upgrade.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.0.1_update.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.0.2_preupdate.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.0.2_update.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.1.0_update.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.1.1_update.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.2.0_localize.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.2.0_preupdate.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.2.0_update.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.2.0_usersettings.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.2.0_usersettings2.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.2.1_preupdate.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/2.2.1_update.xml
+%%WWWDIR%%/dbscripts/xml/upgrade/public_issue_ids.xml
+%%WWWDIR%%/dbscripts/xml/version.xml
+%%PORTDOCS%%%%DOCSDIR%%/COPYING
+%%PORTDOCS%%%%DOCSDIR%%/COPYING_pt
+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/FAQ
+%%PORTDOCS%%%%DOCSDIR%%/FAQ_pt
+%%PORTDOCS%%%%DOCSDIR%%/IMPORTEXPORT
+%%PORTDOCS%%%%DOCSDIR%%/INSTALL
+%%PORTDOCS%%%%DOCSDIR%%/INSTALL_pt
+%%PORTDOCS%%%%DOCSDIR%%/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/LICENSE_pt
+%%PORTDOCS%%%%DOCSDIR%%/README
+%%PORTDOCS%%%%DOCSDIR%%/README-CVS
+%%PORTDOCS%%%%DOCSDIR%%/README-CVS_pt
+%%PORTDOCS%%%%DOCSDIR%%/README-DEV
+%%PORTDOCS%%%%DOCSDIR%%/README_jp
+%%PORTDOCS%%%%DOCSDIR%%/README_pt
+%%PORTDOCS%%%%DOCSDIR%%/RELEASE
+%%PORTDOCS%%%%DOCSDIR%%/REPORTING-BUGS
+%%PORTDOCS%%%%DOCSDIR%%/REPORTING-BUGS_pt
+%%PORTDOCS%%%%DOCSDIR%%/UPGRADE
+%%PORTDOCS%%%%DOCSDIR%%/UPGRADE_pt
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/ChangeLog-2.0.1
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/ChangeLog-2.0.2
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/ChangeLog-2.1
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/ChangeLog-2.1.1
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/ChangeLog-2.2
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/ChangeLog-2.2.1
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/README-2.0.1
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/README-2.0.2
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/README-2.1.0
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/README-2.1.1
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/README-2.2.0
+%%PORTDOCS%%%%DOCSDIR%%/release-notes/README-2.2.1
+%%WWWDIR%%/help/el_GR/editorial/toc/000000.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000001.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000002.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000003.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000004.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000005.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000006.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000007.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000008.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000009.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000010.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000011.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000012.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000013.xml
+%%WWWDIR%%/help/el_GR/editorial/toc/000014.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000000.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000001.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000002.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000003.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000004.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000005.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000006.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000007.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000008.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000009.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000010.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000011.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000012.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000013.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000014.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000015.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000016.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000017.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000018.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000019.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000020.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000021.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000022.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000023.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000024.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000025.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000026.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000027.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000028.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000029.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000030.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000031.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000032.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000033.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000034.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000035.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000036.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000037.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000038.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000039.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000040.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000041.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000042.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000043.xml
+%%WWWDIR%%/help/el_GR/editorial/topic/000044.xml
+%%WWWDIR%%/help/el_GR/index/toc/000000.xml
+%%WWWDIR%%/help/el_GR/index/topic/000000.xml
+%%WWWDIR%%/help/el_GR/intro/toc/000000.xml
+%%WWWDIR%%/help/el_GR/intro/topic/000000.xml
+%%WWWDIR%%/help/el_GR/intro/topic/000001.xml
+%%WWWDIR%%/help/el_GR/journal/toc/000000.xml
+%%WWWDIR%%/help/el_GR/journal/toc/000001.xml
+%%WWWDIR%%/help/el_GR/journal/toc/000002.xml
+%%WWWDIR%%/help/el_GR/journal/toc/000003.xml
+%%WWWDIR%%/help/el_GR/journal/toc/000005.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000000.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000001.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000002.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000003.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000004.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000005.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000006.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000007.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000008.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000009.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000010.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000011.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000012.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000013.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000014.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000015.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000016.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000017.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000018.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000019.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000020.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000021.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000022.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000023.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000025.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000026.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000027.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000028.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000029.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000030.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000031.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000032.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000033.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000034.xml
+%%WWWDIR%%/help/el_GR/journal/topic/000035.xml
+%%WWWDIR%%/help/el_GR/publishing/toc/000000.xml
+%%WWWDIR%%/help/el_GR/publishing/topic/000000.xml
+%%WWWDIR%%/help/el_GR/publishing/topic/000001.xml
+%%WWWDIR%%/help/el_GR/publishing/topic/000002.xml
+%%WWWDIR%%/help/el_GR/publishing/topic/000003.xml
+%%WWWDIR%%/help/el_GR/publishing/topic/000004.xml
+%%WWWDIR%%/help/el_GR/site/toc/000000.xml
+%%WWWDIR%%/help/el_GR/site/topic/000000.xml
+%%WWWDIR%%/help/el_GR/site/topic/000001.xml
+%%WWWDIR%%/help/el_GR/site/topic/000002.xml
+%%WWWDIR%%/help/el_GR/site/topic/000003.xml
+%%WWWDIR%%/help/el_GR/submission/toc/000000.xml
+%%WWWDIR%%/help/el_GR/submission/topic/000000.xml
+%%WWWDIR%%/help/el_GR/submission/topic/000001.xml
+%%WWWDIR%%/help/el_GR/submission/topic/000002.xml
+%%WWWDIR%%/help/el_GR/submission/topic/000003.xml
+%%WWWDIR%%/help/el_GR/submission/topic/000004.xml
+%%WWWDIR%%/help/el_GR/user/toc/000000.xml
+%%WWWDIR%%/help/el_GR/user/topic/000000.xml
+%%WWWDIR%%/help/el_GR/user/topic/000001.xml
+%%WWWDIR%%/help/el_GR/user/topic/000002.xml
+%%WWWDIR%%/help/el_GR/user/topic/000003.xml
+%%WWWDIR%%/help/el_GR/user/topic/000004.xml
+%%WWWDIR%%/help/el_GR/user/topic/000005.xml
+%%WWWDIR%%/help/el_GR/user/topic/000006.xml
+%%WWWDIR%%/help/el_GR/user/topic/000007.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000000.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000001.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000002.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000003.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000004.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000005.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000006.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000007.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000008.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000009.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000010.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000011.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000012.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000013.xml
+%%WWWDIR%%/help/en_US/editorial/toc/000014.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000000.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000001.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000002.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000003.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000004.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000005.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000006.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000007.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000008.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000009.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000010.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000011.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000012.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000013.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000014.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000015.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000016.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000017.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000018.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000019.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000020.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000021.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000022.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000023.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000024.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000025.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000026.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000027.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000028.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000029.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000030.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000031.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000032.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000033.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000034.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000035.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000036.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000037.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000038.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000039.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000040.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000041.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000042.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000043.xml
+%%WWWDIR%%/help/en_US/editorial/topic/000044.xml
+%%WWWDIR%%/help/en_US/index/toc/000000.xml
+%%WWWDIR%%/help/en_US/index/topic/000000.xml
+%%WWWDIR%%/help/en_US/intro/toc/000000.xml
+%%WWWDIR%%/help/en_US/intro/topic/000000.xml
+%%WWWDIR%%/help/en_US/intro/topic/000001.xml
+%%WWWDIR%%/help/en_US/journal/toc/000000.xml
+%%WWWDIR%%/help/en_US/journal/toc/000001.xml
+%%WWWDIR%%/help/en_US/journal/toc/000002.xml
+%%WWWDIR%%/help/en_US/journal/toc/000003.xml
+%%WWWDIR%%/help/en_US/journal/toc/000005.xml
+%%WWWDIR%%/help/en_US/journal/topic/000000.xml
+%%WWWDIR%%/help/en_US/journal/topic/000001.xml
+%%WWWDIR%%/help/en_US/journal/topic/000002.xml
+%%WWWDIR%%/help/en_US/journal/topic/000003.xml
+%%WWWDIR%%/help/en_US/journal/topic/000004.xml
+%%WWWDIR%%/help/en_US/journal/topic/000005.xml
+%%WWWDIR%%/help/en_US/journal/topic/000006.xml
+%%WWWDIR%%/help/en_US/journal/topic/000007.xml
+%%WWWDIR%%/help/en_US/journal/topic/000008.xml
+%%WWWDIR%%/help/en_US/journal/topic/000009.xml
+%%WWWDIR%%/help/en_US/journal/topic/000010.xml
+%%WWWDIR%%/help/en_US/journal/topic/000011.xml
+%%WWWDIR%%/help/en_US/journal/topic/000012.xml
+%%WWWDIR%%/help/en_US/journal/topic/000013.xml
+%%WWWDIR%%/help/en_US/journal/topic/000014.xml
+%%WWWDIR%%/help/en_US/journal/topic/000015.xml
+%%WWWDIR%%/help/en_US/journal/topic/000016.xml
+%%WWWDIR%%/help/en_US/journal/topic/000017.xml
+%%WWWDIR%%/help/en_US/journal/topic/000018.xml
+%%WWWDIR%%/help/en_US/journal/topic/000019.xml
+%%WWWDIR%%/help/en_US/journal/topic/000020.xml
+%%WWWDIR%%/help/en_US/journal/topic/000021.xml
+%%WWWDIR%%/help/en_US/journal/topic/000022.xml
+%%WWWDIR%%/help/en_US/journal/topic/000023.xml
+%%WWWDIR%%/help/en_US/journal/topic/000025.xml
+%%WWWDIR%%/help/en_US/journal/topic/000026.xml
+%%WWWDIR%%/help/en_US/journal/topic/000027.xml
+%%WWWDIR%%/help/en_US/journal/topic/000028.xml
+%%WWWDIR%%/help/en_US/journal/topic/000029.xml
+%%WWWDIR%%/help/en_US/journal/topic/000030.xml
+%%WWWDIR%%/help/en_US/journal/topic/000031.xml
+%%WWWDIR%%/help/en_US/journal/topic/000032.xml
+%%WWWDIR%%/help/en_US/journal/topic/000033.xml
+%%WWWDIR%%/help/en_US/journal/topic/000034.xml
+%%WWWDIR%%/help/en_US/journal/topic/000035.xml
+%%WWWDIR%%/help/en_US/journal/topic/000036.xml
+%%WWWDIR%%/help/en_US/publishing/toc/000000.xml
+%%WWWDIR%%/help/en_US/publishing/topic/000000.xml
+%%WWWDIR%%/help/en_US/publishing/topic/000001.xml
+%%WWWDIR%%/help/en_US/publishing/topic/000002.xml
+%%WWWDIR%%/help/en_US/publishing/topic/000003.xml
+%%WWWDIR%%/help/en_US/publishing/topic/000004.xml
+%%WWWDIR%%/help/en_US/site/toc/000000.xml
+%%WWWDIR%%/help/en_US/site/topic/000000.xml
+%%WWWDIR%%/help/en_US/site/topic/000001.xml
+%%WWWDIR%%/help/en_US/site/topic/000002.xml
+%%WWWDIR%%/help/en_US/site/topic/000003.xml
+%%WWWDIR%%/help/en_US/submission/toc/000000.xml
+%%WWWDIR%%/help/en_US/submission/topic/000000.xml
+%%WWWDIR%%/help/en_US/submission/topic/000001.xml
+%%WWWDIR%%/help/en_US/submission/topic/000002.xml
+%%WWWDIR%%/help/en_US/submission/topic/000003.xml
+%%WWWDIR%%/help/en_US/submission/topic/000004.xml
+%%WWWDIR%%/help/en_US/user/toc/000000.xml
+%%WWWDIR%%/help/en_US/user/topic/000000.xml
+%%WWWDIR%%/help/en_US/user/topic/000001.xml
+%%WWWDIR%%/help/en_US/user/topic/000002.xml
+%%WWWDIR%%/help/en_US/user/topic/000003.xml
+%%WWWDIR%%/help/en_US/user/topic/000004.xml
+%%WWWDIR%%/help/en_US/user/topic/000005.xml
+%%WWWDIR%%/help/en_US/user/topic/000006.xml
+%%WWWDIR%%/help/en_US/user/topic/000007.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000000.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000001.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000002.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000003.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000004.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000005.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000006.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000007.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000008.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000009.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000010.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000011.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000012.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000013.xml
+%%WWWDIR%%/help/fr_CA/editorial/toc/000014.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000000.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000001.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000002.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000003.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000004.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000005.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000006.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000007.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000008.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000009.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000010.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000011.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000012.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000013.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000014.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000015.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000016.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000017.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000018.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000019.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000020.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000021.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000022.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000023.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000024.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000025.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000026.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000027.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000028.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000029.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000030.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000031.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000032.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000033.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000034.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000035.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000036.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000037.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000038.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000039.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000040.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000041.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000042.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000043.xml
+%%WWWDIR%%/help/fr_CA/editorial/topic/000044.xml
+%%WWWDIR%%/help/fr_CA/index/toc/000000.xml
+%%WWWDIR%%/help/fr_CA/index/topic/000000.xml
+%%WWWDIR%%/help/fr_CA/intro/toc/000000.xml
+%%WWWDIR%%/help/fr_CA/intro/topic/000000.xml
+%%WWWDIR%%/help/fr_CA/intro/topic/000001.xml
+%%WWWDIR%%/help/fr_CA/journal/toc/000000.xml
+%%WWWDIR%%/help/fr_CA/journal/toc/000001.xml
+%%WWWDIR%%/help/fr_CA/journal/toc/000002.xml
+%%WWWDIR%%/help/fr_CA/journal/toc/000003.xml
+%%WWWDIR%%/help/fr_CA/journal/toc/000005.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000000.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000001.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000002.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000003.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000004.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000005.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000006.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000007.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000008.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000009.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000010.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000011.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000012.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000013.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000014.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000015.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000016.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000017.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000018.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000019.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000020.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000021.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000022.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000023.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000025.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000026.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000027.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000028.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000029.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000030.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000031.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000032.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000033.xml
+%%WWWDIR%%/help/fr_CA/journal/topic/000034.xml
+%%WWWDIR%%/help/fr_CA/publishing/toc/000000.xml
+%%WWWDIR%%/help/fr_CA/publishing/topic/000000.xml
+%%WWWDIR%%/help/fr_CA/publishing/topic/000001.xml
+%%WWWDIR%%/help/fr_CA/publishing/topic/000002.xml
+%%WWWDIR%%/help/fr_CA/publishing/topic/000003.xml
+%%WWWDIR%%/help/fr_CA/publishing/topic/000004.xml
+%%WWWDIR%%/help/fr_CA/site/toc/000000.xml
+%%WWWDIR%%/help/fr_CA/site/topic/000000.xml
+%%WWWDIR%%/help/fr_CA/site/topic/000001.xml
+%%WWWDIR%%/help/fr_CA/site/topic/000002.xml
+%%WWWDIR%%/help/fr_CA/site/topic/000003.xml
+%%WWWDIR%%/help/fr_CA/submission/toc/000000.xml
+%%WWWDIR%%/help/fr_CA/submission/topic/000000.xml
+%%WWWDIR%%/help/fr_CA/submission/topic/000001.xml
+%%WWWDIR%%/help/fr_CA/submission/topic/000002.xml
+%%WWWDIR%%/help/fr_CA/submission/topic/000003.xml
+%%WWWDIR%%/help/fr_CA/submission/topic/000004.xml
+%%WWWDIR%%/help/fr_CA/user/toc/000000.xml
+%%WWWDIR%%/help/fr_CA/user/topic/000000.xml
+%%WWWDIR%%/help/fr_CA/user/topic/000001.xml
+%%WWWDIR%%/help/fr_CA/user/topic/000002.xml
+%%WWWDIR%%/help/fr_CA/user/topic/000003.xml
+%%WWWDIR%%/help/fr_CA/user/topic/000004.xml
+%%WWWDIR%%/help/fr_CA/user/topic/000005.xml
+%%WWWDIR%%/help/fr_CA/user/topic/000006.xml
+%%WWWDIR%%/help/fr_CA/user/topic/000007.xml
+%%WWWDIR%%/help/help.dtd
+%%WWWDIR%%/help/help.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000000.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000001.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000002.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000003.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000004.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000005.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000006.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000007.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000008.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000009.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000010.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000011.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000012.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000013.xml
+%%WWWDIR%%/help/it_IT/editorial/toc/000014.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000000.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000001.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000002.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000003.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000004.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000005.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000006.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000007.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000008.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000009.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000010.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000011.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000012.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000013.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000014.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000015.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000016.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000017.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000018.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000019.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000020.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000021.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000022.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000023.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000024.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000025.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000026.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000027.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000028.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000029.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000030.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000031.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000032.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000033.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000034.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000035.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000036.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000037.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000038.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000039.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000040.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000041.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000042.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000043.xml
+%%WWWDIR%%/help/it_IT/editorial/topic/000044.xml
+%%WWWDIR%%/help/it_IT/index/toc/000000.xml
+%%WWWDIR%%/help/it_IT/index/topic/000000.xml
+%%WWWDIR%%/help/it_IT/intro/toc/000000.xml
+%%WWWDIR%%/help/it_IT/intro/topic/000000.xml
+%%WWWDIR%%/help/it_IT/intro/topic/000001.xml
+%%WWWDIR%%/help/it_IT/journal/toc/000000.xml
+%%WWWDIR%%/help/it_IT/journal/toc/000001.xml
+%%WWWDIR%%/help/it_IT/journal/toc/000002.xml
+%%WWWDIR%%/help/it_IT/journal/toc/000003.xml
+%%WWWDIR%%/help/it_IT/journal/toc/000005.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000000.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000001.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000002.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000003.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000004.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000005.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000006.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000007.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000008.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000009.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000010.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000011.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000012.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000013.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000014.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000015.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000016.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000017.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000018.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000019.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000020.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000021.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000022.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000023.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000025.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000026.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000027.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000028.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000029.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000030.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000031.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000032.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000033.xml
+%%WWWDIR%%/help/it_IT/journal/topic/000034.xml
+%%WWWDIR%%/help/it_IT/publishing/toc/000000.xml
+%%WWWDIR%%/help/it_IT/publishing/topic/000000.xml
+%%WWWDIR%%/help/it_IT/publishing/topic/000001.xml
+%%WWWDIR%%/help/it_IT/publishing/topic/000002.xml
+%%WWWDIR%%/help/it_IT/publishing/topic/000003.xml
+%%WWWDIR%%/help/it_IT/publishing/topic/000004.xml
+%%WWWDIR%%/help/it_IT/site/toc/000000.xml
+%%WWWDIR%%/help/it_IT/site/topic/000000.xml
+%%WWWDIR%%/help/it_IT/site/topic/000001.xml
+%%WWWDIR%%/help/it_IT/site/topic/000002.xml
+%%WWWDIR%%/help/it_IT/site/topic/000003.xml
+%%WWWDIR%%/help/it_IT/submission/toc/000000.xml
+%%WWWDIR%%/help/it_IT/submission/topic/000000.xml
+%%WWWDIR%%/help/it_IT/submission/topic/000001.xml
+%%WWWDIR%%/help/it_IT/submission/topic/000002.xml
+%%WWWDIR%%/help/it_IT/submission/topic/000003.xml
+%%WWWDIR%%/help/it_IT/submission/topic/000004.xml
+%%WWWDIR%%/help/it_IT/user/toc/000000.xml
+%%WWWDIR%%/help/it_IT/user/topic/000000.xml
+%%WWWDIR%%/help/it_IT/user/topic/000001.xml
+%%WWWDIR%%/help/it_IT/user/topic/000002.xml
+%%WWWDIR%%/help/it_IT/user/topic/000003.xml
+%%WWWDIR%%/help/it_IT/user/topic/000004.xml
+%%WWWDIR%%/help/it_IT/user/topic/000005.xml
+%%WWWDIR%%/help/it_IT/user/topic/000006.xml
+%%WWWDIR%%/help/it_IT/user/topic/000007.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000000.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000001.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000002.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000003.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000004.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000005.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000006.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000007.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000008.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000009.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000010.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000011.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000012.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000013.xml
+%%WWWDIR%%/help/ja_JP/editorial/toc/000014.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000000.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000001.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000002.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000003.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000004.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000005.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000006.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000007.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000008.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000009.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000010.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000011.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000012.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000013.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000014.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000015.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000016.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000017.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000018.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000019.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000020.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000021.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000022.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000023.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000024.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000025.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000026.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000027.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000028.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000029.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000030.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000031.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000032.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000033.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000034.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000035.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000036.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000037.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000038.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000039.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000040.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000041.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000042.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000043.xml
+%%WWWDIR%%/help/ja_JP/editorial/topic/000044.xml
+%%WWWDIR%%/help/ja_JP/index/toc/000000.xml
+%%WWWDIR%%/help/ja_JP/index/topic/000000.xml
+%%WWWDIR%%/help/ja_JP/intro/toc/000000.xml
+%%WWWDIR%%/help/ja_JP/intro/topic/000000.xml
+%%WWWDIR%%/help/ja_JP/intro/topic/000001.xml
+%%WWWDIR%%/help/ja_JP/journal/toc/000000.xml
+%%WWWDIR%%/help/ja_JP/journal/toc/000001.xml
+%%WWWDIR%%/help/ja_JP/journal/toc/000002.xml
+%%WWWDIR%%/help/ja_JP/journal/toc/000003.xml
+%%WWWDIR%%/help/ja_JP/journal/toc/000005.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000000.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000001.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000002.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000003.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000004.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000005.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000006.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000007.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000008.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000009.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000010.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000011.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000012.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000013.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000014.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000015.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000016.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000017.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000018.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000019.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000020.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000021.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000022.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000023.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000025.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000026.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000027.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000028.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000029.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000030.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000031.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000032.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000033.xml
+%%WWWDIR%%/help/ja_JP/journal/topic/000034.xml
+%%WWWDIR%%/help/ja_JP/publishing/toc/000000.xml
+%%WWWDIR%%/help/ja_JP/publishing/topic/000000.xml
+%%WWWDIR%%/help/ja_JP/publishing/topic/000001.xml
+%%WWWDIR%%/help/ja_JP/publishing/topic/000002.xml
+%%WWWDIR%%/help/ja_JP/publishing/topic/000003.xml
+%%WWWDIR%%/help/ja_JP/publishing/topic/000004.xml
+%%WWWDIR%%/help/ja_JP/site/toc/000000.xml
+%%WWWDIR%%/help/ja_JP/site/topic/000000.xml
+%%WWWDIR%%/help/ja_JP/site/topic/000001.xml
+%%WWWDIR%%/help/ja_JP/site/topic/000002.xml
+%%WWWDIR%%/help/ja_JP/site/topic/000003.xml
+%%WWWDIR%%/help/ja_JP/submission/toc/000000.xml
+%%WWWDIR%%/help/ja_JP/submission/topic/000000.xml
+%%WWWDIR%%/help/ja_JP/submission/topic/000001.xml
+%%WWWDIR%%/help/ja_JP/submission/topic/000002.xml
+%%WWWDIR%%/help/ja_JP/submission/topic/000003.xml
+%%WWWDIR%%/help/ja_JP/submission/topic/000004.xml
+%%WWWDIR%%/help/ja_JP/user/toc/000000.xml
+%%WWWDIR%%/help/ja_JP/user/topic/000000.xml
+%%WWWDIR%%/help/ja_JP/user/topic/000001.xml
+%%WWWDIR%%/help/ja_JP/user/topic/000002.xml
+%%WWWDIR%%/help/ja_JP/user/topic/000003.xml
+%%WWWDIR%%/help/ja_JP/user/topic/000004.xml
+%%WWWDIR%%/help/ja_JP/user/topic/000005.xml
+%%WWWDIR%%/help/ja_JP/user/topic/000006.xml
+%%WWWDIR%%/help/ja_JP/user/topic/000007.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000000.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000001.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000002.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000003.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000004.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000005.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000006.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000007.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000008.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000009.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000010.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000011.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000012.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000013.xml
+%%WWWDIR%%/help/pt_BR/editorial/toc/000014.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000000.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000001.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000002.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000003.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000004.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000005.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000006.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000007.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000008.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000009.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000010.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000011.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000012.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000013.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000014.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000015.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000016.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000017.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000018.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000019.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000020.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000021.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000022.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000023.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000024.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000025.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000026.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000027.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000028.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000029.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000030.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000031.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000032.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000033.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000034.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000035.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000036.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000037.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000038.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000039.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000040.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000041.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000042.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000043.xml
+%%WWWDIR%%/help/pt_BR/editorial/topic/000044.xml
+%%WWWDIR%%/help/pt_BR/index/toc/000000.xml
+%%WWWDIR%%/help/pt_BR/index/topic/000000.xml
+%%WWWDIR%%/help/pt_BR/intro/toc/000000.xml
+%%WWWDIR%%/help/pt_BR/intro/topic/000000.xml
+%%WWWDIR%%/help/pt_BR/intro/topic/000001.xml
+%%WWWDIR%%/help/pt_BR/journal/toc/000000.xml
+%%WWWDIR%%/help/pt_BR/journal/toc/000001.xml
+%%WWWDIR%%/help/pt_BR/journal/toc/000002.xml
+%%WWWDIR%%/help/pt_BR/journal/toc/000003.xml
+%%WWWDIR%%/help/pt_BR/journal/toc/000005.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000000.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000001.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000002.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000003.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000004.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000005.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000006.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000007.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000008.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000009.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000010.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000011.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000012.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000013.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000014.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000015.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000016.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000017.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000018.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000019.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000020.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000021.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000022.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000023.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000025.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000026.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000027.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000028.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000029.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000030.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000031.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000032.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000033.xml
+%%WWWDIR%%/help/pt_BR/journal/topic/000034.xml
+%%WWWDIR%%/help/pt_BR/publishing/toc/000000.xml
+%%WWWDIR%%/help/pt_BR/publishing/topic/000000.xml
+%%WWWDIR%%/help/pt_BR/publishing/topic/000001.xml
+%%WWWDIR%%/help/pt_BR/publishing/topic/000002.xml
+%%WWWDIR%%/help/pt_BR/publishing/topic/000003.xml
+%%WWWDIR%%/help/pt_BR/publishing/topic/000004.xml
+%%WWWDIR%%/help/pt_BR/site/toc/000000.xml
+%%WWWDIR%%/help/pt_BR/site/topic/000000.xml
+%%WWWDIR%%/help/pt_BR/site/topic/000001.xml
+%%WWWDIR%%/help/pt_BR/site/topic/000002.xml
+%%WWWDIR%%/help/pt_BR/site/topic/000003.xml
+%%WWWDIR%%/help/pt_BR/submission/toc/000000.xml
+%%WWWDIR%%/help/pt_BR/submission/topic/000000.xml
+%%WWWDIR%%/help/pt_BR/submission/topic/000001.xml
+%%WWWDIR%%/help/pt_BR/submission/topic/000002.xml
+%%WWWDIR%%/help/pt_BR/submission/topic/000003.xml
+%%WWWDIR%%/help/pt_BR/submission/topic/000004.xml
+%%WWWDIR%%/help/pt_BR/user/toc/000000.xml
+%%WWWDIR%%/help/pt_BR/user/topic/000000.xml
+%%WWWDIR%%/help/pt_BR/user/topic/000001.xml
+%%WWWDIR%%/help/pt_BR/user/topic/000002.xml
+%%WWWDIR%%/help/pt_BR/user/topic/000003.xml
+%%WWWDIR%%/help/pt_BR/user/topic/000004.xml
+%%WWWDIR%%/help/pt_BR/user/topic/000005.xml
+%%WWWDIR%%/help/pt_BR/user/topic/000006.xml
+%%WWWDIR%%/help/pt_BR/user/topic/000007.xml
+%%WWWDIR%%/help/toc.dtd
+%%WWWDIR%%/help/topic.dtd
+%%WWWDIR%%/help/tr_TR/editorial/toc/000000.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000001.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000002.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000003.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000004.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000005.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000006.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000007.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000008.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000009.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000010.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000011.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000012.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000013.xml
+%%WWWDIR%%/help/tr_TR/editorial/toc/000014.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000000.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000001.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000002.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000003.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000004.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000005.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000006.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000007.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000008.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000009.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000010.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000011.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000012.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000013.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000014.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000015.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000016.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000017.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000018.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000019.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000020.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000021.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000022.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000023.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000024.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000025.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000026.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000027.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000028.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000029.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000030.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000031.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000032.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000033.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000034.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000035.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000036.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000037.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000038.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000039.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000040.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000041.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000042.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000043.xml
+%%WWWDIR%%/help/tr_TR/editorial/topic/000044.xml
+%%WWWDIR%%/help/tr_TR/index/toc/000000.xml
+%%WWWDIR%%/help/tr_TR/index/topic/000000.xml
+%%WWWDIR%%/help/tr_TR/intro/toc/000000.xml
+%%WWWDIR%%/help/tr_TR/intro/topic/000000.xml
+%%WWWDIR%%/help/tr_TR/intro/topic/000001.xml
+%%WWWDIR%%/help/tr_TR/journal/toc/000000.xml
+%%WWWDIR%%/help/tr_TR/journal/toc/000001.xml
+%%WWWDIR%%/help/tr_TR/journal/toc/000002.xml
+%%WWWDIR%%/help/tr_TR/journal/toc/000003.xml
+%%WWWDIR%%/help/tr_TR/journal/toc/000005.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000000.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000001.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000002.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000003.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000004.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000005.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000006.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000007.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000008.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000009.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000010.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000011.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000012.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000013.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000014.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000015.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000016.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000017.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000018.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000019.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000020.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000021.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000022.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000023.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000025.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000026.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000027.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000028.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000029.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000030.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000031.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000032.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000033.xml
+%%WWWDIR%%/help/tr_TR/journal/topic/000034.xml
+%%WWWDIR%%/help/tr_TR/publishing/toc/000000.xml
+%%WWWDIR%%/help/tr_TR/publishing/topic/000000.xml
+%%WWWDIR%%/help/tr_TR/publishing/topic/000001.xml
+%%WWWDIR%%/help/tr_TR/publishing/topic/000002.xml
+%%WWWDIR%%/help/tr_TR/publishing/topic/000003.xml
+%%WWWDIR%%/help/tr_TR/publishing/topic/000004.xml
+%%WWWDIR%%/help/tr_TR/site/toc/000000.xml
+%%WWWDIR%%/help/tr_TR/site/topic/000000.xml
+%%WWWDIR%%/help/tr_TR/site/topic/000001.xml
+%%WWWDIR%%/help/tr_TR/site/topic/000002.xml
+%%WWWDIR%%/help/tr_TR/site/topic/000003.xml
+%%WWWDIR%%/help/tr_TR/submission/toc/000000.xml
+%%WWWDIR%%/help/tr_TR/submission/topic/000000.xml
+%%WWWDIR%%/help/tr_TR/submission/topic/000001.xml
+%%WWWDIR%%/help/tr_TR/submission/topic/000002.xml
+%%WWWDIR%%/help/tr_TR/submission/topic/000003.xml
+%%WWWDIR%%/help/tr_TR/submission/topic/000004.xml
+%%WWWDIR%%/help/tr_TR/user/toc/000000.xml
+%%WWWDIR%%/help/tr_TR/user/topic/000000.xml
+%%WWWDIR%%/help/tr_TR/user/topic/000001.xml
+%%WWWDIR%%/help/tr_TR/user/topic/000002.xml
+%%WWWDIR%%/help/tr_TR/user/topic/000003.xml
+%%WWWDIR%%/help/tr_TR/user/topic/000004.xml
+%%WWWDIR%%/help/tr_TR/user/topic/000005.xml
+%%WWWDIR%%/help/tr_TR/user/topic/000006.xml
+%%WWWDIR%%/help/tr_TR/user/topic/000007.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000000.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000001.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000002.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000003.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000004.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000005.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000006.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000007.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000008.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000009.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000010.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000011.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000012.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000013.xml
+%%WWWDIR%%/help/vi_VN/editorial/toc/000014.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000000.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000001.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000002.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000003.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000004.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000005.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000006.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000007.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000008.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000009.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000010.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000011.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000012.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000013.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000014.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000015.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000016.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000017.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000018.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000019.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000020.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000021.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000022.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000023.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000024.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000025.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000026.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000027.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000028.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000029.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000030.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000031.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000032.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000033.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000034.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000035.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000036.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000037.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000038.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000039.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000040.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000041.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000042.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000043.xml
+%%WWWDIR%%/help/vi_VN/editorial/topic/000044.xml
+%%WWWDIR%%/help/vi_VN/index/toc/000000.xml
+%%WWWDIR%%/help/vi_VN/index/topic/000000.xml
+%%WWWDIR%%/help/vi_VN/intro/toc/000000.xml
+%%WWWDIR%%/help/vi_VN/intro/topic/000000.xml
+%%WWWDIR%%/help/vi_VN/intro/topic/000001.xml
+%%WWWDIR%%/help/vi_VN/journal/toc/000000.xml
+%%WWWDIR%%/help/vi_VN/journal/toc/000001.xml
+%%WWWDIR%%/help/vi_VN/journal/toc/000002.xml
+%%WWWDIR%%/help/vi_VN/journal/toc/000003.xml
+%%WWWDIR%%/help/vi_VN/journal/toc/000005.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000000.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000001.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000002.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000003.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000004.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000005.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000006.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000007.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000008.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000009.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000010.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000011.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000012.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000013.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000014.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000015.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000016.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000017.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000018.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000019.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000020.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000021.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000022.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000023.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000025.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000026.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000027.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000028.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000029.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000030.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000031.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000032.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000033.xml
+%%WWWDIR%%/help/vi_VN/journal/topic/000034.xml
+%%WWWDIR%%/help/vi_VN/publishing/toc/000000.xml
+%%WWWDIR%%/help/vi_VN/publishing/topic/000000.xml
+%%WWWDIR%%/help/vi_VN/publishing/topic/000001.xml
+%%WWWDIR%%/help/vi_VN/publishing/topic/000002.xml
+%%WWWDIR%%/help/vi_VN/publishing/topic/000003.xml
+%%WWWDIR%%/help/vi_VN/publishing/topic/000004.xml
+%%WWWDIR%%/help/vi_VN/site/toc/000000.xml
+%%WWWDIR%%/help/vi_VN/site/topic/000000.xml
+%%WWWDIR%%/help/vi_VN/site/topic/000001.xml
+%%WWWDIR%%/help/vi_VN/site/topic/000002.xml
+%%WWWDIR%%/help/vi_VN/site/topic/000003.xml
+%%WWWDIR%%/help/vi_VN/submission/toc/000000.xml
+%%WWWDIR%%/help/vi_VN/submission/topic/000000.xml
+%%WWWDIR%%/help/vi_VN/submission/topic/000001.xml
+%%WWWDIR%%/help/vi_VN/submission/topic/000002.xml
+%%WWWDIR%%/help/vi_VN/submission/topic/000003.xml
+%%WWWDIR%%/help/vi_VN/submission/topic/000004.xml
+%%WWWDIR%%/help/vi_VN/user/toc/000000.xml
+%%WWWDIR%%/help/vi_VN/user/topic/000000.xml
+%%WWWDIR%%/help/vi_VN/user/topic/000001.xml
+%%WWWDIR%%/help/vi_VN/user/topic/000002.xml
+%%WWWDIR%%/help/vi_VN/user/topic/000003.xml
+%%WWWDIR%%/help/vi_VN/user/topic/000004.xml
+%%WWWDIR%%/help/vi_VN/user/topic/000005.xml
+%%WWWDIR%%/help/vi_VN/user/topic/000006.xml
+%%WWWDIR%%/help/vi_VN/user/topic/000007.xml
+%%WWWDIR%%/includes/driver.inc.php
+%%WWWDIR%%/includes/functions.inc.php
+%%WWWDIR%%/index.php
+%%WWWDIR%%/js/general.js
+%%WWWDIR%%/js/sizer.js
+%%WWWDIR%%/lib/adodb/adodb-active-record.inc.php
+%%WWWDIR%%/lib/adodb/adodb-csvlib.inc.php
+%%WWWDIR%%/lib/adodb/adodb-datadict.inc.php
+%%WWWDIR%%/lib/adodb/adodb-error.inc.php
+%%WWWDIR%%/lib/adodb/adodb-errorhandler.inc.php
+%%WWWDIR%%/lib/adodb/adodb-errorpear.inc.php
+%%WWWDIR%%/lib/adodb/adodb-exceptions.inc.php
+%%WWWDIR%%/lib/adodb/adodb-iterator.inc.php
+%%WWWDIR%%/lib/adodb/adodb-lib.inc.php
+%%WWWDIR%%/lib/adodb/adodb-pager.inc.php
+%%WWWDIR%%/lib/adodb/adodb-pear.inc.php
+%%WWWDIR%%/lib/adodb/adodb-perf.inc.php
+%%WWWDIR%%/lib/adodb/adodb-php4.inc.php
+%%WWWDIR%%/lib/adodb/adodb-time.inc.php
+%%WWWDIR%%/lib/adodb/adodb-xmlschema.inc.php
+%%WWWDIR%%/lib/adodb/adodb-xmlschema03.inc.php
+%%WWWDIR%%/lib/adodb/adodb.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-access.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-db2.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-firebird.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-generic.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-ibase.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-informix.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-mssql.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-mysql.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-oci8.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-postgres.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-sapdb.inc.php
+%%WWWDIR%%/lib/adodb/datadict/datadict-sybase.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-access.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-ado.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-ado5.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-ado_access.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-ado_mssql.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-borland_ibase.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-csv.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-db2.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-fbsql.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-firebird.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-ibase.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-informix.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-informix72.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-ldap.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-mssql.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-mssqlpo.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-mysql.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-mysqli.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-mysqlt.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-netezza.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-oci8.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-oci805.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-oci8po.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-odbc.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-odbc_db2.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-odbc_mssql.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-odbc_oracle.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-odbtp.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-odbtp_unicode.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-oracle.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-pdo.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-pdo_mssql.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-pdo_mysql.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-pdo_oci.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-pdo_pgsql.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-postgres.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-postgres64.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-postgres7.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-postgres8.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-proxy.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-sapdb.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-sqlanywhere.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-sqlite.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-sqlitepo.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-sybase.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-sybase_ase.inc.php
+%%WWWDIR%%/lib/adodb/drivers/adodb-vfp.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-ar.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-bg.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-bgutf8.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-ca.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-cn.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-cz.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-da.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-de.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-en.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-es.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-esperanto.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-fr.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-hu.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-it.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-nl.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-pl.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-pt-br.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-ro.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-ru1251.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-sv.inc.php
+%%WWWDIR%%/lib/adodb/lang/adodb-uk1251.inc.php
+%%WWWDIR%%/lib/adodb/license.txt
+%%WWWDIR%%/lib/adodb/perf/perf-db2.inc.php
+%%WWWDIR%%/lib/adodb/perf/perf-informix.inc.php
+%%WWWDIR%%/lib/adodb/perf/perf-mssql.inc.php
+%%WWWDIR%%/lib/adodb/perf/perf-mysql.inc.php
+%%WWWDIR%%/lib/adodb/perf/perf-oci8.inc.php
+%%WWWDIR%%/lib/adodb/perf/perf-postgres.inc.php
+%%WWWDIR%%/lib/adodb/pivottable.inc.php
+%%WWWDIR%%/lib/adodb/readme.txt
+%%WWWDIR%%/lib/adodb/rsfilter.inc.php
+%%WWWDIR%%/lib/adodb/toexport.inc.php
+%%WWWDIR%%/lib/adodb/tohtml.inc.php
+%%WWWDIR%%/lib/adodb/xmlschema.dtd
+%%WWWDIR%%/lib/adodb/xmlschema03.dtd
+%%WWWDIR%%/lib/libraries.txt
+%%WWWDIR%%/lib/smarty/COPYING.lib
+%%WWWDIR%%/lib/smarty/Config_File.class.php
+%%WWWDIR%%/lib/smarty/Smarty.class.php
+%%WWWDIR%%/lib/smarty/Smarty_Compiler.class.php
+%%WWWDIR%%/lib/smarty/debug.tpl
+%%WWWDIR%%/lib/smarty/internals/core.assemble_plugin_filepath.php
+%%WWWDIR%%/lib/smarty/internals/core.assign_smarty_interface.php
+%%WWWDIR%%/lib/smarty/internals/core.create_dir_structure.php
+%%WWWDIR%%/lib/smarty/internals/core.display_debug_console.php
+%%WWWDIR%%/lib/smarty/internals/core.get_include_path.php
+%%WWWDIR%%/lib/smarty/internals/core.get_microtime.php
+%%WWWDIR%%/lib/smarty/internals/core.get_php_resource.php
+%%WWWDIR%%/lib/smarty/internals/core.is_secure.php
+%%WWWDIR%%/lib/smarty/internals/core.is_trusted.php
+%%WWWDIR%%/lib/smarty/internals/core.load_plugins.php
+%%WWWDIR%%/lib/smarty/internals/core.load_resource_plugin.php
+%%WWWDIR%%/lib/smarty/internals/core.process_cached_inserts.php
+%%WWWDIR%%/lib/smarty/internals/core.process_compiled_include.php
+%%WWWDIR%%/lib/smarty/internals/core.read_cache_file.php
+%%WWWDIR%%/lib/smarty/internals/core.rm_auto.php
+%%WWWDIR%%/lib/smarty/internals/core.rmdir.php
+%%WWWDIR%%/lib/smarty/internals/core.run_insert_handler.php
+%%WWWDIR%%/lib/smarty/internals/core.smarty_include_php.php
+%%WWWDIR%%/lib/smarty/internals/core.write_cache_file.php
+%%WWWDIR%%/lib/smarty/internals/core.write_compiled_include.php
+%%WWWDIR%%/lib/smarty/internals/core.write_compiled_resource.php
+%%WWWDIR%%/lib/smarty/internals/core.write_file.php
+%%WWWDIR%%/lib/smarty/plugins/block.textformat.php
+%%WWWDIR%%/lib/smarty/plugins/compiler.assign.php
+%%WWWDIR%%/lib/smarty/plugins/function.assign_debug_info.php
+%%WWWDIR%%/lib/smarty/plugins/function.config_load.php
+%%WWWDIR%%/lib/smarty/plugins/function.counter.php
+%%WWWDIR%%/lib/smarty/plugins/function.cycle.php
+%%WWWDIR%%/lib/smarty/plugins/function.debug.php
+%%WWWDIR%%/lib/smarty/plugins/function.eval.php
+%%WWWDIR%%/lib/smarty/plugins/function.fetch.php
+%%WWWDIR%%/lib/smarty/plugins/function.html_checkboxes.php
+%%WWWDIR%%/lib/smarty/plugins/function.html_image.php
+%%WWWDIR%%/lib/smarty/plugins/function.html_options.php
+%%WWWDIR%%/lib/smarty/plugins/function.html_radios.php
+%%WWWDIR%%/lib/smarty/plugins/function.html_select_date.php
+%%WWWDIR%%/lib/smarty/plugins/function.html_select_time.php
+%%WWWDIR%%/lib/smarty/plugins/function.html_table.php
+%%WWWDIR%%/lib/smarty/plugins/function.mailto.php
+%%WWWDIR%%/lib/smarty/plugins/function.math.php
+%%WWWDIR%%/lib/smarty/plugins/function.popup.php
+%%WWWDIR%%/lib/smarty/plugins/function.popup_init.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.capitalize.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.cat.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.count_characters.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.count_paragraphs.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.count_sentences.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.count_words.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.date_format.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.debug_print_var.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.default.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.escape.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.indent.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.lower.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.nl2br.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.regex_replace.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.replace.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.spacify.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.string_format.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.strip.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.strip_tags.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.truncate.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.upper.php
+%%WWWDIR%%/lib/smarty/plugins/modifier.wordwrap.php
+%%WWWDIR%%/lib/smarty/plugins/outputfilter.trimwhitespace.php
+%%WWWDIR%%/lib/smarty/plugins/shared.escape_special_chars.php
+%%WWWDIR%%/lib/smarty/plugins/shared.make_timestamp.php
+%%WWWDIR%%/lib/tinymce/examples/css/content.css
+%%WWWDIR%%/lib/tinymce/examples/css/word.css
+%%WWWDIR%%/lib/tinymce/examples/full.html
+%%WWWDIR%%/lib/tinymce/examples/index.html
+%%WWWDIR%%/lib/tinymce/examples/lists/image_list.js
+%%WWWDIR%%/lib/tinymce/examples/lists/link_list.js
+%%WWWDIR%%/lib/tinymce/examples/lists/media_list.js
+%%WWWDIR%%/lib/tinymce/examples/lists/template_list.js
+%%WWWDIR%%/lib/tinymce/examples/media/logo.jpg
+%%WWWDIR%%/lib/tinymce/examples/media/logo_over.jpg
+%%WWWDIR%%/lib/tinymce/examples/media/sample.avi
+%%WWWDIR%%/lib/tinymce/examples/media/sample.dcr
+%%WWWDIR%%/lib/tinymce/examples/media/sample.mov
+%%WWWDIR%%/lib/tinymce/examples/media/sample.ram
+%%WWWDIR%%/lib/tinymce/examples/media/sample.rm
+%%WWWDIR%%/lib/tinymce/examples/media/sample.swf
+%%WWWDIR%%/lib/tinymce/examples/menu.html
+%%WWWDIR%%/lib/tinymce/examples/simple.html
+%%WWWDIR%%/lib/tinymce/examples/skins.html
+%%WWWDIR%%/lib/tinymce/examples/templates/layout1.htm
+%%WWWDIR%%/lib/tinymce/examples/templates/snippet1.htm
+%%WWWDIR%%/lib/tinymce/examples/word.html
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/langs/en.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/license.txt
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/template.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/css/content.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/css/media.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/img/flash.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/img/flv_player.swf
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/img/quicktime.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/img/realmedia.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/img/shockwave.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/img/trans.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/img/windowsmedia.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/js/media.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/media.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/pagebreak/css/content.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/trans.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/blank.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/css/blank.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/css/pasteword.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/preview/example.html
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/safari/blank.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/safari/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/safari/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style/css/props.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style/js/props.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style/props.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/cell.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/css/row.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/css/table.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/js/row.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/js/table.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/row.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/table.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/blank.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/css/template.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/js/template.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/template.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/about.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/image.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/link.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/tiny_mce.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/tiny_mce_popup.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/tiny_mce_src.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/utils/editable_selects.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/utils/form_utils.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/utils/mctabs.js
+%%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/utils/validate.js
+%%WWWDIR%%/locale/de_DE/currencies.xml
+%%WWWDIR%%/locale/de_DE/edprocess.png
+%%WWWDIR%%/locale/de_DE/edprocesslarge.png
+%%WWWDIR%%/locale/de_DE/locale.xml
+%%WWWDIR%%/locale/el_GR/currencies.xml
+%%WWWDIR%%/locale/el_GR/locale.xml
+%%WWWDIR%%/locale/en_US/currencies.xml
+%%WWWDIR%%/locale/en_US/edprocess.png
+%%WWWDIR%%/locale/en_US/edprocesslarge.png
+%%WWWDIR%%/locale/en_US/locale.xml
+%%WWWDIR%%/locale/es_ES/currencies.xml
+%%WWWDIR%%/locale/es_ES/edprocess.png
+%%WWWDIR%%/locale/es_ES/edprocesslarge.png
+%%WWWDIR%%/locale/es_ES/locale.xml
+%%WWWDIR%%/locale/fr_CA/currencies.xml
+%%WWWDIR%%/locale/fr_CA/edprocess.png
+%%WWWDIR%%/locale/fr_CA/edprocesslarge.png
+%%WWWDIR%%/locale/fr_CA/locale.xml
+%%WWWDIR%%/locale/hr_HR/currencies.xml
+%%WWWDIR%%/locale/hr_HR/edprocesslarge.png
+%%WWWDIR%%/locale/hr_HR/locale.xml
+%%WWWDIR%%/locale/it_IT/currencies.xml
+%%WWWDIR%%/locale/it_IT/edprocess.png
+%%WWWDIR%%/locale/it_IT/edprocesslarge.png
+%%WWWDIR%%/locale/it_IT/locale.xml
+%%WWWDIR%%/locale/ja_JP/currencies.xml
+%%WWWDIR%%/locale/ja_JP/locale.xml
+%%WWWDIR%%/locale/locale.dtd
+%%WWWDIR%%/locale/no_NO/currencies.xml
+%%WWWDIR%%/locale/no_NO/locale.xml
+%%WWWDIR%%/locale/pt_BR/currencies.xml
+%%WWWDIR%%/locale/pt_BR/edprocess.png
+%%WWWDIR%%/locale/pt_BR/edprocesslarge.png
+%%WWWDIR%%/locale/pt_BR/locale.xml
+%%WWWDIR%%/locale/ru_RU/currencies.xml
+%%WWWDIR%%/locale/ru_RU/edprocess.png
+%%WWWDIR%%/locale/ru_RU/edprocesslarge.png
+%%WWWDIR%%/locale/ru_RU/locale.xml
+%%WWWDIR%%/locale/tr_TR/currencies.xml
+%%WWWDIR%%/locale/tr_TR/edprocess.png
+%%WWWDIR%%/locale/tr_TR/edprocesslarge.png
+%%WWWDIR%%/locale/tr_TR/locale.xml
+%%WWWDIR%%/locale/vi_VN/currencies.xml
+%%WWWDIR%%/locale/vi_VN/locale.xml
+%%WWWDIR%%/locale/zh_TW/locale.xml
+%%WWWDIR%%/pages/about/AboutHandler.inc.php
+%%WWWDIR%%/pages/about/index.php
+%%WWWDIR%%/pages/admin/AdminFunctionsHandler.inc.php
+%%WWWDIR%%/pages/admin/AdminHandler.inc.php
+%%WWWDIR%%/pages/admin/AdminJournalHandler.inc.php
+%%WWWDIR%%/pages/admin/AdminLanguagesHandler.inc.php
+%%WWWDIR%%/pages/admin/AdminPeopleHandler.inc.php
+%%WWWDIR%%/pages/admin/AdminSettingsHandler.inc.php
+%%WWWDIR%%/pages/admin/AuthSourcesHandler.inc.php
+%%WWWDIR%%/pages/admin/index.php
+%%WWWDIR%%/pages/announcement/AnnouncementHandler.inc.php
+%%WWWDIR%%/pages/announcement/index.php
+%%WWWDIR%%/pages/article/ArticleHandler.inc.php
+%%WWWDIR%%/pages/article/index.php
+%%WWWDIR%%/pages/author/AuthorHandler.inc.php
+%%WWWDIR%%/pages/author/SubmissionCommentsHandler.inc.php
+%%WWWDIR%%/pages/author/SubmitHandler.inc.php
+%%WWWDIR%%/pages/author/TrackSubmissionHandler.inc.php
+%%WWWDIR%%/pages/author/index.php
+%%WWWDIR%%/pages/comment/CommentHandler.inc.php
+%%WWWDIR%%/pages/comment/index.php
+%%WWWDIR%%/pages/copyeditor/CopyeditorHandler.inc.php
+%%WWWDIR%%/pages/copyeditor/SubmissionCommentsHandler.inc.php
+%%WWWDIR%%/pages/copyeditor/SubmissionCopyeditHandler.inc.php
+%%WWWDIR%%/pages/copyeditor/index.php
+%%WWWDIR%%/pages/donations/DonationsHandler.inc.php
+%%WWWDIR%%/pages/donations/index.php
+%%WWWDIR%%/pages/editor/EditorHandler.inc.php
+%%WWWDIR%%/pages/editor/IssueManagementHandler.inc.php
+%%WWWDIR%%/pages/editor/index.php
+%%WWWDIR%%/pages/gateway/GatewayHandler.inc.php
+%%WWWDIR%%/pages/gateway/index.php
+%%WWWDIR%%/pages/help/HelpHandler.inc.php
+%%WWWDIR%%/pages/help/index.php
+%%WWWDIR%%/pages/index/IndexHandler.inc.php
+%%WWWDIR%%/pages/index/index.php
+%%WWWDIR%%/pages/information/InformationHandler.inc.php
+%%WWWDIR%%/pages/information/index.php
+%%WWWDIR%%/pages/install/InstallHandler.inc.php
+%%WWWDIR%%/pages/install/index.php
+%%WWWDIR%%/pages/issue/IssueHandler.inc.php
+%%WWWDIR%%/pages/issue/index.php
+%%WWWDIR%%/pages/layoutEditor/LayoutEditorHandler.inc.php
+%%WWWDIR%%/pages/layoutEditor/SubmissionCommentsHandler.inc.php
+%%WWWDIR%%/pages/layoutEditor/SubmissionLayoutHandler.inc.php
+%%WWWDIR%%/pages/layoutEditor/index.php
+%%WWWDIR%%/pages/login/LoginHandler.inc.php
+%%WWWDIR%%/pages/login/index.php
+%%WWWDIR%%/pages/manager/AnnouncementHandler.inc.php
+%%WWWDIR%%/pages/manager/EmailHandler.inc.php
+%%WWWDIR%%/pages/manager/FilesHandler.inc.php
+%%WWWDIR%%/pages/manager/GroupHandler.inc.php
+%%WWWDIR%%/pages/manager/ImportExportHandler.inc.php
+%%WWWDIR%%/pages/manager/JournalLanguagesHandler.inc.php
+%%WWWDIR%%/pages/manager/ManagerHandler.inc.php
+%%WWWDIR%%/pages/manager/ManagerPaymentHandler.inc.php
+%%WWWDIR%%/pages/manager/PeopleHandler.inc.php
+%%WWWDIR%%/pages/manager/PluginHandler.inc.php
+%%WWWDIR%%/pages/manager/ReviewFormHandler.inc.php
+%%WWWDIR%%/pages/manager/SectionHandler.inc.php
+%%WWWDIR%%/pages/manager/SetupHandler.inc.php
+%%WWWDIR%%/pages/manager/StatisticsHandler.inc.php
+%%WWWDIR%%/pages/manager/SubscriptionHandler.inc.php
+%%WWWDIR%%/pages/manager/index.php
+%%WWWDIR%%/pages/oai/OAIHandler.inc.php
+%%WWWDIR%%/pages/oai/index.php
+%%WWWDIR%%/pages/payment/PaymentHandler.inc.php
+%%WWWDIR%%/pages/payment/index.php
+%%WWWDIR%%/pages/proofreader/ProofreaderHandler.inc.php
+%%WWWDIR%%/pages/proofreader/SubmissionCommentsHandler.inc.php
+%%WWWDIR%%/pages/proofreader/SubmissionProofreadHandler.inc.php
+%%WWWDIR%%/pages/proofreader/index.php
+%%WWWDIR%%/pages/reviewer/ReviewerHandler.inc.php
+%%WWWDIR%%/pages/reviewer/SubmissionCommentsHandler.inc.php
+%%WWWDIR%%/pages/reviewer/SubmissionReviewHandler.inc.php
+%%WWWDIR%%/pages/reviewer/index.php
+%%WWWDIR%%/pages/rt/RTHandler.inc.php
+%%WWWDIR%%/pages/rt/index.php
+%%WWWDIR%%/pages/rtadmin/RTAdminHandler.inc.php
+%%WWWDIR%%/pages/rtadmin/RTContextHandler.inc.php
+%%WWWDIR%%/pages/rtadmin/RTSearchHandler.inc.php
+%%WWWDIR%%/pages/rtadmin/RTSetupHandler.inc.php
+%%WWWDIR%%/pages/rtadmin/RTVersionHandler.inc.php
+%%WWWDIR%%/pages/rtadmin/index.php
+%%WWWDIR%%/pages/search/SearchHandler.inc.php
+%%WWWDIR%%/pages/search/index.php
+%%WWWDIR%%/pages/sectionEditor/SectionEditorHandler.inc.php
+%%WWWDIR%%/pages/sectionEditor/SubmissionCommentsHandler.inc.php
+%%WWWDIR%%/pages/sectionEditor/SubmissionEditHandler.inc.php
+%%WWWDIR%%/pages/sectionEditor/index.php
+%%WWWDIR%%/pages/subscriptionManager/SubscriptionManagerHandler.inc.php
+%%WWWDIR%%/pages/subscriptionManager/index.php
+%%WWWDIR%%/pages/user/EmailHandler.inc.php
+%%WWWDIR%%/pages/user/ProfileHandler.inc.php
+%%WWWDIR%%/pages/user/RegistrationHandler.inc.php
+%%WWWDIR%%/pages/user/UserHandler.inc.php
+%%WWWDIR%%/pages/user/index.php
+%%WWWDIR%%/plugins/auth/ldap/LDAPAuthPlugin.inc.php
+%%WWWDIR%%/plugins/auth/ldap/index.php
+%%WWWDIR%%/plugins/auth/ldap/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/ru_RU/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/tr_TR/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/auth/ldap/settings.tpl
+%%WWWDIR%%/plugins/blocks/developedBy/DevelopedByBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/developedBy/block.tpl
+%%WWWDIR%%/plugins/blocks/developedBy/index.php
+%%WWWDIR%%/plugins/blocks/developedBy/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/blocks/developedBy/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/developedBy/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/developedBy/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/developedBy/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/developedBy/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/developedBy/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/blocks/developedBy/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/developedBy/settings.xml
+%%WWWDIR%%/plugins/blocks/donation/DonationBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/donation/block.tpl
+%%WWWDIR%%/plugins/blocks/donation/index.php
+%%WWWDIR%%/plugins/blocks/donation/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/blocks/donation/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/donation/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/donation/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/donation/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/donation/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/donation/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/blocks/donation/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/donation/settings.xml
+%%WWWDIR%%/plugins/blocks/fontSize/FontSizeBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/fontSize/block.tpl
+%%WWWDIR%%/plugins/blocks/fontSize/index.php
+%%WWWDIR%%/plugins/blocks/fontSize/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/blocks/fontSize/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/fontSize/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/fontSize/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/fontSize/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/fontSize/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/fontSize/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/blocks/fontSize/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/fontSize/settings.xml
+%%WWWDIR%%/plugins/blocks/help/HelpBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/help/block.tpl
+%%WWWDIR%%/plugins/blocks/help/index.php
+%%WWWDIR%%/plugins/blocks/help/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/blocks/help/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/help/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/help/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/help/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/help/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/help/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/blocks/help/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/help/settings.xml
+%%WWWDIR%%/plugins/blocks/information/InformationBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/information/block.tpl
+%%WWWDIR%%/plugins/blocks/information/index.php
+%%WWWDIR%%/plugins/blocks/information/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/blocks/information/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/information/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/information/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/information/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/information/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/information/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/blocks/information/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/information/settings.xml
+%%WWWDIR%%/plugins/blocks/languageToggle/LanguageToggleBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/languageToggle/block.tpl
+%%WWWDIR%%/plugins/blocks/languageToggle/index.php
+%%WWWDIR%%/plugins/blocks/languageToggle/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/blocks/languageToggle/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/languageToggle/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/languageToggle/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/languageToggle/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/languageToggle/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/languageToggle/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/blocks/languageToggle/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/languageToggle/settings.xml
+%%WWWDIR%%/plugins/blocks/navigation/NavigationBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/navigation/block.tpl
+%%WWWDIR%%/plugins/blocks/navigation/index.php
+%%WWWDIR%%/plugins/blocks/navigation/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/blocks/navigation/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/navigation/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/navigation/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/navigation/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/navigation/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/navigation/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/blocks/navigation/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/navigation/settings.xml
+%%WWWDIR%%/plugins/blocks/role/RoleBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/role/author.tpl
+%%WWWDIR%%/plugins/blocks/role/copyeditor.tpl
+%%WWWDIR%%/plugins/blocks/role/editor.tpl
+%%WWWDIR%%/plugins/blocks/role/index.php
+%%WWWDIR%%/plugins/blocks/role/layoutEditor.tpl
+%%WWWDIR%%/plugins/blocks/role/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/blocks/role/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/role/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/role/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/role/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/role/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/role/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/blocks/role/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/role/proofreader.tpl
+%%WWWDIR%%/plugins/blocks/role/reviewer.tpl
+%%WWWDIR%%/plugins/blocks/role/sectionEditor.tpl
+%%WWWDIR%%/plugins/blocks/role/settings.xml
+%%WWWDIR%%/plugins/blocks/subscription/SubscriptionBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/subscription/block.tpl
+%%WWWDIR%%/plugins/blocks/subscription/index.php
+%%WWWDIR%%/plugins/blocks/subscription/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/subscription/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/subscription/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/subscription/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/subscription/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/subscription/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/subscription/settings.xml
+%%WWWDIR%%/plugins/blocks/user/UserBlockPlugin.inc.php
+%%WWWDIR%%/plugins/blocks/user/block.tpl
+%%WWWDIR%%/plugins/blocks/user/index.php
+%%WWWDIR%%/plugins/blocks/user/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/blocks/user/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/blocks/user/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/blocks/user/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/blocks/user/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/blocks/user/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/blocks/user/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/blocks/user/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/blocks/user/settings.xml
+%%WWWDIR%%/plugins/citationFormats/abnt/AbntCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/abnt/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/abnt/index.php
+%%WWWDIR%%/plugins/citationFormats/abnt/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/abnt/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/abnt/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/abnt/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/abnt/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/abnt/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/abnt/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/abnt/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/apa/ApaCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/apa/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/apa/index.php
+%%WWWDIR%%/plugins/citationFormats/apa/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/apa/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/apa/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/apa/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/apa/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/apa/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/apa/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/apa/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/bibtex/BibtexCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/bibtex/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/bibtex/index.php
+%%WWWDIR%%/plugins/citationFormats/bibtex/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/bibtex/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/bibtex/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/bibtex/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/bibtex/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/bibtex/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/bibtex/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/bibtex/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/cbe/CbeCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/cbe/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/cbe/index.php
+%%WWWDIR%%/plugins/citationFormats/cbe/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/cbe/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/cbe/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/cbe/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/cbe/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/cbe/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/cbe/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/cbe/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/endNote/EndNoteCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/endNote/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/endNote/index.php
+%%WWWDIR%%/plugins/citationFormats/endNote/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/endNote/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/endNote/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/endNote/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/endNote/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/endNote/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/endNote/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/endNote/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/mla/MlaCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/mla/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/mla/index.php
+%%WWWDIR%%/plugins/citationFormats/mla/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/mla/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/mla/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/mla/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/mla/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/mla/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/mla/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/mla/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/proCite/ProCiteCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/proCite/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/proCite/index.php
+%%WWWDIR%%/plugins/citationFormats/proCite/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/proCite/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/proCite/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/proCite/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/proCite/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/proCite/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/proCite/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/proCite/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refMan/RefManCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/refMan/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/refMan/index.php
+%%WWWDIR%%/plugins/citationFormats/refMan/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refMan/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refMan/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refMan/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refMan/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refMan/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refMan/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refMan/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refWorks/RefWorksCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/refWorks/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/refWorks/index.php
+%%WWWDIR%%/plugins/citationFormats/refWorks/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refWorks/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refWorks/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refWorks/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refWorks/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refWorks/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refWorks/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/refWorks/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/turabian/TurabianCitationPlugin.inc.php
+%%WWWDIR%%/plugins/citationFormats/turabian/citation.tpl
+%%WWWDIR%%/plugins/citationFormats/turabian/index.php
+%%WWWDIR%%/plugins/citationFormats/turabian/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/turabian/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/citationFormats/turabian/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/citationFormats/turabian/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/citationFormats/turabian/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/citationFormats/turabian/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/citationFormats/turabian/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/citationFormats/turabian/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/gateways/metsGateway/MetsExportDom.inc.php
+%%WWWDIR%%/plugins/gateways/metsGateway/MetsGatewayPlugin.inc.php
+%%WWWDIR%%/plugins/gateways/metsGateway/README
+%%WWWDIR%%/plugins/gateways/metsGateway/SettingsForm.inc.php
+%%WWWDIR%%/plugins/gateways/metsGateway/index.php
+%%WWWDIR%%/plugins/gateways/metsGateway/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/gateways/metsGateway/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/gateways/metsGateway/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/gateways/metsGateway/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/gateways/metsGateway/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/gateways/metsGateway/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/gateways/metsGateway/settingsForm.tpl
+%%WWWDIR%%/plugins/gateways/resolver/README
+%%WWWDIR%%/plugins/gateways/resolver/ResolverPlugin.inc.php
+%%WWWDIR%%/plugins/gateways/resolver/index.php
+%%WWWDIR%%/plugins/gateways/resolver/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/tr_TR/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/gateways/resolver/settings.xml
+%%WWWDIR%%/plugins/generic/announcementFeed/AnnouncementFeedBlockPlugin.inc.php
+%%WWWDIR%%/plugins/generic/announcementFeed/AnnouncementFeedGatewayPlugin.inc.php
+%%WWWDIR%%/plugins/generic/announcementFeed/AnnouncementFeedPlugin.inc.php
+%%WWWDIR%%/plugins/generic/announcementFeed/SettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/announcementFeed/index.php
+%%WWWDIR%%/plugins/generic/announcementFeed/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/announcementFeed/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/announcementFeed/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/announcementFeed/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/announcementFeed/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/announcementFeed/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/announcementFeed/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/announcementFeed/templates/atom.tpl
+%%WWWDIR%%/plugins/generic/announcementFeed/templates/block.tpl
+%%WWWDIR%%/plugins/generic/announcementFeed/templates/images/atom10_logo.gif
+%%WWWDIR%%/plugins/generic/announcementFeed/templates/images/rss10_logo.gif
+%%WWWDIR%%/plugins/generic/announcementFeed/templates/images/rss20_logo.gif
+%%WWWDIR%%/plugins/generic/announcementFeed/templates/rss.tpl
+%%WWWDIR%%/plugins/generic/announcementFeed/templates/rss2.tpl
+%%WWWDIR%%/plugins/generic/cms/CmsBlockPlugin.inc.php
+%%WWWDIR%%/plugins/generic/cms/CmsHandler.inc.php
+%%WWWDIR%%/plugins/generic/cms/CmsPlugin.inc.php
+%%WWWDIR%%/plugins/generic/cms/CmsSettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/cms/ContentManager.inc.php
+%%WWWDIR%%/plugins/generic/cms/README.rtf
+%%WWWDIR%%/plugins/generic/cms/block.tpl
+%%WWWDIR%%/plugins/generic/cms/content.tpl
+%%WWWDIR%%/plugins/generic/cms/index.php
+%%WWWDIR%%/plugins/generic/cms/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/cms/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/cms/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/cms/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/cms/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/cms/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/cms/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/cms/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/cms/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins/heading/editor_plugin.js
+%%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins/heading/images/h1.gif
+%%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins/heading/images/h2.gif
+%%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins/heading/images/h3.gif
+%%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins/heading/images/h4.gif
+%%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins/heading/images/h5.gif
+%%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins/heading/images/h6.gif
+%%WWWDIR%%/plugins/generic/cmsRSS/CmsRssPlugin.inc.php
+%%WWWDIR%%/plugins/generic/cmsRSS/CmsRssSettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/cmsRSS/README.rtf
+%%WWWDIR%%/plugins/generic/cmsRSS/SimplePie.inc.php
+%%WWWDIR%%/plugins/generic/cmsRSS/index.php
+%%WWWDIR%%/plugins/generic/cmsRSS/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/cmsRSS/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/cmsRSS/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/cmsRSS/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/cmsRSS/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/cmsRSS/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/cmsRSS/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/cmsRSS/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/cmsRSS/rss.tpl
+%%WWWDIR%%/plugins/generic/cmsRSS/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/coins/CoinsPlugin.inc.php
+%%WWWDIR%%/plugins/generic/coins/index.php
+%%WWWDIR%%/plugins/generic/coins/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/coins/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/coins/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/coins/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/coins/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/coins/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/coins/settings.xml
+%%WWWDIR%%/plugins/generic/counter/CounterHandler.inc.php
+%%WWWDIR%%/plugins/generic/counter/CounterPlugin.inc.php
+%%WWWDIR%%/plugins/generic/counter/LogEntry.inc.php
+%%WWWDIR%%/plugins/generic/counter/LogEntryDAO.inc.php
+%%WWWDIR%%/plugins/generic/counter/README
+%%WWWDIR%%/plugins/generic/counter/browser.tpl
+%%WWWDIR%%/plugins/generic/counter/index.php
+%%WWWDIR%%/plugins/generic/counter/index.tpl
+%%WWWDIR%%/plugins/generic/counter/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/generic/counter/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/generic/customLocale/CustomLocaleAction.inc.php
+%%WWWDIR%%/plugins/generic/customLocale/CustomLocaleHandler.inc.php
+%%WWWDIR%%/plugins/generic/customLocale/CustomLocalePlugin.inc.php
+%%WWWDIR%%/plugins/generic/customLocale/index.php
+%%WWWDIR%%/plugins/generic/customLocale/index.tpl
+%%WWWDIR%%/plugins/generic/customLocale/locale.tpl
+%%WWWDIR%%/plugins/generic/customLocale/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/customLocale/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/customLocale/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/customLocale/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/customLocale/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/customLocale/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/customLocale/localeFile.tpl
+%%WWWDIR%%/plugins/generic/googleAnalytics/GoogleAnalyticsPlugin.inc.php
+%%WWWDIR%%/plugins/generic/googleAnalytics/GoogleAnalyticsSettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/googleAnalytics/index.php
+%%WWWDIR%%/plugins/generic/googleAnalytics/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/googleAnalytics/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/googleAnalytics/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/googleAnalytics/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/googleAnalytics/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/googleAnalytics/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/googleAnalytics/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/googleAnalytics/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/googleAnalytics/pageTagGa.tpl
+%%WWWDIR%%/plugins/generic/googleAnalytics/pageTagUrchin.tpl
+%%WWWDIR%%/plugins/generic/googleAnalytics/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/openAds/Ad.inc.php
+%%WWWDIR%%/plugins/generic/openAds/OpenAdsBlockPlugin.inc.php
+%%WWWDIR%%/plugins/generic/openAds/OpenAdsConnection.inc.php
+%%WWWDIR%%/plugins/generic/openAds/OpenAdsPlugin.inc.php
+%%WWWDIR%%/plugins/generic/openAds/OpenAdsSettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/openAds/README
+%%WWWDIR%%/plugins/generic/openAds/index.php
+%%WWWDIR%%/plugins/generic/openAds/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/openAds/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/openAds/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/openAds/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/openAds/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/openAds/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/openAds/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/openAds/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/openAds/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/phpMyVisites/PhpMyVisitesPlugin.inc.php
+%%WWWDIR%%/plugins/generic/phpMyVisites/PhpMyVisitesSettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/phpMyVisites/index.php
+%%WWWDIR%%/plugins/generic/phpMyVisites/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/phpMyVisites/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/phpMyVisites/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/phpMyVisites/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/phpMyVisites/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/phpMyVisites/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/phpMyVisites/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/phpMyVisites/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/phpMyVisites/pageTag.tpl
+%%WWWDIR%%/plugins/generic/phpMyVisites/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/roundedCorners/RoundedCornersPlugin.inc.php
+%%WWWDIR%%/plugins/generic/roundedCorners/index.php
+%%WWWDIR%%/plugins/generic/roundedCorners/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/roundedCorners/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/roundedCorners/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/roundedCorners/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/roundedCorners/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/roundedCorners/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/roundedCorners/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/roundedCorners/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/roundedCorners/roundedcorners.css
+%%WWWDIR%%/plugins/generic/sehl/SehlPlugin.inc.php
+%%WWWDIR%%/plugins/generic/sehl/index.php
+%%WWWDIR%%/plugins/generic/sehl/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/sehl/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/sehl/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/sehl/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/sehl/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/sehl/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/sehl/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/sehl/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/sehl/sehl.css
+%%WWWDIR%%/plugins/generic/thesis/StudentThesisForm.inc.php
+%%WWWDIR%%/plugins/generic/thesis/Thesis.inc.php
+%%WWWDIR%%/plugins/generic/thesis/ThesisDAO.inc.php
+%%WWWDIR%%/plugins/generic/thesis/ThesisForm.inc.php
+%%WWWDIR%%/plugins/generic/thesis/ThesisHandler.inc.php
+%%WWWDIR%%/plugins/generic/thesis/ThesisPlugin.inc.php
+%%WWWDIR%%/plugins/generic/thesis/ThesisSettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/thesis/data.xml
+%%WWWDIR%%/plugins/generic/thesis/index.php
+%%WWWDIR%%/plugins/generic/thesis/index.tpl
+%%WWWDIR%%/plugins/generic/thesis/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/generic/thesis/metadata.tpl
+%%WWWDIR%%/plugins/generic/thesis/schema.xml
+%%WWWDIR%%/plugins/generic/thesis/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/thesis/studentThesisForm.tpl
+%%WWWDIR%%/plugins/generic/thesis/theses.tpl
+%%WWWDIR%%/plugins/generic/thesis/thesisForm.tpl
+%%WWWDIR%%/plugins/generic/thesis/view.tpl
+%%WWWDIR%%/plugins/generic/thesisFeed/SettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/thesisFeed/ThesisFeedBlockPlugin.inc.php
+%%WWWDIR%%/plugins/generic/thesisFeed/ThesisFeedGatewayPlugin.inc.php
+%%WWWDIR%%/plugins/generic/thesisFeed/ThesisFeedPlugin.inc.php
+%%WWWDIR%%/plugins/generic/thesisFeed/index.php
+%%WWWDIR%%/plugins/generic/thesisFeed/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/thesisFeed/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/thesisFeed/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/thesisFeed/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/thesisFeed/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/thesisFeed/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/thesisFeed/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/thesisFeed/templates/atom.tpl
+%%WWWDIR%%/plugins/generic/thesisFeed/templates/block.tpl
+%%WWWDIR%%/plugins/generic/thesisFeed/templates/images/atom10_logo.gif
+%%WWWDIR%%/plugins/generic/thesisFeed/templates/images/rss10_logo.gif
+%%WWWDIR%%/plugins/generic/thesisFeed/templates/images/rss20_logo.gif
+%%WWWDIR%%/plugins/generic/thesisFeed/templates/rss.tpl
+%%WWWDIR%%/plugins/generic/thesisFeed/templates/rss2.tpl
+%%WWWDIR%%/plugins/generic/tinymce/README
+%%WWWDIR%%/plugins/generic/tinymce/TinyMCEPlugin.inc.php
+%%WWWDIR%%/plugins/generic/tinymce/index.php
+%%WWWDIR%%/plugins/generic/tinymce/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/ru_RU/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/generic/tinymce/settings.xml
+%%WWWDIR%%/plugins/generic/translator/TranslatorAction.inc.php
+%%WWWDIR%%/plugins/generic/translator/TranslatorHandler.inc.php
+%%WWWDIR%%/plugins/generic/translator/TranslatorPlugin.inc.php
+%%WWWDIR%%/plugins/generic/translator/editEmail.tpl
+%%WWWDIR%%/plugins/generic/translator/editMiscFile.tpl
+%%WWWDIR%%/plugins/generic/translator/errors.tpl
+%%WWWDIR%%/plugins/generic/translator/help.xml
+%%WWWDIR%%/plugins/generic/translator/help/en_US/TranslatorPlugin/toc/000000.xml
+%%WWWDIR%%/plugins/generic/translator/help/en_US/TranslatorPlugin/topic/000000.xml
+%%WWWDIR%%/plugins/generic/translator/index.php
+%%WWWDIR%%/plugins/generic/translator/index.tpl
+%%WWWDIR%%/plugins/generic/translator/locale.tpl
+%%WWWDIR%%/plugins/generic/translator/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/translator/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/translator/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/translator/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/translator/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/translator/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/translator/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/translator/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/translator/localeFile.tpl
+%%WWWDIR%%/plugins/generic/webFeed/README
+%%WWWDIR%%/plugins/generic/webFeed/SettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/webFeed/WebFeedBlockPlugin.inc.php
+%%WWWDIR%%/plugins/generic/webFeed/WebFeedGatewayPlugin.inc.php
+%%WWWDIR%%/plugins/generic/webFeed/WebFeedPlugin.inc.php
+%%WWWDIR%%/plugins/generic/webFeed/index.php
+%%WWWDIR%%/plugins/generic/webFeed/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/generic/webFeed/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/webFeed/templates/atom.tpl
+%%WWWDIR%%/plugins/generic/webFeed/templates/block.tpl
+%%WWWDIR%%/plugins/generic/webFeed/templates/images/atom10_logo.gif
+%%WWWDIR%%/plugins/generic/webFeed/templates/images/rss10_logo.gif
+%%WWWDIR%%/plugins/generic/webFeed/templates/images/rss20_logo.gif
+%%WWWDIR%%/plugins/generic/webFeed/templates/rss.tpl
+%%WWWDIR%%/plugins/generic/webFeed/templates/rss2.tpl
+%%WWWDIR%%/plugins/generic/xmlGalley/ArticleXMLGalley.inc.php
+%%WWWDIR%%/plugins/generic/xmlGalley/ArticleXMLGalleyDAO.inc.php
+%%WWWDIR%%/plugins/generic/xmlGalley/README
+%%WWWDIR%%/plugins/generic/xmlGalley/XMLGalleyPlugin.inc.php
+%%WWWDIR%%/plugins/generic/xmlGalley/XMLGalleySettingsForm.inc.php
+%%WWWDIR%%/plugins/generic/xmlGalley/index.php
+%%WWWDIR%%/plugins/generic/xmlGalley/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/schema.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/settingsForm.tpl
+%%WWWDIR%%/plugins/generic/xmlGalley/transform/nlm/functions.inc.xsl
+%%WWWDIR%%/plugins/generic/xmlGalley/transform/nlm/nlm-fo.xsl
+%%WWWDIR%%/plugins/generic/xmlGalley/transform/nlm/nlm-xhtml.xsl
+%%WWWDIR%%/plugins/generic/xmlGalley/transform/nlm/viewnlm-v2.xsl
+%%WWWDIR%%/plugins/generic/xmlGalley/transform/test.xml
+%%WWWDIR%%/plugins/generic/xmlGalley/transform/test.xsl
+%%WWWDIR%%/plugins/implicitAuth/shibboleth/README-Shibboleth
+%%WWWDIR%%/plugins/implicitAuth/shibboleth/ShibAuthPlugin.inc.php
+%%WWWDIR%%/plugins/implicitAuth/shibboleth/index.php
+%%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/CrossRefExportDom.inc.php
+%%WWWDIR%%/plugins/importexport/crossref/CrossRefExportPlugin.inc.php
+%%WWWDIR%%/plugins/importexport/crossref/README
+%%WWWDIR%%/plugins/importexport/crossref/articles.tpl
+%%WWWDIR%%/plugins/importexport/crossref/index.php
+%%WWWDIR%%/plugins/importexport/crossref/index.tpl
+%%WWWDIR%%/plugins/importexport/crossref/issues.tpl
+%%WWWDIR%%/plugins/importexport/crossref/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/importexport/crossref/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/importexport/doaj/DOAJExportDom.inc.php
+%%WWWDIR%%/plugins/importexport/doaj/DOAJPlugin.inc.php
+%%WWWDIR%%/plugins/importexport/doaj/data.xml
+%%WWWDIR%%/plugins/importexport/doaj/doajArticles.xsd
+%%WWWDIR%%/plugins/importexport/doaj/index.php
+%%WWWDIR%%/plugins/importexport/doaj/index.tpl
+%%WWWDIR%%/plugins/importexport/doaj/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/importexport/doaj/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/importexport/doaj/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/importexport/doaj/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/importexport/doaj/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/importexport/doaj/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/EruditExportDom.inc.php
+%%WWWDIR%%/plugins/importexport/erudit/EruditExportPlugin.inc.php
+%%WWWDIR%%/plugins/importexport/erudit/index.php
+%%WWWDIR%%/plugins/importexport/erudit/index.tpl
+%%WWWDIR%%/plugins/importexport/erudit/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/ru_RU/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/tr_TR/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/importexport/erudit/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/importexport/mets/MetsExportDom.inc.php
+%%WWWDIR%%/plugins/importexport/mets/MetsExportPlugin.inc.php
+%%WWWDIR%%/plugins/importexport/mets/README
+%%WWWDIR%%/plugins/importexport/mets/index.php
+%%WWWDIR%%/plugins/importexport/mets/index.tpl
+%%WWWDIR%%/plugins/importexport/mets/issues.tpl
+%%WWWDIR%%/plugins/importexport/mets/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/importexport/mets/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/importexport/mets/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/importexport/mets/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/importexport/mets/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/importexport/mets/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/importexport/native/NativeExportDom.inc.php
+%%WWWDIR%%/plugins/importexport/native/NativeImportDom.inc.php
+%%WWWDIR%%/plugins/importexport/native/NativeImportExportPlugin.inc.php
+%%WWWDIR%%/plugins/importexport/native/README
+%%WWWDIR%%/plugins/importexport/native/articleContext.tpl
+%%WWWDIR%%/plugins/importexport/native/articles.tpl
+%%WWWDIR%%/plugins/importexport/native/importError.tpl
+%%WWWDIR%%/plugins/importexport/native/importSuccess.tpl
+%%WWWDIR%%/plugins/importexport/native/index.php
+%%WWWDIR%%/plugins/importexport/native/index.tpl
+%%WWWDIR%%/plugins/importexport/native/issues.tpl
+%%WWWDIR%%/plugins/importexport/native/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/ru_RU/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/tr_TR/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/importexport/native/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/importexport/native/native-sample.xml
+%%WWWDIR%%/plugins/importexport/native/native.dtd
+%%WWWDIR%%/plugins/importexport/native/ojs1-to-ojs2.xsl
+%%WWWDIR%%/plugins/importexport/native/sample.xml
+%%WWWDIR%%/plugins/importexport/pubmed/PubMedExportDom.inc.php
+%%WWWDIR%%/plugins/importexport/pubmed/PubMedExportPlugin.inc.php
+%%WWWDIR%%/plugins/importexport/pubmed/README
+%%WWWDIR%%/plugins/importexport/pubmed/articles.tpl
+%%WWWDIR%%/plugins/importexport/pubmed/index.php
+%%WWWDIR%%/plugins/importexport/pubmed/index.tpl
+%%WWWDIR%%/plugins/importexport/pubmed/issues.tpl
+%%WWWDIR%%/plugins/importexport/pubmed/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/importexport/pubmed/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/SampleImportExportPlugin.inc.php
+%%WWWDIR%%/plugins/importexport/sample/index.php
+%%WWWDIR%%/plugins/importexport/sample/issues.tpl
+%%WWWDIR%%/plugins/importexport/sample/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/ru_RU/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/tr_TR/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/importexport/sample/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/importexport/users/README
+%%WWWDIR%%/plugins/importexport/users/UserExportDom.inc.php
+%%WWWDIR%%/plugins/importexport/users/UserImportExportPlugin.inc.php
+%%WWWDIR%%/plugins/importexport/users/UserXMLParser.inc.php
+%%WWWDIR%%/plugins/importexport/users/importUsersConfirm.tpl
+%%WWWDIR%%/plugins/importexport/users/importUsersResults.tpl
+%%WWWDIR%%/plugins/importexport/users/index.php
+%%WWWDIR%%/plugins/importexport/users/index.tpl
+%%WWWDIR%%/plugins/importexport/users/locale/de_DE/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/ru_RU/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/tr_TR/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/vi_VN/locale.xml
+%%WWWDIR%%/plugins/importexport/users/locale/zh_TW/locale.xml
+%%WWWDIR%%/plugins/importexport/users/sample.xml
+%%WWWDIR%%/plugins/importexport/users/users.dtd
+%%WWWDIR%%/plugins/paymethod/manual/ManualPaymentPlugin.inc.php
+%%WWWDIR%%/plugins/paymethod/manual/data.xml
+%%WWWDIR%%/plugins/paymethod/manual/index.php
+%%WWWDIR%%/plugins/paymethod/manual/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/paymethod/manual/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/paymethod/manual/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/paymethod/manual/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/paymethod/manual/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/paymethod/manual/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/paymethod/manual/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/paymethod/manual/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/paymethod/manual/templates/paymentForm.tpl
+%%WWWDIR%%/plugins/paymethod/manual/templates/settingsForm.tpl
+%%WWWDIR%%/plugins/paymethod/paypal/PayPalDAO.inc.php
+%%WWWDIR%%/plugins/paymethod/paypal/PayPalPlugin.inc.php
+%%WWWDIR%%/plugins/paymethod/paypal/data.xml
+%%WWWDIR%%/plugins/paymethod/paypal/images/paypal_cards.png
+%%WWWDIR%%/plugins/paymethod/paypal/images/paypal_medium.png
+%%WWWDIR%%/plugins/paymethod/paypal/images/paypal_small.png
+%%WWWDIR%%/plugins/paymethod/paypal/index.php
+%%WWWDIR%%/plugins/paymethod/paypal/locale/el_GR/locale.xml
+%%WWWDIR%%/plugins/paymethod/paypal/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/paymethod/paypal/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/paymethod/paypal/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/paymethod/paypal/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/paymethod/paypal/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/paymethod/paypal/locale/ja_JP/locale.xml
+%%WWWDIR%%/plugins/paymethod/paypal/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/paymethod/paypal/schema.xml
+%%WWWDIR%%/plugins/paymethod/paypal/templates/paymentForm.tpl
+%%WWWDIR%%/plugins/paymethod/paypal/templates/settingsForm.tpl
+%%WWWDIR%%/plugins/reports/articles/ArticleReportDAO.inc.php
+%%WWWDIR%%/plugins/reports/articles/ArticleReportPlugin.inc.php
+%%WWWDIR%%/plugins/reports/articles/index.php
+%%WWWDIR%%/plugins/reports/articles/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/reports/articles/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/reports/articles/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/reports/articles/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/reports/articles/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/reports/articles/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/themes/classicBlue/ClassicBlueThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/classicBlue/classicBlue.css
+%%WWWDIR%%/plugins/themes/classicBlue/index.php
+%%WWWDIR%%/plugins/themes/classicBrown/ClassicBrownThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/classicBrown/classicBrown.css
+%%WWWDIR%%/plugins/themes/classicBrown/index.php
+%%WWWDIR%%/plugins/themes/classicGreen/ClassicGreenThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/classicGreen/classicGreen.css
+%%WWWDIR%%/plugins/themes/classicGreen/index.php
+%%WWWDIR%%/plugins/themes/classicNavy/ClassicNavyThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/classicNavy/classicNavy.css
+%%WWWDIR%%/plugins/themes/classicNavy/index.php
+%%WWWDIR%%/plugins/themes/classicRed/ClassicRedThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/classicRed/classicRed.css
+%%WWWDIR%%/plugins/themes/classicRed/index.php
+%%WWWDIR%%/plugins/themes/custom/CustomThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/custom/CustomThemeSettingsForm.inc.php
+%%WWWDIR%%/plugins/themes/custom/custom.css
+%%WWWDIR%%/plugins/themes/custom/index.php
+%%WWWDIR%%/plugins/themes/custom/locale/en_US/locale.xml
+%%WWWDIR%%/plugins/themes/custom/locale/es_ES/locale.xml
+%%WWWDIR%%/plugins/themes/custom/locale/fr_CA/locale.xml
+%%WWWDIR%%/plugins/themes/custom/locale/hr_HR/locale.xml
+%%WWWDIR%%/plugins/themes/custom/locale/it_IT/locale.xml
+%%WWWDIR%%/plugins/themes/custom/locale/pt_BR/locale.xml
+%%WWWDIR%%/plugins/themes/custom/picker.css
+%%WWWDIR%%/plugins/themes/custom/picker.js
+%%WWWDIR%%/plugins/themes/custom/settingsForm.tpl
+%%WWWDIR%%/plugins/themes/desert/DesertThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/desert/desert.css
+%%WWWDIR%%/plugins/themes/desert/index.php
+%%WWWDIR%%/plugins/themes/lilac/LilacThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/lilac/index.php
+%%WWWDIR%%/plugins/themes/lilac/lilac.css
+%%WWWDIR%%/plugins/themes/night/NightThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/night/index.php
+%%WWWDIR%%/plugins/themes/night/night.css
+%%WWWDIR%%/plugins/themes/redbar/RedbarThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/redbar/index.php
+%%WWWDIR%%/plugins/themes/redbar/redbar.css
+%%WWWDIR%%/plugins/themes/steel/SteelThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/steel/index.php
+%%WWWDIR%%/plugins/themes/steel/steel.css
+%%WWWDIR%%/plugins/themes/uncommon/UncommonThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/uncommon/index.php
+%%WWWDIR%%/plugins/themes/uncommon/uncommon.css
+%%WWWDIR%%/plugins/themes/vanilla/VanillaThemePlugin.inc.php
+%%WWWDIR%%/plugins/themes/vanilla/index.php
+%%WWWDIR%%/plugins/themes/vanilla/vanilla.css
+%%WWWDIR%%/public/index.html
+%%WWWDIR%%/registry/botAgents.txt
+%%WWWDIR%%/registry/inlineTypes.txt
+%%WWWDIR%%/registry/journalSettings.xml
+%%WWWDIR%%/registry/locale/de_DE/countries.xml
+%%WWWDIR%%/registry/locale/el_GR/countries.xml
+%%WWWDIR%%/registry/locale/en_US/countries.xml
+%%WWWDIR%%/registry/locale/es_ES/countries.xml
+%%WWWDIR%%/registry/locale/fr_CA/countries.xml
+%%WWWDIR%%/registry/locale/hr_HR/countries.xml
+%%WWWDIR%%/registry/locale/it_IT/countries.xml
+%%WWWDIR%%/registry/locale/ja_JP/countries.xml
+%%WWWDIR%%/registry/locale/no_NO/countries.xml
+%%WWWDIR%%/registry/locale/pt_BR/countries.xml
+%%WWWDIR%%/registry/locale/ru_RU/countries.xml
+%%WWWDIR%%/registry/locale/tr_TR/countries.xml
+%%WWWDIR%%/registry/locale/vi_VN/countries.xml
+%%WWWDIR%%/registry/locales.xml
+%%WWWDIR%%/registry/scheduledTasks.xml
+%%WWWDIR%%/registry/stopwords.txt
+%%WWWDIR%%/rt/en_US/Agriculture.xml
+%%WWWDIR%%/rt/en_US/Art_Architecture.xml
+%%WWWDIR%%/rt/en_US/Astrophysics.xml
+%%WWWDIR%%/rt/en_US/Biology.xml
+%%WWWDIR%%/rt/en_US/Business.xml
+%%WWWDIR%%/rt/en_US/Chemistry.xml
+%%WWWDIR%%/rt/en_US/Cognitive_Science.xml
+%%WWWDIR%%/rt/en_US/Computer_Science.xml
+%%WWWDIR%%/rt/en_US/Economics.xml
+%%WWWDIR%%/rt/en_US/Education.xml
+%%WWWDIR%%/rt/en_US/Environment.xml
+%%WWWDIR%%/rt/en_US/General_Science.xml
+%%WWWDIR%%/rt/en_US/Generic.xml
+%%WWWDIR%%/rt/en_US/Humanities.xml
+%%WWWDIR%%/rt/en_US/Life_Sciences.xml
+%%WWWDIR%%/rt/en_US/Mathematics.xml
+%%WWWDIR%%/rt/en_US/Music.xml
+%%WWWDIR%%/rt/en_US/Physics.xml
+%%WWWDIR%%/rt/en_US/Social_Sciences.xml
+%%WWWDIR%%/rt/rt-version.dtd
+%%WWWDIR%%/styles/articleView.css
+%%WWWDIR%%/styles/bothSidebars.css
+%%WWWDIR%%/styles/comments.css
+%%WWWDIR%%/styles/common.css
+%%WWWDIR%%/styles/fontLarge.css
+%%WWWDIR%%/styles/fontMedium.css
+%%WWWDIR%%/styles/fontSmall.css
+%%WWWDIR%%/styles/help.css
+%%WWWDIR%%/styles/leftSidebar.css
+%%WWWDIR%%/styles/rightSidebar.css
+%%WWWDIR%%/styles/rt.css
+%%WWWDIR%%/styles/sidebar.css
+%%WWWDIR%%/templates/about/aboutThisPublishingSystem.tpl
+%%WWWDIR%%/templates/about/contact.tpl
+%%WWWDIR%%/templates/about/displayMembership.tpl
+%%WWWDIR%%/templates/about/editorialPolicies.tpl
+%%WWWDIR%%/templates/about/editorialTeam.tpl
+%%WWWDIR%%/templates/about/editorialTeamBio.tpl
+%%WWWDIR%%/templates/about/editorialTeamBoard.tpl
+%%WWWDIR%%/templates/about/index.tpl
+%%WWWDIR%%/templates/about/journalSponsorship.tpl
+%%WWWDIR%%/templates/about/memberships.tpl
+%%WWWDIR%%/templates/about/site.tpl
+%%WWWDIR%%/templates/about/siteMap.tpl
+%%WWWDIR%%/templates/about/statistics.tpl
+%%WWWDIR%%/templates/about/submissions.tpl
+%%WWWDIR%%/templates/about/subscriptions.tpl
+%%WWWDIR%%/templates/admin/auth/sourceSettings.tpl
+%%WWWDIR%%/templates/admin/auth/sources.tpl
+%%WWWDIR%%/templates/admin/importComplete.tpl
+%%WWWDIR%%/templates/admin/importOJS1.tpl
+%%WWWDIR%%/templates/admin/index.tpl
+%%WWWDIR%%/templates/admin/journalSettings.tpl
+%%WWWDIR%%/templates/admin/journals.tpl
+%%WWWDIR%%/templates/admin/languageDownloadErrors.tpl
+%%WWWDIR%%/templates/admin/languages.tpl
+%%WWWDIR%%/templates/admin/selectMergeUser.tpl
+%%WWWDIR%%/templates/admin/settings.tpl
+%%WWWDIR%%/templates/admin/systemConfig.tpl
+%%WWWDIR%%/templates/admin/systemConfigUpdated.tpl
+%%WWWDIR%%/templates/admin/systemInfo.tpl
+%%WWWDIR%%/templates/announcement/index.tpl
+%%WWWDIR%%/templates/announcement/list.tpl
+%%WWWDIR%%/templates/announcement/view.tpl
+%%WWWDIR%%/templates/article/article.tpl
+%%WWWDIR%%/templates/article/dublincore.tpl
+%%WWWDIR%%/templates/article/googlescholar.tpl
+%%WWWDIR%%/templates/article/interstitial.tpl
+%%WWWDIR%%/templates/article/pdfInterstitial.tpl
+%%WWWDIR%%/templates/article/view.tpl
+%%WWWDIR%%/templates/author/active.tpl
+%%WWWDIR%%/templates/author/completed.tpl
+%%WWWDIR%%/templates/author/index.tpl
+%%WWWDIR%%/templates/author/submission.tpl
+%%WWWDIR%%/templates/author/submission/authorFees.tpl
+%%WWWDIR%%/templates/author/submission/copyedit.tpl
+%%WWWDIR%%/templates/author/submission/editorDecision.tpl
+%%WWWDIR%%/templates/author/submission/layout.tpl
+%%WWWDIR%%/templates/author/submission/management.tpl
+%%WWWDIR%%/templates/author/submission/metadata.tpl
+%%WWWDIR%%/templates/author/submission/peerReview.tpl
+%%WWWDIR%%/templates/author/submission/proofread.tpl
+%%WWWDIR%%/templates/author/submission/status.tpl
+%%WWWDIR%%/templates/author/submission/summary.tpl
+%%WWWDIR%%/templates/author/submissionEditing.tpl
+%%WWWDIR%%/templates/author/submissionReview.tpl
+%%WWWDIR%%/templates/author/submit/authorFees.tpl
+%%WWWDIR%%/templates/author/submit/complete.tpl
+%%WWWDIR%%/templates/author/submit/step1.tpl
+%%WWWDIR%%/templates/author/submit/step2.tpl
+%%WWWDIR%%/templates/author/submit/step3.tpl
+%%WWWDIR%%/templates/author/submit/step4.tpl
+%%WWWDIR%%/templates/author/submit/step5.tpl
+%%WWWDIR%%/templates/author/submit/submitHeader.tpl
+%%WWWDIR%%/templates/author/submit/suppFile.tpl
+%%WWWDIR%%/templates/comment/comment.tpl
+%%WWWDIR%%/templates/comment/comments.tpl
+%%WWWDIR%%/templates/common/error.tpl
+%%WWWDIR%%/templates/common/footer.tpl
+%%WWWDIR%%/templates/common/formErrors.tpl
+%%WWWDIR%%/templates/common/header.tpl
+%%WWWDIR%%/templates/common/message.tpl
+%%WWWDIR%%/templates/common/progress.tpl
+%%WWWDIR%%/templates/common/sizer.tpl
+%%WWWDIR%%/templates/copyeditor/active.tpl
+%%WWWDIR%%/templates/copyeditor/completed.tpl
+%%WWWDIR%%/templates/copyeditor/index.tpl
+%%WWWDIR%%/templates/copyeditor/submission.tpl
+%%WWWDIR%%/templates/copyeditor/submission/copyedit.tpl
+%%WWWDIR%%/templates/copyeditor/submission/layout.tpl
+%%WWWDIR%%/templates/copyeditor/submission/summary.tpl
+%%WWWDIR%%/templates/editor/index.tpl
+%%WWWDIR%%/templates/editor/issues/backIssues.tpl
+%%WWWDIR%%/templates/editor/issues/createIssue.tpl
+%%WWWDIR%%/templates/editor/issues/futureIssues.tpl
+%%WWWDIR%%/templates/editor/issues/issueData.tpl
+%%WWWDIR%%/templates/editor/issues/issueToc.tpl
+%%WWWDIR%%/templates/editor/notifyUsers.tpl
+%%WWWDIR%%/templates/editor/notifyUsersEmail.tpl
+%%WWWDIR%%/templates/editor/selectSectionEditor.tpl
+%%WWWDIR%%/templates/editor/submissions.tpl
+%%WWWDIR%%/templates/editor/submissionsArchives.tpl
+%%WWWDIR%%/templates/editor/submissionsInEditing.tpl
+%%WWWDIR%%/templates/editor/submissionsInReview.tpl
+%%WWWDIR%%/templates/editor/submissionsUnassigned.tpl
+%%WWWDIR%%/templates/email/email.tpl
+%%WWWDIR%%/templates/gateway/lockss.tpl
+%%WWWDIR%%/templates/help/footer.tpl
+%%WWWDIR%%/templates/help/header.tpl
+%%WWWDIR%%/templates/help/helpToc.tpl
+%%WWWDIR%%/templates/help/searchResults.tpl
+%%WWWDIR%%/templates/help/toc.tpl
+%%WWWDIR%%/templates/help/topic.tpl
+%%WWWDIR%%/templates/help/view.tpl
+%%WWWDIR%%/templates/images/help.gif
+%%WWWDIR%%/templates/images/icons/checked.gif
+%%WWWDIR%%/templates/images/icons/comment.gif
+%%WWWDIR%%/templates/images/icons/comment_disabled.gif
+%%WWWDIR%%/templates/images/icons/delete.gif
+%%WWWDIR%%/templates/images/icons/delete_disabled.gif
+%%WWWDIR%%/templates/images/icons/edit.gif
+%%WWWDIR%%/templates/images/icons/edit_disabled.gif
+%%WWWDIR%%/templates/images/icons/folder.gif
+%%WWWDIR%%/templates/images/icons/font_large.gif
+%%WWWDIR%%/templates/images/icons/font_medium.gif
+%%WWWDIR%%/templates/images/icons/font_small.gif
+%%WWWDIR%%/templates/images/icons/fulltext_open_large.gif
+%%WWWDIR%%/templates/images/icons/fulltext_open_medium.gif
+%%WWWDIR%%/templates/images/icons/fulltext_open_small.gif
+%%WWWDIR%%/templates/images/icons/fulltext_restricted_large.gif
+%%WWWDIR%%/templates/images/icons/fulltext_restricted_medium.gif
+%%WWWDIR%%/templates/images/icons/fulltext_restricted_small.gif
+%%WWWDIR%%/templates/images/icons/letter.gif
+%%WWWDIR%%/templates/images/icons/mail.gif
+%%WWWDIR%%/templates/images/icons/mail_disabled.gif
+%%WWWDIR%%/templates/images/icons/unchecked.gif
+%%WWWDIR%%/templates/images/icons/view.gif
+%%WWWDIR%%/templates/images/info.gif
+%%WWWDIR%%/templates/images/letter.gif
+%%WWWDIR%%/templates/images/lockss.gif
+%%WWWDIR%%/templates/images/mail.gif
+%%WWWDIR%%/templates/images/menulist.gif
+%%WWWDIR%%/templates/images/pkp.gif
+%%WWWDIR%%/templates/images/progbar.gif
+%%WWWDIR%%/templates/images/progbg.gif
+%%WWWDIR%%/templates/index/journal.tpl
+%%WWWDIR%%/templates/index/site.tpl
+%%WWWDIR%%/templates/information/information.tpl
+%%WWWDIR%%/templates/install/install.tpl
+%%WWWDIR%%/templates/install/installComplete.tpl
+%%WWWDIR%%/templates/install/upgrade.tpl
+%%WWWDIR%%/templates/install/upgradeComplete.tpl
+%%WWWDIR%%/templates/issue/archive.tpl
+%%WWWDIR%%/templates/issue/issue.tpl
+%%WWWDIR%%/templates/issue/view.tpl
+%%WWWDIR%%/templates/issue/viewPage.tpl
+%%WWWDIR%%/templates/layoutEditor/active.tpl
+%%WWWDIR%%/templates/layoutEditor/completed.tpl
+%%WWWDIR%%/templates/layoutEditor/futureIssues.tpl
+%%WWWDIR%%/templates/layoutEditor/index.tpl
+%%WWWDIR%%/templates/layoutEditor/submission.tpl
+%%WWWDIR%%/templates/layoutEditor/submission/layout.tpl
+%%WWWDIR%%/templates/layoutEditor/submission/proofread.tpl
+%%WWWDIR%%/templates/layoutEditor/submission/scheduling.tpl
+%%WWWDIR%%/templates/layoutEditor/submission/summary.tpl
+%%WWWDIR%%/templates/layoutEditor/submissions.tpl
+%%WWWDIR%%/templates/manager/announcement/announcementForm.tpl
+%%WWWDIR%%/templates/manager/announcement/announcementTypeForm.tpl
+%%WWWDIR%%/templates/manager/announcement/announcementTypes.tpl
+%%WWWDIR%%/templates/manager/announcement/announcements.tpl
+%%WWWDIR%%/templates/manager/emails/emailTemplateForm.tpl
+%%WWWDIR%%/templates/manager/emails/emails.tpl
+%%WWWDIR%%/templates/manager/files/index.tpl
+%%WWWDIR%%/templates/manager/groups/groupForm.tpl
+%%WWWDIR%%/templates/manager/groups/groups.tpl
+%%WWWDIR%%/templates/manager/groups/memberships.tpl
+%%WWWDIR%%/templates/manager/groups/selectUser.tpl
+%%WWWDIR%%/templates/manager/importexport/plugins.tpl
+%%WWWDIR%%/templates/manager/index.tpl
+%%WWWDIR%%/templates/manager/languageSettings.tpl
+%%WWWDIR%%/templates/manager/payments/payMethodSettingsForm.tpl
+%%WWWDIR%%/templates/manager/payments/paymentSettings.tpl
+%%WWWDIR%%/templates/manager/payments/viewPayment.tpl
+%%WWWDIR%%/templates/manager/payments/viewPayments.tpl
+%%WWWDIR%%/templates/manager/people/email.tpl
+%%WWWDIR%%/templates/manager/people/enrollSync.tpl
+%%WWWDIR%%/templates/manager/people/enrollment.tpl
+%%WWWDIR%%/templates/manager/people/searchUsers.tpl
+%%WWWDIR%%/templates/manager/people/selectMergeUser.tpl
+%%WWWDIR%%/templates/manager/people/userProfile.tpl
+%%WWWDIR%%/templates/manager/people/userProfileForm.tpl
+%%WWWDIR%%/templates/manager/plugins/plugins.tpl
+%%WWWDIR%%/templates/manager/reviewForms/previewReviewForm.tpl
+%%WWWDIR%%/templates/manager/reviewForms/reviewFormElementForm.tpl
+%%WWWDIR%%/templates/manager/reviewForms/reviewFormElements.tpl
+%%WWWDIR%%/templates/manager/reviewForms/reviewFormForm.tpl
+%%WWWDIR%%/templates/manager/reviewForms/reviewForms.tpl
+%%WWWDIR%%/templates/manager/sections/sectionForm.tpl
+%%WWWDIR%%/templates/manager/sections/sections.tpl
+%%WWWDIR%%/templates/manager/setup/index.tpl
+%%WWWDIR%%/templates/manager/setup/settingsSaved.tpl
+%%WWWDIR%%/templates/manager/setup/setupHeader.tpl
+%%WWWDIR%%/templates/manager/setup/step1.tpl
+%%WWWDIR%%/templates/manager/setup/step2.tpl
+%%WWWDIR%%/templates/manager/setup/step3.tpl
+%%WWWDIR%%/templates/manager/setup/step4.tpl
+%%WWWDIR%%/templates/manager/setup/step5.tpl
+%%WWWDIR%%/templates/manager/statistics/index.tpl
+%%WWWDIR%%/templates/manager/statistics/reportGenerator.tpl
+%%WWWDIR%%/templates/manager/statistics/statistics.tpl
+%%WWWDIR%%/templates/proofreader/active.tpl
+%%WWWDIR%%/templates/proofreader/completed.tpl
+%%WWWDIR%%/templates/proofreader/index.tpl
+%%WWWDIR%%/templates/proofreader/submission.tpl
+%%WWWDIR%%/templates/proofreader/submission/layout.tpl
+%%WWWDIR%%/templates/proofreader/submission/proofread.tpl
+%%WWWDIR%%/templates/proofreader/submission/scheduling.tpl
+%%WWWDIR%%/templates/proofreader/submission/summary.tpl
+%%WWWDIR%%/templates/reviewer/active.tpl
+%%WWWDIR%%/templates/reviewer/completed.tpl
+%%WWWDIR%%/templates/reviewer/index.tpl
+%%WWWDIR%%/templates/reviewer/submission.tpl
+%%WWWDIR%%/templates/rt/bio.tpl
+%%WWWDIR%%/templates/rt/captureCite.tpl
+%%WWWDIR%%/templates/rt/context.tpl
+%%WWWDIR%%/templates/rt/email.tpl
+%%WWWDIR%%/templates/rt/findingReferences.tpl
+%%WWWDIR%%/templates/rt/footer.tpl
+%%WWWDIR%%/templates/rt/header.tpl
+%%WWWDIR%%/templates/rt/index.html
+%%WWWDIR%%/templates/rt/metadata.tpl
+%%WWWDIR%%/templates/rt/printerFriendly.tpl
+%%WWWDIR%%/templates/rt/rt.tpl
+%%WWWDIR%%/templates/rt/sent.tpl
+%%WWWDIR%%/templates/rt/suppFileView.tpl
+%%WWWDIR%%/templates/rt/suppFiles.tpl
+%%WWWDIR%%/templates/rtadmin/context.tpl
+%%WWWDIR%%/templates/rtadmin/contexts.tpl
+%%WWWDIR%%/templates/rtadmin/exportXml.tpl
+%%WWWDIR%%/templates/rtadmin/index.tpl
+%%WWWDIR%%/templates/rtadmin/journals.tpl
+%%WWWDIR%%/templates/rtadmin/search.tpl
+%%WWWDIR%%/templates/rtadmin/searches.tpl
+%%WWWDIR%%/templates/rtadmin/settings.tpl
+%%WWWDIR%%/templates/rtadmin/validate.tpl
+%%WWWDIR%%/templates/rtadmin/version.tpl
+%%WWWDIR%%/templates/rtadmin/versions.tpl
+%%WWWDIR%%/templates/search/advancedSearch.tpl
+%%WWWDIR%%/templates/search/authorDetails.tpl
+%%WWWDIR%%/templates/search/authorIndex.tpl
+%%WWWDIR%%/templates/search/searchResults.tpl
+%%WWWDIR%%/templates/search/titleIndex.tpl
+%%WWWDIR%%/templates/sectionEditor/createReviewerForm.tpl
+%%WWWDIR%%/templates/sectionEditor/index.tpl
+%%WWWDIR%%/templates/sectionEditor/previewReviewForm.tpl
+%%WWWDIR%%/templates/sectionEditor/reviewerRecommendation.tpl
+%%WWWDIR%%/templates/sectionEditor/searchUsers.tpl
+%%WWWDIR%%/templates/sectionEditor/selectReviewForm.tpl
+%%WWWDIR%%/templates/sectionEditor/selectReviewer.tpl
+%%WWWDIR%%/templates/sectionEditor/selectUser.tpl
+%%WWWDIR%%/templates/sectionEditor/setDueDate.tpl
+%%WWWDIR%%/templates/sectionEditor/submission.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/authorFees.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/copyedit.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/editorDecision.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/editors.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/layout.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/management.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/metadata.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/peerReview.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/proofread.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/rounds.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/scheduling.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/status.tpl
+%%WWWDIR%%/templates/sectionEditor/submission/summary.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionEditing.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionEmailLog.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionEmailLogEntry.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionEventLog.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionEventLogEntry.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionHistory.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionNotes.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionRegrets.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionReview.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionsArchives.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionsInEditing.tpl
+%%WWWDIR%%/templates/sectionEditor/submissionsInReview.tpl
+%%WWWDIR%%/templates/sectionEditor/userProfile.tpl
+%%WWWDIR%%/templates/submission/comment/comment.tpl
+%%WWWDIR%%/templates/submission/comment/commentEmail.tpl
+%%WWWDIR%%/templates/submission/comment/editComment.tpl
+%%WWWDIR%%/templates/submission/comment/editorDecisionComment.tpl
+%%WWWDIR%%/templates/submission/comment/editorDecisionEmail.tpl
+%%WWWDIR%%/templates/submission/comment/footer.tpl
+%%WWWDIR%%/templates/submission/comment/header.tpl
+%%WWWDIR%%/templates/submission/comment/peerReviewComment.tpl
+%%WWWDIR%%/templates/submission/instructions.tpl
+%%WWWDIR%%/templates/submission/layout/galleyForm.tpl
+%%WWWDIR%%/templates/submission/layout/galleyView.tpl
+%%WWWDIR%%/templates/submission/layout/proofGalley.tpl
+%%WWWDIR%%/templates/submission/layout/proofGalleyHTML.tpl
+%%WWWDIR%%/templates/submission/layout/proofGalleyTop.tpl
+%%WWWDIR%%/templates/submission/metadata/metadataEdit.tpl
+%%WWWDIR%%/templates/submission/metadata/metadataView.tpl
+%%WWWDIR%%/templates/submission/reviewForm/reviewFormResponse.tpl
+%%WWWDIR%%/templates/submission/suppFile/suppFile.tpl
+%%WWWDIR%%/templates/submission/suppFile/suppFileView.tpl
+%%WWWDIR%%/templates/subscription/openAccessNotifyEmail.tpl
+%%WWWDIR%%/templates/subscription/subscriptionForm.tpl
+%%WWWDIR%%/templates/subscription/subscriptionPolicyForm.tpl
+%%WWWDIR%%/templates/subscription/subscriptionTypeForm.tpl
+%%WWWDIR%%/templates/subscription/subscriptionTypes.tpl
+%%WWWDIR%%/templates/subscription/subscriptions.tpl
+%%WWWDIR%%/templates/subscription/users.tpl
+%%WWWDIR%%/templates/user/changePassword.tpl
+%%WWWDIR%%/templates/user/index.tpl
+%%WWWDIR%%/templates/user/login.tpl
+%%WWWDIR%%/templates/user/loginChangePassword.tpl
+%%WWWDIR%%/templates/user/lostPassword.tpl
+%%WWWDIR%%/templates/user/profile.tpl
+%%WWWDIR%%/templates/user/publicProfile.tpl
+%%WWWDIR%%/templates/user/register.tpl
+%%WWWDIR%%/templates/user/registerSite.tpl
+%%WWWDIR%%/tools/dbXMLtoSQL.php
+%%WWWDIR%%/tools/importExport.php
+%%WWWDIR%%/tools/includes/cliTool.inc.php
+%%WWWDIR%%/tools/install.php
+%%WWWDIR%%/tools/localeCheck.php
+%%WWWDIR%%/tools/mergeUsers.php
+%%WWWDIR%%/tools/migrate.php
+%%WWWDIR%%/tools/poToCountries.php
+%%WWWDIR%%/tools/poToCurrencies.php
+%%WWWDIR%%/tools/preCompile.php
+%%WWWDIR%%/tools/rebuildSearchIndex.php
+%%WWWDIR%%/tools/runScheduledTasks.php
+%%WWWDIR%%/tools/upgrade.php
+@dirrm %%WWWDIR%%/tools/includes
+@dirrm %%WWWDIR%%/tools
+@dirrm %%WWWDIR%%/templates/user
+@dirrm %%WWWDIR%%/templates/subscription
+@dirrm %%WWWDIR%%/templates/submission/suppFile
+@dirrm %%WWWDIR%%/templates/submission/reviewForm
+@dirrm %%WWWDIR%%/templates/submission/metadata
+@dirrm %%WWWDIR%%/templates/submission/layout
+@dirrm %%WWWDIR%%/templates/submission/comment
+@dirrm %%WWWDIR%%/templates/submission
+@dirrm %%WWWDIR%%/templates/sectionEditor/submission
+@dirrm %%WWWDIR%%/templates/sectionEditor
+@dirrm %%WWWDIR%%/templates/search
+@dirrm %%WWWDIR%%/templates/rtadmin
+@dirrm %%WWWDIR%%/templates/rt
+@dirrm %%WWWDIR%%/templates/reviewer
+@dirrm %%WWWDIR%%/templates/proofreader/submission
+@dirrm %%WWWDIR%%/templates/proofreader
+@dirrm %%WWWDIR%%/templates/manager/statistics
+@dirrm %%WWWDIR%%/templates/manager/setup
+@dirrm %%WWWDIR%%/templates/manager/sections
+@dirrm %%WWWDIR%%/templates/manager/reviewForms
+@dirrm %%WWWDIR%%/templates/manager/plugins
+@dirrm %%WWWDIR%%/templates/manager/people
+@dirrm %%WWWDIR%%/templates/manager/payments
+@dirrm %%WWWDIR%%/templates/manager/importexport
+@dirrm %%WWWDIR%%/templates/manager/groups
+@dirrm %%WWWDIR%%/templates/manager/files
+@dirrm %%WWWDIR%%/templates/manager/emails
+@dirrm %%WWWDIR%%/templates/manager/announcement
+@dirrm %%WWWDIR%%/templates/manager
+@dirrm %%WWWDIR%%/templates/layoutEditor/submission
+@dirrm %%WWWDIR%%/templates/layoutEditor
+@dirrm %%WWWDIR%%/templates/issue
+@dirrm %%WWWDIR%%/templates/install
+@dirrm %%WWWDIR%%/templates/information
+@dirrm %%WWWDIR%%/templates/index
+@dirrm %%WWWDIR%%/templates/images/icons
+@dirrm %%WWWDIR%%/templates/images
+@dirrm %%WWWDIR%%/templates/help
+@dirrm %%WWWDIR%%/templates/gateway
+@dirrm %%WWWDIR%%/templates/email
+@dirrm %%WWWDIR%%/templates/editor/issues
+@dirrm %%WWWDIR%%/templates/editor
+@dirrm %%WWWDIR%%/templates/copyeditor/submission
+@dirrm %%WWWDIR%%/templates/copyeditor
+@dirrm %%WWWDIR%%/templates/common
+@dirrm %%WWWDIR%%/templates/comment
+@dirrm %%WWWDIR%%/templates/author/submit
+@dirrm %%WWWDIR%%/templates/author/submission
+@dirrm %%WWWDIR%%/templates/author
+@dirrm %%WWWDIR%%/templates/article
+@dirrm %%WWWDIR%%/templates/announcement
+@dirrm %%WWWDIR%%/templates/admin/auth
+@dirrm %%WWWDIR%%/templates/admin
+@dirrm %%WWWDIR%%/templates/about
+@dirrm %%WWWDIR%%/templates
+@dirrm %%WWWDIR%%/styles
+@dirrm %%WWWDIR%%/rt/en_US
+@dirrm %%WWWDIR%%/rt
+@dirrm %%WWWDIR%%/registry/locale/vi_VN
+@dirrm %%WWWDIR%%/registry/locale/tr_TR
+@dirrm %%WWWDIR%%/registry/locale/ru_RU
+@dirrm %%WWWDIR%%/registry/locale/pt_BR
+@dirrm %%WWWDIR%%/registry/locale/no_NO
+@dirrm %%WWWDIR%%/registry/locale/ja_JP
+@dirrm %%WWWDIR%%/registry/locale/it_IT
+@dirrm %%WWWDIR%%/registry/locale/hr_HR
+@dirrm %%WWWDIR%%/registry/locale/fr_CA
+@dirrm %%WWWDIR%%/registry/locale/es_ES
+@dirrm %%WWWDIR%%/registry/locale/en_US
+@dirrm %%WWWDIR%%/registry/locale/el_GR
+@dirrm %%WWWDIR%%/registry/locale/de_DE
+@dirrm %%WWWDIR%%/registry/locale
+@dirrm %%WWWDIR%%/registry
+@dirrm %%WWWDIR%%/public
+@dirrm %%WWWDIR%%/plugins/themes/vanilla
+@dirrm %%WWWDIR%%/plugins/themes/uncommon
+@dirrm %%WWWDIR%%/plugins/themes/steel
+@dirrm %%WWWDIR%%/plugins/themes/redbar
+@dirrm %%WWWDIR%%/plugins/themes/night
+@dirrm %%WWWDIR%%/plugins/themes/lilac
+@dirrm %%WWWDIR%%/plugins/themes/desert
+@dirrm %%WWWDIR%%/plugins/themes/custom/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/themes/custom/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/themes/custom/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/themes/custom/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/themes/custom/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/themes/custom/locale/en_US
+@dirrm %%WWWDIR%%/plugins/themes/custom/locale
+@dirrm %%WWWDIR%%/plugins/themes/custom
+@dirrm %%WWWDIR%%/plugins/themes/classicRed
+@dirrm %%WWWDIR%%/plugins/themes/classicNavy
+@dirrm %%WWWDIR%%/plugins/themes/classicGreen
+@dirrm %%WWWDIR%%/plugins/themes/classicBrown
+@dirrm %%WWWDIR%%/plugins/themes/classicBlue
+@dirrm %%WWWDIR%%/plugins/themes
+@dirrm %%WWWDIR%%/plugins/reports/articles/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/reports/articles/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/reports/articles/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/reports/articles/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/reports/articles/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/reports/articles/locale/en_US
+@dirrm %%WWWDIR%%/plugins/reports/articles/locale
+@dirrm %%WWWDIR%%/plugins/reports/articles
+@dirrm %%WWWDIR%%/plugins/reports
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/templates
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/locale/en_US
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/locale
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal/images
+@dirrm %%WWWDIR%%/plugins/paymethod/paypal
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/templates
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/locale/en_US
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/paymethod/manual/locale
+@dirrm %%WWWDIR%%/plugins/paymethod/manual
+@dirrm %%WWWDIR%%/plugins/paymethod
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/tr_TR
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/ru_RU
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/en_US
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/importexport/users/locale
+@dirrm %%WWWDIR%%/plugins/importexport/users
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/tr_TR
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/ru_RU
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/en_US
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/importexport/sample/locale
+@dirrm %%WWWDIR%%/plugins/importexport/sample
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/en_US
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed/locale
+@dirrm %%WWWDIR%%/plugins/importexport/pubmed
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/tr_TR
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/ru_RU
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/en_US
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/importexport/native/locale
+@dirrm %%WWWDIR%%/plugins/importexport/native
+@dirrm %%WWWDIR%%/plugins/importexport/mets/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/importexport/mets/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/importexport/mets/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/importexport/mets/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/importexport/mets/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/importexport/mets/locale/en_US
+@dirrm %%WWWDIR%%/plugins/importexport/mets/locale
+@dirrm %%WWWDIR%%/plugins/importexport/mets
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/tr_TR
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/ru_RU
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/en_US
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/importexport/erudit/locale
+@dirrm %%WWWDIR%%/plugins/importexport/erudit
+@dirrm %%WWWDIR%%/plugins/importexport/doaj/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/importexport/doaj/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/importexport/doaj/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/importexport/doaj/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/importexport/doaj/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/importexport/doaj/locale/en_US
+@dirrm %%WWWDIR%%/plugins/importexport/doaj/locale
+@dirrm %%WWWDIR%%/plugins/importexport/doaj
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/en_US
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/importexport/crossref/locale
+@dirrm %%WWWDIR%%/plugins/importexport/crossref
+@dirrm %%WWWDIR%%/plugins/importexport
+@dirrm %%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/implicitAuth/shibboleth/locale/en_US
+@dirrm %%WWWDIR%%/plugins/implicitAuth/shibboleth/locale
+@dirrm %%WWWDIR%%/plugins/implicitAuth/shibboleth
+@dirrm %%WWWDIR%%/plugins/implicitAuth
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/transform/nlm
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/transform
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley/locale
+@dirrm %%WWWDIR%%/plugins/generic/xmlGalley
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/templates/images
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/templates
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/generic/webFeed/locale
+@dirrm %%WWWDIR%%/plugins/generic/webFeed
+@dirrm %%WWWDIR%%/plugins/generic/translator/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/translator/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/translator/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/translator/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/translator/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/translator/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/translator/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/translator/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/translator/locale
+@dirrm %%WWWDIR%%/plugins/generic/translator/help/en_US/TranslatorPlugin/topic
+@dirrm %%WWWDIR%%/plugins/generic/translator/help/en_US/TranslatorPlugin/toc
+@dirrm %%WWWDIR%%/plugins/generic/translator/help/en_US/TranslatorPlugin
+@dirrm %%WWWDIR%%/plugins/generic/translator/help/en_US
+@dirrm %%WWWDIR%%/plugins/generic/translator/help
+@dirrm %%WWWDIR%%/plugins/generic/translator
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/ru_RU
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/generic/tinymce/locale
+@dirrm %%WWWDIR%%/plugins/generic/tinymce
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed/templates/images
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed/templates
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed/locale
+@dirrm %%WWWDIR%%/plugins/generic/thesisFeed
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/generic/thesis/locale
+@dirrm %%WWWDIR%%/plugins/generic/thesis
+@dirrm %%WWWDIR%%/plugins/generic/sehl/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/sehl/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/sehl/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/sehl/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/sehl/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/sehl/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/sehl/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/sehl/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/sehl/locale
+@dirrm %%WWWDIR%%/plugins/generic/sehl
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners/locale
+@dirrm %%WWWDIR%%/plugins/generic/roundedCorners
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites/locale
+@dirrm %%WWWDIR%%/plugins/generic/phpMyVisites
+@dirrm %%WWWDIR%%/plugins/generic/openAds/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/openAds/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/openAds/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/openAds/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/openAds/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/openAds/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/openAds/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/openAds/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/openAds/locale
+@dirrm %%WWWDIR%%/plugins/generic/openAds
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics/locale
+@dirrm %%WWWDIR%%/plugins/generic/googleAnalytics
+@dirrm %%WWWDIR%%/plugins/generic/customLocale/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/customLocale/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/customLocale/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/customLocale/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/customLocale/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/customLocale/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/customLocale/locale
+@dirrm %%WWWDIR%%/plugins/generic/customLocale
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/generic/counter/locale
+@dirrm %%WWWDIR%%/plugins/generic/counter
+@dirrm %%WWWDIR%%/plugins/generic/coins/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/coins/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/coins/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/coins/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/coins/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/coins/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/coins/locale
+@dirrm %%WWWDIR%%/plugins/generic/coins
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS/locale
+@dirrm %%WWWDIR%%/plugins/generic/cmsRSS
+@dirrm %%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins/heading/images
+@dirrm %%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins/heading
+@dirrm %%WWWDIR%%/plugins/generic/cms/tinyMCEPlugins
+@dirrm %%WWWDIR%%/plugins/generic/cms/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/cms/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/generic/cms/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/cms/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/cms/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/cms/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/cms/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/cms/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/generic/cms/locale
+@dirrm %%WWWDIR%%/plugins/generic/cms
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed/templates/images
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed/templates
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed/locale/en_US
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed/locale
+@dirrm %%WWWDIR%%/plugins/generic/announcementFeed
+@dirrm %%WWWDIR%%/plugins/generic
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/tr_TR
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/en_US
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/gateways/resolver/locale
+@dirrm %%WWWDIR%%/plugins/gateways/resolver
+@dirrm %%WWWDIR%%/plugins/gateways/metsGateway/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/gateways/metsGateway/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/gateways/metsGateway/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/gateways/metsGateway/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/gateways/metsGateway/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/gateways/metsGateway/locale/en_US
+@dirrm %%WWWDIR%%/plugins/gateways/metsGateway/locale
+@dirrm %%WWWDIR%%/plugins/gateways/metsGateway
+@dirrm %%WWWDIR%%/plugins/gateways
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/turabian
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/refWorks
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/refMan
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/proCite
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/mla
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/endNote
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/cbe
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/bibtex
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/apa
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt/locale/en_US
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt/locale
+@dirrm %%WWWDIR%%/plugins/citationFormats/abnt
+@dirrm %%WWWDIR%%/plugins/citationFormats
+@dirrm %%WWWDIR%%/plugins/blocks/user/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/user/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/blocks/user/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/user/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/user/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/user/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/user/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/user/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/blocks/user/locale
+@dirrm %%WWWDIR%%/plugins/blocks/user
+@dirrm %%WWWDIR%%/plugins/blocks/subscription/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/subscription/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/subscription/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/subscription/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/subscription/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/subscription/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/subscription/locale
+@dirrm %%WWWDIR%%/plugins/blocks/subscription
+@dirrm %%WWWDIR%%/plugins/blocks/role/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/role/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/blocks/role/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/role/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/role/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/role/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/role/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/role/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/blocks/role/locale
+@dirrm %%WWWDIR%%/plugins/blocks/role
+@dirrm %%WWWDIR%%/plugins/blocks/navigation/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/navigation/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/blocks/navigation/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/navigation/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/navigation/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/navigation/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/navigation/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/navigation/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/blocks/navigation/locale
+@dirrm %%WWWDIR%%/plugins/blocks/navigation
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle/locale
+@dirrm %%WWWDIR%%/plugins/blocks/languageToggle
+@dirrm %%WWWDIR%%/plugins/blocks/information/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/information/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/blocks/information/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/information/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/information/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/information/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/information/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/information/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/blocks/information/locale
+@dirrm %%WWWDIR%%/plugins/blocks/information
+@dirrm %%WWWDIR%%/plugins/blocks/help/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/help/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/blocks/help/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/help/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/help/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/help/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/help/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/help/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/blocks/help/locale
+@dirrm %%WWWDIR%%/plugins/blocks/help
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize/locale
+@dirrm %%WWWDIR%%/plugins/blocks/fontSize
+@dirrm %%WWWDIR%%/plugins/blocks/donation/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/donation/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/blocks/donation/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/donation/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/donation/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/donation/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/donation/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/donation/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/blocks/donation/locale
+@dirrm %%WWWDIR%%/plugins/blocks/donation
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy/locale/en_US
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy/locale
+@dirrm %%WWWDIR%%/plugins/blocks/developedBy
+@dirrm %%WWWDIR%%/plugins/blocks
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/zh_TW
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/vi_VN
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/tr_TR
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/ru_RU
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/pt_BR
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/ja_JP
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/it_IT
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/hr_HR
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/fr_CA
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/es_ES
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/en_US
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/el_GR
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale/de_DE
+@dirrm %%WWWDIR%%/plugins/auth/ldap/locale
+@dirrm %%WWWDIR%%/plugins/auth/ldap
+@dirrm %%WWWDIR%%/plugins/auth
+@dirrm %%WWWDIR%%/plugins
+@dirrm %%WWWDIR%%/pages/user
+@dirrm %%WWWDIR%%/pages/subscriptionManager
+@dirrm %%WWWDIR%%/pages/sectionEditor
+@dirrm %%WWWDIR%%/pages/search
+@dirrm %%WWWDIR%%/pages/rtadmin
+@dirrm %%WWWDIR%%/pages/rt
+@dirrm %%WWWDIR%%/pages/reviewer
+@dirrm %%WWWDIR%%/pages/proofreader
+@dirrm %%WWWDIR%%/pages/payment
+@dirrm %%WWWDIR%%/pages/oai
+@dirrm %%WWWDIR%%/pages/manager
+@dirrm %%WWWDIR%%/pages/login
+@dirrm %%WWWDIR%%/pages/layoutEditor
+@dirrm %%WWWDIR%%/pages/issue
+@dirrm %%WWWDIR%%/pages/install
+@dirrm %%WWWDIR%%/pages/information
+@dirrm %%WWWDIR%%/pages/index
+@dirrm %%WWWDIR%%/pages/help
+@dirrm %%WWWDIR%%/pages/gateway
+@dirrm %%WWWDIR%%/pages/editor
+@dirrm %%WWWDIR%%/pages/donations
+@dirrm %%WWWDIR%%/pages/copyeditor
+@dirrm %%WWWDIR%%/pages/comment
+@dirrm %%WWWDIR%%/pages/author
+@dirrm %%WWWDIR%%/pages/article
+@dirrm %%WWWDIR%%/pages/announcement
+@dirrm %%WWWDIR%%/pages/admin
+@dirrm %%WWWDIR%%/pages/about
+@dirrm %%WWWDIR%%/pages
+@dirrm %%WWWDIR%%/locale/zh_TW
+@dirrm %%WWWDIR%%/locale/vi_VN
+@dirrm %%WWWDIR%%/locale/tr_TR
+@dirrm %%WWWDIR%%/locale/ru_RU
+@dirrm %%WWWDIR%%/locale/pt_BR
+@dirrm %%WWWDIR%%/locale/no_NO
+@dirrm %%WWWDIR%%/locale/ja_JP
+@dirrm %%WWWDIR%%/locale/it_IT
+@dirrm %%WWWDIR%%/locale/hr_HR
+@dirrm %%WWWDIR%%/locale/fr_CA
+@dirrm %%WWWDIR%%/locale/es_ES
+@exec mkdir -p %D/%%WWWDIR%%/locale/en_US/images
+@dirrm %%WWWDIR%%/locale/en_US/images
+@dirrm %%WWWDIR%%/locale/en_US
+@dirrm %%WWWDIR%%/locale/el_GR
+@dirrm %%WWWDIR%%/locale/de_DE
+@dirrm %%WWWDIR%%/locale
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/utils
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/skins/default
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/skins
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/simple
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins/default
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/skins
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes/advanced
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/themes
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/visualchars
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/template
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/table
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/style
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/spellchecker/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/spellchecker/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/spellchecker
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/searchreplace
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/save
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/safari
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/print
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/preview/jscripts
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/preview
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/paste
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/pagebreak/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/pagebreak/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/pagebreak
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/noneditable
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/nonbreaking
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/media
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/layer
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/insertdatetime
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/inlinepopups
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/iespell
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullscreen
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/fullpage
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/example
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/emotions
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/directionality
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/contextmenu
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/compat2x
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/bbcode
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/autosave
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advlink
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/img
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advimage
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr/js
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr/css
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins/advhr
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/plugins
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce/langs
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts/tiny_mce
+@dirrm %%WWWDIR%%/lib/tinymce/jscripts
+@dirrm %%WWWDIR%%/lib/tinymce/examples/templates
+@dirrm %%WWWDIR%%/lib/tinymce/examples/media
+@dirrm %%WWWDIR%%/lib/tinymce/examples/lists
+@dirrm %%WWWDIR%%/lib/tinymce/examples/css
+@dirrm %%WWWDIR%%/lib/tinymce/examples
+@dirrm %%WWWDIR%%/lib/tinymce
+@dirrm %%WWWDIR%%/lib/smarty/plugins
+@dirrm %%WWWDIR%%/lib/smarty/internals
+@dirrm %%WWWDIR%%/lib/smarty
+@dirrm %%WWWDIR%%/lib/adodb/perf
+@dirrm %%WWWDIR%%/lib/adodb/lang
+@dirrm %%WWWDIR%%/lib/adodb/drivers
+@dirrm %%WWWDIR%%/lib/adodb/datadict
+@dirrm %%WWWDIR%%/lib/adodb
+@dirrm %%WWWDIR%%/lib
+@dirrm %%WWWDIR%%/js
+@dirrm %%WWWDIR%%/includes
+@dirrm %%WWWDIR%%/help/vi_VN/user/topic
+@dirrm %%WWWDIR%%/help/vi_VN/user/toc
+@dirrm %%WWWDIR%%/help/vi_VN/user
+@dirrm %%WWWDIR%%/help/vi_VN/submission/topic
+@dirrm %%WWWDIR%%/help/vi_VN/submission/toc
+@dirrm %%WWWDIR%%/help/vi_VN/submission
+@dirrm %%WWWDIR%%/help/vi_VN/site/topic
+@dirrm %%WWWDIR%%/help/vi_VN/site/toc
+@dirrm %%WWWDIR%%/help/vi_VN/site
+@dirrm %%WWWDIR%%/help/vi_VN/publishing/topic
+@dirrm %%WWWDIR%%/help/vi_VN/publishing/toc
+@dirrm %%WWWDIR%%/help/vi_VN/publishing
+@dirrm %%WWWDIR%%/help/vi_VN/journal/topic
+@dirrm %%WWWDIR%%/help/vi_VN/journal/toc
+@dirrm %%WWWDIR%%/help/vi_VN/journal
+@dirrm %%WWWDIR%%/help/vi_VN/intro/topic
+@dirrm %%WWWDIR%%/help/vi_VN/intro/toc
+@dirrm %%WWWDIR%%/help/vi_VN/intro
+@dirrm %%WWWDIR%%/help/vi_VN/index/topic
+@dirrm %%WWWDIR%%/help/vi_VN/index/toc
+@dirrm %%WWWDIR%%/help/vi_VN/index
+@dirrm %%WWWDIR%%/help/vi_VN/editorial/topic
+@dirrm %%WWWDIR%%/help/vi_VN/editorial/toc
+@dirrm %%WWWDIR%%/help/vi_VN/editorial
+@dirrm %%WWWDIR%%/help/vi_VN
+@dirrm %%WWWDIR%%/help/tr_TR/user/topic
+@dirrm %%WWWDIR%%/help/tr_TR/user/toc
+@dirrm %%WWWDIR%%/help/tr_TR/user
+@dirrm %%WWWDIR%%/help/tr_TR/submission/topic
+@dirrm %%WWWDIR%%/help/tr_TR/submission/toc
+@dirrm %%WWWDIR%%/help/tr_TR/submission
+@dirrm %%WWWDIR%%/help/tr_TR/site/topic
+@dirrm %%WWWDIR%%/help/tr_TR/site/toc
+@dirrm %%WWWDIR%%/help/tr_TR/site
+@dirrm %%WWWDIR%%/help/tr_TR/publishing/topic
+@dirrm %%WWWDIR%%/help/tr_TR/publishing/toc
+@dirrm %%WWWDIR%%/help/tr_TR/publishing
+@dirrm %%WWWDIR%%/help/tr_TR/journal/topic
+@dirrm %%WWWDIR%%/help/tr_TR/journal/toc
+@dirrm %%WWWDIR%%/help/tr_TR/journal
+@dirrm %%WWWDIR%%/help/tr_TR/intro/topic
+@dirrm %%WWWDIR%%/help/tr_TR/intro/toc
+@dirrm %%WWWDIR%%/help/tr_TR/intro
+@dirrm %%WWWDIR%%/help/tr_TR/index/topic
+@dirrm %%WWWDIR%%/help/tr_TR/index/toc
+@dirrm %%WWWDIR%%/help/tr_TR/index
+@dirrm %%WWWDIR%%/help/tr_TR/editorial/topic
+@dirrm %%WWWDIR%%/help/tr_TR/editorial/toc
+@dirrm %%WWWDIR%%/help/tr_TR/editorial
+@dirrm %%WWWDIR%%/help/tr_TR
+@dirrm %%WWWDIR%%/help/pt_BR/user/topic
+@dirrm %%WWWDIR%%/help/pt_BR/user/toc
+@dirrm %%WWWDIR%%/help/pt_BR/user
+@dirrm %%WWWDIR%%/help/pt_BR/submission/topic
+@dirrm %%WWWDIR%%/help/pt_BR/submission/toc
+@dirrm %%WWWDIR%%/help/pt_BR/submission
+@dirrm %%WWWDIR%%/help/pt_BR/site/topic
+@dirrm %%WWWDIR%%/help/pt_BR/site/toc
+@dirrm %%WWWDIR%%/help/pt_BR/site
+@dirrm %%WWWDIR%%/help/pt_BR/publishing/topic
+@dirrm %%WWWDIR%%/help/pt_BR/publishing/toc
+@dirrm %%WWWDIR%%/help/pt_BR/publishing
+@dirrm %%WWWDIR%%/help/pt_BR/journal/topic
+@dirrm %%WWWDIR%%/help/pt_BR/journal/toc
+@dirrm %%WWWDIR%%/help/pt_BR/journal
+@dirrm %%WWWDIR%%/help/pt_BR/intro/topic
+@dirrm %%WWWDIR%%/help/pt_BR/intro/toc
+@dirrm %%WWWDIR%%/help/pt_BR/intro
+@dirrm %%WWWDIR%%/help/pt_BR/index/topic
+@dirrm %%WWWDIR%%/help/pt_BR/index/toc
+@dirrm %%WWWDIR%%/help/pt_BR/index
+@dirrm %%WWWDIR%%/help/pt_BR/editorial/topic
+@dirrm %%WWWDIR%%/help/pt_BR/editorial/toc
+@dirrm %%WWWDIR%%/help/pt_BR/editorial
+@dirrm %%WWWDIR%%/help/pt_BR
+@dirrm %%WWWDIR%%/help/ja_JP/user/topic
+@dirrm %%WWWDIR%%/help/ja_JP/user/toc
+@dirrm %%WWWDIR%%/help/ja_JP/user
+@dirrm %%WWWDIR%%/help/ja_JP/submission/topic
+@dirrm %%WWWDIR%%/help/ja_JP/submission/toc
+@dirrm %%WWWDIR%%/help/ja_JP/submission
+@dirrm %%WWWDIR%%/help/ja_JP/site/topic
+@dirrm %%WWWDIR%%/help/ja_JP/site/toc
+@dirrm %%WWWDIR%%/help/ja_JP/site
+@dirrm %%WWWDIR%%/help/ja_JP/publishing/topic
+@dirrm %%WWWDIR%%/help/ja_JP/publishing/toc
+@dirrm %%WWWDIR%%/help/ja_JP/publishing
+@dirrm %%WWWDIR%%/help/ja_JP/journal/topic
+@dirrm %%WWWDIR%%/help/ja_JP/journal/toc
+@dirrm %%WWWDIR%%/help/ja_JP/journal
+@dirrm %%WWWDIR%%/help/ja_JP/intro/topic
+@dirrm %%WWWDIR%%/help/ja_JP/intro/toc
+@dirrm %%WWWDIR%%/help/ja_JP/intro
+@dirrm %%WWWDIR%%/help/ja_JP/index/topic
+@dirrm %%WWWDIR%%/help/ja_JP/index/toc
+@dirrm %%WWWDIR%%/help/ja_JP/index
+@dirrm %%WWWDIR%%/help/ja_JP/editorial/topic
+@dirrm %%WWWDIR%%/help/ja_JP/editorial/toc
+@dirrm %%WWWDIR%%/help/ja_JP/editorial
+@dirrm %%WWWDIR%%/help/ja_JP
+@dirrm %%WWWDIR%%/help/it_IT/user/topic
+@dirrm %%WWWDIR%%/help/it_IT/user/toc
+@dirrm %%WWWDIR%%/help/it_IT/user
+@dirrm %%WWWDIR%%/help/it_IT/submission/topic
+@dirrm %%WWWDIR%%/help/it_IT/submission/toc
+@dirrm %%WWWDIR%%/help/it_IT/submission
+@dirrm %%WWWDIR%%/help/it_IT/site/topic
+@dirrm %%WWWDIR%%/help/it_IT/site/toc
+@dirrm %%WWWDIR%%/help/it_IT/site
+@dirrm %%WWWDIR%%/help/it_IT/publishing/topic
+@dirrm %%WWWDIR%%/help/it_IT/publishing/toc
+@dirrm %%WWWDIR%%/help/it_IT/publishing
+@dirrm %%WWWDIR%%/help/it_IT/journal/topic
+@dirrm %%WWWDIR%%/help/it_IT/journal/toc
+@dirrm %%WWWDIR%%/help/it_IT/journal
+@dirrm %%WWWDIR%%/help/it_IT/intro/topic
+@dirrm %%WWWDIR%%/help/it_IT/intro/toc
+@dirrm %%WWWDIR%%/help/it_IT/intro
+@dirrm %%WWWDIR%%/help/it_IT/index/topic
+@dirrm %%WWWDIR%%/help/it_IT/index/toc
+@dirrm %%WWWDIR%%/help/it_IT/index
+@dirrm %%WWWDIR%%/help/it_IT/editorial/topic
+@dirrm %%WWWDIR%%/help/it_IT/editorial/toc
+@dirrm %%WWWDIR%%/help/it_IT/editorial
+@dirrm %%WWWDIR%%/help/it_IT
+@dirrm %%WWWDIR%%/help/fr_CA/user/topic
+@dirrm %%WWWDIR%%/help/fr_CA/user/toc
+@dirrm %%WWWDIR%%/help/fr_CA/user
+@dirrm %%WWWDIR%%/help/fr_CA/submission/topic
+@dirrm %%WWWDIR%%/help/fr_CA/submission/toc
+@dirrm %%WWWDIR%%/help/fr_CA/submission
+@dirrm %%WWWDIR%%/help/fr_CA/site/topic
+@dirrm %%WWWDIR%%/help/fr_CA/site/toc
+@dirrm %%WWWDIR%%/help/fr_CA/site
+@dirrm %%WWWDIR%%/help/fr_CA/publishing/topic
+@dirrm %%WWWDIR%%/help/fr_CA/publishing/toc
+@dirrm %%WWWDIR%%/help/fr_CA/publishing
+@dirrm %%WWWDIR%%/help/fr_CA/journal/topic
+@dirrm %%WWWDIR%%/help/fr_CA/journal/toc
+@dirrm %%WWWDIR%%/help/fr_CA/journal
+@dirrm %%WWWDIR%%/help/fr_CA/intro/topic
+@dirrm %%WWWDIR%%/help/fr_CA/intro/toc
+@dirrm %%WWWDIR%%/help/fr_CA/intro
+@dirrm %%WWWDIR%%/help/fr_CA/index/topic
+@dirrm %%WWWDIR%%/help/fr_CA/index/toc
+@dirrm %%WWWDIR%%/help/fr_CA/index
+@dirrm %%WWWDIR%%/help/fr_CA/editorial/topic
+@dirrm %%WWWDIR%%/help/fr_CA/editorial/toc
+@dirrm %%WWWDIR%%/help/fr_CA/editorial
+@dirrm %%WWWDIR%%/help/fr_CA
+@dirrm %%WWWDIR%%/help/en_US/user/topic
+@dirrm %%WWWDIR%%/help/en_US/user/toc
+@dirrm %%WWWDIR%%/help/en_US/user
+@dirrm %%WWWDIR%%/help/en_US/submission/topic
+@dirrm %%WWWDIR%%/help/en_US/submission/toc
+@dirrm %%WWWDIR%%/help/en_US/submission
+@dirrm %%WWWDIR%%/help/en_US/site/topic
+@dirrm %%WWWDIR%%/help/en_US/site/toc
+@dirrm %%WWWDIR%%/help/en_US/site
+@dirrm %%WWWDIR%%/help/en_US/publishing/topic
+@dirrm %%WWWDIR%%/help/en_US/publishing/toc
+@dirrm %%WWWDIR%%/help/en_US/publishing
+@dirrm %%WWWDIR%%/help/en_US/journal/topic
+@dirrm %%WWWDIR%%/help/en_US/journal/toc
+@dirrm %%WWWDIR%%/help/en_US/journal
+@dirrm %%WWWDIR%%/help/en_US/intro/topic
+@dirrm %%WWWDIR%%/help/en_US/intro/toc
+@dirrm %%WWWDIR%%/help/en_US/intro
+@dirrm %%WWWDIR%%/help/en_US/index/topic
+@dirrm %%WWWDIR%%/help/en_US/index/toc
+@dirrm %%WWWDIR%%/help/en_US/index
+@dirrm %%WWWDIR%%/help/en_US/editorial/topic
+@dirrm %%WWWDIR%%/help/en_US/editorial/toc
+@dirrm %%WWWDIR%%/help/en_US/editorial
+@dirrm %%WWWDIR%%/help/en_US
+@dirrm %%WWWDIR%%/help/el_GR/user/topic
+@dirrm %%WWWDIR%%/help/el_GR/user/toc
+@dirrm %%WWWDIR%%/help/el_GR/user
+@dirrm %%WWWDIR%%/help/el_GR/submission/topic
+@dirrm %%WWWDIR%%/help/el_GR/submission/toc
+@dirrm %%WWWDIR%%/help/el_GR/submission
+@dirrm %%WWWDIR%%/help/el_GR/site/topic
+@dirrm %%WWWDIR%%/help/el_GR/site/toc
+@dirrm %%WWWDIR%%/help/el_GR/site
+@dirrm %%WWWDIR%%/help/el_GR/publishing/topic
+@dirrm %%WWWDIR%%/help/el_GR/publishing/toc
+@dirrm %%WWWDIR%%/help/el_GR/publishing
+@dirrm %%WWWDIR%%/help/el_GR/journal/topic
+@dirrm %%WWWDIR%%/help/el_GR/journal/toc
+@dirrm %%WWWDIR%%/help/el_GR/journal
+@dirrm %%WWWDIR%%/help/el_GR/intro/topic
+@dirrm %%WWWDIR%%/help/el_GR/intro/toc
+@dirrm %%WWWDIR%%/help/el_GR/intro
+@dirrm %%WWWDIR%%/help/el_GR/index/topic
+@dirrm %%WWWDIR%%/help/el_GR/index/toc
+@dirrm %%WWWDIR%%/help/el_GR/index
+@dirrm %%WWWDIR%%/help/el_GR/editorial/topic
+@dirrm %%WWWDIR%%/help/el_GR/editorial/toc
+@dirrm %%WWWDIR%%/help/el_GR/editorial
+@dirrm %%WWWDIR%%/help/el_GR
+@dirrm %%WWWDIR%%/help
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/release-notes
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
+@dirrm %%WWWDIR%%/dbscripts/xml/upgrade
+@dirrm %%WWWDIR%%/dbscripts/xml/dtd
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/zh_TW
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/vi_VN
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/tr_TR
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/ru_RU
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/pt_BR
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/no_NO
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/ja_JP
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/it_IT
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/hr_HR
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/fr_CA
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/es_ES
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/en_US
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/el_GR
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale/de_DE
+@dirrm %%WWWDIR%%/dbscripts/xml/data/locale
+@dirrm %%WWWDIR%%/dbscripts/xml/data
+@dirrm %%WWWDIR%%/dbscripts/xml
+@dirrm %%WWWDIR%%/dbscripts
+@dirrm %%WWWDIR%%/classes/xml
+@dirrm %%WWWDIR%%/classes/user/form
+@dirrm %%WWWDIR%%/classes/user
+@dirrm %%WWWDIR%%/classes/template
+@dirrm %%WWWDIR%%/classes/tasks
+@dirrm %%WWWDIR%%/classes/subscription/form
+@dirrm %%WWWDIR%%/classes/subscription
+@dirrm %%WWWDIR%%/classes/submission/sectionEditor
+@dirrm %%WWWDIR%%/classes/submission/reviewer
+@dirrm %%WWWDIR%%/classes/submission/reviewAssignment
+@dirrm %%WWWDIR%%/classes/submission/proofreader
+@dirrm %%WWWDIR%%/classes/submission/proofAssignment
+@dirrm %%WWWDIR%%/classes/submission/layoutEditor
+@dirrm %%WWWDIR%%/classes/submission/layoutAssignment
+@dirrm %%WWWDIR%%/classes/submission/form/comment
+@dirrm %%WWWDIR%%/classes/submission/form
+@dirrm %%WWWDIR%%/classes/submission/editor
+@dirrm %%WWWDIR%%/classes/submission/editAssignment
+@dirrm %%WWWDIR%%/classes/submission/copyeditor
+@dirrm %%WWWDIR%%/classes/submission/copyAssignment
+@dirrm %%WWWDIR%%/classes/submission/common
+@dirrm %%WWWDIR%%/classes/submission/author
+@dirrm %%WWWDIR%%/classes/submission
+@dirrm %%WWWDIR%%/classes/site
+@dirrm %%WWWDIR%%/classes/session
+@dirrm %%WWWDIR%%/classes/security/form
+@dirrm %%WWWDIR%%/classes/security
+@dirrm %%WWWDIR%%/classes/sectionEditor/form
+@dirrm %%WWWDIR%%/classes/sectionEditor
+@dirrm %%WWWDIR%%/classes/search
+@dirrm %%WWWDIR%%/classes/scheduledTask
+@dirrm %%WWWDIR%%/classes/rt/ojs/form
+@dirrm %%WWWDIR%%/classes/rt/ojs
+@dirrm %%WWWDIR%%/classes/rt
+@dirrm %%WWWDIR%%/classes/reviewForm
+@dirrm %%WWWDIR%%/classes/plugins
+@dirrm %%WWWDIR%%/classes/payment/ojs
+@dirrm %%WWWDIR%%/classes/payment
+@dirrm %%WWWDIR%%/classes/oai/ojs
+@dirrm %%WWWDIR%%/classes/oai/format
+@dirrm %%WWWDIR%%/classes/oai
+@dirrm %%WWWDIR%%/classes/manager/form/setup
+@dirrm %%WWWDIR%%/classes/manager/form
+@dirrm %%WWWDIR%%/classes/manager
+@dirrm %%WWWDIR%%/classes/mail
+@dirrm %%WWWDIR%%/classes/journal
+@dirrm %%WWWDIR%%/classes/issue/form
+@dirrm %%WWWDIR%%/classes/issue
+@dirrm %%WWWDIR%%/classes/install/form
+@dirrm %%WWWDIR%%/classes/install
+@dirrm %%WWWDIR%%/classes/i18n
+@dirrm %%WWWDIR%%/classes/help
+@dirrm %%WWWDIR%%/classes/group
+@dirrm %%WWWDIR%%/classes/form/validation
+@dirrm %%WWWDIR%%/classes/form
+@dirrm %%WWWDIR%%/classes/file
+@dirrm %%WWWDIR%%/classes/db
+@dirrm %%WWWDIR%%/classes/currency
+@dirrm %%WWWDIR%%/classes/core
+@dirrm %%WWWDIR%%/classes/config
+@dirrm %%WWWDIR%%/classes/comment/form
+@dirrm %%WWWDIR%%/classes/comment
+@dirrm %%WWWDIR%%/classes/captcha
+@dirrm %%WWWDIR%%/classes/cache
+@dirrm %%WWWDIR%%/classes/author/form/submit
+@dirrm %%WWWDIR%%/classes/author/form
+@dirrm %%WWWDIR%%/classes/author
+@dirrm %%WWWDIR%%/classes/article/log
+@dirrm %%WWWDIR%%/classes/article
+@dirrm %%WWWDIR%%/classes/announcement
+@dirrm %%WWWDIR%%/classes/admin/form
+@dirrm %%WWWDIR%%/classes/admin
+@dirrm %%WWWDIR%%/classes
+@unexec /bin/rm -rf %D/%%WWWDIR%%/cache/t_config 2>/dev/null || true
+@unexec /bin/rm -rf %D/%%WWWDIR%%/cache/t_compile 2>/dev/null || true
+@unexec /bin/rm -rf %D/%%WWWDIR%%/cache/t_cache 2>/dev/null || true
+@unexec /bin/rm -rf %D/%%WWWDIR%%/cache/_db 2>/dev/null || true
+@dirrm %%WWWDIR%%/cache
+@dirrm %%WWWDIR%%