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