From 6ed58c41bb82ff1d0733e90490d97fc89974556c Mon Sep 17 00:00:00 2001 From: remm Date: Thu, 3 Aug 2006 13:18:30 +0000 Subject: [PATCH] - Build the docs webapp. - Docs webapps fixes. - Small NSIS update to version 2.18. git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@428400 13f79535-47bb-0310-9956-ffa450edef68 --- build.properties.default | 6 +- build.xml | 142 +++++++++++++++++++++- res/tomcat.nsi | 4 +- webapps/docs/api/index.html | 2 +- webapps/docs/appdev/project.xml | 4 +- webapps/docs/architecture/project.xml | 8 +- webapps/docs/config/project.xml | 2 +- webapps/docs/funcspecs/project.xml | 2 +- webapps/docs/project.xml | 21 ++-- webapps/examples/jsp/jsp2/el/implicit-objects.jsp | 6 +- 10 files changed, 164 insertions(+), 33 deletions(-) diff --git a/build.properties.default b/build.properties.default index 584eb16a9..07f3030f2 100644 --- a/build.properties.default +++ b/build.properties.default @@ -59,9 +59,9 @@ commons-collections.loc=${base-jakarta.loc}/commons/collections/binaries/commons commons-collections-src.loc=${base-jakarta.loc}/commons/collections/source/commons-collections-3.1-src.tar.gz # ----- NSIS, version 2.0 or later ----- -nsis.home=${base.path}/nsis-2.0 +nsis.home=${base.path}/nsis-2.18 nsis.exe=${nsis.home}/makensis.exe nsis.installoptions.dll=${nsis.home}/Plugins/InstallOptions.dll nsis.nsexec.dll=${nsis.home}/Plugins/nsExec.dll -nsis.nsisdl.dll=${nsis.home}/Plugins/nsisdl.dll -nsis.loc=${base-sf.loc}/nsis/nsis20.exe +nsis.nsisdl.dll=${nsis.home}/Plugins/NSISdl.dll +nsis.loc=${base-sf.loc}/nsis/nsis-2.18-setup.exe diff --git a/build.xml b/build.xml index 0853f8996..12b5ffe97 100644 --- a/build.xml +++ b/build.xml @@ -176,6 +176,7 @@ + @@ -217,6 +218,7 @@ + @@ -253,7 +255,142 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -275,11 +412,10 @@ - + - diff --git a/res/tomcat.nsi b/res/tomcat.nsi index 56e7f1b22..c9c7838c2 100644 --- a/res/tomcat.nsi +++ b/res/tomcat.nsi @@ -4,9 +4,7 @@ ;Compression options CRCCheck on - SetCompress force - SetCompressor lzma - SetDatablockOptimize on + SetCompressor /SOLID lzma Name "Apache Tomcat" diff --git a/webapps/docs/api/index.html b/webapps/docs/api/index.html index 780a75a6a..e21782587 100644 --- a/webapps/docs/api/index.html +++ b/webapps/docs/api/index.html @@ -11,7 +11,7 @@ Tomcat's internal javadoc is no longer installed by default. Download and instal the "fulldocs" package to get it. You can also access the javadoc online in the Tomcat -documentation bundle. +documentation bundle. diff --git a/webapps/docs/appdev/project.xml b/webapps/docs/appdev/project.xml index 7ce8b2487..104ab093b 100644 --- a/webapps/docs/appdev/project.xml +++ b/webapps/docs/appdev/project.xml @@ -1,11 +1,11 @@ + href="http://tomcat.apache.org/"> Application Developer's Guide - The Tomcat Servlet/JSP Container + The Apache Tomcat Servlet/JSP Container diff --git a/webapps/docs/architecture/project.xml b/webapps/docs/architecture/project.xml index b7d25b3af..b6afb4ea2 100644 --- a/webapps/docs/architecture/project.xml +++ b/webapps/docs/architecture/project.xml @@ -1,11 +1,11 @@ - + - Tomcat Architecture + Apache Tomcat Architecture - The Tomcat Servlet/JSP Container + The Apache Tomcat Servlet/JSP Container diff --git a/webapps/docs/config/project.xml b/webapps/docs/config/project.xml index 4712b81d1..1dc880981 100644 --- a/webapps/docs/config/project.xml +++ b/webapps/docs/config/project.xml @@ -1,6 +1,6 @@ + href="http://tomcat.apache.org/"> Apache Tomcat Configuration Reference diff --git a/webapps/docs/funcspecs/project.xml b/webapps/docs/funcspecs/project.xml index b265a0774..341254afa 100644 --- a/webapps/docs/funcspecs/project.xml +++ b/webapps/docs/funcspecs/project.xml @@ -1,6 +1,6 @@ + href="http://tomcat.apache.org/"> Catalina Functional Specifications diff --git a/webapps/docs/project.xml b/webapps/docs/project.xml index 7e9bbe363..2ac5084ea 100644 --- a/webapps/docs/project.xml +++ b/webapps/docs/project.xml @@ -1,8 +1,8 @@ - + - The Apache Tomcat 6.0 Servlet/JSP Container + Apache Tomcat 6.0 The Apache Tomcat Servlet/JSP Container @@ -13,7 +13,7 @@ - + @@ -44,16 +44,15 @@ href="monitoring.html"/> - + - + + - - + href="http://tomcat.apache.org/connectors-doc/"/> @@ -61,10 +60,8 @@ - - - + diff --git a/webapps/examples/jsp/jsp2/el/implicit-objects.jsp b/webapps/examples/jsp/jsp2/el/implicit-objects.jsp index 992aa1d4b..f13a05dda 100644 --- a/webapps/examples/jsp/jsp2/el/implicit-objects.jsp +++ b/webapps/examples/jsp/jsp2/el/implicit-objects.jsp @@ -71,15 +71,15 @@ \${header["host"]} - ${header["host"]} + ${fn:escapeXml(header["host"])}  \${header["accept"]} - ${header["accept"]} + ${fn:escapeXml(header["accept"])}  \${header["user-agent"]} - ${header["user-agent"]} + ${fn:escapeXml(header["user-agent"])}  -- 2.11.0