diff options
author | nivit <nivit@FreeBSD.org> | 2014-07-04 10:08:40 +0800 |
---|---|---|
committer | nivit <nivit@FreeBSD.org> | 2014-07-04 10:08:40 +0800 |
commit | 8d6464c8e9e7b891014040085197639df2f9b4df (patch) | |
tree | 56c34da4c53ad98b4bebcd13f3af0085364c7602 /www | |
parent | 72e5a161e1a98e17d5376e3909451fdd8c937430 (diff) | |
download | freebsd-ports-gnome-8d6464c8e9e7b891014040085197639df2f9b4df.tar.gz freebsd-ports-gnome-8d6464c8e9e7b891014040085197639df2f9b4df.tar.zst freebsd-ports-gnome-8d6464c8e9e7b891014040085197639df2f9b4df.zip |
- Update to 0.9
- Remove leading, undefined article from COMMENT
- Sort variables
- Use ${COPYTREE_SHARE} instead of ${FIND} and ${INSTALL_*}
to install files
- Add support for stage dir [1]
- Remove pkg-message
- Add files/pkg-message.in
PR: 189978 [1]
Submitted by: joe@thrallingpenguin.com
Diffstat (limited to 'www')
-rw-r--r-- | www/apache-forrest/Makefile | 68 | ||||
-rw-r--r-- | www/apache-forrest/distinfo | 6 | ||||
-rw-r--r-- | www/apache-forrest/files/pkg-message.in (renamed from www/apache-forrest/pkg-message) | 0 | ||||
-rw-r--r-- | www/apache-forrest/pkg-plist | 1078 |
4 files changed, 650 insertions, 502 deletions
diff --git a/www/apache-forrest/Makefile b/www/apache-forrest/Makefile index 72e36a862c82..9768614dbf1c 100644 --- a/www/apache-forrest/Makefile +++ b/www/apache-forrest/Makefile @@ -2,38 +2,38 @@ # $FreeBSD$ PORTNAME= apache-forrest -PORTVERSION= 0.8 -PORTREVISION= 3 +PORTVERSION= 0.9 +PORTREVISION= 0 CATEGORIES= www java -MASTER_SITES= ${MASTER_SITE_APACHE} \ - http://mirror.tomato.it/apache/forrest/ \ - http://mirrors.publicshout.org/apache/forrest/ \ - http://mirror.nohup.it/apache/forrest/ \ - ftp://mirror.nohup.it/apache/forrest/ +MASTER_SITES= ${MASTER_SITE_APACHE} MASTER_SITE_SUBDIR= forrest +DISTFILES= ${PORTNAME}-${PORTVERSION}-sources.tar.gz \ + ${PORTNAME}-${PORTVERSION}-dependencies.tar.gz MAINTAINER= nivit@FreeBSD.org -COMMENT= A tool for rapid development of small sites +COMMENT= Tool for rapid development of small sites -USE_JAVA= yes -JAVA_VERSION= 1.6 +ANT= ${STAGEDIR}${DATADIR}/tools/ant/bin/ant +ANT_TARGET= local-deploy -REPLACE_FILES= ${WRKSRC}/bin/forrest ${WRKSRC}/tools/ant/bin/ant +IGNORE_FILES= KEYS README.txt .gitignore *.bak *.bat \ + *.orig forrest ant index.html +IGNORE_FILES:= ${IGNORE_FILES:@f@-and ! -name ${f}@} +INSTALL_WRKSRC= ${WRKSRC}/build + +JAVA_VERSION= 1.6+ NO_BUILD= Yes -INSTALL_WRKSRC= ${WRKSRC}/build -LINK_OPTS?= -sf +PLUGINSDIR= ${DATADIR}/plugins/org.apache.forrest.plugin.output.pdf + +REPLACE_FILES= ${WRKSRC}/bin/forrest ${WRKSRC}/tools/ant/bin/ant -FIND_ARGS1= -type d \! -empty -FIND_ARGS2= \! -type d -and -perm -a+x -and \! -name "*.orig" -and \! -name "*.bak" -FIND_ARGS3= \! -type d -and \! -perm -a+x -and \! -name "*.bat" -and \! -name "*.orig" -and \! -name "LICENSE.txt" -and \! -name "KEYS" -and \! -name "NOTICE.txt" -and \! -name "*.license.txt" +SUB_FILES= pkg-message +SUB_LIST= PORTVERSION=${PORTVERSION} -ANT= ${DATADIR}/tools/ant/bin/ant -ANT_TARGET= local-deploy -PLUGINSDIR= ${DATADIR}/plugins/org.apache.forrest.plugin.output.pdf +USE_JAVA= yes -NO_STAGE= yes post-patch: @for FILE in ${REPLACE_FILES}; do \ ${REINPLACE_CMD} -e "/%%JAVA_HOME%%/s//${JAVA_HOME:S/\//\\\//g}/g" \ @@ -41,31 +41,15 @@ post-patch: done; do-install: -# Script and data - @cd ${WRKSRC}; \ - DIRS=$$(${FIND} . ${FIND_ARGS1}); \ - for DIR in $${DIRS}; do \ - ${MKDIR} ${DATADIR}/$${DIR}; \ - done; \ - FILES=$$(${FIND} . ${FIND_ARGS2} ); \ - for FILE in $${FILES}; do \ - ${INSTALL_SCRIPT} $${FILE} ${DATADIR}/$${FILE}; \ - done; \ - FILES=$$(${FIND} . ${FIND_ARGS3}); \ - for FILE in $${FILES}; do \ - ${INSTALL_DATA} $${FILE} ${DATADIR}/$${FILE}; \ - done; - -# Links to executables @cd ${WRKSRC}; \ - FILES=$$(${FIND} bin ${FIND_ARGS2} ); \ - for FILE in $${FILES}; do \ - ${LN} ${LINK_OPTS} ${DATADIR}/$${FILE} ${PREFIX}/$${FILE}; \ - done; + ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} '${IGNORE_FILES:[2..-1]}' + @${INSTALL_SCRIPT} ${WRKSRC}/bin/forrest ${STAGEDIR}${DATADIR}/bin/forrest + @${INSTALL_SCRIPT} ${WRKSRC}/tools/ant/bin/ant ${STAGEDIR}${DATADIR}/tools/ant/bin/ant + @${LN} -sf ../${DATADIR_REL}/bin/forrest ${STAGEDIR}${PREFIX}/bin/forrest post-install: - @cd ${PLUGINSDIR}; \ - ${SETENV} FORREST_HOME=${DATADIR} ${ANT} ${ANT_TARGET}; \ + @cd ${STAGEDIR}${PLUGINSDIR}; \ + ${SETENV} FORREST_HOME=${STAGEDIR}${DATADIR} ${ANT} ${ANT_TARGET}; \ ${SED} -e "/%%DATADIR%%/s//${DATADIR:S/\//\\\//g}/g" \ -e "/%%PORTVERSION%%/s//${PORTVERSION}/g" ${PKGMESSAGE}; diff --git a/www/apache-forrest/distinfo b/www/apache-forrest/distinfo index 4acd9d221d28..4e5a0c474144 100644 --- a/www/apache-forrest/distinfo +++ b/www/apache-forrest/distinfo @@ -1,2 +1,4 @@ -SHA256 (apache-forrest-0.8.tar.gz) = 7ca01a274e222f5720533d44c1500c4b6bf6d8c3f678835f3f337251c2f747a7 -SIZE (apache-forrest-0.8.tar.gz) = 23244435 +SHA256 (apache-forrest-0.9-sources.tar.gz) = c6ac758db2eb0d4d91bd1733bbbc2dec4fdb33603895c464bcb47a34490fb64d +SIZE (apache-forrest-0.9-sources.tar.gz) = 2864621 +SHA256 (apache-forrest-0.9-dependencies.tar.gz) = 33146b4e64933691d3b779421b35da08062a704618518d561281d3b43917ccf1 +SIZE (apache-forrest-0.9-dependencies.tar.gz) = 23349685 diff --git a/www/apache-forrest/pkg-message b/www/apache-forrest/files/pkg-message.in index 5657f89825db..5657f89825db 100644 --- a/www/apache-forrest/pkg-message +++ b/www/apache-forrest/files/pkg-message.in diff --git a/www/apache-forrest/pkg-plist b/www/apache-forrest/pkg-plist index 4a1758e15455..743155ccacba 100644 --- a/www/apache-forrest/pkg-plist +++ b/www/apache-forrest/pkg-plist @@ -1,11 +1,33 @@ bin/forrest -%%DATADIR%%/README.txt +%%DATADIR%%/LICENSE.txt +%%DATADIR%%/NOTICE.txt %%DATADIR%%/bin/forrest %%DATADIR%%/build/plugins/catalog.xcat +%%DATADIR%%/build/plugins/lib/cocoon-fop-ng-impl-special-SNAPSHOT.jar +%%DATADIR%%/build/plugins/lib/cocoon.license.txt +%%DATADIR%%/build/plugins/lib/fop-0.95.NOTICE.txt +%%DATADIR%%/build/plugins/lib/fop-0.95.jar +%%DATADIR%%/build/plugins/lib/fop.license.txt +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/LICENSE.txt +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/NOTICE.txt %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/build.xml +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/default.plugin.properties.xml %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/forrest.properties %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/locationmap.xml %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/output.xmap +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-commonElements.xsl +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-footerinfo.xsl +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-layout.xsl +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-pageBreaks.xsl +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-pageNumber.xsl +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-pdfoutline.xsl +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-xmpMetadata.xsl +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_en.xml +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_nb.xml +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_nn.xml +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_se.xml +%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_smj.xml %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/classes/CatalogManager.properties %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/favicon.ico %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/group-logo.gif @@ -20,94 +42,144 @@ bin/forrest %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/skinconf.xml %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/status.xml %%DATADIR%%/build/xml-forrest.jar -%%DATADIR%%/etc/README.txt -%%DATADIR%%/etc/RELEASE-NOTES-0.8.txt -%%DATADIR%%/etc/cocoon_upgrade/README.txt -%%DATADIR%%/etc/cocoon_upgrade/build.sh -%%DATADIR%%/etc/cocoon_upgrade/build.xml -%%DATADIR%%/etc/cocoon_upgrade/local.blocks.properties -%%DATADIR%%/etc/cocoon_upgrade/local.build.properties -%%DATADIR%%/etc/cocoon_upgrade/upgrade-cocoon-xconf.xsl -%%DATADIR%%/etc/docs-review.txt -%%DATADIR%%/etc/new-skinconf-forrest-site.xml +%%DATADIR%%/etc/AnsiColorLogger.properties +%%DATADIR%%/etc/RELEASE-NOTES-0.9.txt %%DATADIR%%/etc/publishing_our_site.txt -%%DATADIR%%/etc/relicense-jars.txt -%%DATADIR%%/etc/relicense-tree.txt -%%DATADIR%%/etc/relicense.txt -%%DATADIR%%/etc/test-whitespace/AbstractWrappingModule.java -%%DATADIR%%/etc/test-whitespace/AbstractWrappingModule.java.jalopy -%%DATADIR%%/etc/test-whitespace/XPathTransformer.java -%%DATADIR%%/etc/test-whitespace/XPathTransformer.java.jalopy -%%DATADIR%%/etc/test-whitespace/content-include-html.ft -%%DATADIR%%/etc/test-whitespace/html2document.xsl -%%DATADIR%%/etc/test-whitespace/html2document.xsl.tidy -%%DATADIR%%/etc/test-whitespace/test-1.xml -%%DATADIR%%/etc/tidy-config.txt -%%DATADIR%%/etc/tidy-xml.pl -%%DATADIR%%/etc/whitespace-cleanup.txt %%DATADIR%%/etc/xmlformat.conf -%%DATADIR%%/index.html -%%DATADIR%%/lib/README.txt %%DATADIR%%/lib/core/LICENSE-prototype.txt +%%DATADIR%%/lib/core/avalon-framework-NOTICE.txt %%DATADIR%%/lib/core/avalon-framework-api-4.3.jar +%%DATADIR%%/lib/core/avalon-framework-api-4.3.jar.license.txt %%DATADIR%%/lib/core/avalon-framework-impl-4.3.jar +%%DATADIR%%/lib/core/avalon-framework-impl-4.3.jar.license.txt %%DATADIR%%/lib/core/avalon-logkit-2.1.jar +%%DATADIR%%/lib/core/avalon-logkit-2.1.jar.license.txt +%%DATADIR%%/lib/core/avalon-logkit-NOTICE.txt %%DATADIR%%/lib/core/batik-all-1.6.jar +%%DATADIR%%/lib/core/batik-all-1.6.jar.license.txt %%DATADIR%%/lib/core/castor-0.9.6-xml.jar +%%DATADIR%%/lib/core/castor-0.9.6-xml.jar.license.txt %%DATADIR%%/lib/core/chaperon-20040205.jar -%%DATADIR%%/lib/core/cocoon-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-asciiart-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-batik-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-chaperon-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-fop-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-html-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-linkrewriter-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-lucene-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-profiler-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-template-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-validation-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/cocoon-xsp-block-2.2.0-dev.jar -%%DATADIR%%/lib/core/commons-cli-1.0.jar -%%DATADIR%%/lib/core/commons-collections-3.1.jar +%%DATADIR%%/lib/core/chaperon-20040205.jar.license.txt +%%DATADIR%%/lib/core/cocoon-2.1.12-dev.jar +%%DATADIR%%/lib/core/cocoon-asciiart-block.jar +%%DATADIR%%/lib/core/cocoon-auth-block.jar +%%DATADIR%%/lib/core/cocoon-batik-block.jar +%%DATADIR%%/lib/core/cocoon-chaperon-block.jar +%%DATADIR%%/lib/core/cocoon-fop-block.jar +%%DATADIR%%/lib/core/cocoon-html-block.jar +%%DATADIR%%/lib/core/cocoon-linkrewriter-block.jar +%%DATADIR%%/lib/core/cocoon-lucene-block.jar +%%DATADIR%%/lib/core/cocoon-profiler-block.jar +%%DATADIR%%/lib/core/cocoon-template-block.jar +%%DATADIR%%/lib/core/cocoon-validation-block.jar +%%DATADIR%%/lib/core/cocoon-xsp-block.jar +%%DATADIR%%/lib/core/cocoon.license.txt +%%DATADIR%%/lib/core/commons-cli-1.2.jar +%%DATADIR%%/lib/core/commons-cli-NOTICE.txt +%%DATADIR%%/lib/core/commons-cli.license.txt +%%DATADIR%%/lib/core/commons-collections-3.2.1.jar +%%DATADIR%%/lib/core/commons-collections-NOTICE.txt +%%DATADIR%%/lib/core/commons-collections.license.txt %%DATADIR%%/lib/core/commons-httpclient-2.0.2.jar +%%DATADIR%%/lib/core/commons-httpclient-2.0.2.jar.license.txt +%%DATADIR%%/lib/core/commons-io-1.4.jar +%%DATADIR%%/lib/core/commons-io-NOTICE.txt +%%DATADIR%%/lib/core/commons-io.LICENSE.txt +%%DATADIR%%/lib/core/commons-io.NOTICE.txt %%DATADIR%%/lib/core/commons-jci-r306555.jar +%%DATADIR%%/lib/core/commons-jci-r306555.jar.license.txt %%DATADIR%%/lib/core/commons-jexl-1.0.jar -%%DATADIR%%/lib/core/commons-jxpath-1.2-r329470.jar -%%DATADIR%%/lib/core/commons-lang-2.1.jar -%%DATADIR%%/lib/core/commons-logging-1.0.4.jar +%%DATADIR%%/lib/core/commons-jexl-1.0.jar.license.txt +%%DATADIR%%/lib/core/commons-jxpath-1.3.jar +%%DATADIR%%/lib/core/commons-jxpath.license.txt +%%DATADIR%%/lib/core/commons-jxpath.notice.txt +%%DATADIR%%/lib/core/commons-lang-2.5.jar +%%DATADIR%%/lib/core/commons-lang-NOTICE.txt +%%DATADIR%%/lib/core/commons-lang.license.txt +%%DATADIR%%/lib/core/commons-logging-1.1.1.jar +%%DATADIR%%/lib/core/commons-logging.LICENSE.txt +%%DATADIR%%/lib/core/commons-logging.NOTICE.txt %%DATADIR%%/lib/core/concurrent-1.3.4.jar -%%DATADIR%%/lib/core/ehcache-1.2.jar +%%DATADIR%%/lib/core/concurrent-1.3.4.jar.license.txt +%%DATADIR%%/lib/core/ehcache-core-2.2.0.jar +%%DATADIR%%/lib/core/ehcache-core.license.txt +%%DATADIR%%/lib/core/excalibur-component-2.1.jar +%%DATADIR%%/lib/core/excalibur-component-2.1.jar.license.txt +%%DATADIR%%/lib/core/excalibur-component-NOTICE.txt %%DATADIR%%/lib/core/excalibur-i18n-1.1.jar +%%DATADIR%%/lib/core/excalibur-i18n-1.1.jar.license.txt %%DATADIR%%/lib/core/excalibur-instrument-api-2.1.jar +%%DATADIR%%/lib/core/excalibur-instrument-api-2.1.jar.license.txt +%%DATADIR%%/lib/core/excalibur-instrument-api-NOTICE.txt %%DATADIR%%/lib/core/excalibur-io-1.1.jar +%%DATADIR%%/lib/core/excalibur-io-1.1.jar.license.txt %%DATADIR%%/lib/core/excalibur-logger-2.1.jar +%%DATADIR%%/lib/core/excalibur-logger-2.1.jar.license.txt +%%DATADIR%%/lib/core/excalibur-logger-NOTICE.txt %%DATADIR%%/lib/core/excalibur-naming-1.0.jar +%%DATADIR%%/lib/core/excalibur-naming-1.0.jar.license.txt %%DATADIR%%/lib/core/excalibur-pool-api-2.1.jar +%%DATADIR%%/lib/core/excalibur-pool-api-2.1.jar.license.txt +%%DATADIR%%/lib/core/excalibur-pool-api-NOTICE.txt %%DATADIR%%/lib/core/excalibur-pool-impl-2.1.jar +%%DATADIR%%/lib/core/excalibur-pool-impl-2.1.jar.license.txt +%%DATADIR%%/lib/core/excalibur-pool-impl-NOTICE.txt %%DATADIR%%/lib/core/excalibur-pool-instrumented-2.1.jar -%%DATADIR%%/lib/core/excalibur-sourceresolve-2.1.jar +%%DATADIR%%/lib/core/excalibur-pool-instrumented-2.1.jar.license.txt +%%DATADIR%%/lib/core/excalibur-pool-instrumented-NOTICE.txt +%%DATADIR%%/lib/core/excalibur-sourceresolve-2.2.3.jar +%%DATADIR%%/lib/core/excalibur-sourceresolve-2.2.3.jar.license.txt +%%DATADIR%%/lib/core/excalibur-sourceresolve-NOTICE.txt %%DATADIR%%/lib/core/excalibur-store-2.1.jar +%%DATADIR%%/lib/core/excalibur-store-2.1.jar.license.txt +%%DATADIR%%/lib/core/excalibur-store-NOTICE.txt %%DATADIR%%/lib/core/excalibur-xmlutil-2.1.jar -%%DATADIR%%/lib/core/fop-0.20.5.jar +%%DATADIR%%/lib/core/excalibur-xmlutil-2.1.jar.license.txt +%%DATADIR%%/lib/core/excalibur-xmlutil-NOTICE.txt %%DATADIR%%/lib/core/jcs-1.2.5-dev-20050313.jar -%%DATADIR%%/lib/core/jing-20030619.jar +%%DATADIR%%/lib/core/jcs-1.2.5-dev-20050313.jar.license.txt +%%DATADIR%%/lib/core/jing-20091111.jar +%%DATADIR%%/lib/core/jing-20091111.jar.license.txt %%DATADIR%%/lib/core/jtidy-04aug2000r7-dev.jar +%%DATADIR%%/lib/core/jtidy-04aug2000r7-dev.jar.license.txt %%DATADIR%%/lib/core/log4j-1.2.13.jar +%%DATADIR%%/lib/core/log4j-1.2.13.jar.license.txt %%DATADIR%%/lib/core/logkit-1.2.2.jar +%%DATADIR%%/lib/core/logkit-1.2.2.jar.license.txt %%DATADIR%%/lib/core/lucene-1.4.3.jar +%%DATADIR%%/lib/core/lucene-1.4.3.jar.license.txt %%DATADIR%%/lib/core/nekopull-0.2.4.jar +%%DATADIR%%/lib/core/nekopull-0.2.4.jar.license.txt %%DATADIR%%/lib/core/oreilly.codepolicy.txt %%DATADIR%%/lib/core/oreilly.permission.txt -%%DATADIR%%/lib/core/rhino-1.6R2.jar +%%DATADIR%%/lib/core/rhino-1.6R5.jar +%%DATADIR%%/lib/core/rhino-1.6R5.jar.license.txt +%%DATADIR%%/lib/core/slf4j-api-1.5.11.jar +%%DATADIR%%/lib/core/slf4j-api-1.5.11.jar.license.txt +%%DATADIR%%/lib/core/slf4j-log4j12-1.5.11.jar +%%DATADIR%%/lib/core/slf4j-log4j12-1.5.11.jar.license.txt %%DATADIR%%/lib/core/w3c-dtd-license.txt %%DATADIR%%/lib/core/xml-commons-resolver-1.2-dev-r395116.jar +%%DATADIR%%/lib/core/xml-commons-resolver.license.txt %%DATADIR%%/lib/core/xmlbeans-1.0.3.jar +%%DATADIR%%/lib/core/xmlbeans-1.0.3.jar.license.txt +%%DATADIR%%/lib/core/xmlbeans-NOTICE.txt +%%DATADIR%%/lib/core/xmlgraphics-commons-1.3.1.jar +%%DATADIR%%/lib/core/xmlgraphics-commons.LICENSE.txt +%%DATADIR%%/lib/core/xmlgraphics-commons.NOTICE.txt %%DATADIR%%/lib/endorsed/jakarta-bcel-20040329.jar -%%DATADIR%%/lib/endorsed/jakarta-regexp-1.4.jar -%%DATADIR%%/lib/endorsed/xalan-2.7.0.jar -%%DATADIR%%/lib/endorsed/xercesImpl-2.8.0.jar -%%DATADIR%%/lib/endorsed/xml-apis-1.3.03.jar -%%DATADIR%%/lib/optional/README.txt +%%DATADIR%%/lib/endorsed/jakarta-bcel-20040329.jar.license.txt +%%DATADIR%%/lib/endorsed/jakarta-regexp-1.5.jar +%%DATADIR%%/lib/endorsed/jakarta-regexp-1.5.jar.license.txt +%%DATADIR%%/lib/endorsed/jakarta-regexp-NOTICE.txt +%%DATADIR%%/lib/endorsed/xalan-2.7.1.jar +%%DATADIR%%/lib/endorsed/xalan-2.7.1.jar.license.txt +%%DATADIR%%/lib/endorsed/xercesImpl-2.9.1.jar +%%DATADIR%%/lib/endorsed/xercesImpl-2.9.1.jar.license.txt +%%DATADIR%%/lib/endorsed/xercesImpl-NOTICE.txt +%%DATADIR%%/lib/endorsed/xml-apis-1.3.04.jar +%%DATADIR%%/lib/endorsed/xml-apis-1.3.04.jar.license.txt %%DATADIR%%/main/build.sh %%DATADIR%%/main/build.xml %%DATADIR%%/main/forrest.antproxy.xml @@ -115,10 +187,9 @@ bin/forrest %%DATADIR%%/main/fresh-site/forrest.properties %%DATADIR%%/main/fresh-site/forrest.properties.dispatcher.properties %%DATADIR%%/main/fresh-site/forrest.properties.xml -%%DATADIR%%/main/fresh-site/src/documentation/README.txt %%DATADIR%%/main/fresh-site/src/documentation/classes/CatalogManager.properties %%DATADIR%%/main/fresh-site/src/documentation/content/locationmap.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/test1.html +%%DATADIR%%/main/fresh-site/src/documentation/content/old_site/test1.html %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/favicon.ico %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/hello.pdf %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/group-logo.gif @@ -128,35 +199,46 @@ bin/forrest %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/project.svg %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/usemap.gif %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/index.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/ascii-art.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/cocoon-pyramid.aart -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/custom.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/customSchema.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/demo-i18n.de.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/demo-i18n.fr.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/demo-i18n.nl.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/demo-i18n.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/ellipse.svg -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/embedded_html.html -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/faq.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/hello-v10.dtd -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/helloAgain.pdf -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/howto-howto.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/i18n.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/icon-d.png -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/index.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/linking.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/locationmap/index.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/sample.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/showonlywhenselected/page1.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/showonlywhenselected/page2.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/static.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/subdir/book-sample.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/subdir/hello.zip -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/subdir/index.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/svg.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/usemap.xml -%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/xml-entities.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-a/index.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/ascii-art.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/cocoon-pyramid.aart +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/custom.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/customSchema.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/ellipse.svg +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/embedded_html.html +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/exslt.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/faq.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/helloAgain.pdf +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/howto-howto.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/icon-d.png +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/index.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/linking.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/locationmap/index.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/no-dtd-xinclude.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/no-dtd.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/sample.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/static.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/svg.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/usemap.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/xinclude-explanation.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/xinclude-input-sec2.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/xinclude-input-sec3.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/xinclude-input-sec4.txt +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/xinclude-input-sec5.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/xinclude.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/xml-entities.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/demo-i18n.de.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/demo-i18n.fr.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/demo-i18n.nl.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/demo-i18n.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/i18n.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/index.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/showonlywhenselected/page1.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/showonlywhenselected/page2.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/subdir/book-sample.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/subdir/hello.zip +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/subdir/index.xml +%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/site-xinclude.xml %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/site.xml %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/tabs.xml %%DATADIR%%/main/fresh-site/src/documentation/resources/images/ellipse-2.svg @@ -168,6 +250,7 @@ bin/forrest %%DATADIR%%/main/fresh-site/src/documentation/resources/schema/catalog.xcat %%DATADIR%%/main/fresh-site/src/documentation/resources/schema/hello-v10.dtd %%DATADIR%%/main/fresh-site/src/documentation/resources/schema/symbols-project-v10.ent +%%DATADIR%%/main/fresh-site/src/documentation/resources/stylesheets/demo-exslt-to-document.xsl %%DATADIR%%/main/fresh-site/src/documentation/resources/stylesheets/hello2document.xsl %%DATADIR%%/main/fresh-site/src/documentation/sitemap.xmap %%DATADIR%%/main/fresh-site/src/documentation/skinconf.xml @@ -197,6 +280,7 @@ bin/forrest %%DATADIR%%/main/java/org/apache/forrest/conf/ForrestConfModule.java %%DATADIR%%/main/java/org/apache/forrest/conf/ForrestConfUtils.java %%DATADIR%%/main/java/org/apache/forrest/conf/SkinconfTransformer.java +%%DATADIR%%/main/java/org/apache/forrest/generation/ModuleGenerator.java %%DATADIR%%/main/java/org/apache/forrest/locationmap/AbstractWrappingModule.java %%DATADIR%%/main/java/org/apache/forrest/locationmap/LocationMapModule.java %%DATADIR%%/main/java/org/apache/forrest/locationmap/RegexpLocationMapMatcher.java @@ -235,7 +319,6 @@ bin/forrest %%DATADIR%%/main/tasks/org/apache/forrest/UncopiedFileSelector.java %%DATADIR%%/main/template-sites/basic/forrest.properties %%DATADIR%%/main/template-sites/basic/forrest.properties.xml -%%DATADIR%%/main/template-sites/basic/src/documentation/README.txt %%DATADIR%%/main/template-sites/basic/src/documentation/classes/CatalogManager.properties %%DATADIR%%/main/template-sites/basic/src/documentation/content/locationmap.xml %%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/images/group-logo.gif @@ -248,10 +331,10 @@ bin/forrest %%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/site.xml %%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/tabs.xml %%DATADIR%%/main/template-sites/basic/src/documentation/resources/schema/catalog.xcat +%%DATADIR%%/main/template-sites/basic/src/documentation/resources/schema/symbols-project-v10.ent %%DATADIR%%/main/template-sites/basic/src/documentation/sitemap.xmap %%DATADIR%%/main/template-sites/basic/src/documentation/skinconf.xml %%DATADIR%%/main/template-sites/benchmark/forrest.properties -%%DATADIR%%/main/template-sites/benchmark/src/documentation/README.txt %%DATADIR%%/main/template-sites/benchmark/src/documentation/classes/CatalogManager.properties %%DATADIR%%/main/template-sites/benchmark/src/documentation/content/locationmap.xml %%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/images/group-logo.gif @@ -267,10 +350,10 @@ bin/forrest %%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/site.xml %%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/tabs.xml %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/schema/catalog.xcat +%%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/schema/symbols-project-v10.ent %%DATADIR%%/main/template-sites/benchmark/src/documentation/sitemap.xmap %%DATADIR%%/main/template-sites/benchmark/src/documentation/skinconf.xml %%DATADIR%%/main/template-sites/business/forrest.properties -%%DATADIR%%/main/template-sites/business/src/documentation/README.txt %%DATADIR%%/main/template-sites/business/src/documentation/classes/CatalogManager.properties %%DATADIR%%/main/template-sites/business/src/documentation/content/locationmap.xml %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/about/index.xml @@ -305,7 +388,7 @@ bin/forrest %%DATADIR%%/main/template-sites/business/src/documentation/translations/tabs_es.xml %%DATADIR%%/main/var/catalogMountSnippet.xsl %%DATADIR%%/main/var/echo-settings-message.txt -%%DATADIR%%/main/var/full.cvsignore +%%DATADIR%%/main/var/fixWarXconf.xsl %%DATADIR%%/main/var/initial_catalog.xcat %%DATADIR%%/main/var/initial_plugins_locationmap.xml %%DATADIR%%/main/var/initial_plugins_sitemap.xmap @@ -325,14 +408,11 @@ bin/forrest %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache/cocoon/util/mime.types %%DATADIR%%/main/webapp/WEB-INF/cli.xconf %%DATADIR%%/main/webapp/WEB-INF/cocoon.xconf +%%DATADIR%%/main/webapp/WEB-INF/ehcache.xml %%DATADIR%%/main/webapp/WEB-INF/jtidy.properties %%DATADIR%%/main/webapp/WEB-INF/logkit.xconf %%DATADIR%%/main/webapp/WEB-INF/properties/core.properties -%%DATADIR%%/main/webapp/WEB-INF/properties/dev/core.properties -%%DATADIR%%/main/webapp/WEB-INF/properties/prod/core.properties %%DATADIR%%/main/webapp/WEB-INF/web.xml -%%DATADIR%%/main/webapp/WEB-INF/xconf/forrest-core-webapp.xconf -%%DATADIR%%/main/webapp/WEB-INF/xconf/forrest-core.xconf %%DATADIR%%/main/webapp/aggregate.xmap %%DATADIR%%/main/webapp/default-forrest.properties %%DATADIR%%/main/webapp/faq.xmap @@ -351,9 +431,9 @@ bin/forrest %%DATADIR%%/main/webapp/plugins.xmap %%DATADIR%%/main/webapp/profiler.xmap %%DATADIR%%/main/webapp/raw.xmap +%%DATADIR%%/main/webapp/resources.xmap %%DATADIR%%/main/webapp/resources/chaperon/grammars/link.xlex %%DATADIR%%/main/webapp/resources/chaperon/stylesheets/pattern2link.xsl -%%DATADIR%%/main/webapp/resources/schema/README.txt %%DATADIR%%/main/webapp/resources/schema/catalog %%DATADIR%%/main/webapp/resources/schema/catalog.forrest %%DATADIR%%/main/webapp/resources/schema/catalog.forrest.xcat @@ -448,7 +528,6 @@ bin/forrest %%DATADIR%%/main/webapp/resources/schema/dtd/howto-v12.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/howto-v13.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/howto-v20.dtd -%%DATADIR%%/main/webapp/resources/schema/dtd/index.html %%DATADIR%%/main/webapp/resources/schema/dtd/javadoc-v04draft.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/readme.txt %%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v06-1.dtd @@ -457,6 +536,7 @@ bin/forrest %%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v06.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v07-1.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v08-1.dtd +%%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v08-2.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/specification-v11.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/status-v13.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/status-v13.mod @@ -468,7 +548,6 @@ bin/forrest %%DATADIR%%/main/webapp/resources/schema/dtd/todo-v13.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/todo-v20.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/todo-v20.mod -%%DATADIR%%/main/webapp/resources/schema/dtd/v10/README.txt %%DATADIR%%/main/webapp/resources/schema/dtd/v10/changes-v10.dtd %%DATADIR%%/main/webapp/resources/schema/dtd/v10/characters.ent %%DATADIR%%/main/webapp/resources/schema/dtd/v10/document-v10.dtd @@ -487,18 +566,17 @@ bin/forrest %%DATADIR%%/main/webapp/resources/schema/entity/ISOnum.pen %%DATADIR%%/main/webapp/resources/schema/entity/ISOpub.pen %%DATADIR%%/main/webapp/resources/schema/entity/ISOtech.pen -%%DATADIR%%/main/webapp/resources/schema/entity/index.html %%DATADIR%%/main/webapp/resources/schema/entity/skinconf-common-plugins-07-1.xml %%DATADIR%%/main/webapp/resources/schema/entity/symbols-core-v10.ent +%%DATADIR%%/main/webapp/resources/schema/entity/symbols-project-v10.ent %%DATADIR%%/main/webapp/resources/schema/open-office/catalog %%DATADIR%%/main/webapp/resources/schema/open-office/catalog.xcat %%DATADIR%%/main/webapp/resources/schema/open-office/dummy.dtd -%%DATADIR%%/main/webapp/resources/schema/relaxng/README.txt -%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/README.txt %%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/XMLSchema-instance.rng %%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/copyright-software-20021231.html %%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/full-ruby-1.rng %%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/ruby-1.rng +%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/w3c-license.txt %%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-attribs-2.rng %%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-bidi-attrib-2.rng %%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-caption-2.rng @@ -534,6 +612,7 @@ bin/forrest %%DATADIR%%/main/webapp/resources/schema/relaxng/skinconf.rnc %%DATADIR%%/main/webapp/resources/schema/relaxng/unstable/any.rng %%DATADIR%%/main/webapp/resources/schema/relaxng/unstable/any.rnx +%%DATADIR%%/main/webapp/resources/schema/relaxng/unstable/document-v13.rng %%DATADIR%%/main/webapp/resources/schema/relaxng/unstable/forrestbot.rng %%DATADIR%%/main/webapp/resources/schema/relaxng/unstable/forrestbot.rnx %%DATADIR%%/main/webapp/resources/schema/relaxng/xslt.rng @@ -548,7 +627,6 @@ bin/forrest %%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sinclist.mod %%DATADIR%%/main/webapp/resources/schema/sdocbook/catalog %%DATADIR%%/main/webapp/resources/schema/sdocbook/catalog.xcat -%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/README.txt %%DATADIR%%/main/webapp/resources/schema/w3c-dtd/catalog %%DATADIR%%/main/webapp/resources/schema/w3c-dtd/catalog.xcat %%DATADIR%%/main/webapp/resources/schema/w3c-dtd/svg-20000303-exchange.dtd @@ -583,6 +661,13 @@ bin/forrest %%DATADIR%%/main/webapp/resources/stylesheets/docv20-to-docv13.xsl %%DATADIR%%/main/webapp/resources/stylesheets/dotdots.xsl %%DATADIR%%/main/webapp/resources/stylesheets/exception-to-html.xsl +%%DATADIR%%/main/webapp/resources/stylesheets/exslt/date/functions/add/date.add.template.xsl +%%DATADIR%%/main/webapp/resources/stylesheets/exslt/date/functions/day-name/date.day-name.template.xsl +%%DATADIR%%/main/webapp/resources/stylesheets/exslt/date/functions/format-date/date.format-date.template.xsl +%%DATADIR%%/main/webapp/resources/stylesheets/exslt/date/functions/parse-date/date.parse-date.template.xsl +%%DATADIR%%/main/webapp/resources/stylesheets/exslt/exslt-license.txt +%%DATADIR%%/main/webapp/resources/stylesheets/exslt/license-email.txt +%%DATADIR%%/main/webapp/resources/stylesheets/exslt/str/functions/padding/str.padding.template.xsl %%DATADIR%%/main/webapp/resources/stylesheets/external/str.find-last.xslt %%DATADIR%%/main/webapp/resources/stylesheets/extract-svg.xsl %%DATADIR%%/main/webapp/resources/stylesheets/faq-to-document.xsl @@ -594,6 +679,7 @@ bin/forrest %%DATADIR%%/main/webapp/resources/stylesheets/html-to-document.xsl %%DATADIR%%/main/webapp/resources/stylesheets/html-to-htmlbody.xsl %%DATADIR%%/main/webapp/resources/stylesheets/linkmap-to-document.xsl +%%DATADIR%%/main/webapp/resources/stylesheets/linkmap-to-validation.xsl %%DATADIR%%/main/webapp/resources/stylesheets/lucene-search-to-xdoc.xsl %%DATADIR%%/main/webapp/resources/stylesheets/lucene-update-to-xdoc.xsl %%DATADIR%%/main/webapp/resources/stylesheets/normalizehrefs.xsl @@ -607,6 +693,7 @@ bin/forrest %%DATADIR%%/main/webapp/resources/stylesheets/project2text.xsl %%DATADIR%%/main/webapp/resources/stylesheets/projectnavigation-to-site.xsl %%DATADIR%%/main/webapp/resources/stylesheets/relativize-linkmap.xsl +%%DATADIR%%/main/webapp/resources/stylesheets/replace-xpointer-attributes.xsl %%DATADIR%%/main/webapp/resources/stylesheets/replaceCharsInString.xsl %%DATADIR%%/main/webapp/resources/stylesheets/rss-to-document.xsl %%DATADIR%%/main/webapp/resources/stylesheets/rssissues-to-document.xsl @@ -617,13 +704,13 @@ bin/forrest %%DATADIR%%/main/webapp/resources/stylesheets/strip-i18n-remains.xsl %%DATADIR%%/main/webapp/resources/stylesheets/text-to-document.xsl %%DATADIR%%/main/webapp/resources/stylesheets/upgrade-skinconf.xsl +%%DATADIR%%/main/webapp/resources/stylesheets/validation-insert-filename.xsl +%%DATADIR%%/main/webapp/resources/stylesheets/validation-reports.xsl %%DATADIR%%/main/webapp/resources/stylesheets/xdoc-to-lucene.xsl %%DATADIR%%/main/webapp/resources/stylesheets/xml-to-pretty.xsl -%%DATADIR%%/main/webapp/resources.xmap %%DATADIR%%/main/webapp/revisions.xmap %%DATADIR%%/main/webapp/search.xmap %%DATADIR%%/main/webapp/sitemap.xmap -%%DATADIR%%/main/webapp/skins/README.txt %%DATADIR%%/main/webapp/skins/coat/css/basic.css %%DATADIR%%/main/webapp/skins/coat/css/print.css %%DATADIR%%/main/webapp/skins/coat/css/profile.css.xslt @@ -650,8 +737,9 @@ bin/forrest %%DATADIR%%/main/webapp/skins/coat/xslt/html/site-to-xhtml.xsl %%DATADIR%%/main/webapp/skins/coat/xslt/html/tab-to-menu.xsl %%DATADIR%%/main/webapp/skins/common/css/forrest.css.xslt -%%DATADIR%%/main/webapp/skins/common/images/README.txt %%DATADIR%%/main/webapp/skins/common/images/add.jpg +%%DATADIR%%/main/webapp/skins/common/images/apache-thanks.png +%%DATADIR%%/main/webapp/skins/common/images/built-with-cocoon.gif %%DATADIR%%/main/webapp/skins/common/images/built-with-forrest-button.png %%DATADIR%%/main/webapp/skins/common/images/corner-imports.svg.xslt %%DATADIR%%/main/webapp/skins/common/images/dc.svg.xslt @@ -851,7 +939,6 @@ bin/forrest %%DATADIR%%/main/webapp/skins/scales/xslt/html/document-to-html.xsl %%DATADIR%%/main/webapp/skins/scales/xslt/html/site-to-xhtml.xsl %%DATADIR%%/main/webapp/skins/scales/xslt/html/tab-to-menu.xsl -%%DATADIR%%/main/webapp/skins/tigris/README.txt %%DATADIR%%/main/webapp/skins/tigris/css/forrest.css.xslt %%DATADIR%%/main/webapp/skins/tigris/css/inst.css %%DATADIR%%/main/webapp/skins/tigris/css/ns4_only.css @@ -927,14 +1014,36 @@ bin/forrest %%DATADIR%%/main/webapp/skins/tigris/xslt/html/document-to-html.xsl %%DATADIR%%/main/webapp/skins/tigris/xslt/html/site-to-xhtml.xsl %%DATADIR%%/main/webapp/skins/tigris/xslt/html/tab-to-menu.xsl +%%DATADIR%%/main/webapp/symbols-project-v10.ent %%DATADIR%%/main/webapp/tabs.xmap %%DATADIR%%/main/webapp/wiring.xml %%DATADIR%%/plugins/build.xml -%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/build/build.number +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/LICENSE.txt +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/NOTICE.txt %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/build.xml +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/build/build.number +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/default.plugin.properties.xml %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/forrest.properties +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/lib/cocoon-fop-ng-impl-special-SNAPSHOT.jar +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/lib/cocoon.license.txt +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/lib/fop-0.95.NOTICE.txt +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/lib/fop-0.95.jar +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/lib/fop.license.txt %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/locationmap.xml %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/output.xmap +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-commonElements.xsl +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-footerinfo.xsl +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-layout.xsl +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-pageBreaks.xsl +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-pageNumber.xsl +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-pdfoutline.xsl +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-xmpMetadata.xsl +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_en.xml +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_nb.xml +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_nn.xml +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_se.xml +%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/translations/OutputPDFMessages_smj.xml %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/classes/CatalogManager.properties %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/favicon.ico %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/group-logo.gif @@ -948,6 +1057,8 @@ bin/forrest %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/tabs.xml %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/skinconf.xml %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/status.xml +%%DATADIR%%/plugins/pluginTemplate/LICENSE.txt +%%DATADIR%%/plugins/pluginTemplate/NOTICE.txt %%DATADIR%%/plugins/pluginTemplate/build.xml %%DATADIR%%/plugins/pluginTemplate/forrest.properties %%DATADIR%%/plugins/pluginTemplate/lib/readme.txt @@ -969,9 +1080,12 @@ bin/forrest %%DATADIR%%/plugins/plugins.xml %%DATADIR%%/site-author/classes/CatalogManager.properties %%DATADIR%%/site-author/conf/cli.xconf +%%DATADIR%%/site-author/conf/uris.txt %%DATADIR%%/site-author/content/.htaccess %%DATADIR%%/site-author/content/doap.xml %%DATADIR%%/site-author/content/locationmap.xml +%%DATADIR%%/site-author/content/mirrors--xml.cgi +%%DATADIR%%/site-author/content/mirrors--xml.html %%DATADIR%%/site-author/content/mirrors.cgi %%DATADIR%%/site-author/content/skins/skins.xml %%DATADIR%%/site-author/content/xdocs/TR/2004/WD-forrest10.html @@ -982,59 +1096,8 @@ bin/forrest %%DATADIR%%/site-author/content/xdocs/committed.xml %%DATADIR%%/site-author/content/xdocs/compliance.xml %%DATADIR%%/site-author/content/xdocs/contrib.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/body-index.fv -%%DATADIR%%/site-author/content/xdocs/docs_0_70/build.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/cap.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/catalog.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/compliance.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/dreams.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/faq.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/forrest-contract.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch/book.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch/howto-bugzilla-patch.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch/my-images/bugzilla-screen.gif -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/cvs-ssh/book.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/cvs-ssh/howto-cvs-ssh.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/forrest.xmap.html -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-asf-mirror.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-buildPlugin.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-corner-images.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-custom-html-source.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-editcss.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-forrest-from-maven.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-forrestbot.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-howto.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-pdf-tab.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-view-contracts.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-view-dsl.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-view-install.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/index.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/howto-multi.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/revision-howto-multi-2003-09-14.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/revision-howto-multi-2003-09-15.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/revision-step1-2003-09-16.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/step1.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/step2.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/step3.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/project_sitemap.xmap.html -%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/sitemap.xmap.html -%%DATADIR%%/site-author/content/xdocs/docs_0_70/images/snapshot-plain-dev.png -%%DATADIR%%/site-author/content/xdocs/docs_0_70/images/snapshot-view-viewHelper.png -%%DATADIR%%/site-author/content/xdocs/docs_0_70/index.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/libre-intro.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/linking.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/menu-index.fv -%%DATADIR%%/site-author/content/xdocs/docs_0_70/primer.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/project-sitemap.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/searching.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/sitemap-ref.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/skin-package.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/skins.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/tab-index.fv -%%DATADIR%%/site-author/content/xdocs/docs_0_70/upgrading_07.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/validation.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/views.xml -%%DATADIR%%/site-author/content/xdocs/docs_0_70/your-project.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_100/index.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_100/upgrading_010.xml %%DATADIR%%/site-author/content/xdocs/docs_0_80/body-index.fv %%DATADIR%%/site-author/content/xdocs/docs_0_80/build.xml %%DATADIR%%/site-author/content/xdocs/docs_0_80/cap.xml @@ -1083,8 +1146,53 @@ bin/forrest %%DATADIR%%/site-author/content/xdocs/docs_0_80/upgrading_08.xml %%DATADIR%%/site-author/content/xdocs/docs_0_80/validation.xml %%DATADIR%%/site-author/content/xdocs/docs_0_80/your-project.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/body-index.fv +%%DATADIR%%/site-author/content/xdocs/docs_0_90/build.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/cap.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/catalog.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/dreams.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/faq.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/glossary.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/bugzilla-patch/book.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/bugzilla-patch/howto-bugzilla-patch.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/bugzilla-patch/my-images/bugzilla-screen.gif +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/cvs-ssh/book.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/cvs-ssh/howto-cvs-ssh.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/howto-asf-mirror.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/howto-buildPlugin.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/howto-collaborativeEditing.html +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/howto-corner-images.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/howto-custom-html-source.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/howto-editcss.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/howto-forrest-from-maven.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/howto-pdf-tab.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/index.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/multi/howto-multi.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/multi/revision-howto-multi-2003-09-14.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/multi/revision-howto-multi-2003-09-15.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/multi/revision-step1-2003-09-16.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/multi/step1.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/multi/step2.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/multi/step3.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/images/snapshot-view-viewHelper.png %%DATADIR%%/site-author/content/xdocs/docs_0_90/index.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/libre-intro.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/linking.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/locationmap.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/menu-index.fv +%%DATADIR%%/site-author/content/xdocs/docs_0_90/primer.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/project-sitemap.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/properties.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/searching.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/sitemap-explain.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/sitemap-ref.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/skin-package.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/skins.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/status-themes.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/tab-index.fv %%DATADIR%%/site-author/content/xdocs/docs_0_90/upgrading_09.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/validation.xml +%%DATADIR%%/site-author/content/xdocs/docs_0_90/your-project.xml %%DATADIR%%/site-author/content/xdocs/documentation_bestpractices.xml %%DATADIR%%/site-author/content/xdocs/dtdx/document-v11.xml %%DATADIR%%/site-author/content/xdocs/dtdx/document-v12.xml @@ -1105,6 +1213,8 @@ bin/forrest %%DATADIR%%/site-author/content/xdocs/guidelines.xml %%DATADIR%%/site-author/content/xdocs/gump.xml %%DATADIR%%/site-author/content/xdocs/howto-dev.xml +%%DATADIR%%/site-author/content/xdocs/howto-forrestbot-scp.xml +%%DATADIR%%/site-author/content/xdocs/howto-forrestbot-svn.xml %%DATADIR%%/site-author/content/xdocs/howto-howto.xml %%DATADIR%%/site-author/content/xdocs/index.xml %%DATADIR%%/site-author/content/xdocs/issues.xml @@ -1115,8 +1225,8 @@ bin/forrest %%DATADIR%%/site-author/content/xdocs/plan/index.xml %%DATADIR%%/site-author/content/xdocs/plan/internal-xhtml.xml %%DATADIR%%/site-author/content/xdocs/pluginDocs/index.xml -%%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_70/pluginInfrastructure.xml -%%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_70/usingPlugins.xml +%%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_100/pluginInfrastructure.xml +%%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_100/usingPlugins.xml %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_80/pluginInfrastructure.xml %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_80/usingPlugins.xml %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_90/pluginInfrastructure.xml @@ -1126,28 +1236,29 @@ bin/forrest %%DATADIR%%/site-author/content/xdocs/procedures/release/announce_code_freeze.txt %%DATADIR%%/site-author/content/xdocs/procedures/release/announce_end_of_code_freeze.txt %%DATADIR%%/site-author/content/xdocs/procedures/release/announce_release.txt -%%DATADIR%%/site-author/content/xdocs/procedures/release/propose_release_plan.txt %%DATADIR%%/site-author/content/xdocs/procedures/release/rc_did_not_build_what_now.txt %%DATADIR%%/site-author/content/xdocs/procedures/release/test_and_vote_on_rel_cand.txt %%DATADIR%%/site-author/content/xdocs/proposal-asf-forrestbot.xml -%%DATADIR%%/site-author/content/xdocs/roles.xml %%DATADIR%%/site-author/content/xdocs/site.xml %%DATADIR%%/site-author/content/xdocs/subversion_bestpractices.xml %%DATADIR%%/site-author/content/xdocs/svn.xml %%DATADIR%%/site-author/content/xdocs/tabs.xml +%%DATADIR%%/site-author/content/xdocs/tasks.xml %%DATADIR%%/site-author/content/xdocs/thanks.xml %%DATADIR%%/site-author/content/xdocs/tools/eclipse.xml %%DATADIR%%/site-author/content/xdocs/tools/forrestbar.xml %%DATADIR%%/site-author/content/xdocs/tools/forrestbar.xpi %%DATADIR%%/site-author/content/xdocs/tools/forrestbot-web-interface.xml %%DATADIR%%/site-author/content/xdocs/tools/forrestbot.xml +%%DATADIR%%/site-author/content/xdocs/tools/images/forrest-bar-options.png %%DATADIR%%/site-author/content/xdocs/tools/index.xml %%DATADIR%%/site-author/content/xdocs/tools/xxe.xml %%DATADIR%%/site-author/content/xdocs/trash/docs_0_50/index.xml %%DATADIR%%/site-author/content/xdocs/trash/docs_0_50/upgrading_05.xml +%%DATADIR%%/site-author/content/xdocs/trash/docs_0_70/upgrading_07.xml %%DATADIR%%/site-author/content/xdocs/uri-namespace.xml -%%DATADIR%%/site-author/content/xdocs/versions/index.xml %%DATADIR%%/site-author/content/xdocs/versions.xml +%%DATADIR%%/site-author/content/xdocs/versions/index.xml %%DATADIR%%/site-author/content/xdocs/who.xml %%DATADIR%%/site-author/content/xdocs/zone.xml %%DATADIR%%/site-author/forrest.properties @@ -1155,6 +1266,7 @@ bin/forrest %%DATADIR%%/site-author/publish.xml %%DATADIR%%/site-author/resources/images/apache-forrest-original.svg %%DATADIR%%/site-author/resources/images/apache-forrest.png +%%DATADIR%%/site-author/resources/images/apache-thanks.png %%DATADIR%%/site-author/resources/images/built-with-cocoon.gif %%DATADIR%%/site-author/resources/images/dir-menu.png %%DATADIR%%/site-author/resources/images/dir-menu2.png @@ -1167,11 +1279,18 @@ bin/forrest %%DATADIR%%/site-author/resources/images/page-areas.png %%DATADIR%%/site-author/resources/images/project-logo.gif %%DATADIR%%/site-author/resources/images/project-logo.png +%%DATADIR%%/site-author/resources/images/rss.png +%%DATADIR%%/site-author/resources/images/snapshot-skin-pelt.png +%%DATADIR%%/site-author/resources/images/snapshot-skin-plain-dev.png +%%DATADIR%%/site-author/resources/images/snapshot-skin-tigris.png %%DATADIR%%/site-author/resources/images/tabs.png +%%DATADIR%%/site-author/resources/images/usemap.gif %%DATADIR%%/site-author/resources/themes/pelt.fv %%DATADIR%%/site-author/sitemap.xmap %%DATADIR%%/site-author/skinconf.xml %%DATADIR%%/site-author/status.xml +%%DATADIR%%/tools/ant/LICENSE.txt +%%DATADIR%%/tools/ant/NOTICE.txt %%DATADIR%%/tools/ant/bin/README-forrest-upgrade.txt %%DATADIR%%/tools/ant/bin/ant %%DATADIR%%/tools/ant/bin/ant.cmd @@ -1183,26 +1302,32 @@ bin/forrest %%DATADIR%%/tools/ant/bin/runant.pl %%DATADIR%%/tools/ant/bin/runant.py %%DATADIR%%/tools/ant/bin/runrc.cmd +%%DATADIR%%/tools/ant/lib/ant-NOTICE.txt %%DATADIR%%/tools/ant/lib/ant-apache-oro.jar %%DATADIR%%/tools/ant/lib/ant-apache-resolver.jar %%DATADIR%%/tools/ant/lib/ant-commons-net.jar %%DATADIR%%/tools/ant/lib/ant-contrib-1.0b2.jar +%%DATADIR%%/tools/ant/lib/ant-contrib-1.0b2.jar.license.txt %%DATADIR%%/tools/ant/lib/ant-jsch.jar %%DATADIR%%/tools/ant/lib/ant-launcher.jar %%DATADIR%%/tools/ant/lib/ant-nodeps.jar +%%DATADIR%%/tools/ant/lib/ant-testutil.jar %%DATADIR%%/tools/ant/lib/ant-trax.jar -%%DATADIR%%/tools/ant/lib/ant-xalan2.jar %%DATADIR%%/tools/ant/lib/ant.jar +%%DATADIR%%/tools/ant/lib/ant.license.txt %%DATADIR%%/tools/ant/lib/apache-jakarta-commons-net-1.4.1.jar -%%DATADIR%%/tools/ant/lib/jsch-0.1.28.jar -%%DATADIR%%/tools/ant/lib/jsvn-0.9-dev.jar -%%DATADIR%%/tools/ant/lib/oro-2.0.8.jar +%%DATADIR%%/tools/ant/lib/apache-jakarta-commons-net-1.4.1.jar.license.txt +%%DATADIR%%/tools/ant/lib/apache-jakarta-commons-net-NOTICE.txt +%%DATADIR%%/tools/ant/lib/apache-jakarta-oro-2.0.8.jar +%%DATADIR%%/tools/ant/lib/apache-jakarta-oro-2.0.8.jar.license.txt +%%DATADIR%%/tools/ant/lib/jsch-0.1.39.jar +%%DATADIR%%/tools/ant/lib/jsch-0.1.39.jar.license.txt %%DATADIR%%/tools/ant/lib/xml-commons-resolver-1.1.jar -%%DATADIR%%/tools/dtdconverters/README.txt +%%DATADIR%%/tools/ant/lib/xml-commons-resolver-1.1.jar.license.txt %%DATADIR%%/tools/dtdconverters/dtdx.dtd %%DATADIR%%/tools/dtdconverters/dtdx2dtd.xsl -%%DATADIR%%/tools/forrestbar/README.txt %%DATADIR%%/tools/forrestbar/build.xml +%%DATADIR%%/tools/forrestbar/xpi/chrome.manifest %%DATADIR%%/tools/forrestbar/xpi/chrome/content/contents.rdf %%DATADIR%%/tools/forrestbar/xpi/chrome/content/forrestbar.css %%DATADIR%%/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.js @@ -1228,10 +1353,8 @@ bin/forrest %%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/search.png %%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/tools-down.png %%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/tools.png -%%DATADIR%%/tools/forrestbar/xpi/chrome.manifest %%DATADIR%%/tools/forrestbar/xpi/install.js %%DATADIR%%/tools/forrestbar/xpi/install.rdf -%%DATADIR%%/tools/forrestbot/README.txt %%DATADIR%%/tools/forrestbot/avalon-phoenix.xml %%DATADIR%%/tools/forrestbot/avalon-site.xml %%DATADIR%%/tools/forrestbot/cocoon-site.xml @@ -1247,14 +1370,16 @@ bin/forrest %%DATADIR%%/tools/forrestbot/forrest.xml %%DATADIR%%/tools/forrestbot/incubator.xml %%DATADIR%%/tools/forrestbot/lib/ant-contrib-1.0b2.jar -%%DATADIR%%/tools/forrestbot/lib/jsvn-0.9-dev.jar +%%DATADIR%%/tools/forrestbot/lib/ant-contrib-1.0b2.jar.license.txt %%DATADIR%%/tools/forrestbot/sf-struts.xml %%DATADIR%%/tools/forrestbot/webapp/.classpath %%DATADIR%%/tools/forrestbot/webapp/.project -%%DATADIR%%/tools/forrestbot/webapp/lib/README.txt %%DATADIR%%/tools/forrestbot/webapp/lib/oscore-2.2.2.jar +%%DATADIR%%/tools/forrestbot/webapp/lib/oscore-2.2.2.jar.license.txt %%DATADIR%%/tools/forrestbot/webapp/lib/osuser-1.0-dev.jar +%%DATADIR%%/tools/forrestbot/webapp/lib/osuser-1.0-dev.jar.license.txt %%DATADIR%%/tools/forrestbot/webapp/lib/propertyset-1.2.jar +%%DATADIR%%/tools/forrestbot/webapp/lib/propertyset-1.2.jar.license.txt %%DATADIR%%/tools/forrestbot/webapp/maven.xml %%DATADIR%%/tools/forrestbot/webapp/project.properties %%DATADIR%%/tools/forrestbot/webapp/project.xml @@ -1308,9 +1433,9 @@ bin/forrest %%DATADIR%%/tools/jetty/jetty-4.2.19.jar %%DATADIR%%/tools/jetty/jetty-4.2.19.jar.license.html %%DATADIR%%/tools/jetty/servlet-2.3.jar +%%DATADIR%%/tools/jetty/servlet-2.3.jar.license.txt %%DATADIR%%/tools/targets/maven.xml %%DATADIR%%/tools/targets/patch.xml -%%DATADIR%%/tools/xxe/README.txt %%DATADIR%%/tools/xxe/build.xml %%DATADIR%%/tools/xxe/common_config.xml %%DATADIR%%/tools/xxe/css/common.css @@ -1328,287 +1453,324 @@ bin/forrest %%DATADIR%%/tools/xxe/toolBar.xml %%DATADIR%%/whiteboard/plugins/build.xml %%DATADIR%%/whiteboard/plugins/whiteboard-plugins.xml -@dirrm %%DATADIR%%/bin -@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources -@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/classes -@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images -@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs -@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content -@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation -@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src -@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf -@dirrm %%DATADIR%%/build/plugins -@dirrm %%DATADIR%%/build -@dirrm %%DATADIR%%/etc/cocoon_upgrade -@dirrm %%DATADIR%%/etc/test-whitespace -@dirrm %%DATADIR%%/etc -@dirrm %%DATADIR%%/lib/core -@dirrm %%DATADIR%%/lib/endorsed -@dirrm %%DATADIR%%/lib/optional -@dirrm %%DATADIR%%/lib -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/classes -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/locationmap -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/showonlywhenselected -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/subdir -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/resources/images/sub-dir -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/resources/images -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/resources/schema -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/resources/stylesheets -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/resources -@dirrm %%DATADIR%%/main/fresh-site/src/documentation/translations -@dirrm %%DATADIR%%/main/fresh-site/src/documentation -@dirrm %%DATADIR%%/main/fresh-site/src -@dirrm %%DATADIR%%/main/fresh-site -@dirrm %%DATADIR%%/main/java/org/apache/forrest/conf -@dirrm %%DATADIR%%/main/java/org/apache/forrest/locationmap/lm -@dirrm %%DATADIR%%/main/java/org/apache/forrest/locationmap/source/impl -@dirrm %%DATADIR%%/main/java/org/apache/forrest/locationmap/source -@dirrm %%DATADIR%%/main/java/org/apache/forrest/locationmap -@dirrm %%DATADIR%%/main/java/org/apache/forrest/log -@dirrm %%DATADIR%%/main/java/org/apache/forrest/sourceexists -@dirrm %%DATADIR%%/main/java/org/apache/forrest/sourcetype -@dirrm %%DATADIR%%/main/java/org/apache/forrest/util -@dirrm %%DATADIR%%/main/java/org/apache/forrest/xni -@dirrm %%DATADIR%%/main/java/org/apache/forrest -@dirrm %%DATADIR%%/main/java/org/apache -@dirrm %%DATADIR%%/main/java/org -@dirrm %%DATADIR%%/main/java -@dirrm %%DATADIR%%/main/targets -@dirrm %%DATADIR%%/main/tasks/org/apache/forrest -@dirrm %%DATADIR%%/main/tasks/org/apache -@dirrm %%DATADIR%%/main/tasks/org -@dirrm %%DATADIR%%/main/tasks -@dirrm %%DATADIR%%/main/template-sites/basic/src/documentation/classes -@dirrm %%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/images -@dirrm %%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs -@dirrm %%DATADIR%%/main/template-sites/basic/src/documentation/content -@dirrm %%DATADIR%%/main/template-sites/basic/src/documentation/resources/schema -@dirrm %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common -@dirrm %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes -@dirrm %%DATADIR%%/main/template-sites/basic/src/documentation/resources -@dirrm %%DATADIR%%/main/template-sites/basic/src/documentation -@dirrm %%DATADIR%%/main/template-sites/basic/src -@dirrm %%DATADIR%%/main/template-sites/basic -@dirrm %%DATADIR%%/main/template-sites/benchmark/src/documentation/classes -@dirrm %%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/images -@dirrm %%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs -@dirrm %%DATADIR%%/main/template-sites/benchmark/src/documentation/content -@dirrm %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/schema -@dirrm %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources -@dirrm %%DATADIR%%/main/template-sites/benchmark/src/documentation -@dirrm %%DATADIR%%/main/template-sites/benchmark/src -@dirrm %%DATADIR%%/main/template-sites/benchmark -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/classes -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/about -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/images -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/product -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/team/resume -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/team -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/content -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/resources/schema -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/resources -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation/translations -@dirrm %%DATADIR%%/main/template-sites/business/src/documentation -@dirrm %%DATADIR%%/main/template-sites/business/src -@dirrm %%DATADIR%%/main/template-sites/business -@dirrm %%DATADIR%%/main/template-sites -@dirrm %%DATADIR%%/main/var -@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache/cocoon/util -@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache/cocoon -@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache -@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes/org -@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes -@dirrm %%DATADIR%%/main/webapp/WEB-INF/properties/dev -@dirrm %%DATADIR%%/main/webapp/WEB-INF/properties/prod -@dirrm %%DATADIR%%/main/webapp/WEB-INF/properties -@dirrm %%DATADIR%%/main/webapp/WEB-INF/xconf -@dirrm %%DATADIR%%/main/webapp/WEB-INF -@dirrm %%DATADIR%%/main/webapp/resources/chaperon/grammars -@dirrm %%DATADIR%%/main/webapp/resources/chaperon/stylesheets -@dirrm %%DATADIR%%/main/webapp/resources/chaperon -@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent -@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2 -@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent -@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook/4.2 -@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook -@dirrm %%DATADIR%%/main/webapp/resources/schema/dtd/v10 -@dirrm %%DATADIR%%/main/webapp/resources/schema/dtd/v20a -@dirrm %%DATADIR%%/main/webapp/resources/schema/dtd -@dirrm %%DATADIR%%/main/webapp/resources/schema/entity -@dirrm %%DATADIR%%/main/webapp/resources/schema/open-office -@dirrm %%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527 -@dirrm %%DATADIR%%/main/webapp/resources/schema/relaxng/unstable -@dirrm %%DATADIR%%/main/webapp/resources/schema/relaxng -@dirrm %%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0 -@dirrm %%DATADIR%%/main/webapp/resources/schema/sdocbook -@dirrm %%DATADIR%%/main/webapp/resources/schema/w3c-dtd -@dirrm %%DATADIR%%/main/webapp/resources/schema -@dirrm %%DATADIR%%/main/webapp/resources/stylesheets/aggregates -@dirrm %%DATADIR%%/main/webapp/resources/stylesheets/external -@dirrm %%DATADIR%%/main/webapp/resources/stylesheets -@dirrm %%DATADIR%%/main/webapp/resources -@dirrm %%DATADIR%%/main/webapp/skins/coat/css -@dirrm %%DATADIR%%/main/webapp/skins/coat/images -@dirrm %%DATADIR%%/main/webapp/skins/coat/xslt/fo -@dirrm %%DATADIR%%/main/webapp/skins/coat/xslt/html -@dirrm %%DATADIR%%/main/webapp/skins/coat/xslt -@dirrm %%DATADIR%%/main/webapp/skins/coat -@dirrm %%DATADIR%%/main/webapp/skins/common/css -@dirrm %%DATADIR%%/main/webapp/skins/common/images -@dirrm %%DATADIR%%/main/webapp/skins/common/scripts -@dirrm %%DATADIR%%/main/webapp/skins/common/translations -@dirrm %%DATADIR%%/main/webapp/skins/common/xslt/fo -@dirrm %%DATADIR%%/main/webapp/skins/common/xslt/html -@dirrm %%DATADIR%%/main/webapp/skins/common/xslt/svg -@dirrm %%DATADIR%%/main/webapp/skins/common/xslt -@dirrm %%DATADIR%%/main/webapp/skins/common -@dirrm %%DATADIR%%/main/webapp/skins/corium -@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/css -@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/images -@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/xslt/fo -@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/xslt/html -@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/xslt -@dirrm %%DATADIR%%/main/webapp/skins/forrest-site -@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/css -@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/images -@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/xslt/fo -@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html -@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/xslt -@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site -@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/css -@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/images -@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/templates -@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt/fo -@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt/html -@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits -@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml -@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt -@dirrm %%DATADIR%%/main/webapp/skins/leather-dev -@dirrm %%DATADIR%%/main/webapp/skins/pelt/css -@dirrm %%DATADIR%%/main/webapp/skins/pelt/images -@dirrm %%DATADIR%%/main/webapp/skins/pelt/xslt/fo -@dirrm %%DATADIR%%/main/webapp/skins/pelt/xslt/html -@dirrm %%DATADIR%%/main/webapp/skins/pelt/xslt -@dirrm %%DATADIR%%/main/webapp/skins/pelt -@dirrm %%DATADIR%%/main/webapp/skins/plain-dev/xslt/html -@dirrm %%DATADIR%%/main/webapp/skins/plain-dev/xslt -@dirrm %%DATADIR%%/main/webapp/skins/plain-dev -@dirrm %%DATADIR%%/main/webapp/skins/scales/css -@dirrm %%DATADIR%%/main/webapp/skins/scales/images -@dirrm %%DATADIR%%/main/webapp/skins/scales/xslt/fo -@dirrm %%DATADIR%%/main/webapp/skins/scales/xslt/html -@dirrm %%DATADIR%%/main/webapp/skins/scales/xslt -@dirrm %%DATADIR%%/main/webapp/skins/scales -@dirrm %%DATADIR%%/main/webapp/skins/tigris/css -@dirrm %%DATADIR%%/main/webapp/skins/tigris/images -@dirrm %%DATADIR%%/main/webapp/skins/tigris/scripts -@dirrm %%DATADIR%%/main/webapp/skins/tigris/xslt/fo -@dirrm %%DATADIR%%/main/webapp/skins/tigris/xslt/html -@dirrm %%DATADIR%%/main/webapp/skins/tigris/xslt -@dirrm %%DATADIR%%/main/webapp/skins/tigris -@dirrm %%DATADIR%%/main/webapp/skins -@dirrm %%DATADIR%%/main/webapp -@dirrm %%DATADIR%%/main -@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/build -@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources -@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/classes -@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images -@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs -@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content -@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation -@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src -@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf -@dirrm %%DATADIR%%/plugins/pluginTemplate/lib -@dirrm %%DATADIR%%/plugins/pluginTemplate/src/documentation/classes -@dirrm %%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images -@dirrm %%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs -@dirrm %%DATADIR%%/plugins/pluginTemplate/src/documentation/content -@dirrm %%DATADIR%%/plugins/pluginTemplate/src/documentation -@dirrm %%DATADIR%%/plugins/pluginTemplate/src/java -@dirrm %%DATADIR%%/plugins/pluginTemplate/src -@dirrm %%DATADIR%%/plugins/pluginTemplate -@dirrm %%DATADIR%%/plugins -@dirrm %%DATADIR%%/site-author/classes -@dirrm %%DATADIR%%/site-author/conf -@dirrm %%DATADIR%%/site-author/content/skins -@dirrm %%DATADIR%%/site-author/content/xdocs/TR/2004 -@dirrm %%DATADIR%%/site-author/content/xdocs/TR/2005 -@dirrm %%DATADIR%%/site-author/content/xdocs/TR -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch/my-images -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/cvs-ssh -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/images -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70 -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/bugzilla-patch/my-images -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/bugzilla-patch -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/cvs-ssh -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/multi -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_80/images -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_80 -@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_90 -@dirrm %%DATADIR%%/site-author/content/xdocs/dtdx -@dirrm %%DATADIR%%/site-author/content/xdocs/plan -@dirrm %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_70 -@dirrm %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_80 -@dirrm %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_90 -@dirrm %%DATADIR%%/site-author/content/xdocs/pluginDocs -@dirrm %%DATADIR%%/site-author/content/xdocs/procedures/release -@dirrm %%DATADIR%%/site-author/content/xdocs/procedures -@dirrm %%DATADIR%%/site-author/content/xdocs/tools -@dirrm %%DATADIR%%/site-author/content/xdocs/trash/docs_0_50 -@dirrm %%DATADIR%%/site-author/content/xdocs/trash -@dirrm %%DATADIR%%/site-author/content/xdocs/versions -@dirrm %%DATADIR%%/site-author/content/xdocs -@dirrm %%DATADIR%%/site-author/content -@dirrm %%DATADIR%%/site-author/resources/images -@dirrm %%DATADIR%%/site-author/resources/themes -@dirrm %%DATADIR%%/site-author/resources -@dirrm %%DATADIR%%/site-author -@dirrm %%DATADIR%%/tools/ant/bin -@dirrm %%DATADIR%%/tools/ant/lib -@dirrm %%DATADIR%%/tools/ant -@dirrm %%DATADIR%%/tools/dtdconverters -@dirrm %%DATADIR%%/tools/forrestbar/xpi/chrome/content/images -@dirrm %%DATADIR%%/tools/forrestbar/xpi/chrome/content -@dirrm %%DATADIR%%/tools/forrestbar/xpi/chrome -@dirrm %%DATADIR%%/tools/forrestbar/xpi -@dirrm %%DATADIR%%/tools/forrestbar -@dirrm %%DATADIR%%/tools/forrestbot/core -@dirrm %%DATADIR%%/tools/forrestbot/lib -@dirrm %%DATADIR%%/tools/forrestbot/webapp/lib -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/conf -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/dto -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/form -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/util -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/tld -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/webapp/common -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/webapp -@dirrm %%DATADIR%%/tools/forrestbot/webapp/src -@dirrm %%DATADIR%%/tools/forrestbot/webapp -@dirrm %%DATADIR%%/tools/forrestbot -@dirrm %%DATADIR%%/tools/jetty -@dirrm %%DATADIR%%/tools/targets -@dirrm %%DATADIR%%/tools/xxe/css -@dirrm %%DATADIR%%/tools/xxe/icons -@dirrm %%DATADIR%%/tools/xxe/template -@dirrm %%DATADIR%%/tools/xxe -@dirrm %%DATADIR%%/tools -@dirrm %%DATADIR%%/whiteboard/plugins -@dirrm %%DATADIR%%/whiteboard -@dirrm %%DATADIR%% +@dirrmtry %%DATADIR%%/bin +@dirrmtry %%DATADIR%%/build/plugins/lib +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources/translations +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/classes +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src +@dirrmtry %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf +@dirrmtry %%DATADIR%%/build/plugins +@dirrmtry %%DATADIR%%/build +@dirrmtry %%DATADIR%%/etc +@dirrmtry %%DATADIR%%/lib/core +@dirrmtry %%DATADIR%%/lib/endorsed +@dirrmtry %%DATADIR%%/lib/optional +@dirrmtry %%DATADIR%%/lib +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/classes +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/conf +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content/old_site +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-a +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b/locationmap +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-b +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/showonlywhenselected +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c/subdir +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples-c +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/content +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/resources/images/sub-dir +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/resources/images +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/resources/schema +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/resources/stylesheets +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/resources/themes +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/resources +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation/translations +@dirrmtry %%DATADIR%%/main/fresh-site/src/documentation +@dirrmtry %%DATADIR%%/main/fresh-site/src +@dirrmtry %%DATADIR%%/main/fresh-site +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/conf +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/generation +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/locationmap/lm +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/locationmap/source/impl +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/locationmap/source +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/locationmap +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/log +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/sourceexists +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/sourcetype +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/util +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest/xni +@dirrmtry %%DATADIR%%/main/java/org/apache/forrest +@dirrmtry %%DATADIR%%/main/java/org/apache +@dirrmtry %%DATADIR%%/main/java/org +@dirrmtry %%DATADIR%%/main/java +@dirrmtry %%DATADIR%%/main/targets +@dirrmtry %%DATADIR%%/main/tasks/org/apache/forrest +@dirrmtry %%DATADIR%%/main/tasks/org/apache +@dirrmtry %%DATADIR%%/main/tasks/org +@dirrmtry %%DATADIR%%/main/tasks +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/classes +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/conf +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/images +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/content +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources/images +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources/schema +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources/stylesheets +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common/css +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common/html +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common/images +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common/js +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/resources +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation/translations +@dirrmtry %%DATADIR%%/main/template-sites/basic/src/documentation +@dirrmtry %%DATADIR%%/main/template-sites/basic/src +@dirrmtry %%DATADIR%%/main/template-sites/basic +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/classes +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/conf +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/images +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/content +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/images +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/schema +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/stylesheets +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/templates +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation/translations +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src/documentation +@dirrmtry %%DATADIR%%/main/template-sites/benchmark/src +@dirrmtry %%DATADIR%%/main/template-sites/benchmark +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/classes +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/conf +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/about +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/images +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/product +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/team/resume +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/team +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/content +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/resources/images +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/resources/schema +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/resources/stylesheets +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/resources/templates +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/resources +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation/translations +@dirrmtry %%DATADIR%%/main/template-sites/business/src/documentation +@dirrmtry %%DATADIR%%/main/template-sites/business/src +@dirrmtry %%DATADIR%%/main/template-sites/business +@dirrmtry %%DATADIR%%/main/template-sites +@dirrmtry %%DATADIR%%/main/var +@dirrmtry %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache/cocoon/util +@dirrmtry %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache/cocoon +@dirrmtry %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache +@dirrmtry %%DATADIR%%/main/webapp/WEB-INF/classes/org +@dirrmtry %%DATADIR%%/main/webapp/WEB-INF/classes +@dirrmtry %%DATADIR%%/main/webapp/WEB-INF/properties +@dirrmtry %%DATADIR%%/main/webapp/WEB-INF +@dirrmtry %%DATADIR%%/main/webapp/resources/chaperon/grammars +@dirrmtry %%DATADIR%%/main/webapp/resources/chaperon/stylesheets +@dirrmtry %%DATADIR%%/main/webapp/resources/chaperon +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2 +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/docbook/4.2 +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/docbook +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/dtd/v10 +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/dtd/v20a +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/dtd +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/entity +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/open-office +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527 +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/relaxng/unstable +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/relaxng +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0 +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/sdocbook +@dirrmtry %%DATADIR%%/main/webapp/resources/schema/w3c-dtd +@dirrmtry %%DATADIR%%/main/webapp/resources/schema +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/aggregates +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt/date/functions/add +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt/date/functions/day-name +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt/date/functions/format-date +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt/date/functions/parse-date +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt/date/functions +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt/date +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt/str/functions/padding +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt/str/functions +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt/str +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/exslt +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets/external +@dirrmtry %%DATADIR%%/main/webapp/resources/stylesheets +@dirrmtry %%DATADIR%%/main/webapp/resources +@dirrmtry %%DATADIR%%/main/webapp/skins/coat/css +@dirrmtry %%DATADIR%%/main/webapp/skins/coat/images +@dirrmtry %%DATADIR%%/main/webapp/skins/coat/xslt/fo +@dirrmtry %%DATADIR%%/main/webapp/skins/coat/xslt/html +@dirrmtry %%DATADIR%%/main/webapp/skins/coat/xslt +@dirrmtry %%DATADIR%%/main/webapp/skins/coat +@dirrmtry %%DATADIR%%/main/webapp/skins/common/css +@dirrmtry %%DATADIR%%/main/webapp/skins/common/images +@dirrmtry %%DATADIR%%/main/webapp/skins/common/scripts +@dirrmtry %%DATADIR%%/main/webapp/skins/common/translations +@dirrmtry %%DATADIR%%/main/webapp/skins/common/xslt/fo +@dirrmtry %%DATADIR%%/main/webapp/skins/common/xslt/html +@dirrmtry %%DATADIR%%/main/webapp/skins/common/xslt/svg +@dirrmtry %%DATADIR%%/main/webapp/skins/common/xslt +@dirrmtry %%DATADIR%%/main/webapp/skins/common +@dirrmtry %%DATADIR%%/main/webapp/skins/corium +@dirrmtry %%DATADIR%%/main/webapp/skins/forrest-site/css +@dirrmtry %%DATADIR%%/main/webapp/skins/forrest-site/images +@dirrmtry %%DATADIR%%/main/webapp/skins/forrest-site/xslt/fo +@dirrmtry %%DATADIR%%/main/webapp/skins/forrest-site/xslt/html +@dirrmtry %%DATADIR%%/main/webapp/skins/forrest-site/xslt +@dirrmtry %%DATADIR%%/main/webapp/skins/forrest-site +@dirrmtry %%DATADIR%%/main/webapp/skins/krysalis-site/css +@dirrmtry %%DATADIR%%/main/webapp/skins/krysalis-site/images +@dirrmtry %%DATADIR%%/main/webapp/skins/krysalis-site/xslt/fo +@dirrmtry %%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html +@dirrmtry %%DATADIR%%/main/webapp/skins/krysalis-site/xslt +@dirrmtry %%DATADIR%%/main/webapp/skins/krysalis-site +@dirrmtry %%DATADIR%%/main/webapp/skins/leather-dev/css +@dirrmtry %%DATADIR%%/main/webapp/skins/leather-dev/images +@dirrmtry %%DATADIR%%/main/webapp/skins/leather-dev/templates +@dirrmtry %%DATADIR%%/main/webapp/skins/leather-dev/xslt/fo +@dirrmtry %%DATADIR%%/main/webapp/skins/leather-dev/xslt/html +@dirrmtry %%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits +@dirrmtry %%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml +@dirrmtry %%DATADIR%%/main/webapp/skins/leather-dev/xslt +@dirrmtry %%DATADIR%%/main/webapp/skins/leather-dev +@dirrmtry %%DATADIR%%/main/webapp/skins/pelt/css +@dirrmtry %%DATADIR%%/main/webapp/skins/pelt/images +@dirrmtry %%DATADIR%%/main/webapp/skins/pelt/xslt/fo +@dirrmtry %%DATADIR%%/main/webapp/skins/pelt/xslt/html +@dirrmtry %%DATADIR%%/main/webapp/skins/pelt/xslt +@dirrmtry %%DATADIR%%/main/webapp/skins/pelt +@dirrmtry %%DATADIR%%/main/webapp/skins/plain-dev/xslt/html +@dirrmtry %%DATADIR%%/main/webapp/skins/plain-dev/xslt +@dirrmtry %%DATADIR%%/main/webapp/skins/plain-dev +@dirrmtry %%DATADIR%%/main/webapp/skins/scales/css +@dirrmtry %%DATADIR%%/main/webapp/skins/scales/images +@dirrmtry %%DATADIR%%/main/webapp/skins/scales/xslt/fo +@dirrmtry %%DATADIR%%/main/webapp/skins/scales/xslt/html +@dirrmtry %%DATADIR%%/main/webapp/skins/scales/xslt +@dirrmtry %%DATADIR%%/main/webapp/skins/scales +@dirrmtry %%DATADIR%%/main/webapp/skins/tigris/css +@dirrmtry %%DATADIR%%/main/webapp/skins/tigris/images +@dirrmtry %%DATADIR%%/main/webapp/skins/tigris/scripts +@dirrmtry %%DATADIR%%/main/webapp/skins/tigris/xslt/fo +@dirrmtry %%DATADIR%%/main/webapp/skins/tigris/xslt/html +@dirrmtry %%DATADIR%%/main/webapp/skins/tigris/xslt +@dirrmtry %%DATADIR%%/main/webapp/skins/tigris +@dirrmtry %%DATADIR%%/main/webapp/skins +@dirrmtry %%DATADIR%%/main/webapp +@dirrmtry %%DATADIR%%/main +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/build +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/lib +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources/translations +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/classes +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src +@dirrmtry %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf +@dirrmtry %%DATADIR%%/plugins/pluginTemplate/conf +@dirrmtry %%DATADIR%%/plugins/pluginTemplate/lib +@dirrmtry %%DATADIR%%/plugins/pluginTemplate/src/documentation/classes +@dirrmtry %%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images +@dirrmtry %%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs +@dirrmtry %%DATADIR%%/plugins/pluginTemplate/src/documentation/content +@dirrmtry %%DATADIR%%/plugins/pluginTemplate/src/documentation +@dirrmtry %%DATADIR%%/plugins/pluginTemplate/src/java +@dirrmtry %%DATADIR%%/plugins/pluginTemplate/src +@dirrmtry %%DATADIR%%/plugins/pluginTemplate +@dirrmtry %%DATADIR%%/plugins +@dirrmtry %%DATADIR%%/site-author/classes +@dirrmtry %%DATADIR%%/site-author/conf +@dirrmtry %%DATADIR%%/site-author/content/skins +@dirrmtry %%DATADIR%%/site-author/content/xdocs/TR/2004 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/TR/2005 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/TR +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_100 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/bugzilla-patch/my-images +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/bugzilla-patch +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/cvs-ssh +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/multi +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_80/howto +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_80/images +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_80 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/bugzilla-patch/my-images +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/bugzilla-patch +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/cvs-ssh +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_90/howto/multi +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_90/howto +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_90/images +@dirrmtry %%DATADIR%%/site-author/content/xdocs/docs_0_90 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/dtdx +@dirrmtry %%DATADIR%%/site-author/content/xdocs/plan +@dirrmtry %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_100 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_80 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_90 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/pluginDocs +@dirrmtry %%DATADIR%%/site-author/content/xdocs/procedures/release +@dirrmtry %%DATADIR%%/site-author/content/xdocs/procedures +@dirrmtry %%DATADIR%%/site-author/content/xdocs/tools/images +@dirrmtry %%DATADIR%%/site-author/content/xdocs/tools +@dirrmtry %%DATADIR%%/site-author/content/xdocs/trash/docs_0_50 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/trash/docs_0_70 +@dirrmtry %%DATADIR%%/site-author/content/xdocs/trash +@dirrmtry %%DATADIR%%/site-author/content/xdocs/versions +@dirrmtry %%DATADIR%%/site-author/content/xdocs +@dirrmtry %%DATADIR%%/site-author/content +@dirrmtry %%DATADIR%%/site-author/resources/images +@dirrmtry %%DATADIR%%/site-author/resources/themes +@dirrmtry %%DATADIR%%/site-author/resources +@dirrmtry %%DATADIR%%/site-author +@dirrmtry %%DATADIR%%/tools/ant/bin +@dirrmtry %%DATADIR%%/tools/ant/lib +@dirrmtry %%DATADIR%%/tools/ant +@dirrmtry %%DATADIR%%/tools/dtdconverters +@dirrmtry %%DATADIR%%/tools/forrestbar/xpi/chrome/content/images +@dirrmtry %%DATADIR%%/tools/forrestbar/xpi/chrome/content +@dirrmtry %%DATADIR%%/tools/forrestbar/xpi/chrome +@dirrmtry %%DATADIR%%/tools/forrestbar/xpi +@dirrmtry %%DATADIR%%/tools/forrestbar +@dirrmtry %%DATADIR%%/tools/forrestbot/core +@dirrmtry %%DATADIR%%/tools/forrestbot/lib +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/lib +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/conf +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/dto +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/form +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/util +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java/org +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/java +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/tld +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/webapp/common +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src/webapp +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp/src +@dirrmtry %%DATADIR%%/tools/forrestbot/webapp +@dirrmtry %%DATADIR%%/tools/forrestbot +@dirrmtry %%DATADIR%%/tools/jetty +@dirrmtry %%DATADIR%%/tools/targets +@dirrmtry %%DATADIR%%/tools/xxe/css +@dirrmtry %%DATADIR%%/tools/xxe/icons +@dirrmtry %%DATADIR%%/tools/xxe/template +@dirrmtry %%DATADIR%%/tools/xxe +@dirrmtry %%DATADIR%%/tools +@dirrmtry %%DATADIR%%/whiteboard/plugins +@dirrmtry %%DATADIR%%/whiteboard +@dirrmtry %%DATADIR%% |