summaryrefslogtreecommitdiff
path: root/www/apache-forrest
diff options
context:
space:
mode:
Diffstat (limited to 'www/apache-forrest')
-rw-r--r--www/apache-forrest/Makefile59
-rw-r--r--www/apache-forrest/distinfo4
-rw-r--r--www/apache-forrest/files/patch-bin-forrest46
-rw-r--r--www/apache-forrest/files/patch-tools-ant-bin-ant24
-rw-r--r--www/apache-forrest/files/pkg-message.in21
-rw-r--r--www/apache-forrest/pkg-descr6
-rw-r--r--www/apache-forrest/pkg-plist1476
7 files changed, 0 insertions, 1636 deletions
diff --git a/www/apache-forrest/Makefile b/www/apache-forrest/Makefile
deleted file mode 100644
index addba61f857a..000000000000
--- a/www/apache-forrest/Makefile
+++ /dev/null
@@ -1,59 +0,0 @@
-# Created by: nivit@users.sourceforge.net
-# $FreeBSD$
-
-PORTNAME= apache-forrest
-PORTVERSION= 0.9
-PORTREVISION= 0
-CATEGORIES= www java
-MASTER_SITES= SITE_APACHE/forrest
-DISTFILES= ${DISTNAME}-sources.tar.gz \
- ${DISTNAME}-dependencies.tar.gz
-
-MAINTAINER= nivit@FreeBSD.org
-COMMENT= Tool for rapid development of small sites
-
-BROKEN= unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2020-05-05
-
-BROKEN_armv6= fails to compile: build.xml: tools/ant/lib not found
-BROKEN_armv7= fails to compile: build.xml: tools/ant/lib not found
-
-ANT= ${STAGEDIR}${DATADIR}/tools/ant/bin/ant
-ANT_TARGET= local-deploy
-
-IGNORE_FILES= ! -name *\.bak -and ! -name *\.bat \
- -and ! -name *\.orig -and ! -name .gitignore \
- -and ! -name KEYS -and ! -name README.txt \
- -and ! -name ant -and ! -name forrest \
- -and ! -name index.html
-
-INSTALL_WRKSRC= ${WRKSRC}/build
-
-NO_BUILD= Yes
-
-PLUGINSDIR= ${DATADIR}/plugins/org.apache.forrest.plugin.output.pdf
-
-REPLACE_FILES= ${WRKSRC}/bin/forrest ${WRKSRC}/tools/ant/bin/ant
-
-SUB_FILES= pkg-message
-SUB_LIST= PORTVERSION=${PORTVERSION}
-
-USE_JAVA= yes
-
-post-patch:
- @for FILE in ${REPLACE_FILES}; do \
- ${REINPLACE_CMD} -e "/%%JAVA_HOME%%/s//${JAVA_HOME:S/\//\\\//g}/g" \
- $${FILE} ;\
- done;
-
-do-install:
- @cd ${WRKSRC}; \
- ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} '${IGNORE_FILES}'
- @${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
- @cd ${STAGEDIR}${PLUGINSDIR}; \
- ${SETENV} FORREST_HOME=${STAGEDIR}${DATADIR} ${ANT} ${ANT_TARGET}
-
-.include <bsd.port.mk>
diff --git a/www/apache-forrest/distinfo b/www/apache-forrest/distinfo
deleted file mode 100644
index 4e5a0c474144..000000000000
--- a/www/apache-forrest/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-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/files/patch-bin-forrest b/www/apache-forrest/files/patch-bin-forrest
deleted file mode 100644
index 5a269eee552b..000000000000
--- a/www/apache-forrest/files/patch-bin-forrest
+++ /dev/null
@@ -1,46 +0,0 @@
---- bin/forrest Tue Apr 10 18:17:55 2007
-+++ bin/forrest.port Mon Apr 16 14:24:52 2007
-@@ -20,6 +20,7 @@
-
- cygwin=false;
- darwin=false;
-+freebsd=false;
- case `uname` in
- CYGWIN*) cygwin=true ;;
- Darwin*) darwin=true
-@@ -27,7 +28,13 @@
- JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home
- fi
- ;;
-+ FreeBSD*) freebsd=true
-+ if [ -z "$JAVA_HOME" ]; then
-+ JAVA_HOME=%%JAVA_HOME%%
-+ fi
-+ ;;
- esac
-+export JAVA_HOME
-
- if [ "$cygwin" = "true" ] ; then
- PROJECT_HOME=`cygpath -w "$PWD"`
-@@ -35,6 +42,12 @@
- PROJECT_HOME=`pwd`
- fi
-
-+if [ -z "$DISPLAY" ]; then
-+ JAVA_AWT_HEADLESS="-Dforrest.jvmargs=-Djava.awt.headless=true"
-+else
-+ JAVA_AWT_HEADLESS=''
-+fi
-+
- if [ -z "$FORREST_HOME" ] ; then
- # use the location of this script to infer $FORREST_HOME
-
-@@ -97,7 +110,7 @@
- echo "Apache Forrest. Run 'forrest -projecthelp' to list options"
- echo
- export FORREST_HOME
--"$ANT_HOME/bin/ant" --noconfig -buildfile "$ANTFILE" -Dbasedir="$PROJECT_HOME" -emacs "$@"
-+"$ANT_HOME/bin/ant" --noconfig -buildfile "$ANTFILE" -Dbasedir="$PROJECT_HOME" ${JAVA_AWT_HEADLESS} -emacs "$@"
- RESULT=$?
-
- # ---- Restore Classpath
diff --git a/www/apache-forrest/files/patch-tools-ant-bin-ant b/www/apache-forrest/files/patch-tools-ant-bin-ant
deleted file mode 100644
index f573ad1d35a7..000000000000
--- a/www/apache-forrest/files/patch-tools-ant-bin-ant
+++ /dev/null
@@ -1,24 +0,0 @@
---- tools/ant/bin/ant Tue Apr 10 18:18:14 2007
-+++ tools/ant/bin/ant.port Mon Apr 16 14:27:19 2007
-@@ -78,6 +78,7 @@
- # OS specific support. $var _must_ be set to either true or false.
- cygwin=false;
- darwin=false;
-+freebsd=false;
- case "`uname`" in
- CYGWIN*) cygwin=true ;;
- Darwin*) darwin=true
-@@ -85,7 +86,13 @@
- JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home
- fi
- ;;
-+ FreeBSD*) freebsd=true
-+ if [ -z "$JAVA_HOME" ] ; then
-+ JAVA_HOME=%%JAVA_HOME%%
-+ fi
-+ ;;
- esac
-+export JAVA_HOME
-
- # Forrest uses its own packaged Ant, so don't use the system Ant libraries
- #if [ -z "$ANT_HOME" -o ! -d "$ANT_HOME" ] ; then
diff --git a/www/apache-forrest/files/pkg-message.in b/www/apache-forrest/files/pkg-message.in
deleted file mode 100644
index 48df8f81af92..000000000000
--- a/www/apache-forrest/files/pkg-message.in
+++ /dev/null
@@ -1,21 +0,0 @@
-[
-{ type: install
- message: <<EOM
- Set the environment variable:
-
- FORREST_HOME=%%DATADIR%%
-
- and add ${FORREST_HOME}/bin to your PATH.
-
- To build a site:
-
- 1) $ mkdir mysite; cd mysite
- 2) $ forrest seed
- 3) $ forrest run
- 4) point your web browser to http://localhost:8888
-
- To avoid any issue with old classes being loaded, run a 'forrest clean-work'
- in your project directory, after you upgraded to this version (%%PORTVERSION%%)
-EOM
-}
-]
diff --git a/www/apache-forrest/pkg-descr b/www/apache-forrest/pkg-descr
deleted file mode 100644
index feec29bc79d0..000000000000
--- a/www/apache-forrest/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-Forrest is an XML standards-oriented project documentation framework
-based on Apache Cocoon, providing XSLT stylesheets and schemas, images
-and other resources. Forrest uses these to render the XML source content
-into a website via command-line, robot, or a dynamic web application.
-
-WWW: http://forrest.apache.org/
diff --git a/www/apache-forrest/pkg-plist b/www/apache-forrest/pkg-plist
deleted file mode 100644
index a6bfa0157d60..000000000000
--- a/www/apache-forrest/pkg-plist
+++ /dev/null
@@ -1,1476 +0,0 @@
-bin/forrest
-%%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
-%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/group.svg
-%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/icon.png
-%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/project-logo.gif
-%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/project.svg
-%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/usemap.gif
-%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/index.xml
-%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/site.xml
-%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/tabs.xml
-%%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/AnsiColorLogger.properties
-%%DATADIR%%/etc/RELEASE-NOTES-0.9.txt
-%%DATADIR%%/etc/publishing_our_site.txt
-%%DATADIR%%/etc/xmlformat.conf
-%%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/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-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/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-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/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/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.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-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
-%%DATADIR%%/main/forrest.build.xml
-%%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/classes/CatalogManager.properties
-%%DATADIR%%/main/fresh-site/src/documentation/content/locationmap.xml
-%%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
-%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/group.svg
-%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/icon-e.png
-%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/project-logo.gif
-%%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-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
-%%DATADIR%%/main/fresh-site/src/documentation/resources/images/icon-a.png
-%%DATADIR%%/main/fresh-site/src/documentation/resources/images/icon-b.png
-%%DATADIR%%/main/fresh-site/src/documentation/resources/images/icon.png
-%%DATADIR%%/main/fresh-site/src/documentation/resources/images/project-logo.png
-%%DATADIR%%/main/fresh-site/src/documentation/resources/images/sub-dir/icon-c.png
-%%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
-%%DATADIR%%/main/fresh-site/src/documentation/translations/langcode.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/languages_de.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/languages_en.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/languages_es.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/languages_fr.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/languages_nl.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_af.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_de.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_es.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_fr.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_it.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_nl.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_no.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_ru.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_sk.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/tabs.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/tabs_de.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/tabs_es.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/tabs_fr.xml
-%%DATADIR%%/main/fresh-site/src/documentation/translations/tabs_nl.xml
-%%DATADIR%%/main/java/org/apache/forrest/conf/AntProperties.java
-%%DATADIR%%/main/java/org/apache/forrest/conf/AntPropertiesModule.java
-%%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
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/WildcardLocationMapHintMatcher.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/WildcardLocationMapMatcher.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/AbstractNode.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/ActNode.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/LocationMap.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/LocationNode.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/LocatorNode.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/MatchNode.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/MountNode.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/SelectNode.java
-%%DATADIR%%/main/java/org/apache/forrest/locationmap/source/impl/LocationmapSourceFactory.java
-%%DATADIR%%/main/java/org/apache/forrest/log/ForrestLogTargetFactory.java
-%%DATADIR%%/main/java/org/apache/forrest/sourceexists/SourceExistsSelector.java
-%%DATADIR%%/main/java/org/apache/forrest/sourcetype/DocDeclRule.java
-%%DATADIR%%/main/java/org/apache/forrest/sourcetype/DocumentElementRule.java
-%%DATADIR%%/main/java/org/apache/forrest/sourcetype/ProcessingInstructionRule.java
-%%DATADIR%%/main/java/org/apache/forrest/sourcetype/SourceInfo.java
-%%DATADIR%%/main/java/org/apache/forrest/sourcetype/SourceType.java
-%%DATADIR%%/main/java/org/apache/forrest/sourcetype/SourceTypeAction.java
-%%DATADIR%%/main/java/org/apache/forrest/sourcetype/SourceTypeRule.java
-%%DATADIR%%/main/java/org/apache/forrest/sourcetype/XmlSchemaRule.java
-%%DATADIR%%/main/java/org/apache/forrest/util/IdGeneratorTransformer.java
-%%DATADIR%%/main/java/org/apache/forrest/util/XPathTransformer.java
-%%DATADIR%%/main/java/org/apache/forrest/xni/XNIConfigurableFileGenerator.java
-%%DATADIR%%/main/module.xml
-%%DATADIR%%/main/targets/context.xml
-%%DATADIR%%/main/targets/plugins.xml
-%%DATADIR%%/main/targets/seed.xml
-%%DATADIR%%/main/targets/site.xml
-%%DATADIR%%/main/targets/skins.xml
-%%DATADIR%%/main/targets/validate.xml
-%%DATADIR%%/main/targets/webapp.xml
-%%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/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
-%%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/images/group.svg
-%%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/images/icon.png
-%%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/images/project-logo.gif
-%%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/images/project.svg
-%%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/images/usemap.gif
-%%DATADIR%%/main/template-sites/basic/src/documentation/content/xdocs/index.xml
-%%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/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
-%%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/images/group.svg
-%%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/images/icon.png
-%%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/images/project-logo.gif
-%%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/images/project.svg
-%%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/images/usemap.gif
-%%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/index.xml
-%%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/link-simple.xml
-%%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/link-site.xml
-%%DATADIR%%/main/template-sites/benchmark/src/documentation/content/xdocs/plain.xml
-%%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/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
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/images/group-logo.gif
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/images/group.svg
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/images/icon.png
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/images/project-logo.gif
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/images/project.svg
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/images/usemap.gif
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/index.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/product/index.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/site.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/tabs.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/team/index.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/team/resume/blogsJane.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/content/xdocs/team/resume/blogsJoe.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/resources/schema/catalog.xcat
-%%DATADIR%%/main/template-sites/business/src/documentation/resources/schema/hello-v10.dtd
-%%DATADIR%%/main/template-sites/business/src/documentation/skinconf.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/langcode.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/languages_en.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/languages_es.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/menu.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/menu_af.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/menu_de.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/menu_es.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/menu_it.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/menu_no.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/menu_ru.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/menu_sk.xml
-%%DATADIR%%/main/template-sites/business/src/documentation/translations/tabs.xml
-%%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/fixWarXconf.xsl
-%%DATADIR%%/main/var/initial_catalog.xcat
-%%DATADIR%%/main/var/initial_plugins_locationmap.xml
-%%DATADIR%%/main/var/initial_plugins_sitemap.xmap
-%%DATADIR%%/main/var/pluginLmMountSnippet.xsl
-%%DATADIR%%/main/var/pluginMountSnippet.xsl
-%%DATADIR%%/main/var/pluginlist2echo.xsl
-%%DATADIR%%/main/var/pluginlist2fetch.xsl
-%%DATADIR%%/main/var/plugins.xconf
-%%DATADIR%%/main/var/skin-not-found-message.txt
-%%DATADIR%%/main/var/skinlist2echo.xsl
-%%DATADIR%%/main/var/skinlist2fetch.xsl
-%%DATADIR%%/main/var/template-project-created-message-basic.txt
-%%DATADIR%%/main/var/template-project-created-message-sample.txt
-%%DATADIR%%/main/var/webapp-generated-message.txt
-%%DATADIR%%/main/var/webapp-local-generated-message.txt
-%%DATADIR%%/main/webapp/WEB-INF/classes/log4j.properties
-%%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/web.xml
-%%DATADIR%%/main/webapp/aggregate.xmap
-%%DATADIR%%/main/webapp/default-forrest.properties
-%%DATADIR%%/main/webapp/faq.xmap
-%%DATADIR%%/main/webapp/forrest.xmap
-%%DATADIR%%/main/webapp/i18n.xmap
-%%DATADIR%%/main/webapp/jettyconf.xml
-%%DATADIR%%/main/webapp/linkmap.xmap
-%%DATADIR%%/main/webapp/locationmap-chaperon.xml
-%%DATADIR%%/main/webapp/locationmap-i18n.xml
-%%DATADIR%%/main/webapp/locationmap-plugin.xml
-%%DATADIR%%/main/webapp/locationmap-skinconf.xml
-%%DATADIR%%/main/webapp/locationmap-skins.xml
-%%DATADIR%%/main/webapp/locationmap-transforms.xml
-%%DATADIR%%/main/webapp/locationmap.xml
-%%DATADIR%%/main/webapp/menu.xmap
-%%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/catalog
-%%DATADIR%%/main/webapp/resources/schema/catalog.forrest
-%%DATADIR%%/main/webapp/resources/schema/catalog.forrest.xcat
-%%DATADIR%%/main/webapp/resources/schema/catalog.xcat
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/calstblx.dtd
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbcentx.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbgenent.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbhierx.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbnotnx.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbpoolx.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/docbookx.dtd
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsa.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsb.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsc.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsn.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amso.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsr.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-box.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-cyr1.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-cyr2.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-dia.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-grk1.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-grk2.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-grk3.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-grk4.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-lat1.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-lat2.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-num.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-pub.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-tech.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/soextblx.dtd
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ChangeLog
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/README
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/calstblx.dtd
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/catalog.xml
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbcentx.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbgenent.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbhierx.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbnotnx.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbpoolx.mod
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/docbook.cat
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/docbookx.dtd
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsa.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsb.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsc.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsn.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amso.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsr.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-box.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-cyr1.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-cyr2.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-dia.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-grk1.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-grk2.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-grk3.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-grk4.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-lat1.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-lat2.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-num.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-pub.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-tech.ent
-%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/soextblx.dtd
-%%DATADIR%%/main/webapp/resources/schema/docbook/catalog
-%%DATADIR%%/main/webapp/resources/schema/docbook/catalog.xcat
-%%DATADIR%%/main/webapp/resources/schema/dtd/.htaccess
-%%DATADIR%%/main/webapp/resources/schema/dtd/book-cocoon-v10.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v11.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v11.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v12.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v13.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v20.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v20.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/common-charents-v10.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/common-elems-v10.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/contributors-v10.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/document-v11.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/document-v11.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/document-v12.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/document-v12.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/document-v13.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/document-v13.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/document-v20.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/document-v20.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v11.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v11.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v12.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v12.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v13.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v20.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v20.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/howto-v10.dtd
-%%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/javadoc-v04draft.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/readme.txt
-%%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v06-1.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v06-2.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v06-3.dtd
-%%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
-%%DATADIR%%/main/webapp/resources/schema/dtd/tab-cocoon-v10.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/tab-cocoon-v11.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/todo-v11.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/todo-v11.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/todo-v12.dtd
-%%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/changes-v10.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/v10/characters.ent
-%%DATADIR%%/main/webapp/resources/schema/dtd/v10/document-v10.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/v10/faq-v10.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/v10/todo-v10.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/STATUS.txt
-%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/document-v20.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/document-v20.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/faq-v20.dtd
-%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/faq-v20.mod
-%%DATADIR%%/main/webapp/resources/schema/dtd/xgump-draft.dtd
-%%DATADIR%%/main/webapp/resources/schema/entity/.htaccess
-%%DATADIR%%/main/webapp/resources/schema/entity/ISOdia.pen
-%%DATADIR%%/main/webapp/resources/schema/entity/ISOgrk1.pen
-%%DATADIR%%/main/webapp/resources/schema/entity/ISOlat1.pen
-%%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/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/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
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-core-attrib-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-datatypes-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-document-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-edit-attrib-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-embed-attrib-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-events-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-handler-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-hypertext-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-hypertext-attrib-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-i18n-attrib-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-imagemap-attrib-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-inlstyle-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-list-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-meta-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-meta-attrib-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-object-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-param-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-script-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-structural-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-style-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-table-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml-text-2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml2-forrest.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xhtml2.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/WD-xhtml2-20050527/xml-events-1.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/book-v01.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/document-v20.mod.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/document-v20.rng
-%%DATADIR%%/main/webapp/resources/schema/relaxng/sitemap-v06.rng
-%%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
-%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdbcent.mod
-%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdbhier.mod
-%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdbpool.mod
-%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbook-custom.dtd
-%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbook.css
-%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbook.dtd
-%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbookref-custom.dtd
-%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbookref.dtd
-%%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/catalog
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/catalog.xcat
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/svg-20000303-exchange.dtd
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/svg-20000303-shared.dtd
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/svg-20000303-stylable.dtd
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/svg10.dtd
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/w3c-license.txt
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml-lat1.ent
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml-special.ent
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml-symbol.ent
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml1-frameset.dtd
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml1-strict.dtd
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml1-transitional.dtd
-%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml1.dcl
-%%DATADIR%%/main/webapp/resources/stylesheets/absolutize-linkmap.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/aggregates/book-to-cinclude.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/aggregates/doc-to-doc-uniqueids.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/aggregates/docs-to-document.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/aggregates/relativize-split-linkmap.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/any-to-document.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/book-to-book-i18n.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/book-to-cinclude-lucene.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/bookv10.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/changesv10-to-changesv11.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/copyover.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/declare-broken-site-links.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/directory-to-book.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/directory-to-i18n.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/directory-to-revisions.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/docv10-to-docv11.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/docv20-to-docv12.xsl
-%%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
-%%DATADIR%%/main/webapp/resources/stylesheets/faqv10-to-faqv11.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/faqv20-to-faqv12.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/faqv20-to-faqv13.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/generateId.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/howto-to-document.xsl
-%%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
-%%DATADIR%%/main/webapp/resources/stylesheets/page-to-html.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/pathutils.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/pluginBuildFiles-to-pluginDescriptor.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/plugins-to-xdoc.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/profile-to-html.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/profile-to-page.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/project-to-text.xsl
-%%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
-%%DATADIR%%/main/webapp/resources/stylesheets/site-to-book.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/site-to-site-normalizetabs.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/site-to-site-selectnode.xsl
-%%DATADIR%%/main/webapp/resources/stylesheets/strip-doctype.xsl
-%%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/revisions.xmap
-%%DATADIR%%/main/webapp/search.xmap
-%%DATADIR%%/main/webapp/sitemap.xmap
-%%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
-%%DATADIR%%/main/webapp/skins/coat/css/screen.css
-%%DATADIR%%/main/webapp/skins/coat/images/chapter.gif
-%%DATADIR%%/main/webapp/skins/coat/images/chapter_open.gif
-%%DATADIR%%/main/webapp/skins/coat/images/current.gif
-%%DATADIR%%/main/webapp/skins/coat/images/error.png
-%%DATADIR%%/main/webapp/skins/coat/images/header_white_line.gif
-%%DATADIR%%/main/webapp/skins/coat/images/info.png
-%%DATADIR%%/main/webapp/skins/coat/images/instruction_arrow.png
-%%DATADIR%%/main/webapp/skins/coat/images/label.gif
-%%DATADIR%%/main/webapp/skins/coat/images/page.gif
-%%DATADIR%%/main/webapp/skins/coat/images/pdfdoc.gif
-%%DATADIR%%/main/webapp/skins/coat/images/printer.gif
-%%DATADIR%%/main/webapp/skins/coat/images/success.png
-%%DATADIR%%/main/webapp/skins/coat/images/warning.png
-%%DATADIR%%/main/webapp/skins/coat/images/xmldoc.gif
-%%DATADIR%%/main/webapp/skins/coat/note.txt
-%%DATADIR%%/main/webapp/skins/coat/skinconf.xsl
-%%DATADIR%%/main/webapp/skins/coat/xslt/fo/document-to-fo.xsl
-%%DATADIR%%/main/webapp/skins/coat/xslt/html/book-to-menu.xsl
-%%DATADIR%%/main/webapp/skins/coat/xslt/html/document-to-html.xsl
-%%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/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
-%%DATADIR%%/main/webapp/skins/common/images/external-link.gif
-%%DATADIR%%/main/webapp/skins/common/images/fix.jpg
-%%DATADIR%%/main/webapp/skins/common/images/forrest-credit-logo.png
-%%DATADIR%%/main/webapp/skins/common/images/hack.jpg
-%%DATADIR%%/main/webapp/skins/common/images/pdfdoc.gif
-%%DATADIR%%/main/webapp/skins/common/images/poddoc.png
-%%DATADIR%%/main/webapp/skins/common/images/poddoc.svg.xslt
-%%DATADIR%%/main/webapp/skins/common/images/printer.gif
-%%DATADIR%%/main/webapp/skins/common/images/rc.svg.xslt
-%%DATADIR%%/main/webapp/skins/common/images/remove.jpg
-%%DATADIR%%/main/webapp/skins/common/images/rss.png
-%%DATADIR%%/main/webapp/skins/common/images/spacer.gif
-%%DATADIR%%/main/webapp/skins/common/images/txtdoc.png
-%%DATADIR%%/main/webapp/skins/common/images/txtdoc.svg.xslt
-%%DATADIR%%/main/webapp/skins/common/images/update.jpg
-%%DATADIR%%/main/webapp/skins/common/images/valid-html401.png
-%%DATADIR%%/main/webapp/skins/common/images/vcss.png
-%%DATADIR%%/main/webapp/skins/common/images/xmldoc.gif
-%%DATADIR%%/main/webapp/skins/common/scripts/breadcrumbs-optimized.js
-%%DATADIR%%/main/webapp/skins/common/scripts/breadcrumbs.js
-%%DATADIR%%/main/webapp/skins/common/scripts/fontsize.js
-%%DATADIR%%/main/webapp/skins/common/scripts/getBlank.js
-%%DATADIR%%/main/webapp/skins/common/scripts/getMenu.js
-%%DATADIR%%/main/webapp/skins/common/scripts/menu.js
-%%DATADIR%%/main/webapp/skins/common/scripts/prototype.js
-%%DATADIR%%/main/webapp/skins/common/skinconf.xsl
-%%DATADIR%%/main/webapp/skins/common/translations/CommonMessages_de.xml
-%%DATADIR%%/main/webapp/skins/common/translations/CommonMessages_en_US.xml
-%%DATADIR%%/main/webapp/skins/common/translations/CommonMessages_es.xml
-%%DATADIR%%/main/webapp/skins/common/translations/CommonMessages_fr.xml
-%%DATADIR%%/main/webapp/skins/common/xslt/fo/document-to-fo.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/fo/footerinfo.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/fo/pdfoutline.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/book-to-menu.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/document-to-html.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/dotdots.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/pathutils.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/renderlogo.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/site-to-xhtml.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/split.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/strip_namespaces.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/tab-to-menu.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/html/tabutils.xsl
-%%DATADIR%%/main/webapp/skins/common/xslt/svg/document-to-svg.xsl
-%%DATADIR%%/main/webapp/skins/corium/brainstorming.txt
-%%DATADIR%%/main/webapp/skins/forrest-site/css/page.css
-%%DATADIR%%/main/webapp/skins/forrest-site/images/chapter.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/chapter_open.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/current.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/doc.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/label.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/menu-left.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/menu-right.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/page.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/pdfdoc.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/printer.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/search-left.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/search-right.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/singlepage.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/spacer.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/tab-left.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/tab-right.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/tabSel-left.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/tabSel-right.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/images/xmldoc.gif
-%%DATADIR%%/main/webapp/skins/forrest-site/xslt/fo/document2fo.xsl
-%%DATADIR%%/main/webapp/skins/forrest-site/xslt/html/book2menu.xsl
-%%DATADIR%%/main/webapp/skins/forrest-site/xslt/html/document2html.xsl
-%%DATADIR%%/main/webapp/skins/forrest-site/xslt/html/site2xhtml.xsl
-%%DATADIR%%/main/webapp/skins/forrest-site/xslt/html/tab2menu.xsl
-%%DATADIR%%/main/webapp/skins/krysalis-site/css/forrest.css.xslt
-%%DATADIR%%/main/webapp/skins/krysalis-site/css/page.css
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/chapter.gif
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/chapter_open.gif
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/current.gif
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/error.png
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/info.png
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/label.gif
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/page.gif
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/pdfdoc.gif
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/printer.gif
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/success.png
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/warning.png
-%%DATADIR%%/main/webapp/skins/krysalis-site/images/xmldoc.gif
-%%DATADIR%%/main/webapp/skins/krysalis-site/skinconf.xsl
-%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/fo/document2fo.xsl
-%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html/book2menu.xsl
-%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html/document2html.xsl
-%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html/site2xhtml.xsl
-%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html/tab2menu.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/brainstorming.txt
-%%DATADIR%%/main/webapp/skins/leather-dev/contracts.initial.txt
-%%DATADIR%%/main/webapp/skins/leather-dev/css/base-contracts.css
-%%DATADIR%%/main/webapp/skins/leather-dev/css/basic.css
-%%DATADIR%%/main/webapp/skins/leather-dev/css/branding.css
-%%DATADIR%%/main/webapp/skins/leather-dev/css/navigation.css
-%%DATADIR%%/main/webapp/skins/leather-dev/css/profiling.css.xslt
-%%DATADIR%%/main/webapp/skins/leather-dev/forrest-template.xml
-%%DATADIR%%/main/webapp/skins/leather-dev/images/chapter.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/chapter_open.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/current.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/doc.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/header-background-grad.png
-%%DATADIR%%/main/webapp/skins/leather-dev/images/header-background.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/header-background.png
-%%DATADIR%%/main/webapp/skins/leather-dev/images/header_white_line.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/label.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/page.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/pdfdoc.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/printer.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/search-left.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/search-right.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/sidebar_bg.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/singlepage.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/spacer.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/tab-left.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/tab-right.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/tl-off.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/tl-on.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/tr-off.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/tr-on.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/images/xmldoc.gif
-%%DATADIR%%/main/webapp/skins/leather-dev/note.txt
-%%DATADIR%%/main/webapp/skins/leather-dev/skinconf.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/templates/default.fv
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/fo/document-to-fo.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/fo/document2fo.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/html/book-to-menu.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/html/document-to-html.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/html/site-to-xhtml.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/html/tab-to-menu.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/contract.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/dir-to-contracts.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits/c-fontsize-fct.xml
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits/fct-bits.txt
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits/fct-bits.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits/pipeline.txt
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/ft-leather.xml
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/ft-to-xhtml.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/site-to-xml.xsl
-%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/sitemap.xmap
-%%DATADIR%%/main/webapp/skins/new-skin-names.txt
-%%DATADIR%%/main/webapp/skins/pelt/css/basic.css
-%%DATADIR%%/main/webapp/skins/pelt/css/print.css
-%%DATADIR%%/main/webapp/skins/pelt/css/profile.css.xslt
-%%DATADIR%%/main/webapp/skins/pelt/css/screen.css
-%%DATADIR%%/main/webapp/skins/pelt/images/chapter.gif
-%%DATADIR%%/main/webapp/skins/pelt/images/chapter_open.gif
-%%DATADIR%%/main/webapp/skins/pelt/images/current.gif
-%%DATADIR%%/main/webapp/skins/pelt/images/error.png
-%%DATADIR%%/main/webapp/skins/pelt/images/header_white_line.gif
-%%DATADIR%%/main/webapp/skins/pelt/images/info.png
-%%DATADIR%%/main/webapp/skins/pelt/images/instruction_arrow.png
-%%DATADIR%%/main/webapp/skins/pelt/images/label.gif
-%%DATADIR%%/main/webapp/skins/pelt/images/page.gif
-%%DATADIR%%/main/webapp/skins/pelt/images/pdfdoc.gif
-%%DATADIR%%/main/webapp/skins/pelt/images/printer.gif
-%%DATADIR%%/main/webapp/skins/pelt/images/success.png
-%%DATADIR%%/main/webapp/skins/pelt/images/warning.png
-%%DATADIR%%/main/webapp/skins/pelt/images/xmldoc.gif
-%%DATADIR%%/main/webapp/skins/pelt/note.txt
-%%DATADIR%%/main/webapp/skins/pelt/skinconf.xsl
-%%DATADIR%%/main/webapp/skins/pelt/xslt/fo/document-to-fo.xsl
-%%DATADIR%%/main/webapp/skins/pelt/xslt/html/book-to-menu.xsl
-%%DATADIR%%/main/webapp/skins/pelt/xslt/html/document-to-html.xsl
-%%DATADIR%%/main/webapp/skins/pelt/xslt/html/site-to-xhtml.xsl
-%%DATADIR%%/main/webapp/skins/pelt/xslt/html/tab-to-menu.xsl
-%%DATADIR%%/main/webapp/skins/plain-dev/xslt/html/book-to-menu.xsl
-%%DATADIR%%/main/webapp/skins/plain-dev/xslt/html/document-to-html.xsl
-%%DATADIR%%/main/webapp/skins/plain-dev/xslt/html/site-to-xhtml.xsl
-%%DATADIR%%/main/webapp/skins/plain-dev/xslt/html/tab-to-menu.xsl
-%%DATADIR%%/main/webapp/skins/scales/css/basic.css
-%%DATADIR%%/main/webapp/skins/scales/css/print.css
-%%DATADIR%%/main/webapp/skins/scales/css/profile.css.xslt
-%%DATADIR%%/main/webapp/skins/scales/css/screen.css
-%%DATADIR%%/main/webapp/skins/scales/images/chapter.gif
-%%DATADIR%%/main/webapp/skins/scales/images/chapter_open.gif
-%%DATADIR%%/main/webapp/skins/scales/images/current.gif
-%%DATADIR%%/main/webapp/skins/scales/images/error.png
-%%DATADIR%%/main/webapp/skins/scales/images/header_white_line.gif
-%%DATADIR%%/main/webapp/skins/scales/images/info.png
-%%DATADIR%%/main/webapp/skins/scales/images/instruction_arrow.png
-%%DATADIR%%/main/webapp/skins/scales/images/label.gif
-%%DATADIR%%/main/webapp/skins/scales/images/page.gif
-%%DATADIR%%/main/webapp/skins/scales/images/pdfdoc.gif
-%%DATADIR%%/main/webapp/skins/scales/images/printer.gif
-%%DATADIR%%/main/webapp/skins/scales/images/success.png
-%%DATADIR%%/main/webapp/skins/scales/images/warning.png
-%%DATADIR%%/main/webapp/skins/scales/images/xmldoc.gif
-%%DATADIR%%/main/webapp/skins/scales/note.txt
-%%DATADIR%%/main/webapp/skins/scales/skinconf.xsl
-%%DATADIR%%/main/webapp/skins/scales/xslt/fo/document-to-fo.xsl
-%%DATADIR%%/main/webapp/skins/scales/xslt/html/book-to-menu.xsl
-%%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/css/forrest.css.xslt
-%%DATADIR%%/main/webapp/skins/tigris/css/inst.css
-%%DATADIR%%/main/webapp/skins/tigris/css/ns4_only.css
-%%DATADIR%%/main/webapp/skins/tigris/css/print.css
-%%DATADIR%%/main/webapp/skins/tigris/css/quirks.css
-%%DATADIR%%/main/webapp/skins/tigris/css/tigris.css
-%%DATADIR%%/main/webapp/skins/tigris/images/corporate_logo.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/file.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/folder-closed.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/folder-open.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/help_logo.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_alert.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_alertsml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowfolder1_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowfolder2_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowfolderclosed1_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowfolderopen2_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowmembers1_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowmembers2_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowusergroups1_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowusergroups2_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowwaste1_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowwaste2_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_confirmsml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_doc_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_doc_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_error_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_error_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_folder_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_folder_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_help_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_help_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_info_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_info_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_infosml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_members_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_members_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_sortdown.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_sortleft.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_sortright.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_sortup.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_success_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_success_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_usergroups_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_usergroups_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_warning_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_warning_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_waste_lrg.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/icon_waste_sml.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/nw_maj.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/nw_maj_hi.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/nw_maj_rond.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/nw_med.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/nw_med_hi.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/nw_med_rond.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/nw_min.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/nw_min_036.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/nw_min_hi.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/pdfdoc.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/poweredby_036.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/printer.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/product_logo.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/se_maj_rond.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/strich.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/sw_maj_rond.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/sw_med_rond.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/sw_min.gif
-%%DATADIR%%/main/webapp/skins/tigris/images/xmldoc.gif
-%%DATADIR%%/main/webapp/skins/tigris/scripts/tigris.js
-%%DATADIR%%/main/webapp/skins/tigris/skinconf.xsl
-%%DATADIR%%/main/webapp/skins/tigris/xslt/fo/document-to-fo.xsl
-%%DATADIR%%/main/webapp/skins/tigris/xslt/html/book-to-menu.xsl
-%%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/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
-%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/group.svg
-%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/icon.png
-%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/project-logo.gif
-%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/project.svg
-%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/usemap.gif
-%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/index.xml
-%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/site.xml
-%%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
-%%DATADIR%%/plugins/pluginTemplate/locationmap.xml
-%%DATADIR%%/plugins/pluginTemplate/sitemap.xmap
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/classes/CatalogManager.properties
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/group-logo.gif
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/group.svg
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/icon.png
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/project-logo.gif
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/project.svg
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/usemap.gif
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/index.xml
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/site.xml
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/tabs.xml
-%%DATADIR%%/plugins/pluginTemplate/src/documentation/skinconf.xml
-%%DATADIR%%/plugins/pluginTemplate/src/java/readme.txt
-%%DATADIR%%/plugins/pluginTemplate/status.xml
-%%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
-%%DATADIR%%/site-author/content/xdocs/TR/2005/WD-forrest10.html
-%%DATADIR%%/site-author/content/xdocs/apacheconsites.jpg
-%%DATADIR%%/site-author/content/xdocs/asf-infrastructure.xml
-%%DATADIR%%/site-author/content/xdocs/committed-1.aart
-%%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_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
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/catalog.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/dreams.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/faq.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/glossary.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/bugzilla-patch/book.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/bugzilla-patch/howto-bugzilla-patch.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/bugzilla-patch/my-images/bugzilla-screen.gif
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/cvs-ssh/book.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/cvs-ssh/howto-cvs-ssh.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/howto-asf-mirror.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/howto-buildPlugin.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/howto-collaborativeEditing.html
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/howto-corner-images.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/howto-custom-html-source.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/howto-editcss.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/howto-forrest-from-maven.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/howto-forrestbot.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/howto-pdf-tab.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/index.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/multi/howto-multi.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/multi/revision-howto-multi-2003-09-14.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/multi/revision-howto-multi-2003-09-15.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/multi/revision-step1-2003-09-16.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/multi/step1.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/multi/step2.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/howto/multi/step3.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/images/snapshot-plain-dev.png
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/images/snapshot-view-viewHelper.png
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/index.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/libre-intro.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/linking.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/locationmap.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/menu-index.fv
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/primer.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/project-sitemap.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/searching.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/sitemap-explain.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/sitemap-ref.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/skin-package.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/skins.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/status-themes.xml
-%%DATADIR%%/site-author/content/xdocs/docs_0_80/tab-index.fv
-%%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
-%%DATADIR%%/site-author/content/xdocs/dtdx/document-v13.dtdx.pdf
-%%DATADIR%%/site-author/content/xdocs/dtdx/document-v13.xml
-%%DATADIR%%/site-author/content/xdocs/dtdx/document-v20.dtdx.pdf
-%%DATADIR%%/site-author/content/xdocs/dtdx/document-v20.xml
-%%DATADIR%%/site-author/content/xdocs/dtdx/dtd-docs.xml
-%%DATADIR%%/site-author/content/xdocs/dtdx/faq-v13.dtdx.pdf
-%%DATADIR%%/site-author/content/xdocs/dtdx/faq-v20.dtdx.pdf
-%%DATADIR%%/site-author/content/xdocs/dtdx/howto-v13.dtdx.pdf
-%%DATADIR%%/site-author/content/xdocs/dtdx/howto-v20.dtdx.pdf
-%%DATADIR%%/site-author/content/xdocs/events.xml
-%%DATADIR%%/site-author/content/xdocs/favicon.ico
-%%DATADIR%%/site-author/content/xdocs/flyer.xml
-%%DATADIR%%/site-author/content/xdocs/forrest-contract.xml
-%%DATADIR%%/site-author/content/xdocs/forrest-friday.xml
-%%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
-%%DATADIR%%/site-author/content/xdocs/license.xml
-%%DATADIR%%/site-author/content/xdocs/live-sites.xml
-%%DATADIR%%/site-author/content/xdocs/mail-lists.xml
-%%DATADIR%%/site-author/content/xdocs/mirrors.html
-%%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_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
-%%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_90/usingPlugins.xml
-%%DATADIR%%/site-author/content/xdocs/procedures/How_to_publish_docs.xml
-%%DATADIR%%/site-author/content/xdocs/procedures/release/How_to_release.xml
-%%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/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/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.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
-%%DATADIR%%/site-author/forrest.properties.xml
-%%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
-%%DATADIR%%/site-author/resources/images/dir-menu3.png
-%%DATADIR%%/site-author/resources/images/icon.png
-%%DATADIR%%/site-author/resources/images/menu.png
-%%DATADIR%%/site-author/resources/images/menu2.png
-%%DATADIR%%/site-author/resources/images/menu3.png
-%%DATADIR%%/site-author/resources/images/new-project.png
-%%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
-%%DATADIR%%/tools/ant/bin/antRun
-%%DATADIR%%/tools/ant/bin/antRun.pl
-%%DATADIR%%/tools/ant/bin/antenv.cmd
-%%DATADIR%%/tools/ant/bin/complete-ant-cmd.pl
-%%DATADIR%%/tools/ant/bin/envset.cmd
-%%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.jar
-%%DATADIR%%/tools/ant/lib/ant.license.txt
-%%DATADIR%%/tools/ant/lib/apache-jakarta-commons-net-1.4.1.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/ant/lib/xml-commons-resolver-1.1.jar.license.txt
-%%DATADIR%%/tools/dtdconverters/dtdx.dtd
-%%DATADIR%%/tools/dtdconverters/dtdx2dtd.xsl
-%%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
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/forrestbarSettings.xul
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/apache-down.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/apache.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/code-down.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/code.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/download-down.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/download.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/faq-down.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/faq.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/forrest-down.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/forrest.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/gump-down.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/gump.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/news-down.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/news.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/projects-down.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/projects.png
-%%DATADIR%%/tools/forrestbar/xpi/chrome/content/images/search-down.png
-%%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/install.js
-%%DATADIR%%/tools/forrestbar/xpi/install.rdf
-%%DATADIR%%/tools/forrestbot/avalon-phoenix.xml
-%%DATADIR%%/tools/forrestbot/avalon-site.xml
-%%DATADIR%%/tools/forrestbot/cocoon-site.xml
-%%DATADIR%%/tools/forrestbot/core/build.xml
-%%DATADIR%%/tools/forrestbot/core/cvs_add.sh
-%%DATADIR%%/tools/forrestbot/core/deploy.xml
-%%DATADIR%%/tools/forrestbot/core/emailtemplate.txt
-%%DATADIR%%/tools/forrestbot/core/forrestbot.xml
-%%DATADIR%%/tools/forrestbot/core/getsrc.xml
-%%DATADIR%%/tools/forrestbot/core/notify.xml
-%%DATADIR%%/tools/forrestbot/forrest-pelt.xml
-%%DATADIR%%/tools/forrestbot/forrest-seed.xml
-%%DATADIR%%/tools/forrestbot/forrest.xml
-%%DATADIR%%/tools/forrestbot/incubator.xml
-%%DATADIR%%/tools/forrestbot/lib/ant-contrib-1.0b2.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/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
-%%DATADIR%%/tools/forrestbot/webapp/src/conf/groups.xml
-%%DATADIR%%/tools/forrestbot/webapp/src/conf/log4j.properties
-%%DATADIR%%/tools/forrestbot/webapp/src/conf/osuser.xml
-%%DATADIR%%/tools/forrestbot/webapp/src/conf/projects.xml
-%%DATADIR%%/tools/forrestbot/webapp/src/conf/settings.properties
-%%DATADIR%%/tools/forrestbot/webapp/src/conf/users.xml
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/Config.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/Constants.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/Resources.properties
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/BaseAction.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ExecuteAction.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/LogoutAction.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ViewLogBodyAction.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ViewLogFrameAction.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ViewLogHeaderAction.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ViewSummaryAction.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/dto/ProjectDTO.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/form/BaseDynaActionForm.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/form/LoginForm.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/util/Executor.java
-%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/util/Project.java
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/struts-config.xml
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/struts-tiles.xml
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/tld/struts-bean-el.tld
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/tld/struts-html-el.tld
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/tld/struts-logic-el.tld
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/web.xml
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/commandForm.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/footer.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/header.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/layout.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/simple.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/viewlog_frame.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/execute.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/index.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/loginForm.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/logout.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/summary.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/viewlog_body.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/viewlog_header.jsp
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/welcome.html
-%%DATADIR%%/tools/forrestbot/webapp/src/webapp/welcome.local.html
-%%DATADIR%%/tools/forrestbot/ws-site.xml
-%%DATADIR%%/tools/forrestbot/xml-fop.xml
-%%DATADIR%%/tools/forrestbot/xml-site.xml
-%%DATADIR%%/tools/forrestbot/xml-xindice.xml
-%%DATADIR%%/tools/forrestbot/xml-xmlbeans.xml
-%%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/build.xml
-%%DATADIR%%/tools/xxe/common_config.xml
-%%DATADIR%%/tools/xxe/css/common.css
-%%DATADIR%%/tools/xxe/css/document1x.css
-%%DATADIR%%/tools/xxe/css/document2x.css
-%%DATADIR%%/tools/xxe/document-v10.xxe
-%%DATADIR%%/tools/xxe/document-v20.xxe
-%%DATADIR%%/tools/xxe/icons/note.png
-%%DATADIR%%/tools/xxe/icons/sub.png
-%%DATADIR%%/tools/xxe/icons/sup.png
-%%DATADIR%%/tools/xxe/template/document11.xml
-%%DATADIR%%/tools/xxe/template/document12.xml
-%%DATADIR%%/tools/xxe/template/document13.xml
-%%DATADIR%%/tools/xxe/template/document20.xml
-%%DATADIR%%/tools/xxe/toolBar.xml
-%%DATADIR%%/whiteboard/plugins/build.xml
-%%DATADIR%%/whiteboard/plugins/whiteboard-plugins.xml
-@dir %%DATADIR%%/plugins/pluginTemplate/conf
-@dir %%DATADIR%%/main/template-sites/business/src/documentation/resources/templates
-@dir %%DATADIR%%/main/template-sites/business/src/documentation/resources/stylesheets
-@dir %%DATADIR%%/main/template-sites/business/src/documentation/resources/images
-@dir %%DATADIR%%/main/template-sites/business/src/documentation/conf
-@dir %%DATADIR%%/main/template-sites/benchmark/src/documentation/translations
-@dir %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/templates
-@dir %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/stylesheets
-@dir %%DATADIR%%/main/template-sites/benchmark/src/documentation/resources/images
-@dir %%DATADIR%%/main/template-sites/benchmark/src/documentation/conf
-@dir %%DATADIR%%/main/template-sites/basic/src/documentation/translations
-@dir %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common/js
-@dir %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common/images
-@dir %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common/html
-@dir %%DATADIR%%/main/template-sites/basic/src/documentation/resources/themes/common/css
-@dir %%DATADIR%%/main/template-sites/basic/src/documentation/resources/stylesheets
-@dir %%DATADIR%%/main/template-sites/basic/src/documentation/resources/images
-@dir %%DATADIR%%/main/template-sites/basic/src/documentation/conf
-@dir %%DATADIR%%/main/fresh-site/src/documentation/resources/themes
-@dir %%DATADIR%%/main/fresh-site/src/documentation/conf
-@dir %%DATADIR%%/lib/optional