aboutsummaryrefslogtreecommitdiff
path: root/www/tomcat7
diff options
context:
space:
mode:
Diffstat (limited to 'www/tomcat7')
-rw-r--r--www/tomcat7/Makefile133
-rw-r--r--www/tomcat7/distinfo3
-rw-r--r--www/tomcat7/files/patch-conf__server.xml29
-rw-r--r--www/tomcat7/files/pkg-deinstall.in47
-rw-r--r--www/tomcat7/files/pkg-install.in53
-rw-r--r--www/tomcat7/files/tomcat6.sh.in167
-rw-r--r--www/tomcat7/pkg-descr8
-rw-r--r--www/tomcat7/pkg-plist604
8 files changed, 0 insertions, 1044 deletions
diff --git a/www/tomcat7/Makefile b/www/tomcat7/Makefile
deleted file mode 100644
index 80737964bb5a..000000000000
--- a/www/tomcat7/Makefile
+++ /dev/null
@@ -1,133 +0,0 @@
-# New ports collection makefile for: apache-tomcat
-# Date created: 14 Feb 2007
-# Whom: Nemo Liu <nemoliu@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= apache-tomcat
-PORTVERSION= 6.0.10
-CATEGORIES= www java
-MASTER_SITES= ${MASTER_SITE_APACHE}
-MASTER_SITE_SUBDIR= tomcat/tomcat-6/v${PORTVERSION}/bin
-
-MAINTAINER= nemoliu@FreeBSD.org
-COMMENT= Open-source Java web server by Apache, 6.x branch
-
-USE_JAVA= yes
-JAVA_VERSION= 1.5+
-NO_BUILD= YES
-
-USE_RC_SUBR= tomcat6.sh
-SUB_FILES= pkg-install pkg-deinstall
-
-MAJOR_VER= ${PORTVERSION:R}
-APP_HOME?= ${PREFIX}/${PKGBASE}${PORTVERSION:R}
-LOG_DIR= ${APP_HOME}/logs
-APP_TITLE= Apache Tomcat
-APP_SHORTNAME= tomcat${MAJOR_VER:S/.//}
-TOMCAT_USER?= www
-TOMCAT_GROUP?= www
-PW?= /usr/sbin/pw
-HTTP_PORT?= 8180
-SHUTDOWN_PORT?= 8005
-AJP_1_3_PORT?= 8009
-STDOUT_LOG= ${LOG_DIR}/stdout.log
-STDERR_LOG= ${LOG_DIR}/stderr.log
-PID_FILE= /var/run/${APP_SHORTNAME}.pid
-WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work
-WRKSRC= ${WRKDIR}/apache-tomcat-${PORTVERSION}
-REPLACE_FILES= ${WRKSRC}/conf/server.xml
-REPLACE_LIST_TEMP= ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
-JAR_FILE= bin/bootstrap.jar
-PLIST_SUB+= T=${APP_HOME:S/^${PREFIX}\///} WWWOWN=${TOMCAT_USER} WWWGRP=${TOMCAT_GROUP}
-LATEST_LINK= ${APP_SHORTNAME}
-CONF_EXT= sample
-PLIST_SUB+= CONF_EXT=${CONF_EXT}
-
-SUB_LIST= AJP_1_3_PORT=${AJP_1_3_PORT} \
- APP_HOME=${APP_HOME} \
- APP_SHORTNAME=${APP_SHORTNAME} \
- APP_TITLE="${APP_TITLE}" \
- GROUP=${TOMCAT_GROUP} \
- HTTP_PORT=${HTTP_PORT} \
- JAR_FILE=${JAR_FILE} \
- PID_FILE=${PID_FILE} \
- SHUTDOWN_PORT=${SHUTDOWN_PORT} \
- STDERR_LOG=${STDERR_LOG} \
- STDOUT_LOG=${STDOUT_LOG} \
- TOMCAT_HOME=${APP_HOME} \
- TOMCAT_VERSION=${MAJOR_VER:S/.//} \
- USER=${TOMCAT_USER}
-
-.include <bsd.port.pre.mk>
-
-pre-patch:
- @${ECHO_MSG} "Installation settings:"
- @${ECHO_MSG} " Destination directory: ${APP_HOME}"
- @${ECHO_MSG} " Location of JDK: ${JAVA_HOME}"
- @${ECHO_MSG} " Location of Java port: ${JAVA_PORT}"
- @${ECHO_MSG} " Running as (user/group): ${TOMCAT_USER}/${TOMCAT_GROUP}"
- @${ECHO_MSG} " HTTP port: ${HTTP_PORT}"
- @${ECHO_MSG} " Shutdown listener port: ${SHUTDOWN_PORT}"
- @${ECHO_MSG} " AJP 1.3 connector port: ${AJP_1_3_PORT}"
- @${ECHO_MSG} " Logfile stdout: ${STDOUT_LOG}"
- @${ECHO_MSG} " Logfile stderr: ${STDERR_LOG}"
-
-post-patch:
- @${ECHO_MSG} -n ">> Removing unneeded files..."
- @${RM} -f `${FIND} ${WRKSRC} -name '*.bat'` `${FIND} ${WRKSRC} -name '*.orig'` `${FIND} ${WRKSRC} -name '*.exe'`
- @${ECHO_MSG} " [ DONE ]"
-
-.for file in ${REPLACE_FILES}
- @${ECHO_MSG} -n ">> Customizing `basename ${file}`..."
- @${SED} ${REPLACE_LIST_TEMP} ${file} > ${WRKDIR}/`basename ${file}`
- @${ECHO_MSG} " [ DONE ]"
-.endfor
-
-pre-install:
- @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
-
-do-install:
- @${ECHO_MSG} -n ">> Creating destination directory..."
- @${MKDIR} ${APP_HOME}
- @${MKDIR} ${LOG_DIR}
- @${ECHO_MSG} " [ DONE ]"
-
- @${ECHO_MSG} ">> Copying files to destination directory..."
- @${CP} ${WRKDIR}/server.xml ${WRKSRC}/conf/
- @(cd ${WRKSRC};${FIND} conf -type f | ${SED} -e '/${CONF_EXT}/d') \
- | while read a; do \
- ${MV} ${WRKSRC}/$$a ${WRKSRC}/$$a.${CONF_EXT}; \
- if [ ! -e "${APP_HOME}/$$a" ]; then \
- ${ECHO_MSG} " Installing local configuration file: ${APP_HOME}/$$a"; \
- ${CP} ${WRKSRC}/$$a.${CONF_EXT} ${WRKSRC}/$$a; \
- else \
- ${ECHO_MSG} " Preserving local configuration file: ${APP_HOME}/$$a"; \
- fi; \
- done
- @${CP} -R ${WRKSRC}/* ${APP_HOME}
- @${ECHO_MSG} " [ DONE ]"
-
- @${ECHO_MSG} -n ">> Creating log files..."
- @${INSTALL} -m 664 -o ${TOMCAT_USER} -g ${TOMCAT_GROUP} /dev/null ${STDOUT_LOG}
- @${INSTALL} -m 664 -o ${TOMCAT_USER} -g ${TOMCAT_GROUP} /dev/null ${STDERR_LOG}
- @${ECHO_MSG} " [ DONE ]"
-
- @${ECHO_MSG} -n ">> Creating symlink to tools.jar..."
- @${LN} -sf ${JAVA_HOME}/lib/tools.jar ${APP_HOME}/lib/tools.jar
- @${ECHO_MSG} " [ DONE ]"
-
- @${ECHO_MSG} -n ">> Fixing ownership settings..."
- @${CHOWN} -R ${TOMCAT_USER}:${TOMCAT_GROUP} ${APP_HOME}/conf ${APP_HOME}/logs \
- ${APP_HOME}/temp ${APP_HOME}/work
- @${ECHO_MSG} " [ DONE ]"
-
- @${ECHO_MSG} -n ">> Fixing permissions..."
- @${CHMOD} 755 `${FIND} ${APP_HOME} -type d`
- @${ECHO_MSG} " [ DONE ]"
-
-post-install:
- @${ECHO_MSG} "${APP_TITLE} ${PORTVERSION} has been installed in ${APP_HOME}."
-
-.include <bsd.port.post.mk>
diff --git a/www/tomcat7/distinfo b/www/tomcat7/distinfo
deleted file mode 100644
index 71be163d6034..000000000000
--- a/www/tomcat7/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (apache-tomcat-6.0.10.tar.gz) = 7c81324d08a22f90dfcf98c1b85a2537
-SHA256 (apache-tomcat-6.0.10.tar.gz) = 34c743cd82039c9a04236fc07979a087bda4a4d0fccac5cf5ccd730827673484
-SIZE (apache-tomcat-6.0.10.tar.gz) = 5816033
diff --git a/www/tomcat7/files/patch-conf__server.xml b/www/tomcat7/files/patch-conf__server.xml
deleted file mode 100644
index 10c464bc2b25..000000000000
--- a/www/tomcat7/files/patch-conf__server.xml
+++ /dev/null
@@ -1,29 +0,0 @@
---- ./conf/server.xml.orig Wed Feb 14 18:01:28 2007
-+++ ./conf/server.xml Wed Feb 14 18:01:20 2007
-@@ -2,7 +2,7 @@
- define subcomponents such as "Valves" at this level.
- Documentation at /docs/config/server.html
- -->
--<Server port="8005" shutdown="SHUTDOWN">
-+<Server port="%%SHUTDOWN_PORT%%" shutdown="SHUTDOWN">
-
- <!--APR library loader. Documentation at /docs/apr.html -->
- <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
-@@ -40,7 +40,7 @@
- APR (HTTP/AJP) Connector: /docs/apr.html
- Define a non-SSL HTTP/1.1 Connector on port 8080
- -->
-- <Connector port="8080" protocol="HTTP/1.1"
-+ <Connector port="%%HTTP_PORT%%" protocol="HTTP/1.1"
- maxThreads="150" connectionTimeout="20000"
- redirectPort="8443" />
-
-@@ -55,7 +55,7 @@
- -->
-
- <!-- Define an AJP 1.3 Connector on port 8009 -->
-- <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
-+ <Connector port="%%AJP_1_3_PORT%%" protocol="AJP/1.3" redirectPort="8443" />
-
-
- <!-- An Engine represents the entry point (within Catalina) that processes
diff --git a/www/tomcat7/files/pkg-deinstall.in b/www/tomcat7/files/pkg-deinstall.in
deleted file mode 100644
index 655ee46519d3..000000000000
--- a/www/tomcat7/files/pkg-deinstall.in
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-#
-# This script does the following.
-#
-# * Checks if the PID file exists. If it does, it kills the
-# process and removes the PID file.
-#
-# * Checks if the '%%USER%%' user exists. If it does, then it displays
-# a message.
-#
-# $FreeBSD$
-#
-
-USER=%%USER%%
-PID_FILE=%%PID_FILE%%
-
-# Make sure we're in the right stage of the process
-if [ "$2" = "DEINSTALL" ]; then
-
- # Kill the process if it is still running
- if [ -s ${PID_FILE} ]; then
- PID=`cat ${PID_FILE}`
- echo -n ">> Killing Tomcat process (${PID})..."
- /bin/kill ${PID} > /dev/null 2> /dev/null
- if [ $? -eq 0 ]; then
- echo " [ DONE ]"
- else
- echo " [ FAILED ]"
- fi
- echo -n ">> Removing PID file (${PID_FILE})..."
- rm ${PID_FILE} > /dev/null 2> /dev/null
- if [ $? -eq 0 ]; then
- echo " [ DONE ]"
- else
- echo " [ FAILED ]"
- fi
- fi
-fi
-
-if [ "$2" = "POST-DEINSTALL" ]; then
- # If the user exists, then display a message
- if pw usershow "${USER}" 2>/dev/null 1>&2; then
- echo "To delete the ${USER} user permanently, use 'pw userdel ${USER}'"
- fi
-fi
-
-exit 0
diff --git a/www/tomcat7/files/pkg-install.in b/www/tomcat7/files/pkg-install.in
deleted file mode 100644
index ddc5dfda878a..000000000000
--- a/www/tomcat7/files/pkg-install.in
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-#
-# Checks if the '%%USER%%' user and '%%GROUP%%' group exist. If they don't, then
-# an attempt is made to create both.
-#
-# $FreeBSD$
-#
-
-# Make sure we're called during the 'make install' process
-if [ "$2" != "PRE-INSTALL" ]; then
- exit 0
-fi
-
-# Set some constants
-UID=80
-GID=${UID}
-USER=%%USER%%
-GROUP=%%GROUP%%
-
-# See if the group already exists
-if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
-
- # If not, try to create it
- if pw groupadd "${GROUP}" -g ${GID}; then
- echo "Added group \"${GROUP}\"."
- elif pw groupadd "${GROUP}"; then
- echo "Added group \"${GROUP}\"."
- else
- echo "Adding group \"${GROUP}\" failed..."
- exit 1
- fi
-fi
-
-# See if the user already exists
-if ! pw usershow "${USER}" 2>/dev/null 1>&2; then
-
- # If not, try to create it
- if pw useradd "${USER}" -u ${UID} -g "${GROUP}" -h - \
- -s "/sbin/nologin" -d "/nonexistent" \
- -c "World Wide Web Owner";
- then
- echo "Added user \"${USER}\"."
- elif pw useradd "${USER}" -g "${GROUP}" -h - \
- -s "/sbin/nologin" -d "/nonexistent" \
- -c "World Wide Web Owner";
- then
- echo "Added user \"${USER}\"."
- else
- echo "Adding user \"${USER}\" failed..."
- exit 1
- fi
-fi
-exit 0
diff --git a/www/tomcat7/files/tomcat6.sh.in b/www/tomcat7/files/tomcat6.sh.in
deleted file mode 100644
index bc87ede6d9d4..000000000000
--- a/www/tomcat7/files/tomcat6.sh.in
+++ /dev/null
@@ -1,167 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-# PROVIDE: tomcat%%TOMCAT_VERSION%%
-# REQUIRE: NETWORKING SERVERS
-# BEFORE: DAEMON
-# KEYWORD: shutdown
-
-#
-# Configuration settings for tomcat%%TOMCAT_VERSION%% in /etc/rc.conf:
-#
-# tomcat%%TOMCAT_VERSION%%_enable (bool):
-# Set to "NO" by default.
-# Set it to "YES" to enable tomcat%%TOMCAT_VERSION%%
-#
-# tomcat%%TOMCAT_VERSION%%_flags (str):
-# Set to "" by default.
-# Extra flags passed to start command
-#
-# tomcat%%TOMCAT_VERSION%%_catalina_home (str)
-# Set to "%%TOMCAT_HOME%%" by default.
-# Set the CATALINA_HOME variable for the Tomcat process
-#
-# tomcat%%TOMCAT_VERSION%%_catalina_base (str)
-# Set to "%%TOMCAT_HOME%%" by default.
-# Set the CATALINA_BASE variable for the Tomcat process
-#
-# tomcat%%TOMCAT_VERSION%%_catalina_tmpdir (str)
-# Set to "%%TOMCAT_HOME%%/temp" by default.
-# Set the CATALINA_TMPDIR variable for the Tomcat process
-#
-# tomcat%%TOMCAT_VERSION%%_stdout_log (str)
-# Set to "%%STDOUT_LOG%%" by default.
-# Set the location for the Tomcat process log (standard output)
-#
-# tomcat%%TOMCAT_VERSION%%_stderr_log (str)
-# Set to "%%STDERR_LOG%%" by default.
-# Set the location for the Tomcat process log (error output)
-#
-# tomcat%%TOMCAT_VERSION%%_stop_timeout (num)
-# Set to "10" by default.
-# Sets the timeout in seconds to allow tomcat to shutdown.
-# After the timeout has elapsed, tomcat will be killed.
-#
-# tomcat%%TOMCAT_VERSION%%_java_home (str):
-# tomcat%%TOMCAT_VERSION%%_java_vendor (str):
-# tomcat%%TOMCAT_VERSION%%_java_version (str):
-# tomcat%%TOMCAT_VERSION%%_java_os (str):
-# Specify the requirements of the Java VM to use. See javavm(1).
-#
-# tomcat%%TOMCAT_VERSION%%_classpath (str):
-# Set to "" by default.
-# Addtional classes to add to the CLASSPATH
-#
-# tomcat%%TOMCAT_VERSION%%_java_opts (str):
-# Set to "" by default.
-# Java VM args to use.
-#
-
-tomcat%%TOMCAT_VERSION%%_enable="${tomcat%%TOMCAT_VERSION%%_enable:-"NO"}"
-tomcat%%TOMCAT_VERSION%%_java_version="${tomcat%%TOMCAT_VERSION%%_java_version:-"%%JAVA_VERSION%%"}"
-tomcat%%TOMCAT_VERSION%%_user="${tomcat%%TOMCAT_VERSION%%_user:-"%%USER%%"}"
-tomcat%%TOMCAT_VERSION%%_catalina_home="${tomcat%%TOMCAT_VERSION%%_catalina_home:-"%%TOMCAT_HOME%%"}"
-tomcat%%TOMCAT_VERSION%%_catalina_base="${tomcat%%TOMCAT_VERSION%%_catalina_base:-"%%TOMCAT_HOME%%"}"
-tomcat%%TOMCAT_VERSION%%_catalina_tmpdir="${tomcat%%TOMCAT_VERSION%%_catalina_tmpdir:-"%%TOMCAT_HOME%%/temp"}"
-tomcat%%TOMCAT_VERSION%%_stdout_log="${tomcat%%TOMCAT_VERSION%%_stdout_log:-"%%STDOUT_LOG%%"}"
-tomcat%%TOMCAT_VERSION%%_stderr_log="${tomcat%%TOMCAT_VERSION%%_stderr_log:-"%%STDERR_LOG%%"}"
-tomcat%%TOMCAT_VERSION%%_stop_timeout="${tomcat%%TOMCAT_VERSION%%_stop_timeout:-"10"}"
-
-. %%RC_SUBR%%
-
-name="tomcat%%TOMCAT_VERSION%%"
-rcvar=`set_rcvar`
-pidfile="%%PID_FILE%%"
-
-load_rc_config "${name}"
-
-if [ -n "${tomcat%%TOMCAT_VERSION%%_java_home}" ] ; then
- export JAVA_HOME="${tomcat%%TOMCAT_VERSION%%_java_home}"
-fi
-
-if [ -n "${tomcat%%TOMCAT_VERSION%%_java_version}" ] ; then
- export JAVA_VERSION="${tomcat%%TOMCAT_VERSION%%_java_version}"
-fi
-
-if [ -n "${tomcat%%TOMCAT_VERSION%%_java_vendor}" ] ; then
- export JAVA_VENDOR="${tomcat%%TOMCAT_VERSION%%_java_vendor}"
-fi
-
-if [ -n "${tomcat%%TOMCAT_VERSION%%_java_os}" ] ; then
- export JAVA_OS="${tomcat%%TOMCAT_VERSION%%_java_os}"
-fi
-
-java_command="%%LOCALBASE%%/bin/java \
- ${tomcat%%TOMCAT_VERSION%%_java_opts} \
- -Djava.endorsed.dirs=$JAVA_ENDORSED_DIRS \
- -classpath %%TOMCAT_HOME%%/%%JAR_FILE%%:%%TOMCAT_HOME%%/bin/commons-logging-api.jar:${tomcat%%TOMCAT_VERSION%%_classpath} \
- -Dcatalina.base=${tomcat%%TOMCAT_VERSION%%_catalina_base} \
- -Dcatalina.home=${tomcat%%TOMCAT_VERSION%%_catalina_home} \
- -Djava.io.tmpdir=${tomcat%%TOMCAT_VERSION%%_catalina_tmpdir} \
- org.apache.catalina.startup.Bootstrap"
-
-log_args=">> ${tomcat%%TOMCAT_VERSION%%_stdout_log} \
- 2>> ${tomcat%%TOMCAT_VERSION%%_stderr_log} "
-
-# Subvert the check_pid_file procname check.
-if [ -f $pidfile ]; then
- read rc_pid junk < $pidfile
- if [ ! -z "$rc_pid" ]; then
- procname=`ps -o ucomm= $rc_pid`
- fi
-fi
-
-required_files="${tomcat%%TOMCAT_VERSION%%_catalina_home}/conf/server.xml"
-
-command="/usr/sbin/daemon"
-flags="-p ${pidfile} ${java_command} start ${tomcat%%TOMCAT_VERSION%%_flags} ${log_args}"
-
-start_precmd=pid_touch
-stop_cmd="tomcat%%TOMCAT_VERSION%%_stop"
-
-pid_touch ()
-{
- touch $pidfile
- chown $tomcat%%TOMCAT_VERSION%%_user $pidfile
-}
-
-tomcat%%TOMCAT_VERSION%%_stop() {
- rc_pid=$(check_pidfile $pidfile *$procname*)
-
- if [ -z "$rc_pid" ]; then
- [ -n "$rc_fast" ] && return 0
- if [ -n "$pidfile" ]; then
- echo "${name} not running? (check $pidfile)."
- else
- echo "${name} not running?"
- fi
- return 1
- fi
-
- echo "Stopping ${name}."
- ${java_command} stop
- tomcat_wait_max_for_pid ${tomcat%%TOMCAT_VERSION%%_stop_timeout} ${rc_pid}
- kill -KILL ${rc_pid} 2> /dev/null && echo "Killed."
- echo -n > ${pidfile}
-}
-
-tomcat_wait_max_for_pid() {
- _timeout=$1
- shift
- _pid=$1
- _prefix=
- while [ $_timeout -gt 0 ] ; do
- echo -n ${_prefix:-"Waiting (max $_timeout secs) for PIDS: "}$_pid
- _prefix=", "
- sleep 2
- kill -0 $_pid 2> /dev/null || break
- _timeout=$(($_timeout-2))
- done
- if [ -n "$_prefix" ]; then
- echo "."
- fi
-}
-
-run_rc_command "$1"
diff --git a/www/tomcat7/pkg-descr b/www/tomcat7/pkg-descr
deleted file mode 100644
index 90a0100821ee..000000000000
--- a/www/tomcat7/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-Apache Tomcat is a web server written in 100% Pure Java.
-
-Apache Tomcat version 6.0 implements the Servlet 2.5 and JavaServer Pages 2.1
-specifications from the Java Community Process, and includes many additional
-features that make it a useful platform for developing and deploying web app
--lications and web services.
-
-WWW: http://tomcat.apache.org/
diff --git a/www/tomcat7/pkg-plist b/www/tomcat7/pkg-plist
deleted file mode 100644
index 0b1d046e6b45..000000000000
--- a/www/tomcat7/pkg-plist
+++ /dev/null
@@ -1,604 +0,0 @@
-@comment $FreeBSD$
-@unexec if cmp -s %D/%%T%%/conf/Catalina/localhost/host-manager.xml %D/%%T%%/conf/Catalina/localhost/host-manager.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/Catalina/localhost/host-manager.xml; else echo If permanently deleting this package, %D/%%T%%/conf/Catalina/localhost/host-manager.xml must be removed manually; fi
-@unexec if cmp -s %D/%%T%%/conf/Catalina/localhost/manager.xml %D/%%T%%/conf/Catalina/localhost/manager.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/Catalina/localhost/manager.xml; else echo If permanently deleting this package, %D/%%T%%/conf/Catalina/localhost/manager.xml must be removed manually; fi
-@unexec if cmp -s %D/%%T%%/conf/catalina.policy %D/%%T%%/conf/catalina.policy.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/catalina.policy; else echo If permanently deleting this package, %D/%%T%%/conf/catalina.policy must be removed manually; fi
-@unexec if cmp -s %D/%%T%%/conf/catalina.properties %D/%%T%%/conf/catalina.properties.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/catalina.properties; else echo If permanently deleting this package, %D/%%T%%/conf/catalina.properties must be removed manually; fi
-@unexec if cmp -s %D/%%T%%/conf/context.xml %D/%%T%%/conf/context.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/context.xml; else echo If permanently deleting this package, %D/%%T%%/conf/context.xml must be removed manually; fi
-@unexec if cmp -s %D/%%T%%/conf/server-minimal.xml %D/%%T%%/conf/server-minimal.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/server-minimal.xml; else echo If permanently deleting this package, %D/%%T%%/conf/server-minimal.xml must be removed manually; fi
-@unexec if cmp -s %D/%%T%%/conf/server.xml %D/%%T%%/conf/server.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/server.xml; else echo If permanently deleting this package, %D/%%T%%/conf/server.xml must be removed manually; fi
-@unexec if cmp -s %D/%%T%%/conf/tomcat-users.xml %D/%%T%%/conf/tomcat-users.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/tomcat-users.xml; else echo If permanently deleting this package, %D/%%T%%/conf/tomcat-users.xml must be removed manually; fi
-@unexec if cmp -s %D/%%T%%/conf/web.xml %D/%%T%%/conf/web.xml.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/web.xml; else echo If permanently deleting this package, %D/%%T%%/conf/web.xml must be removed manually; fi
-@unexec if cmp -s %D/%%T%%/conf/logging.properties %D/%%T%%/conf/logging.properties.%%CONF_EXT%%; then rm -f %D/%%T%%/conf/logging.properties; else echo If permanently deleting this package, %D/%%T%%/conf/logging.properties must be removed manually; fi
-%%T%%/LICENSE
-%%T%%/NOTICE
-%%T%%/RELEASE-NOTES
-%%T%%/RUNNING.txt
-%%T%%/bin/bootstrap.jar
-%%T%%/bin/catalina-tasks.xml
-%%T%%/bin/catalina.sh
-%%T%%/bin/commons-daemon.jar
-%%T%%/bin/digest.sh
-%%T%%/bin/jsvc.tar.gz
-%%T%%/bin/setclasspath.sh
-%%T%%/bin/shutdown.sh
-%%T%%/bin/startup.sh
-%%T%%/bin/tomcat-juli.jar
-%%T%%/bin/tomcat-native.tar.gz
-%%T%%/bin/tool-wrapper.sh
-%%T%%/bin/version.sh
-%%T%%/conf/catalina.policy.%%CONF_EXT%%
-%%T%%/conf/catalina.properties.%%CONF_EXT%%
-%%T%%/conf/context.xml.%%CONF_EXT%%
-%%T%%/conf/logging.properties.%%CONF_EXT%%
-%%T%%/conf/server.xml.%%CONF_EXT%%
-%%T%%/conf/tomcat-users.xml.%%CONF_EXT%%
-%%T%%/conf/web.xml.%%CONF_EXT%%
-%%T%%/lib/annotations-api.jar
-%%T%%/lib/catalina-ant.jar
-%%T%%/lib/catalina-ha.jar
-%%T%%/lib/catalina-tribes.jar
-%%T%%/lib/catalina.jar
-%%T%%/lib/el-api.jar
-%%T%%/lib/jasper-el.jar
-%%T%%/lib/jasper-jdt.jar
-%%T%%/lib/jasper.jar
-%%T%%/lib/jsp-api.jar
-%%T%%/lib/servlet-api.jar
-%%T%%/lib/tomcat-coyote.jar
-%%T%%/lib/tomcat-dbcp.jar
-%%T%%/lib/tomcat-i18n-es.jar
-%%T%%/lib/tomcat-i18n-fr.jar
-%%T%%/lib/tomcat-i18n-ja.jar
-%%T%%/lib/tools.jar
-%%T%%/logs/stderr.log
-%%T%%/logs/stdout.log
-%%T%%/temp/safeToDelete.tmp
-%%T%%/webapps/ROOT/RELEASE-NOTES.txt
-%%T%%/webapps/ROOT/WEB-INF/web.xml
-%%T%%/webapps/ROOT/admin/index.html
-%%T%%/webapps/ROOT/asf-logo-wide.gif
-%%T%%/webapps/ROOT/build.xml
-%%T%%/webapps/ROOT/favicon.ico
-%%T%%/webapps/ROOT/index.html
-%%T%%/webapps/ROOT/index.jsp
-%%T%%/webapps/ROOT/tomcat-power.gif
-%%T%%/webapps/ROOT/tomcat.gif
-%%T%%/webapps/ROOT/tomcat.svg
-%%T%%/webapps/docs/BUILDING.txt
-%%T%%/webapps/docs/NOTICE
-%%T%%/webapps/docs/RUNNING.txt
-%%T%%/webapps/docs/WEB-INF/web.xml
-%%T%%/webapps/docs/aio.html
-%%T%%/webapps/docs/api/index.html
-%%T%%/webapps/docs/appdev/build.xml.txt
-%%T%%/webapps/docs/appdev/deployment.html
-%%T%%/webapps/docs/appdev/index.html
-%%T%%/webapps/docs/appdev/installation.html
-%%T%%/webapps/docs/appdev/introduction.html
-%%T%%/webapps/docs/appdev/printer/deployment.html
-%%T%%/webapps/docs/appdev/printer/docs/appdev/build.xml.txt
-%%T%%/webapps/docs/appdev/printer/docs/appdev/web.xml.txt
-%%T%%/webapps/docs/appdev/printer/index.html
-%%T%%/webapps/docs/appdev/printer/installation.html
-%%T%%/webapps/docs/appdev/printer/introduction.html
-%%T%%/webapps/docs/appdev/printer/processes.html
-%%T%%/webapps/docs/appdev/printer/source.html
-%%T%%/webapps/docs/appdev/processes.html
-%%T%%/webapps/docs/appdev/sample/build.xml
-%%T%%/webapps/docs/appdev/sample/docs/README.txt
-%%T%%/webapps/docs/appdev/sample/index.html
-%%T%%/webapps/docs/appdev/sample/sample.war
-%%T%%/webapps/docs/appdev/sample/src/mypackage/Hello.java
-%%T%%/webapps/docs/appdev/sample/web/WEB-INF/web.xml
-%%T%%/webapps/docs/appdev/sample/web/hello.jsp
-%%T%%/webapps/docs/appdev/sample/web/images/tomcat.gif
-%%T%%/webapps/docs/appdev/sample/web/index.html
-%%T%%/webapps/docs/appdev/source.html
-%%T%%/webapps/docs/appdev/web.xml.txt
-%%T%%/webapps/docs/apr.html
-%%T%%/webapps/docs/architecture/index.html
-%%T%%/webapps/docs/architecture/overview.html
-%%T%%/webapps/docs/architecture/printer/index.html
-%%T%%/webapps/docs/architecture/printer/overview.html
-%%T%%/webapps/docs/architecture/printer/requestProcess.html
-%%T%%/webapps/docs/architecture/printer/startup.html
-%%T%%/webapps/docs/architecture/requestProcess.html
-%%T%%/webapps/docs/architecture/requestProcess/requestProcess.pdf
-%%T%%/webapps/docs/architecture/requestProcess/roseModel.mdl
-%%T%%/webapps/docs/architecture/startup.html
-%%T%%/webapps/docs/architecture/startup/serverStartup.pdf
-%%T%%/webapps/docs/architecture/startup/serverStartup.txt
-%%T%%/webapps/docs/balancer-howto.html
-%%T%%/webapps/docs/building.html
-%%T%%/webapps/docs/cgi-howto.html
-%%T%%/webapps/docs/changelog.html
-%%T%%/webapps/docs/class-loader-howto.html
-%%T%%/webapps/docs/cluster-howto.html
-%%T%%/webapps/docs/config/ajp.html
-%%T%%/webapps/docs/config/cluster-channel.html
-%%T%%/webapps/docs/config/cluster-deployer.html
-%%T%%/webapps/docs/config/cluster-interceptor.html
-%%T%%/webapps/docs/config/cluster-listener.html
-%%T%%/webapps/docs/config/cluster-manager.html
-%%T%%/webapps/docs/config/cluster-membership.html
-%%T%%/webapps/docs/config/cluster-receiver.html
-%%T%%/webapps/docs/config/cluster-sender.html
-%%T%%/webapps/docs/config/cluster-valve.html
-%%T%%/webapps/docs/config/cluster.html
-%%T%%/webapps/docs/config/context.html
-%%T%%/webapps/docs/config/engine.html
-%%T%%/webapps/docs/config/globalresources.html
-%%T%%/webapps/docs/config/host.html
-%%T%%/webapps/docs/config/http.html
-%%T%%/webapps/docs/config/index.html
-%%T%%/webapps/docs/config/loader.html
-%%T%%/webapps/docs/config/manager.html
-%%T%%/webapps/docs/config/printer/ajp.html
-%%T%%/webapps/docs/config/printer/cluster-channel.html
-%%T%%/webapps/docs/config/printer/cluster-deployer.html
-%%T%%/webapps/docs/config/printer/cluster-interceptor.html
-%%T%%/webapps/docs/config/printer/cluster-listener.html
-%%T%%/webapps/docs/config/printer/cluster-manager.html
-%%T%%/webapps/docs/config/printer/cluster-membership.html
-%%T%%/webapps/docs/config/printer/cluster-receiver.html
-%%T%%/webapps/docs/config/printer/cluster-sender.html
-%%T%%/webapps/docs/config/printer/cluster-valve.html
-%%T%%/webapps/docs/config/printer/cluster.html
-%%T%%/webapps/docs/config/printer/context.html
-%%T%%/webapps/docs/config/printer/engine.html
-%%T%%/webapps/docs/config/printer/globalresources.html
-%%T%%/webapps/docs/config/printer/host.html
-%%T%%/webapps/docs/config/printer/http.html
-%%T%%/webapps/docs/config/printer/index.html
-%%T%%/webapps/docs/config/printer/loader.html
-%%T%%/webapps/docs/config/printer/manager.html
-%%T%%/webapps/docs/config/printer/realm.html
-%%T%%/webapps/docs/config/printer/resources.html
-%%T%%/webapps/docs/config/printer/server.html
-%%T%%/webapps/docs/config/printer/service.html
-%%T%%/webapps/docs/config/printer/valve.html
-%%T%%/webapps/docs/config/realm.html
-%%T%%/webapps/docs/config/resources.html
-%%T%%/webapps/docs/config/server.html
-%%T%%/webapps/docs/config/service.html
-%%T%%/webapps/docs/config/valve.html
-%%T%%/webapps/docs/connectors.html
-%%T%%/webapps/docs/default-servlet.html
-%%T%%/webapps/docs/deployer-howto.html
-%%T%%/webapps/docs/developers.html
-%%T%%/webapps/docs/extras.html
-%%T%%/webapps/docs/funcspecs/fs-admin-apps.html
-%%T%%/webapps/docs/funcspecs/fs-admin-objects.html
-%%T%%/webapps/docs/funcspecs/fs-admin-opers.html
-%%T%%/webapps/docs/funcspecs/fs-default.html
-%%T%%/webapps/docs/funcspecs/fs-invoker.html
-%%T%%/webapps/docs/funcspecs/fs-jdbc-realm.html
-%%T%%/webapps/docs/funcspecs/fs-jndi-realm.html
-%%T%%/webapps/docs/funcspecs/fs-memory-realm.html
-%%T%%/webapps/docs/funcspecs/index.html
-%%T%%/webapps/docs/funcspecs/mbean-names.html
-%%T%%/webapps/docs/funcspecs/printer/fs-admin-apps.html
-%%T%%/webapps/docs/funcspecs/printer/fs-admin-objects.html
-%%T%%/webapps/docs/funcspecs/printer/fs-admin-opers.html
-%%T%%/webapps/docs/funcspecs/printer/fs-default.html
-%%T%%/webapps/docs/funcspecs/printer/fs-invoker.html
-%%T%%/webapps/docs/funcspecs/printer/fs-jdbc-realm.html
-%%T%%/webapps/docs/funcspecs/printer/fs-jndi-realm.html
-%%T%%/webapps/docs/funcspecs/printer/fs-memory-realm.html
-%%T%%/webapps/docs/funcspecs/printer/index.html
-%%T%%/webapps/docs/funcspecs/printer/mbean-names.html
-%%T%%/webapps/docs/html-manager-howto.html
-%%T%%/webapps/docs/images/add.gif
-%%T%%/webapps/docs/images/asf-logo.gif
-%%T%%/webapps/docs/images/code.gif
-%%T%%/webapps/docs/images/design.gif
-%%T%%/webapps/docs/images/docs.gif
-%%T%%/webapps/docs/images/fix.gif
-%%T%%/webapps/docs/images/printer.gif
-%%T%%/webapps/docs/images/tomcat.gif
-%%T%%/webapps/docs/images/tomcat.svg
-%%T%%/webapps/docs/images/update.gif
-%%T%%/webapps/docs/images/void.gif
-%%T%%/webapps/docs/index.html
-%%T%%/webapps/docs/introduction.html
-%%T%%/webapps/docs/jasper-howto.html
-%%T%%/webapps/docs/jndi-datasource-examples-howto.html
-%%T%%/webapps/docs/jndi-resources-howto.html
-%%T%%/webapps/docs/logging.html
-%%T%%/webapps/docs/manager-howto.html
-%%T%%/webapps/docs/maven-jars.html
-%%T%%/webapps/docs/mbeans-descriptor-howto.html
-%%T%%/webapps/docs/monitoring.html
-%%T%%/webapps/docs/printer/BUILDING.txt
-%%T%%/webapps/docs/printer/NOTICE
-%%T%%/webapps/docs/printer/RUNNING.txt
-%%T%%/webapps/docs/printer/aio.html
-%%T%%/webapps/docs/printer/apr.html
-%%T%%/webapps/docs/printer/balancer-howto.html
-%%T%%/webapps/docs/printer/building.html
-%%T%%/webapps/docs/printer/cgi-howto.html
-%%T%%/webapps/docs/printer/changelog.html
-%%T%%/webapps/docs/printer/class-loader-howto.html
-%%T%%/webapps/docs/printer/cluster-howto.html
-%%T%%/webapps/docs/printer/connectors.html
-%%T%%/webapps/docs/printer/default-servlet.html
-%%T%%/webapps/docs/printer/deployer-howto.html
-%%T%%/webapps/docs/printer/developers.html
-%%T%%/webapps/docs/printer/extras.html
-%%T%%/webapps/docs/printer/html-manager-howto.html
-%%T%%/webapps/docs/printer/index.html
-%%T%%/webapps/docs/printer/introduction.html
-%%T%%/webapps/docs/printer/jasper-howto.html
-%%T%%/webapps/docs/printer/jndi-datasource-examples-howto.html
-%%T%%/webapps/docs/printer/jndi-resources-howto.html
-%%T%%/webapps/docs/printer/logging.html
-%%T%%/webapps/docs/printer/manager-howto.html
-%%T%%/webapps/docs/printer/maven-jars.html
-%%T%%/webapps/docs/printer/mbeans-descriptor-howto.html
-%%T%%/webapps/docs/printer/monitoring.html
-%%T%%/webapps/docs/printer/proxy-howto.html
-%%T%%/webapps/docs/printer/realm-howto.html
-%%T%%/webapps/docs/printer/security-manager-howto.html
-%%T%%/webapps/docs/printer/setup.html
-%%T%%/webapps/docs/printer/ssi-howto.html
-%%T%%/webapps/docs/printer/ssl-howto.html
-%%T%%/webapps/docs/printer/status.html
-%%T%%/webapps/docs/printer/virtual-hosting-howto.html
-%%T%%/webapps/docs/printer/windows-service-howto.html
-%%T%%/webapps/docs/proxy-howto.html
-%%T%%/webapps/docs/realm-howto.html
-%%T%%/webapps/docs/security-manager-howto.html
-%%T%%/webapps/docs/setup.html
-%%T%%/webapps/docs/ssi-howto.html
-%%T%%/webapps/docs/ssl-howto.html
-%%T%%/webapps/docs/status.html
-%%T%%/webapps/docs/tribes/faq.html
-%%T%%/webapps/docs/tribes/introduction.html
-%%T%%/webapps/docs/tribes/setup.html
-%%T%%/webapps/docs/virtual-hosting-howto.html
-%%T%%/webapps/docs/windows-service-howto.html
-%%T%%/webapps/examples/WEB-INF/classes/CookieExample.class
-%%T%%/webapps/examples/WEB-INF/classes/CookieExample.java
-%%T%%/webapps/examples/WEB-INF/classes/HelloWorldExample.class
-%%T%%/webapps/examples/WEB-INF/classes/HelloWorldExample.java
-%%T%%/webapps/examples/WEB-INF/classes/LocalStrings.properties
-%%T%%/webapps/examples/WEB-INF/classes/LocalStrings_en.properties
-%%T%%/webapps/examples/WEB-INF/classes/LocalStrings_es.properties
-%%T%%/webapps/examples/WEB-INF/classes/LocalStrings_fr.properties
-%%T%%/webapps/examples/WEB-INF/classes/LocalStrings_pt.properties
-%%T%%/webapps/examples/WEB-INF/classes/RequestHeaderExample.class
-%%T%%/webapps/examples/WEB-INF/classes/RequestHeaderExample.java
-%%T%%/webapps/examples/WEB-INF/classes/RequestInfoExample.class
-%%T%%/webapps/examples/WEB-INF/classes/RequestInfoExample.java
-%%T%%/webapps/examples/WEB-INF/classes/RequestParamExample.class
-%%T%%/webapps/examples/WEB-INF/classes/RequestParamExample.java
-%%T%%/webapps/examples/WEB-INF/classes/SessionExample.class
-%%T%%/webapps/examples/WEB-INF/classes/SessionExample.java
-%%T%%/webapps/examples/WEB-INF/classes/cal/Entries.class
-%%T%%/webapps/examples/WEB-INF/classes/cal/Entries.java
-%%T%%/webapps/examples/WEB-INF/classes/cal/Entry.class
-%%T%%/webapps/examples/WEB-INF/classes/cal/Entry.java
-%%T%%/webapps/examples/WEB-INF/classes/cal/JspCalendar.class
-%%T%%/webapps/examples/WEB-INF/classes/cal/JspCalendar.java
-%%T%%/webapps/examples/WEB-INF/classes/cal/TableBean.class
-%%T%%/webapps/examples/WEB-INF/classes/cal/TableBean.java
-%%T%%/webapps/examples/WEB-INF/classes/chat/ChatServlet$MessageSender.class
-%%T%%/webapps/examples/WEB-INF/classes/chat/ChatServlet.class
-%%T%%/webapps/examples/WEB-INF/classes/chat/ChatServlet.java
-%%T%%/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class
-%%T%%/webapps/examples/WEB-INF/classes/checkbox/CheckTest.java
-%%T%%/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class
-%%T%%/webapps/examples/WEB-INF/classes/colors/ColorGameBean.java
-%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class
-%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.java
-%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class
-%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.java
-%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class
-%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java
-%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class
-%%T%%/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.java
-%%T%%/webapps/examples/WEB-INF/classes/dates/JspCalendar.class
-%%T%%/webapps/examples/WEB-INF/classes/dates/JspCalendar.java
-%%T%%/webapps/examples/WEB-INF/classes/error/Smart.class
-%%T%%/webapps/examples/WEB-INF/classes/error/Smart.java
-%%T%%/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class
-%%T%%/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.java
-%%T%%/webapps/examples/WEB-INF/classes/examples/FooTag.class
-%%T%%/webapps/examples/WEB-INF/classes/examples/FooTag.java
-%%T%%/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class
-%%T%%/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.java
-%%T%%/webapps/examples/WEB-INF/classes/examples/LogTag.class
-%%T%%/webapps/examples/WEB-INF/classes/examples/LogTag.java
-%%T%%/webapps/examples/WEB-INF/classes/examples/ShowSource.class
-%%T%%/webapps/examples/WEB-INF/classes/examples/ShowSource.java
-%%T%%/webapps/examples/WEB-INF/classes/filters/ExampleFilter.class
-%%T%%/webapps/examples/WEB-INF/classes/filters/ExampleFilter.java
-%%T%%/webapps/examples/WEB-INF/classes/filters/RequestDumperFilter.class
-%%T%%/webapps/examples/WEB-INF/classes/filters/RequestDumperFilter.java
-%%T%%/webapps/examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.class
-%%T%%/webapps/examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.java
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.class
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.java
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.class
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.java
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.java
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.java
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.java
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.java
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.java
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.java
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class
-%%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.java
-%%T%%/webapps/examples/WEB-INF/classes/listeners/ContextListener.class
-%%T%%/webapps/examples/WEB-INF/classes/listeners/ContextListener.java
-%%T%%/webapps/examples/WEB-INF/classes/listeners/SessionListener.class
-%%T%%/webapps/examples/WEB-INF/classes/listeners/SessionListener.java
-%%T%%/webapps/examples/WEB-INF/classes/num/NumberGuessBean.class
-%%T%%/webapps/examples/WEB-INF/classes/num/NumberGuessBean.java
-%%T%%/webapps/examples/WEB-INF/classes/servletToJsp.class
-%%T%%/webapps/examples/WEB-INF/classes/servletToJsp.java
-%%T%%/webapps/examples/WEB-INF/classes/sessions/DummyCart.class
-%%T%%/webapps/examples/WEB-INF/classes/sessions/DummyCart.java
-%%T%%/webapps/examples/WEB-INF/classes/util/HTMLFilter.class
-%%T%%/webapps/examples/WEB-INF/classes/util/HTMLFilter.java
-%%T%%/webapps/examples/WEB-INF/classes/validators/DebugValidator.class
-%%T%%/webapps/examples/WEB-INF/classes/validators/DebugValidator.java
-%%T%%/webapps/examples/WEB-INF/jsp/applet/Clock2.java
-%%T%%/webapps/examples/WEB-INF/jsp/debug-taglib.tld
-%%T%%/webapps/examples/WEB-INF/jsp/example-taglib.tld
-%%T%%/webapps/examples/WEB-INF/jsp2/jsp2-example-taglib.tld
-%%T%%/webapps/examples/WEB-INF/lib/jstl.jar
-%%T%%/webapps/examples/WEB-INF/lib/standard.jar
-%%T%%/webapps/examples/WEB-INF/tags/displayProducts.tag
-%%T%%/webapps/examples/WEB-INF/tags/helloWorld.tag
-%%T%%/webapps/examples/WEB-INF/tags/panel.tag
-%%T%%/webapps/examples/WEB-INF/tags/xhtmlbasic.tag
-%%T%%/webapps/examples/WEB-INF/web.xml
-%%T%%/webapps/examples/index.html
-%%T%%/webapps/examples/jsp/cal/cal1.jsp
-%%T%%/webapps/examples/jsp/cal/cal2.jsp
-%%T%%/webapps/examples/jsp/cal/calendar.html
-%%T%%/webapps/examples/jsp/cal/login.html
-%%T%%/webapps/examples/jsp/chat/chat.jsp
-%%T%%/webapps/examples/jsp/chat/login.jsp
-%%T%%/webapps/examples/jsp/chat/post.jsp
-%%T%%/webapps/examples/jsp/checkbox/CheckTest.html
-%%T%%/webapps/examples/jsp/checkbox/check.html
-%%T%%/webapps/examples/jsp/checkbox/checkresult.jsp
-%%T%%/webapps/examples/jsp/checkbox/cresult.html
-%%T%%/webapps/examples/jsp/colors/ColorGameBean.html
-%%T%%/webapps/examples/jsp/colors/clr.html
-%%T%%/webapps/examples/jsp/colors/colors.html
-%%T%%/webapps/examples/jsp/colors/colrs.jsp
-%%T%%/webapps/examples/jsp/dates/date.html
-%%T%%/webapps/examples/jsp/dates/date.jsp
-%%T%%/webapps/examples/jsp/error/er.html
-%%T%%/webapps/examples/jsp/error/err.jsp
-%%T%%/webapps/examples/jsp/error/error.html
-%%T%%/webapps/examples/jsp/error/errorpge.jsp
-%%T%%/webapps/examples/jsp/forward/forward.jsp
-%%T%%/webapps/examples/jsp/forward/fwd.html
-%%T%%/webapps/examples/jsp/forward/one.jsp
-%%T%%/webapps/examples/jsp/forward/two.html
-%%T%%/webapps/examples/jsp/images/code.gif
-%%T%%/webapps/examples/jsp/images/execute.gif
-%%T%%/webapps/examples/jsp/images/read.gif
-%%T%%/webapps/examples/jsp/images/return.gif
-%%T%%/webapps/examples/jsp/include/foo.html
-%%T%%/webapps/examples/jsp/include/foo.jsp
-%%T%%/webapps/examples/jsp/include/inc.html
-%%T%%/webapps/examples/jsp/include/include.jsp
-%%T%%/webapps/examples/jsp/index.html
-%%T%%/webapps/examples/jsp/jsp2/el/basic-arithmetic.html
-%%T%%/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp
-%%T%%/webapps/examples/jsp/jsp2/el/basic-comparisons.html
-%%T%%/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp
-%%T%%/webapps/examples/jsp/jsp2/el/functions.html
-%%T%%/webapps/examples/jsp/jsp2/el/functions.jsp
-%%T%%/webapps/examples/jsp/jsp2/el/implicit-objects.html
-%%T%%/webapps/examples/jsp/jsp2/el/implicit-objects.jsp
-%%T%%/webapps/examples/jsp/jsp2/jspattribute/jspattribute.html
-%%T%%/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp
-%%T%%/webapps/examples/jsp/jsp2/jspattribute/shuffle.html
-%%T%%/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp
-%%T%%/webapps/examples/jsp/jsp2/jspx/basic.html
-%%T%%/webapps/examples/jsp/jsp2/jspx/basic.jspx
-%%T%%/webapps/examples/jsp/jsp2/jspx/svgexample.html
-%%T%%/webapps/examples/jsp/jsp2/jspx/textRotate.html
-%%T%%/webapps/examples/jsp/jsp2/jspx/textRotate.jpg
-%%T%%/webapps/examples/jsp/jsp2/jspx/textRotate.jspx
-%%T%%/webapps/examples/jsp/jsp2/misc/coda.jspf
-%%T%%/webapps/examples/jsp/jsp2/misc/config.html
-%%T%%/webapps/examples/jsp/jsp2/misc/config.jsp
-%%T%%/webapps/examples/jsp/jsp2/misc/dynamicattrs.html
-%%T%%/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp
-%%T%%/webapps/examples/jsp/jsp2/misc/prelude.jspf
-%%T%%/webapps/examples/jsp/jsp2/simpletag/book.html
-%%T%%/webapps/examples/jsp/jsp2/simpletag/book.jsp
-%%T%%/webapps/examples/jsp/jsp2/simpletag/hello.html
-%%T%%/webapps/examples/jsp/jsp2/simpletag/hello.jsp
-%%T%%/webapps/examples/jsp/jsp2/simpletag/repeat.html
-%%T%%/webapps/examples/jsp/jsp2/simpletag/repeat.jsp
-%%T%%/webapps/examples/jsp/jsp2/tagfiles/hello.html
-%%T%%/webapps/examples/jsp/jsp2/tagfiles/hello.jsp
-%%T%%/webapps/examples/jsp/jsp2/tagfiles/panel.html
-%%T%%/webapps/examples/jsp/jsp2/tagfiles/panel.jsp
-%%T%%/webapps/examples/jsp/jsp2/tagfiles/products.html
-%%T%%/webapps/examples/jsp/jsp2/tagfiles/products.jsp
-%%T%%/webapps/examples/jsp/jsptoserv/hello.jsp
-%%T%%/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp
-%%T%%/webapps/examples/jsp/jsptoserv/jts.html
-%%T%%/webapps/examples/jsp/num/numguess.html
-%%T%%/webapps/examples/jsp/num/numguess.jsp
-%%T%%/webapps/examples/jsp/plugin/applet/Clock2.java
-%%T%%/webapps/examples/jsp/plugin/plugin.html
-%%T%%/webapps/examples/jsp/plugin/plugin.jsp
-%%T%%/webapps/examples/jsp/security/protected/error.jsp
-%%T%%/webapps/examples/jsp/security/protected/index.jsp
-%%T%%/webapps/examples/jsp/security/protected/login.jsp
-%%T%%/webapps/examples/jsp/sessions/DummyCart.html
-%%T%%/webapps/examples/jsp/sessions/carts.html
-%%T%%/webapps/examples/jsp/sessions/carts.jsp
-%%T%%/webapps/examples/jsp/sessions/crt.html
-%%T%%/webapps/examples/jsp/simpletag/foo.html
-%%T%%/webapps/examples/jsp/simpletag/foo.jsp
-%%T%%/webapps/examples/jsp/snp/snoop.html
-%%T%%/webapps/examples/jsp/snp/snoop.jsp
-%%T%%/webapps/examples/jsp/source.jsp
-%%T%%/webapps/examples/jsp/tagplugin/choose.html
-%%T%%/webapps/examples/jsp/tagplugin/choose.jsp
-%%T%%/webapps/examples/jsp/tagplugin/foreach.html
-%%T%%/webapps/examples/jsp/tagplugin/foreach.jsp
-%%T%%/webapps/examples/jsp/tagplugin/howto.html
-%%T%%/webapps/examples/jsp/tagplugin/if.html
-%%T%%/webapps/examples/jsp/tagplugin/if.jsp
-%%T%%/webapps/examples/jsp/tagplugin/notes.html
-%%T%%/webapps/examples/jsp/xml/xml.html
-%%T%%/webapps/examples/jsp/xml/xml.jsp
-%%T%%/webapps/examples/servlets/cookies.html
-%%T%%/webapps/examples/servlets/helloworld.html
-%%T%%/webapps/examples/servlets/images/code.gif
-%%T%%/webapps/examples/servlets/images/execute.gif
-%%T%%/webapps/examples/servlets/images/return.gif
-%%T%%/webapps/examples/servlets/index.html
-%%T%%/webapps/examples/servlets/reqheaders.html
-%%T%%/webapps/examples/servlets/reqinfo.html
-%%T%%/webapps/examples/servlets/reqparams.html
-%%T%%/webapps/examples/servlets/sessions.html
-%%T%%/webapps/host-manager/META-INF/context.xml
-%%T%%/webapps/host-manager/WEB-INF/web.xml
-%%T%%/webapps/host-manager/host-manager.xml
-%%T%%/webapps/host-manager/images/add.gif
-%%T%%/webapps/host-manager/images/asf-logo.gif
-%%T%%/webapps/host-manager/images/code.gif
-%%T%%/webapps/host-manager/images/design.gif
-%%T%%/webapps/host-manager/images/docs.gif
-%%T%%/webapps/host-manager/images/fix.gif
-%%T%%/webapps/host-manager/images/tomcat.gif
-%%T%%/webapps/host-manager/images/update.gif
-%%T%%/webapps/host-manager/images/void.gif
-%%T%%/webapps/host-manager/manager.xml
-%%T%%/webapps/manager/401.jsp
-%%T%%/webapps/manager/META-INF/context.xml
-%%T%%/webapps/manager/WEB-INF/web.xml
-%%T%%/webapps/manager/images/add.gif
-%%T%%/webapps/manager/images/asf-logo.gif
-%%T%%/webapps/manager/images/code.gif
-%%T%%/webapps/manager/images/design.gif
-%%T%%/webapps/manager/images/docs.gif
-%%T%%/webapps/manager/images/fix.gif
-%%T%%/webapps/manager/images/tomcat.gif
-%%T%%/webapps/manager/images/update.gif
-%%T%%/webapps/manager/images/void.gif
-%%T%%/webapps/manager/manager.xml
-%%T%%/webapps/manager/status.xsd
-%%T%%/webapps/manager/xform.xsl
-@dirrm share/nls/en_US.US-ASCII
-@dirrm share/nls/POSIX
-@dirrm %%T%%/work
-@dirrm %%T%%/webapps/manager/images
-@dirrm %%T%%/webapps/manager/WEB-INF
-@dirrm %%T%%/webapps/manager/META-INF
-@dirrm %%T%%/webapps/manager
-@dirrm %%T%%/webapps/host-manager/images
-@dirrm %%T%%/webapps/host-manager/WEB-INF
-@dirrm %%T%%/webapps/host-manager/META-INF
-@dirrm %%T%%/webapps/host-manager
-@dirrm %%T%%/webapps/examples/servlets/images
-@dirrm %%T%%/webapps/examples/servlets
-@dirrm %%T%%/webapps/examples/jsp/xml
-@dirrm %%T%%/webapps/examples/jsp/tagplugin
-@dirrm %%T%%/webapps/examples/jsp/snp
-@dirrm %%T%%/webapps/examples/jsp/simpletag
-@dirrm %%T%%/webapps/examples/jsp/sessions
-@dirrm %%T%%/webapps/examples/jsp/security/protected
-@dirrm %%T%%/webapps/examples/jsp/security
-@dirrm %%T%%/webapps/examples/jsp/plugin/applet
-@dirrm %%T%%/webapps/examples/jsp/plugin
-@dirrm %%T%%/webapps/examples/jsp/num
-@dirrm %%T%%/webapps/examples/jsp/jsptoserv
-@dirrm %%T%%/webapps/examples/jsp/jsp2/tagfiles
-@dirrm %%T%%/webapps/examples/jsp/jsp2/simpletag
-@dirrm %%T%%/webapps/examples/jsp/jsp2/misc
-@dirrm %%T%%/webapps/examples/jsp/jsp2/jspx
-@dirrm %%T%%/webapps/examples/jsp/jsp2/jspattribute
-@dirrm %%T%%/webapps/examples/jsp/jsp2/el
-@dirrm %%T%%/webapps/examples/jsp/jsp2
-@dirrm %%T%%/webapps/examples/jsp/include
-@dirrm %%T%%/webapps/examples/jsp/images
-@dirrm %%T%%/webapps/examples/jsp/forward
-@dirrm %%T%%/webapps/examples/jsp/error
-@dirrm %%T%%/webapps/examples/jsp/dates
-@dirrm %%T%%/webapps/examples/jsp/colors
-@dirrm %%T%%/webapps/examples/jsp/checkbox
-@dirrm %%T%%/webapps/examples/jsp/chat
-@dirrm %%T%%/webapps/examples/jsp/cal
-@dirrm %%T%%/webapps/examples/jsp
-@dirrm %%T%%/webapps/examples/WEB-INF/tags
-@dirrm %%T%%/webapps/examples/WEB-INF/lib
-@dirrm %%T%%/webapps/examples/WEB-INF/jsp2
-@dirrm %%T%%/webapps/examples/WEB-INF/jsp/applet
-@dirrm %%T%%/webapps/examples/WEB-INF/jsp
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/validators
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/util
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/sessions
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/num
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/listeners
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/jsp2/examples/el
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/jsp2/examples
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/jsp2
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/filters
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/examples
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/error
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/dates
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/compressionFilters
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/colors
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/checkbox
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/chat
-@dirrm %%T%%/webapps/examples/WEB-INF/classes/cal
-@dirrm %%T%%/webapps/examples/WEB-INF/classes
-@dirrm %%T%%/webapps/examples/WEB-INF
-@dirrm %%T%%/webapps/examples
-@dirrm %%T%%/webapps/docs/tribes
-@dirrm %%T%%/webapps/docs/printer
-@dirrm %%T%%/webapps/docs/images
-@dirrm %%T%%/webapps/docs/funcspecs/printer
-@dirrm %%T%%/webapps/docs/funcspecs
-@dirrm %%T%%/webapps/docs/funcspec
-@dirrm %%T%%/webapps/docs/config/printer
-@dirrm %%T%%/webapps/docs/config
-@dirrm %%T%%/webapps/docs/architecture/startup
-@dirrm %%T%%/webapps/docs/architecture/requestProcess
-@dirrm %%T%%/webapps/docs/architecture/printer
-@dirrm %%T%%/webapps/docs/architecture
-@dirrm %%T%%/webapps/docs/appdev/sample/web/images
-@dirrm %%T%%/webapps/docs/appdev/sample/web/WEB-INF
-@dirrm %%T%%/webapps/docs/appdev/sample/web
-@dirrm %%T%%/webapps/docs/appdev/sample/src/mypackage
-@dirrm %%T%%/webapps/docs/appdev/sample/src
-@dirrm %%T%%/webapps/docs/appdev/sample/docs
-@dirrm %%T%%/webapps/docs/appdev/sample
-@dirrm %%T%%/webapps/docs/appdev/printer/docs/appdev
-@dirrm %%T%%/webapps/docs/appdev/printer/docs
-@dirrm %%T%%/webapps/docs/appdev/printer
-@dirrm %%T%%/webapps/docs/appdev
-@dirrm %%T%%/webapps/docs/api
-@dirrm %%T%%/webapps/docs/WEB-INF
-@dirrm %%T%%/webapps/docs
-@dirrm %%T%%/webapps/ROOT/admin
-@dirrm %%T%%/webapps/ROOT/WEB-INF
-@dirrm %%T%%/webapps/ROOT
-@dirrm %%T%%/webapps
-@dirrm %%T%%/temp
-@dirrm %%T%%/logs
-@dirrm %%T%%/lib
-@dirrm %%T%%/conf
-@dirrm %%T%%/bin
-@dirrm %%T%%