Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Feb 2008 09:55:42 +1300 (NZDT)
From:      Jonathan Chen <jonc@chen.org.nz>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/121187: update www/geronimo to 2.1
Message-ID:  <20080228205542.13B99284B5@chen.org.nz>
Resent-Message-ID: <200802282100.m1SL04aN082458@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         121187
>Category:       ports
>Synopsis:       update www/geronimo to 2.1
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Feb 28 21:00:04 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Jonathan Chen
>Release:        FreeBSD 7.0-STABLE amd64
>Organization:
>Environment:
System: FreeBSD osiris.chen.org.nz 7.0-STABLE FreeBSD 7.0-STABLE #0: Thu Feb 28 19:18:46 NZDT 2008 root@osiris.chen.org.nz:/usr/obj/usr/src/sys/OSIRIS amd64
>Description:

Update www/geronimo port from 2.0.2 to 2.1.
Fix startup on boot.
Use dynamic package list.

>How-To-Repeat:
>Fix:

diff -ruN /usr/ports/www/geronimo/Makefile ./Makefile
--- /usr/ports/www/geronimo/Makefile	2008-02-15 08:44:14.000000000 +1300
+++ ./Makefile	2008-02-29 09:43:48.000000000 +1300
@@ -6,11 +6,11 @@
 #
 
 PORTNAME=	geronimo
-PORTVERSION=	2.0.2
+PORTVERSION=	2.1
 CATEGORIES=	www devel java
 MASTER_SITES=	${MASTER_SITE_APACHE}
 MASTER_SITE_SUBDIR=	geronimo/${PORTVERSION}
-DISTNAME=	${PORTNAME}-${WEBSERVER}-jee5-${PORTVERSION}-bin
+DISTNAME=	${PORTNAME}-${WEBSERVER}-javaee5-${PORTVERSION}-bin
 
 MAINTAINER=	nemoliu@FreeBSD.org
 COMMENT=	Open-source Java EE 5 application server
@@ -40,44 +40,22 @@
 WEBSERVER=	tomcat6
 .endif
 
-MAJOR_VER=	${PORTVERSION:S/.0.2//}
-APP_HOME?=	${PREFIX}/${PKGBASE}${PORTVERSION:S/.0.2//}
+MAJOR_VER=	${PORTVERSION:C/\..*//}
+APP_HOME?=	${PREFIX}/${PKGBASE}${MAJOR_VER}
 LOG_DIR=	${APP_HOME}/var/log
 APP_TITLE=	Geronimo
-APP_SHORTNAME=	geronimo${MAJOR_VER:S/.0.2//}
+APP_SHORTNAME=	geronimo${MAJOR_VER}
 GERONIMO_USER?=	www
 GERONIMO_GROUP?=www
 GERONIMO_OUT=	${LOG_DIR}/geronimo.out
 PID_FILE=	/var/run/${APP_SHORTNAME}.pid
 WRKDIR?=	${WRKDIRPREFIX}${.CURDIR}/work
-WRKSRC=		${WRKDIR}/${PORTNAME}-${WEBSERVER}-jee5-${PORTVERSION}
+WRKSRC=		${WRKDIR}/${DISTNAME:S/-bin//}
 JAR_FILE=	bin/server.jar
-WEBPATHV=	${WEBSERVER}
-WEBPATHNV=	jetty
-TCOMMENT=	"@comment "
-JCOMMENT=	"@comment "
-.if ${WEBSERVER} != "jetty6"
-WEBPATHV=	tomcat
-WEBPATHNV=	tomcat
-TCOMMENT=
-.else
-WEBPATHNV=	jetty
-JCOMMENT=
-.endif
-PLIST_SUB+=	T=${APP_HOME:S/^${PREFIX}\///} \
-		WWWOWN=${TOMCAT_USER} \
-		WWWGRP=${TOMCAT_GROUP} \
-		PVER=${PORTVERSION} \
-		WEBPATHV=${WEBPATHV} \
-		WEBPATHNV=${WEBPATHNV} \
-		WEBPATHV=${WEBPATHV} \
-		WEBPATHNV=${WEBPATHNV} \
-		TCOMMENT=${TCOMMENT} \
-		JCOMMENT=${JCOMMENT} \
-		JCOMMENTD=${JCOMMENTD} \
-		TCOMMENTD=${TCOMMENTD}
 LATEST_LINK=	${APP_SHORTNAME}
 
+PLIST_FILES=	${GERONIMO_OUT:S,^${PREFIX}/,,}
+
 SUB_LIST=	GERONIMO_HOME=${APP_HOME} \
 		APP_SHORTNAME=${APP_SHORTNAME} \
 		APP_TITLE="${APP_TITLE}" \
@@ -101,41 +79,22 @@
 
 post-patch:
 	@${ECHO_MSG} -n ">> Removing unneeded files..."
-	@${RM} -f `${FIND} ${WRKSRC} -name '*.bat'` `${FIND} ${WRKSRC} -name '*.orig'` `${FIND} ${WRKSRC} -name '*.exe'`
+	@${FIND} ${WRKSRC} \( -name '*.bat' -or -name '*.orig' -name '*.exe' \) -print0 | ${XARGS} -0 ${RM} -f
 	@${ECHO_MSG} " [ DONE ]"
 
 pre-install:
 	@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
 
 do-install:
-	@${ECHO_MSG} -n ">> Creating destination directory..."
-	@${MKDIR} ${APP_HOME}
-	@${MKDIR} ${LOG_DIR}
-	@${MKDIR} ${APP_HOME}/deploy
-	@${ECHO_MSG} " [ DONE ]"
-
-	@${ECHO_MSG} ">> Copying files to destination directory..."
-	@${CP} -R ${WRKSRC}/* ${APP_HOME}
-	@${ECHO_MSG} " [ DONE ]"
-
-	@${ECHO_MSG} -n ">> Creating log files..."
-	@${INSTALL} -m 664 -o ${GERONIMO_USER} -g ${GERONIMO_GROUP} /dev/null ${GERONIMO_OUT}
-	@${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 ${GERONIMO_USER}:${GERONIMO_GROUP} ${APP_HOME}/lib ${APP_HOME}/var \
-		${APP_HOME}/schema ${APP_HOME}/lib ${APP_HOME}/repository
-	@${ECHO_MSG} " [ DONE ]"
-
-	@${ECHO_MSG} -n ">> Fixing permissions..."
-	@${CHMOD} 755 `${FIND} ${APP_HOME} -type d`
-	@${ECHO_MSG} " [ DONE ]"
+	${MKDIR} ${APP_HOME} && ${CHOWN} ${GERONIMO_USER}:${GERONIMO_GROUP} ${APP_HOME}
+	(cd ${WRKSRC} && ${FIND} . |\
+		${CPIO} -pdmu -R ${GERONIMO_USER}:${GERONIMO_GROUP} ${APP_HOME})
+	${INSTALL} -o ${GERONIMO_USER} -g ${GERONIMO_GROUP} -m 0644 /dev/null ${GERONIMO_OUT}
 
 post-install:
-	@${ECHO_MSG} "${APP_TITLE} ${PORTVERSION} has been installed in ${APP_HOME}."
+	@${FIND} -s ${WRKSRC} -not -type d | \
+		${SED} -ne 's,^${WRKSRC},${APP_HOME:S,${PREFIX}/,,},p' >> ${TMPPLIST}
+	@${FIND} -s -d ${WRKSRC} -type d | \
+		${SED} -ne 's,^${WRKSRC},@dirrm ${APP_HOME:S,${PREFIX}/,,},p' >> ${TMPPLIST}
 
 .include <bsd.port.post.mk>
diff -ruN /usr/ports/www/geronimo/distinfo ./distinfo
--- /usr/ports/www/geronimo/distinfo	2007-12-17 08:21:43.000000000 +1300
+++ ./distinfo	2008-02-28 14:22:52.000000000 +1300
@@ -1,3 +1,6 @@
-MD5 (geronimo-jetty6-jee5-2.0.2-bin.tar.gz) = 0f572792ba8895534a1aaeea0ddf8c14
-SHA256 (geronimo-jetty6-jee5-2.0.2-bin.tar.gz) = 17cd6b1e441dd642a922d20ce0c585e8d4601792f1e843661a903f4b503c6de6
-SIZE (geronimo-jetty6-jee5-2.0.2-bin.tar.gz) = 56071302
+MD5 (geronimo-jetty6-javaee5-2.1-bin.tar.gz) = 9798687d1fdb56e0218042614a503ec1
+SHA256 (geronimo-jetty6-javaee5-2.1-bin.tar.gz) = b0a2474e917c08e2585394d019e3b350bc63a25c755b386df1320d5643c49d87
+SIZE (geronimo-jetty6-javaee5-2.1-bin.tar.gz) = 74036937
+MD5 (geronimo-tomcat6-javaee5-2.1-bin.tar.gz) = cd576f5445e13763353da74c5574516d
+SHA256 (geronimo-tomcat6-javaee5-2.1-bin.tar.gz) = 2595bd13dd39e6f8c0fb2b43897a75cacbce5ead19c11513e2423b36b2ed0d22
+SIZE (geronimo-tomcat6-javaee5-2.1-bin.tar.gz) = 75243764
diff -ruN /usr/ports/www/geronimo/files/geronimo2.sh.in ./files/geronimo2.sh.in
--- /usr/ports/www/geronimo/files/geronimo2.sh.in	2007-06-07 08:39:16.000000000 +1200
+++ ./files/geronimo2.sh.in	2008-02-29 09:32:59.000000000 +1300
@@ -3,6 +3,10 @@
 # $FreeBSD: ports/www/geronimo/files/geronimo2.sh.in,v 1.2 2007/05/31 10:51:00 nemoliu Exp $
 #
 
+# PROVIDE: %%APP_SHORTNAME%%
+# REQUIRE: NETWORKING SERVERS
+# KEYWORD: shutdown
+
 #
 # Configuration settings for geronimo%%GERONIMO_VERSION%% in /etc/rc.conf:
 #
diff -ruN /usr/ports/www/geronimo/pkg-plist ./pkg-plist
--- /usr/ports/www/geronimo/pkg-plist	2007-12-17 08:21:45.000000000 +1300
+++ ./pkg-plist	1970-01-01 12:00:00.000000000 +1200
@@ -1,2688 +0,0 @@
-%%T%%/DISCLAIMER.txt
-%%T%%/LICENSE.txt
-%%T%%/NOTICE.txt
-%%T%%/bin/client.jar
-%%T%%/bin/deploy.sh
-%%T%%/bin/deployer.jar
-%%T%%/bin/geronimo.sh
-%%T%%/bin/jaxws-tools.jar
-%%T%%/bin/jaxws-tools.sh
-%%T%%/bin/jpa.jar
-%%T%%/bin/server.jar
-%%T%%/bin/setjavaenv.sh
-%%T%%/bin/shutdown.jar
-%%T%%/bin/shutdown.sh
-%%T%%/bin/startup.sh
-%%T%%/lib/asm-2.2.3.jar
-%%T%%/lib/asm-commons-2.2.3.jar
-%%T%%/lib/cglib-nodep-2.1_3.jar
-%%T%%/lib/commons-cli-1.0.jar
-%%T%%/lib/commons-logging-1.0.4.jar
-%%T%%/lib/endorsed/yoko-rmi-spec-1.0-incubating-r557035.jar
-%%T%%/lib/endorsed/yoko-spec-corba-1.0-incubating-r557035.jar
-%%T%%/lib/geronimo-cli-2.0.2.jar
-%%T%%/lib/geronimo-deploy-jsr88-bootstrapper-2.0.2.jar
-%%T%%/lib/geronimo-jaxws-builder-2.0.2.jar
-%%T%%/lib/geronimo-kernel-2.0.2.jar
-%%T%%/lib/geronimo-transformer-2.0.2.jar
-%%T%%/lib/jsr88-deploymentfactory.jar
-%%T%%/lib/log4j-1.2.14.jar
-%%T%%/lib/tools.jar
-%%T%%/lib/xpp3-1.1.3.3.jar
-%%T%%/lib/xstream-1.1.3.jar
-%%T%%/repository/annogen/annogen/0.1.0/annogen-0.1.0.jar
-%%T%%/repository/asm/asm-commons/2.2.3/asm-commons-2.2.3.jar
-%%T%%/repository/asm/asm/2.2.3/asm-2.2.3.jar
-%%T%%/repository/axis/axis/1.4/axis-1.4.jar
-%%T%%/repository/backport-util-concurrent/backport-util-concurrent/2.2/backport-util-concurrent-2.2.jar
-%%T%%/repository/com/sun/xml/bind/jaxb-impl/2.0.5/jaxb-impl-2.0.5.jar
-%%T%%/repository/com/sun/xml/bind/jaxb-xjc/2.0.5/jaxb-xjc-2.0.5.jar
-%%T%%/repository/com/sun/xml/messaging/saaj/saaj-impl/1.3/saaj-impl-1.3.jar
-%%T%%/repository/com/sun/xml/ws/jaxws-rt/2.0/jaxws-rt-2.0.jar
-%%T%%/repository/com/sun/xml/ws/jaxws-tools/2.0/jaxws-tools-2.0.jar
-%%T%%/repository/commons-beanutils/commons-beanutils/1.6.1/commons-beanutils-1.6.1.jar
-%%T%%/repository/commons-cli/commons-cli/1.0/commons-cli-1.0.jar
-%%T%%/repository/commons-codec/commons-codec/1.3/commons-codec-1.3.jar
-%%T%%/repository/commons-collections/commons-collections/3.1/commons-collections-3.1.jar
-%%T%%/repository/commons-digester/commons-digester/1.8/commons-digester-1.8.jar
-%%T%%/repository/commons-discovery/commons-discovery/0.4/commons-discovery-0.4.jar
-%%T%%/repository/commons-fileupload/commons-fileupload/1.1.1/commons-fileupload-1.1.1.jar
-%%T%%/repository/commons-httpclient/commons-httpclient/3.0.1/commons-httpclient-3.0.1.jar
-%%T%%/repository/commons-io/commons-io/1.1/commons-io-1.1.jar
-%%T%%/repository/commons-jexl/commons-jexl/1.1/commons-jexl-1.1.jar
-%%T%%/repository/commons-lang/commons-lang/2.0/commons-lang-2.0.jar
-%%T%%/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
-%%T%%/repository/dwr/dwr/1.1.3/dwr-1.1.3.jar
-%%T%%/repository/javax/xml/bind/jaxb-api/2.0/jaxb-api-2.0.jar
-%%T%%/repository/jaxen/jaxen/1.1-beta-10/jaxen-1.1-beta-10.jar
-%%T%%/repository/jdom/jdom/1.0/jdom-1.0.jar
-%%T%%/repository/jline/jline/0.9.9/jline-0.9.9.jar
-%%T%%/repository/jstl/jstl/1.2/jstl-1.2.jar
-%%T%%/repository/juddi/juddi/0.9rc4/juddi-0.9rc4.jar
-%%T%%/repository/net/sourceforge/serp/serp/1.11.0/serp-1.11.0.jar
-%%T%%/repository/ognl/ognl/2.6.9/ognl-2.6.9.jar
-%%T%%/repository/org/apache/activemq/activeio-core/3.0.0-incubator/activeio-core-3.0.0-incubator.jar
-%%T%%/repository/org/apache/activemq/activemq-core/4.1.1/activemq-core-4.1.1.jar
-%%T%%/repository/org/apache/axis2/axis2-adb/1.3/axis2-adb-1.3.jar
-%%T%%/repository/org/apache/axis2/axis2-java2wsdl/1.3/axis2-java2wsdl-1.3.jar
-%%T%%/repository/org/apache/axis2/axis2-jaxws-api/1.3/axis2-jaxws-api-1.3.jar
-%%T%%/repository/org/apache/axis2/axis2-jaxws/1.3/axis2-jaxws-1.3.jar
-%%T%%/repository/org/apache/axis2/axis2-kernel/1.3/axis2-kernel-1.3.jar
-%%T%%/repository/org/apache/axis2/axis2-metadata/1.3/axis2-metadata-1.3.jar
-%%T%%/repository/org/apache/axis2/axis2-saaj-api/1.3/axis2-saaj-api-1.3.jar
-%%T%%/repository/org/apache/axis2/axis2-saaj/1.3/axis2-saaj-1.3.jar
-%%T%%/repository/org/apache/bcel/bcel/5.2/bcel-5.2.jar
-%%T%%/repository/org/apache/cxf/cxf-api/2.0.2-incubator/cxf-api-2.0.2-incubator.jar
-%%T%%/repository/org/apache/cxf/cxf-common-utilities/2.0.2-incubator/cxf-common-utilities-2.0.2-incubator.jar
-%%T%%/repository/org/apache/cxf/cxf-rt-bindings-soap/2.0.2-incubator/cxf-rt-bindings-soap-2.0.2-incubator.jar
-%%T%%/repository/org/apache/cxf/cxf-rt-bindings-xml/2.0.2-incubator/cxf-rt-bindings-xml-2.0.2-incubator.jar
-%%T%%/repository/org/apache/cxf/cxf-rt-core/2.0.2-incubator/cxf-rt-core-2.0.2-incubator.jar
-%%T%%/repository/org/apache/cxf/cxf-rt-databinding-jaxb/2.0.2-incubator/cxf-rt-databinding-jaxb-2.0.2-incubator.jar
-%%T%%/repository/org/apache/cxf/cxf-rt-frontend-jaxws/2.0.2-incubator/cxf-rt-frontend-jaxws-2.0.2-incubator.jar
-%%T%%/repository/org/apache/cxf/cxf-rt-frontend-simple/2.0.2-incubator/cxf-rt-frontend-simple-2.0.2-incubator.jar
-%%T%%/repository/org/apache/cxf/cxf-rt-transports-http/2.0.2-incubator/cxf-rt-transports-http-2.0.2-incubator.jar
-%%T%%/repository/org/apache/cxf/cxf-tools-common/2.0.2-incubator/cxf-tools-common-2.0.2-incubator.jar
-%%T%%/repository/org/apache/derby/derby/10.2.2.0/derby-10.2.2.0.jar
-%%T%%/repository/org/apache/derby/derbyclient/10.2.2.0/derbyclient-10.2.2.0.jar
-%%T%%/repository/org/apache/derby/derbynet/10.2.2.0/derbynet-10.2.2.0.jar
-%%T%%/repository/org/apache/derby/derbytools/10.2.2.0/derbytools-10.2.2.0.jar
-%%T%%/repository/org/apache/geronimo/applications/console/geronimo-console-core/2.0.2/geronimo-console-core-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/applications/geronimo-uddi-db/2.0.2/geronimo-uddi-db-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/components/geronimo-connector/2.0.2/geronimo-connector-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/components/geronimo-transaction/2.0.2/geronimo-transaction-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/configs/activemq-broker/2.0.2/activemq-broker-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/activemq-broker/2.0.2/activemq-broker-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/activemq-broker/2.0.2/activemq-broker-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/activemq-broker/2.0.2/activemq-broker-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/activemq-broker/2.0.2/activemq-broker-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/activemq-broker/2.0.2/activemq-broker-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/rar/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/rar/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/rar/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/rar/META-INF/ra.xml
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/rar/activemq-core-4.1.1.jar
-%%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/rar/activemq-ra-4.1.1.jar
-%%T%%/repository/org/apache/geronimo/configs/axis-deployer/2.0.2/axis-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/axis-deployer/2.0.2/axis-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/axis-deployer/2.0.2/axis-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/axis-deployer/2.0.2/axis-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/axis-deployer/2.0.2/axis-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/axis-deployer/2.0.2/axis-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/axis/2.0.2/axis-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/axis/2.0.2/axis-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/axis/2.0.2/axis-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/axis/2.0.2/axis-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/axis/2.0.2/axis-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/axis/2.0.2/axis-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/axis2-deployer/2.0.2/axis2-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/axis2-deployer/2.0.2/axis2-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/axis2-deployer/2.0.2/axis2-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/axis2-deployer/2.0.2/axis2-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/axis2-deployer/2.0.2/axis2-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/axis2-deployer/2.0.2/axis2-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/axis2/2.0.2/axis2-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/axis2/2.0.2/axis2-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/axis2/2.0.2/axis2-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/axis2/2.0.2/axis2-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/axis2/2.0.2/axis2-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/axis2/2.0.2/axis2-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/META-INF/geronimo-plugin.xml
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/WEB-INF/lib/geronimo-ca-helper-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/WEB-INF/web.xml
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/confirmRequest.jsp
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/downloadCACertificate.jsp
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/downloadCertificate.jsp
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/index.jsp
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/installPersonalCertificate.jsp
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/receivedCSR.jsp
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/requestCertificate.jsp
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/submitCSR.jsp
-%%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/verifyCertificate.jsp
-%%T%%/repository/org/apache/geronimo/configs/client-corba-yoko/2.0.2/client-corba-yoko-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-corba-yoko/2.0.2/client-corba-yoko-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/client-corba-yoko/2.0.2/client-corba-yoko-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-corba-yoko/2.0.2/client-corba-yoko-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/client-corba-yoko/2.0.2/client-corba-yoko-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/client-corba-yoko/2.0.2/client-corba-yoko-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/client-deployer/2.0.2/client-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-deployer/2.0.2/client-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/client-deployer/2.0.2/client-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-deployer/2.0.2/client-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/client-deployer/2.0.2/client-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/client-deployer/2.0.2/client-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/client-security/2.0.2/client-security-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-security/2.0.2/client-security-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/client-security/2.0.2/client-security-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-security/2.0.2/client-security-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/client-security/2.0.2/client-security-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/client-security/2.0.2/client-security-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/client-system/2.0.2/client-system-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-system/2.0.2/client-system-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/client-system/2.0.2/client-system-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-system/2.0.2/client-system-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/client-system/2.0.2/client-system-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/client-system/2.0.2/client-system-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/client-transaction/2.0.2/client-transaction-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-transaction/2.0.2/client-transaction-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/client-transaction/2.0.2/client-transaction-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/client-transaction/2.0.2/client-transaction-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/client-transaction/2.0.2/client-transaction-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/client-transaction/2.0.2/client-transaction-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/client/2.0.2/client-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/client/2.0.2/client-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/client/2.0.2/client-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/client/2.0.2/client-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/client/2.0.2/client-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/client/2.0.2/client-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/clustering/2.0.2/clustering-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/clustering/2.0.2/clustering-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/clustering/2.0.2/clustering-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/clustering/2.0.2/clustering-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/clustering/2.0.2/clustering-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/clustering/2.0.2/clustering-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/connector-deployer/2.0.2/connector-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/connector-deployer/2.0.2/connector-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/connector-deployer/2.0.2/connector-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/connector-deployer/2.0.2/connector-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/connector-deployer/2.0.2/connector-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/connector-deployer/2.0.2/connector-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/cxf-deployer/2.0.2/cxf-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/cxf-deployer/2.0.2/cxf-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/cxf-deployer/2.0.2/cxf-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/cxf-deployer/2.0.2/cxf-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/cxf-deployer/2.0.2/cxf-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/cxf-deployer/2.0.2/cxf-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/cxf/2.0.2/cxf-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/cxf/2.0.2/cxf-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/cxf/2.0.2/cxf-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/cxf/2.0.2/cxf-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/cxf/2.0.2/cxf-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/cxf/2.0.2/cxf-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/LICENSE
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/META-INF/geronimo-plugin.xml
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/Storage_version6.swf
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/Storage_version8.swf
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/WEB-INF/lib/geronimo-dojo-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/WEB-INF/web.xml
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/dojo.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/dojo.js.uncompressed.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/flash6_gateway.swf
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/iframe_history.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/AdapterRegistry.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/Deferred.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/DeferredList.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/a11y.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/animation.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/animation/Animation.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/animation/AnimationEvent.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/animation/AnimationSequence.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/animation/Timer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/animation/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/behavior.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/bootstrap1.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/browser_debug.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/browser_debug_xd.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/cal/iCalendar.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/cal/textDirectory.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/Axis.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/Chart.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/Plot.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/PlotArea.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/Plotters.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/README.txt
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/Series.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/svg/Axis.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/svg/PlotArea.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/svg/Plotters.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/vml/Axis.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/vml/PlotArea.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/vml/Plotters.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/ArrayList.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/BinaryTree.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/Collections.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/Dictionary.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/Graph.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/Queue.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/Set.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/SkipList.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/SortedList.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/Stack.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/Store.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/crypto.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/crypto/Blowfish.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/crypto/LICENSE
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/crypto/MD5.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/crypto/Rijndael.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/crypto/SHA1.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/crypto/SHA256.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/crypto/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/CsvStore.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/OpmlStore.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/RdfStore.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/YahooStore.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/core/Read.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/core/RemoteStore.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/core/Result.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/core/Write.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/Attribute.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/Item.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/Kind.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/Observable.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/ResultSet.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/Type.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/Value.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/format/Csv.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/format/Json.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/provider/Base.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/provider/Delicious.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/provider/FlatFile.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/provider/JotSpot.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/provider/MySql.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/to_do.txt
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/date.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/date/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/date/format.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/date/serialize.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/date/supplemental.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/debug.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/debug/Firebug.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/debug/arrow_hide.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/debug/arrow_show.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/debug/console.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/debug/deep.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/debug/spacer.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd/DragAndDrop.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd/HtmlDragAndDrop.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd/HtmlDragCopy.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd/HtmlDragManager.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd/HtmlDragMove.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd/Sortable.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd/TreeDragAndDrop.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd/TreeDragAndDropV3.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/docs.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dom.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/event.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/event/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/event/browser.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/event/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/event/topic.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/experimental.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/flash.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/flash/flash6/DojoExternalInterface.as
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/flash/flash6/flash6_gateway.fla
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/flash/flash8/DojoExternalInterface.as
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/flash/flash8/ExpressInstall.as
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/Colorspace.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/color.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/color/hsl.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/color/hsv.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/matrix.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/path.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/shape.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/svg.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/vml.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/graphics/Colorspace.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/graphics/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/graphics/color.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/graphics/color/hsl.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/graphics/color/hsv.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/hostenv_adobesvg.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/hostenv_browser.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/hostenv_dashboard.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/hostenv_jsc.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/hostenv_rhino.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/hostenv_spidermonkey.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/hostenv_svg.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/hostenv_wsh.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/color.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/display.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/iframe.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/images/shadowB.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/images/shadowBL.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/images/shadowBR.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/images/shadowL.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/images/shadowR.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/images/shadowT.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/images/shadowTL.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/images/shadowTR.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/layout.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/metrics.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/selection.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/shadow.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/style.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/util.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/README
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/de/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/en/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/es/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/fi/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/fr/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/gregorianExtras.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/hu/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/it/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/ja/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/ja/gregorianExtras.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/ko/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/nl/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/pt-br/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/pt/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/sv/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/zh-cn/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/zh-hk/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/zh-tw/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/zh/gregorian.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/zh/gregorianExtras.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/EUR.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/GBP.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/INR.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/ITL.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/JPY.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/README
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/USD.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/en-us/USD.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/en/EUR.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/en/GBP.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/en/INR.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/en/ITL.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/en/JPY.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/en/USD.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/hi/EUR.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/hi/GBP.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/hi/INR.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/hi/ITL.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/hi/JPY.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/hi/USD.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/ja/EUR.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/ja/GBP.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/ja/INR.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/ja/ITL.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/ja/JPY.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/ja/USD.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/number.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/iCalendar.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/BrowserIO.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/IframeIO.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/RepubsubIO.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/RhinoIO.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/ScriptSrcIO.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/XhrIframeProxy.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/cometd.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/cookie.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/xip_client.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io/xip_server.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/json.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/array.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/assert.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/declare.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/extras.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/func.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/repr.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/timing/Streamer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/timing/Timer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/timing/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/type.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lfx/Animation.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lfx/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lfx/extras.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lfx/html.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lfx/rounded.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lfx/shadow.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lfx/toggle.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/loader.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/loader_xd.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/logging/ConsoleLogger.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/logging/Logger.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/logging/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/math.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/math/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/math/curves.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/math/matrix.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/math/points.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/namespaces/dojo.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/ns.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/profile.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/regexp.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/rpc/Deferred.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/rpc/JotService.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/rpc/JsonService.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/rpc/RpcService.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/rpc/YahooService.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/rpc/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/rpc/yahoo.smd
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/selection/Selection.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/storage.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/storage/Storage.as
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/storage/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/storage/browser.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/storage/java/DojoFileStorageProvider.class
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/storage/java/DojoFileStorageProvider.java
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/storage/storage_dialog.fla
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/string.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/string/Builder.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/string/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/string/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/string/extras.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/style.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/svg.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/text/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/text/textDirectory.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/undo/Manager.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/undo/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/undo/browser.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uri/Uri.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uri/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uri/cache.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uuid/LightweightGenerator.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uuid/NameBasedGenerator.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uuid/NilGenerator.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uuid/RandomGenerator.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uuid/TimeBasedGenerator.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uuid/Uuid.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uuid/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate/check.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate/common.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate/creditCard.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate/datetime.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate/de.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate/jp.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate/us.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate/web.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/AccordionContainer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/AnimatedPng.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Button.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Chart.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Checkbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Clock.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/ColorPalette.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/ComboBox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/ContentPane.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/CurrencyTextbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/DatePicker.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/DateTextbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/DebugConsole.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Dialog.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/DocPane.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/DomWidget.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/DropdownContainer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/DropdownDatePicker.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/DropdownTimePicker.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/AlwaysShowToolbar.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/ContextMenu.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/CreateLinkDialog.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/FindReplace.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/FindReplaceDialog.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/InsertImageDialog.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/InsertTableDialog.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/SimpleSignalCommands.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/TableOperation.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/ToolbarDndSupport.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Toolbar.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/FilteringTable.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/FisheyeList.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/FloatingPane.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Form.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/GoogleMap.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/HtmlWidget.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/InlineEditBox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/IntegerTextbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/InternetTextbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/LayoutContainer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/LinkPane.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Manager.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Menu2.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/MonthlyCalendar.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/PageContainer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Parse.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/PopupContainer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/ProgressBar.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/RadioGroup.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/RealNumberTextbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/RegexpTextbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/RemoteTabController.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Repeater.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/ResizableTextarea.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/ResizeHandle.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/RichText.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Rounded.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Select.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Show.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/ShowAction.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/ShowSlide.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/SlideShow.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Slider.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/SortableTable.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Spinner.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/SplitContainer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/SvgButton.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/SvgWidget.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/SwtWidget.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TabContainer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TaskBar.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Textbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TimePicker.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TitlePane.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Toaster.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Toggler.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Toolbar.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Tooltip.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Tree.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeBasicController.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeBasicControllerV3.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeCommon.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeContextMenu.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeContextMenuV3.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeControllerExtension.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeDemo.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeDeselectOnDblselect.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeDisableWrapExtension.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeDndControllerV3.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeDocIconExtension.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeEditor.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeEmphasizeOnSelect.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeExpandToNodeOnSelect.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeExtension.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeLinkExtension.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeLoadingController.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeLoadingControllerV3.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeNode.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeNodeV3.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeRPCController.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeRpcControllerV3.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeSelector.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeSelectorV3.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeTimeoutIterator.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeToggleOnSelect.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeV3.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/TreeWithNode.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/UsTextbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/ValidationTextbox.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Widget.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Wizard.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/YahooMap.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/DemoContainer.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/DemoItem.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/DemoNavigator.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/DemoPane.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/SourcePane.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/DemoContainer.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/DemoContainer.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/DemoItem.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/DemoItem.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/DemoNavigator.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/DemoNavigator.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/DemoPane.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/DemoPane.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/SourcePane.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/SourcePane.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/general.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/images/test_thumb.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/images/viewDemo.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/html/layout.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/html/loader.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/html/stabile.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/DropdownDatePicker.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/DropdownTimePicker.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/TimePicker.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/fr/validate.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/ja/validate.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/validate.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/zh-cn/validate.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/svg/Chart.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/AccordionPane.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/AccordionPane.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ButtonTemplate.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ButtonTemplate.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Checkbox.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Checkbox.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/CheckboxA11y.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/CiviCrmDatePicker.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ComboBox.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ComboBox.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ComboButtonTemplate.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/DatePicker.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/DatePicker.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/DemoEngine.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Dialog.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/DocPane.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/DocPane.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/DropDownButtonTemplate.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/Dialog/createlink.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/Dialog/find.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/Dialog/insertimage.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/Dialog/inserttable.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/Dialog/replace.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/EditorDialog.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/EditorToolbar_FontName.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/EditorToolbar_FontSize.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/EditorToolbar_FormatBlock.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/showtableborder_gecko.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/showtableborder_ie.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/EditorToolbar.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/EditorToolbar.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/EditorToolbarOneline.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/FisheyeList.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/FloatingPane.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/FloatingPane.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/InlineEditBox.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/InlineEditBox.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Menu.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Menu2.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/MonthlyCalendar.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/MonthlyCalendar.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/PopUpButton.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ProgressBar.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ProgressBar.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/RemoteTabControl.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ResizableTextarea.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ResizableTextarea.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ResizeHandle.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Show.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Show.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ShowSlide.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ShowSlide.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/SlideShow.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/SlideShow.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Slider.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Slider.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/SliderHorizontal.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/SliderVertical.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Spinner.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Spinner.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/SplitContainer.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TabContainer.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TabContainer.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TabContainerA11y.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TaskBar.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TaskBarItemTemplate.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Textbox.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TimePicker.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TimePicker.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TitlePane.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Toaster.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Toolbar.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TooltipTemplate.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Tree.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TreeDisableWrap.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TreeDocIcon.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TreeEditor.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/TreeV3.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Validate.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/ValidationTextbox.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Wizard.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Wizard.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/aggregate.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/backcolor.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/bg-fade.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/bold.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/cancel.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/copy.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/createlink.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/cut.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/delete.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/forecolor.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/hilitecolor.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/indent.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/inserthorizontalrule.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/insertimage.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/insertorderedlist.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/inserttable.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/insertunorderedlist.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/italic.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/justifycenter.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/justifyfull.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/justifyleft.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/justifyright.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/left_to_right.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/list_bullet_indent.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/list_bullet_outdent.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/list_num_indent.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/list_num_outdent.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/outdent.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/paste.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/redo.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/removeformat.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/right_to_left.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/save.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/sep.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/space.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/strikethrough.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/subscript.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/superscript.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/underline.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/undo.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons/wikiword.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/check.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/decrementMonth.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/decrementWeek.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/grabCorner.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/Tree.css
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/blank.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/closed.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/document.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/minus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/plus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/transparent.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_blank.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_child.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_expand_minus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_expand_plus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_grid_c.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_grid_l.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_grid_p.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_grid_t.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_grid_v.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_grid_x.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_grid_y.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_grid_z.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_loading.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree/treenode_loading.jpg
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/closed.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/document.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/expand_leaf.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/expand_loading.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/expand_minus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/expand_plus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/i.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/i_bhalf.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/i_half.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/i_long.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/l.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/minus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/open.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/plus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/t.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3/x.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/bar.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/bdYearBg.1.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/bdYearBg.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/blank.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/clock.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/combo_box_arrow.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dateIcon.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/decrementMonth.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/decrementMonth.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpBg.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpCurveBL.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpCurveBR.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpCurveTL.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpCurveTR.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpHorizLine.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpHorizLineFoot.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpMonthBg.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpMonthBg.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpMonthBg2.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpVertLine.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpYearBg.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dpYearBg.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dropdownButtonsArrow-disabled.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/dropdownButtonsArrow.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/floatingPaneClose.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/floatingPaneMaximize.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/floatingPaneMinimize.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/floatingPaneRestore.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/h-bar.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/incrementMonth.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/incrementMonth.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/no.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/no.svg
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/scBackground.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider-bg-progress-vert.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider-bg-vert.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider-bg.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider-button-horz.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider-button-vert.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider-button.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider_down_arrow.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider_left_arrow.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider_right_arrow.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/slider_up_arrow.png
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaAccordionOff.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaAccordionSelected.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaActive-c.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaActive-l.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaActive-r.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaBarBg.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaButton-c.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaButton-l.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaButton-r.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaDisabled-c.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaDisabled-l.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaDisabled-r.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaMenuBg.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaPressed-c.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaPressed-l.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/soriaPressed-r.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/spinnerDecrement.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/spinnerIncrement.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/submenu_disabled.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/submenu_off.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/submenu_on.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_bot_left.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_bot_left_curr.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_bot_right.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_bot_right_curr.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_close.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_close_h.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_left.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_left_r.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_left_r_curr.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_right.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_right_r.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_right_r_curr.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_top_left.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/tab_top_right.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/timeIcon.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/toolbar-bg.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/transparent.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_blank.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_child.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_expand_minus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_expand_plus.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_grid_c.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_grid_l.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_grid_p.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_grid_t.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_grid_v.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_grid_x.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_grid_y.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_grid_z.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/treenode_node.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/verticalbar.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/whiteDownArrow.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/incrementMonth.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/incrementWeek.gif
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/richtextframe.html
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/validate.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/vml/Chart.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/xml/Parse.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/xml/XslTransform.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/xml/__package__.js
-%%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/storage_dialog.swf
-%%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer/2.0.2/geronimo-gbean-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer/2.0.2/geronimo-gbean-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer/2.0.2/geronimo-gbean-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer/2.0.2/geronimo-gbean-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer/2.0.2/geronimo-gbean-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer/2.0.2/geronimo-gbean-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/hot-deployer/2.0.2/hot-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/hot-deployer/2.0.2/hot-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/hot-deployer/2.0.2/hot-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/hot-deployer/2.0.2/hot-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/hot-deployer/2.0.2/hot-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/hot-deployer/2.0.2/hot-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko/2.0.2/j2ee-corba-yoko-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko/2.0.2/j2ee-corba-yoko-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko/2.0.2/j2ee-corba-yoko-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko/2.0.2/j2ee-corba-yoko-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko/2.0.2/j2ee-corba-yoko-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko/2.0.2/j2ee-corba-yoko-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/j2ee-deployer/2.0.2/j2ee-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-deployer/2.0.2/j2ee-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/j2ee-deployer/2.0.2/j2ee-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-deployer/2.0.2/j2ee-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/j2ee-deployer/2.0.2/j2ee-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/j2ee-deployer/2.0.2/j2ee-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/j2ee-security/2.0.2/j2ee-security-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-security/2.0.2/j2ee-security-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/j2ee-security/2.0.2/j2ee-security-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-security/2.0.2/j2ee-security-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/j2ee-security/2.0.2/j2ee-security-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/j2ee-security/2.0.2/j2ee-security-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/j2ee-server/2.0.2/j2ee-server-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-server/2.0.2/j2ee-server-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/j2ee-server/2.0.2/j2ee-server-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-server/2.0.2/j2ee-server-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/j2ee-server/2.0.2/j2ee-server-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/j2ee-server/2.0.2/j2ee-server-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/j2ee-system/2.0.2/j2ee-system-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-system/2.0.2/j2ee-system-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/j2ee-system/2.0.2/j2ee-system-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/j2ee-system/2.0.2/j2ee-system-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/j2ee-system/2.0.2/j2ee-system-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/j2ee-system/2.0.2/j2ee-system-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jasper-deployer/2.0.2/jasper-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jasper-deployer/2.0.2/jasper-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jasper-deployer/2.0.2/jasper-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jasper-deployer/2.0.2/jasper-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jasper-deployer/2.0.2/jasper-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jasper-deployer/2.0.2/jasper-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jasper/2.0.2/jasper-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jasper/2.0.2/jasper-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jasper/2.0.2/jasper-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jasper/2.0.2/jasper-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jasper/2.0.2/jasper-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jasper/2.0.2/jasper-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/javamail/2.0.2/javamail-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/javamail/2.0.2/javamail-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/javamail/2.0.2/javamail-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/javamail/2.0.2/javamail-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/javamail/2.0.2/javamail-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/javamail/2.0.2/javamail-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jaxws-deployer/2.0.2/jaxws-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jaxws-deployer/2.0.2/jaxws-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jaxws-deployer/2.0.2/jaxws-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jaxws-deployer/2.0.2/jaxws-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jaxws-deployer/2.0.2/jaxws-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jaxws-deployer/2.0.2/jaxws-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jee-specs/2.0.2/jee-specs-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jee-specs/2.0.2/jee-specs-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jee-specs/2.0.2/jee-specs-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jee-specs/2.0.2/jee-specs-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jee-specs/2.0.2/jee-specs-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jee-specs/2.0.2/jee-specs-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi/2.0.2/jetty6-clustering-builder-wadi-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi/2.0.2/jetty6-clustering-builder-wadi-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi/2.0.2/jetty6-clustering-builder-wadi-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi/2.0.2/jetty6-clustering-builder-wadi-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi/2.0.2/jetty6-clustering-builder-wadi-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi/2.0.2/jetty6-clustering-builder-wadi-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi/2.0.2/jetty6-clustering-wadi-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi/2.0.2/jetty6-clustering-wadi-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi/2.0.2/jetty6-clustering-wadi-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi/2.0.2/jetty6-clustering-wadi-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi/2.0.2/jetty6-clustering-wadi-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi/2.0.2/jetty6-clustering-wadi-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jetty6-deployer/2.0.2/jetty6-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jetty6-deployer/2.0.2/jetty6-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jetty6-deployer/2.0.2/jetty6-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jetty6-deployer/2.0.2/jetty6-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jetty6-deployer/2.0.2/jetty6-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jetty6-deployer/2.0.2/jetty6-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jetty6/2.0.2/jetty6-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jetty6/2.0.2/jetty6-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jetty6/2.0.2/jetty6-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jetty6/2.0.2/jetty6-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jetty6/2.0.2/jetty6-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jetty6/2.0.2/jetty6-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jsr88-cli/2.0.2/jsr88-cli-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-cli/2.0.2/jsr88-cli-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jsr88-cli/2.0.2/jsr88-cli-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-cli/2.0.2/jsr88-cli-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jsr88-cli/2.0.2/jsr88-cli-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jsr88-cli/2.0.2/jsr88-cli-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory/2.0.2/jsr88-deploymentfactory-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory/2.0.2/jsr88-deploymentfactory-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory/2.0.2/jsr88-deploymentfactory-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory/2.0.2/jsr88-deploymentfactory-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory/2.0.2/jsr88-deploymentfactory-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory/2.0.2/jsr88-deploymentfactory-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer/2.0.2/jsr88-ear-configurer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer/2.0.2/jsr88-ear-configurer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer/2.0.2/jsr88-ear-configurer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer/2.0.2/jsr88-ear-configurer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer/2.0.2/jsr88-ear-configurer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer/2.0.2/jsr88-ear-configurer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer/2.0.2/jsr88-jar-configurer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer/2.0.2/jsr88-jar-configurer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer/2.0.2/jsr88-jar-configurer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer/2.0.2/jsr88-jar-configurer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer/2.0.2/jsr88-jar-configurer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer/2.0.2/jsr88-jar-configurer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer/2.0.2/jsr88-rar-configurer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer/2.0.2/jsr88-rar-configurer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer/2.0.2/jsr88-rar-configurer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer/2.0.2/jsr88-rar-configurer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer/2.0.2/jsr88-rar-configurer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer/2.0.2/jsr88-rar-configurer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer/2.0.2/jsr88-war-configurer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer/2.0.2/jsr88-war-configurer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer/2.0.2/jsr88-war-configurer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer/2.0.2/jsr88-war-configurer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer/2.0.2/jsr88-war-configurer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer/2.0.2/jsr88-war-configurer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car/ejb-cmp2.jar
-%%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car/ejb.jar
-%%T%%/repository/org/apache/geronimo/configs/myfaces-deployer/2.0.2/myfaces-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/myfaces-deployer/2.0.2/myfaces-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/myfaces-deployer/2.0.2/myfaces-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/myfaces-deployer/2.0.2/myfaces-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/myfaces-deployer/2.0.2/myfaces-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/myfaces-deployer/2.0.2/myfaces-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/myfaces/2.0.2/myfaces-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/myfaces/2.0.2/myfaces-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/myfaces/2.0.2/myfaces-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/myfaces/2.0.2/myfaces-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/myfaces/2.0.2/myfaces-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/myfaces/2.0.2/myfaces-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/offline-deployer/2.0.2/offline-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/offline-deployer/2.0.2/offline-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/offline-deployer/2.0.2/offline-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/offline-deployer/2.0.2/offline-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/offline-deployer/2.0.2/offline-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/offline-deployer/2.0.2/offline-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/online-deployer/2.0.2/online-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/online-deployer/2.0.2/online-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/online-deployer/2.0.2/online-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/online-deployer/2.0.2/online-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/online-deployer/2.0.2/online-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/online-deployer/2.0.2/online-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer/2.0.2/openejb-corba-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer/2.0.2/openejb-corba-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer/2.0.2/openejb-corba-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer/2.0.2/openejb-corba-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer/2.0.2/openejb-corba-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer/2.0.2/openejb-corba-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/openejb-deployer/2.0.2/openejb-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/openejb-deployer/2.0.2/openejb-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/openejb-deployer/2.0.2/openejb-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/openejb-deployer/2.0.2/openejb-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/openejb-deployer/2.0.2/openejb-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/openejb-deployer/2.0.2/openejb-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/openejb/2.0.2/openejb-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/openejb/2.0.2/openejb-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/openejb/2.0.2/openejb-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/openejb/2.0.2/openejb-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/openejb/2.0.2/openejb-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/openejb/2.0.2/openejb-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2/openjpa-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2/openjpa-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2/openjpa-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2/openjpa-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2/openjpa-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2/openjpa-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2/openjpa-2.0.2.car/META-INF/geronimo-plugin.xml
-%%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer/2.0.2/persistence-jpa10-deployer-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer/2.0.2/persistence-jpa10-deployer-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer/2.0.2/persistence-jpa10-deployer-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer/2.0.2/persistence-jpa10-deployer-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer/2.0.2/persistence-jpa10-deployer-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer/2.0.2/persistence-jpa10-deployer-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/WEB-INF/geronimo-web.xml
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/WEB-INF/lib/geronimo-remote-deploy-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/WEB-INF/web.xml
-%%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/images/logo_head_570x86.gif
-%%T%%/repository/org/apache/geronimo/configs/rmi-naming/2.0.2/rmi-naming-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/rmi-naming/2.0.2/rmi-naming-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/rmi-naming/2.0.2/rmi-naming-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/rmi-naming/2.0.2/rmi-naming-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/rmi-naming/2.0.2/rmi-naming-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/rmi-naming/2.0.2/rmi-naming-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/server-security-config/2.0.2/server-security-config-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/server-security-config/2.0.2/server-security-config-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/server-security-config/2.0.2/server-security-config-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/server-security-config/2.0.2/server-security-config-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/server-security-config/2.0.2/server-security-config-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/server-security-config/2.0.2/server-security-config-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/sharedlib/2.0.2/sharedlib-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/sharedlib/2.0.2/sharedlib-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/sharedlib/2.0.2/sharedlib-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/sharedlib/2.0.2/sharedlib-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/sharedlib/2.0.2/sharedlib-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/sharedlib/2.0.2/sharedlib-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/shutdown/2.0.2/shutdown-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/shutdown/2.0.2/shutdown-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/shutdown/2.0.2/shutdown-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/shutdown/2.0.2/shutdown-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/shutdown/2.0.2/shutdown-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/shutdown/2.0.2/shutdown-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF/LICENSE
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF/NOTICE
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF/maven/org.tranql/tranql-connector-derby-embed-xa/pom.properties
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF/maven/org.tranql/tranql-connector-derby-embed-xa/pom.xml
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF/ra.xml
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/tranql-connector-1.4.jar
-%%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/tranql-connector-derby-common-1.4.jar
-%%T%%/repository/org/apache/geronimo/configs/transaction/2.0.2/transaction-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/transaction/2.0.2/transaction-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/transaction/2.0.2/transaction-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/transaction/2.0.2/transaction-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/transaction/2.0.2/transaction-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/transaction/2.0.2/transaction-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/transformer-agent/2.0.2/transformer-agent-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/transformer-agent/2.0.2/transformer-agent-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/transformer-agent/2.0.2/transformer-agent-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/transformer-agent/2.0.2/transformer-agent-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/transformer-agent/2.0.2/transformer-agent-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/transformer-agent/2.0.2/transformer-agent-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF/LICENSE
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF/NOTICE
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF/maven/org.tranql/tranql-connector-derby-embed-local/pom.properties
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF/maven/org.tranql/tranql-connector-derby-embed-local/pom.xml
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF/ra.xml
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/tranql-connector-1.4.jar
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/tranql-connector-derby-common-1.4.jar
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/WEB-INF/juddi.properties
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/WEB-INF/lib/geronimo-uddi-server-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/WEB-INF/web.xml
-%%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/happyjuddi.jsp
-%%T%%/repository/org/apache/geronimo/configs/wadi-clustering/2.0.2/wadi-clustering-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/wadi-clustering/2.0.2/wadi-clustering-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/wadi-clustering/2.0.2/wadi-clustering-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/wadi-clustering/2.0.2/wadi-clustering-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/wadi-clustering/2.0.2/wadi-clustering-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/wadi-clustering/2.0.2/wadi-clustering-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/META-INF/application.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/META-INF/geronimo-plugin.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/TreeDocIcon.css
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation/Banner.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation/ColumnFragment.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation/Head.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation/PageFragment.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation/PortletFragmentFooter.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation/PortletFragmentHeader.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation/RootFragment.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation/RowFragment.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation/TabNavigation.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/classes/castor.properties
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/config/services.properties
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/config/services/ConfigService.properties
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/config/services/FactoryManagerService.properties
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/config/services/LogService.properties
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/config/services/PageRegistryService.properties
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/config/services/PortletDefinitionRegistryService.properties
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/config/services/PortletEntityRegistryService.properties
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/data/pageregistry.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/data/portletcontexts.txt
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/data/portletentityregistry.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/data/xml/pageregistrymapping.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/data/xml/portletdefinitionmapping.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/data/xml/portletentitymapping.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/data/xml/servletdefinitionmapping.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/lib/geronimo-console-framework-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/tld/portlet.tld
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/web.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/favicon.ico
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/add.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/back.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/browse.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/bullet.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/cancel.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/clear.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/collapsed_white.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/create.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/delete.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/expanded_white.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/head_bgstretch_1x86.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/head_help_60x86.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/head_left_754x86.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/head_left_login_586x86.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/head_logout_63x86.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_Gstandalone_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_beanjar_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_connect_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_db_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_doc_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_filetree_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_folder_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_geronimo_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_link_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_list_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_lock_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_look_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_mail_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_servcomp_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_unlock2_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_unlock3_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/ico_x_16x16.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/install.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/joe_logo.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/login_lock_64x55.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/mgmtconsole.jpg
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/powered_by_100x30.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/related_links.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/reset.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/run_sql.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/spacer.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/submit.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images/update.gif
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/index.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/js/forms.js
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/login.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/login_success.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/loginerror.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/logout.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/main.css
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/pluto_style.css
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/classes/login-modules.properties
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/dwr.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/lib/geronimo-console-standard-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/portlet.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/tld/portlet.tld
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ajax/progressbar.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/apache/jk/ajpPort.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/apache/jk/config.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/apache/jk/index.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/apache/jk/results.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/apache/jk/webApps.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/_header.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/caDetails.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/certReqDetails.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/confirmCA.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/confirmCertReq.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/confirmClientCert.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/index.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/listRequestsIssue.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/listRequestsVerify.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/processCSR.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/setupCA.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/unlockCA.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca/viewCertificate.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car/addRepository.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car/confirmExport.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car/download.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car/downloadStatus.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car/index.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car/list.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car/pluginParams.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car/results.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car/viewForDownload.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/classloaderview/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/classloaderview/view.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/configmanager/deploy.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/configmanager/deployHelp.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/configmanager/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/configmanager/maximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/configmanager/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/basicParams.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/confirmURL.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/downloadStatus.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/edit.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/importStatus.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/importUpload.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/list.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/selectDatabase.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/selectDownload.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/showPlan.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/testConnection.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard/usage.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dependencyview/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dependencyview/view.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/derbylogmanager/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/derbylogmanager/view.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/infomanager/javaSysHelp.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/infomanager/javaSysMaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/infomanager/javaSysNormal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/infomanager/svrInfoHelp.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/infomanager/svrInfoMaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/infomanager/svrInfoNormal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/dbViewerHelp.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/dbViewerMaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/internalDBHelp.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/internalDBMaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/internalDBNormal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/listDatabases.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/listTables.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/runSQLHelp.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/runSQLMaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/runSQLNormal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb/viewTableContents.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/activemq/addACF.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/activemq/config.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/activemq/detail.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/activemq/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/activemq/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/connectionhelp.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/createdestination.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/edit.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/server/connector/editGeneric.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/server/connector/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/server/connector/maximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/server/connector/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/server/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/server/maximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/server/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/statistics.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/view.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/viewDLQ.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/viewmessages.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard/destination.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard/destinationType.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard/factory.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard/factoryType.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard/list.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard/plan.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard/provider.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard/raInstance.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard/status.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmxmanager/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmxmanager/viewJMXServer.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jndiview/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jndiview/view.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/_header.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/certificateDetails.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/configureKey.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/confirmCertificate.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/confirmKey.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/createKeystore.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/generateCSR.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/importCAReply.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/index.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/unlockKey.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/unlockKeystore.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/uploadCertificate.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore/viewKeystore.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ldapmanager/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ldapmanager/viewLDAPServer.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/logmanager/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/logmanager/search.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/logmanager/view.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/logmanager/viewhelp.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/_sql.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/advanced.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/configure.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/edit.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/list.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/selectType.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/showPlan.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/testLogin.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/testResults.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard/usage.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/repository/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/repository/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/repository/usage.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/groups/addmaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/groups/addnormal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/groups/error.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/groups/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/groups/maximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/groups/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/users/addmaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/users/addnormal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/users/error.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/users/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/users/maximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/users/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/groups/addmaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/groups/addnormal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/groups/error.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/groups/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/groups/maximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/groups/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/users/addmaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/users/addnormal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/users/error.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/users/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/users/maximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/users/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/servermanager/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/servermanager/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/servermanager/shutdown.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/threads/list.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/threads/monitor.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webaccesslogmanager/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webaccesslogmanager/view.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/connector/editConnector.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/connector/editHTTP.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/connector/editHTTPS.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/connector/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/connector/maximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/connector/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/help.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/maximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/normal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/welcome/welcomeHelp.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/welcome/welcomeMaximized.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/welcome/welcomeNormal.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/web.xml
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/graphs/memoryGraphJS.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/graphs/memoryGraphSVG.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/graphs/updatingGraphJS.jsp
-%%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/index.html
-%%T%%/repository/org/apache/geronimo/configs/webservices-common/2.0.2/webservices-common-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/webservices-common/2.0.2/webservices-common-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/webservices-common/2.0.2/webservices-common-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/webservices-common/2.0.2/webservices-common-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/webservices-common/2.0.2/webservices-common-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/webservices-common/2.0.2/webservices-common-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/META-INF/geronimo-plugin.xml
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/WEB-INF/geronimo-web.xml
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/WEB-INF/lib/geronimo-welcome-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/WEB-INF/web.xml
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/geronimo-logo.png
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/geronimo-power.gif
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/images/head_bgstretch_1x86.gif
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/images/powered_by_100x30.gif
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/images/welcome_head_570x86.gif
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/index.jsp
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/main.css
-%%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/sampleNotInstalled.jsp
-%%T%%/repository/org/apache/geronimo/configs/xmlbeans/2.0.2/xmlbeans-2.0.2.car/META-INF/LICENSE.txt
-%%T%%/repository/org/apache/geronimo/configs/xmlbeans/2.0.2/xmlbeans-2.0.2.car/META-INF/MANIFEST.MF
-%%T%%/repository/org/apache/geronimo/configs/xmlbeans/2.0.2/xmlbeans-2.0.2.car/META-INF/NOTICE.txt
-%%T%%/repository/org/apache/geronimo/configs/xmlbeans/2.0.2/xmlbeans-2.0.2.car/META-INF/config.info
-%%T%%/repository/org/apache/geronimo/configs/xmlbeans/2.0.2/xmlbeans-2.0.2.car/META-INF/config.ser
-%%T%%/repository/org/apache/geronimo/configs/xmlbeans/2.0.2/xmlbeans-2.0.2.car/META-INF/config.ser.sha1
-%%T%%/repository/org/apache/geronimo/javamail/geronimo-javamail_1.4_mail/1.2/geronimo-javamail_1.4_mail-1.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-activation/2.0.2/geronimo-activation-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-activemq-management/2.0.2/geronimo-activemq-management-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-activemq-ra/2.0.2/geronimo-activemq-ra-2.0.2.rar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-activemq/2.0.2/geronimo-activemq-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-axis-builder/2.0.2/geronimo-axis-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-axis/2.0.2/geronimo-axis-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-axis2-builder/2.0.2/geronimo-axis2-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-axis2/2.0.2/geronimo-axis2-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-cli/2.0.2/geronimo-cli-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-client-builder/2.0.2/geronimo-client-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-client/2.0.2/geronimo-client-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-clustering-wadi/2.0.2/geronimo-clustering-wadi-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-clustering/2.0.2/geronimo-clustering-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-common/2.0.2/geronimo-common-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-connector-builder/2.0.2/geronimo-connector-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-connector/2.0.2/geronimo-connector-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-converter/2.0.2/geronimo-converter-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-corba-builder/2.0.2/geronimo-corba-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-corba/2.0.2/geronimo-corba-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-core/2.0.2/geronimo-core-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-cxf-builder/2.0.2/geronimo-cxf-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-cxf/2.0.2/geronimo-cxf-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-deploy-config/2.0.2/geronimo-deploy-config-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-deploy-jsr88/2.0.2/geronimo-deploy-jsr88-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-deploy-tool/2.0.2/geronimo-deploy-tool-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-deployment/2.0.2/geronimo-deployment-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-derby/2.0.2/geronimo-derby-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-hot-deploy/2.0.2/geronimo-hot-deploy-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-interceptor/2.0.2/geronimo-interceptor-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-j2ee-builder/2.0.2/geronimo-j2ee-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-j2ee-schema/2.0.2/geronimo-j2ee-schema-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-j2ee/2.0.2/geronimo-j2ee-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jasper-builder/2.0.2/geronimo-jasper-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jasper/2.0.2/geronimo-jasper-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jaxws-builder/2.0.2/geronimo-jaxws-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jaxws/2.0.2/geronimo-jaxws-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jdbc/2.0.2/geronimo-jdbc-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6-builder/2.0.2/geronimo-jetty6-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6-clustering-builder-wadi/2.0.2/geronimo-jetty6-clustering-builder-wadi-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6-clustering-wadi/2.0.2/geronimo-jetty6-clustering-wadi-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6/2.0.2/geronimo-jetty6-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-jmx-remoting/2.0.2/geronimo-jmx-remoting-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-mail/2.0.2/geronimo-mail-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-management/2.0.2/geronimo-management-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-myfaces-builder/2.0.2/geronimo-myfaces-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-myfaces/2.0.2/geronimo-myfaces-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-naming-builder/2.0.2/geronimo-naming-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-naming/2.0.2/geronimo-naming-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-openejb-builder/2.0.2/geronimo-openejb-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-openejb/2.0.2/geronimo-openejb-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-openjpa/2.0.2/geronimo-openjpa-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-persistence-jpa10-builder/2.0.2/geronimo-persistence-jpa10-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-persistence-jpa10/2.0.2/geronimo-persistence-jpa10-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-security-builder/2.0.2/geronimo-security-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-security/2.0.2/geronimo-security-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-service-builder/2.0.2/geronimo-service-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-system/2.0.2/geronimo-system-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-test-ddbean/2.0.2/geronimo-test-ddbean-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-timer/2.0.2/geronimo-timer-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-transaction/2.0.2/geronimo-transaction-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-transformer/2.0.2/geronimo-transformer-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-upgrade/2.0.2/geronimo-upgrade-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-util/2.0.2/geronimo-util-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-web-2.5-builder/2.0.2/geronimo-web-2.5-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-webservices-builder/2.0.2/geronimo-webservices-builder-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-webservices/2.0.2/geronimo-webservices-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/modules/geronimo-yoko/2.0.2/geronimo-yoko-2.0.2.jar
-%%T%%/repository/org/apache/geronimo/schema/geronimo-schema-j2ee_1.4/1.2/geronimo-schema-j2ee_1.4-1.2.jar
-%%T%%/repository/org/apache/geronimo/schema/geronimo-schema-jee_5/1.1/geronimo-schema-jee_5-1.1.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0/geronimo-activation_1.1_spec-1.0.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1/geronimo-annotation_1.0_spec-1.1.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-ejb_3.0_spec/1.0/geronimo-ejb_3.0_spec-1.0.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-el_1.0_spec/1.0/geronimo-el_1.0_spec-1.0.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-interceptor_3.0_spec/1.0/geronimo-interceptor_3.0_spec-1.0.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-j2ee-connector_1.5_spec/1.1.1/geronimo-j2ee-connector_1.5_spec-1.1.1.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0/geronimo-j2ee-management_1.1_spec-1.0.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-jacc_1.1_spec/1.0/geronimo-jacc_1.1_spec-1.0.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-javaee-deployment_1.1MR3_spec/1.0/geronimo-javaee-deployment_1.1MR3_spec-1.0.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-jaxr_1.0_spec/1.1/geronimo-jaxr_1.0_spec-1.1.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-jaxrpc_1.1_spec/1.1/geronimo-jaxrpc_1.1_spec-1.1.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1/geronimo-jms_1.1_spec-1.1.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-jpa_3.0_spec/1.1/geronimo-jpa_3.0_spec-1.1.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-jsp_2.1_spec/1.0/geronimo-jsp_2.1_spec-1.0.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1/geronimo-jta_1.1_spec-1.1.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-servlet_2.5_spec/1.1/geronimo-servlet_2.5_spec-1.1.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0/geronimo-stax-api_1.0_spec-1.0.jar
-%%T%%/repository/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.1/geronimo-ws-metadata_2.0_spec-1.1.1.jar
-%%T%%/repository/org/apache/httpcomponents/httpcore/4.0-alpha5/httpcore-4.0-alpha5.jar
-%%T%%/repository/org/apache/myfaces/core/myfaces-api/1.2.0/myfaces-api-1.2.0.jar
-%%T%%/repository/org/apache/myfaces/core/myfaces-impl/1.2.0/myfaces-impl-1.2.0.jar
-%%T%%/repository/org/apache/neethi/neethi/2.0/neethi-2.0.jar
-%%T%%/repository/org/apache/openejb/openejb-axis/3.0-beta-1/openejb-axis-3.0-beta-1.jar
-%%T%%/repository/org/apache/openejb/openejb-client/3.0-beta-1/openejb-client-3.0-beta-1.jar
-%%T%%/repository/org/apache/openejb/openejb-core/3.0-beta-1/openejb-core-3.0-beta-1.jar
-%%T%%/repository/org/apache/openejb/openejb-ejbd/3.0-beta-1/openejb-ejbd-3.0-beta-1.jar
-%%T%%/repository/org/apache/openejb/openejb-javaagent/3.0-beta-1/openejb-javaagent-3.0-beta-1.jar
-%%T%%/repository/org/apache/openejb/openejb-jee/3.0-beta-1/openejb-jee-3.0-beta-1.jar
-%%T%%/repository/org/apache/openejb/openejb-loader/3.0-beta-1/openejb-loader-3.0-beta-1.jar
-%%T%%/repository/org/apache/openejb/openejb-server/3.0-beta-1/openejb-server-3.0-beta-1.jar
-%%T%%/repository/org/apache/openjpa/openjpa/1.0.0/openjpa-1.0.0.jar
-%%T%%/repository/org/apache/pluto/pluto-descriptors/1.0.1/pluto-descriptors-1.0.1.jar
-%%T%%/repository/org/apache/pluto/pluto-portal/1.0.1/pluto-portal-1.0.1.jar
-%%T%%/repository/org/apache/pluto/pluto/1.0.1/pluto-1.0.1.jar
-%%T%%/repository/org/apache/tomcat/extras/juli-adapters/6.0.13/juli-adapters-6.0.13.jar
-%%T%%/repository/org/apache/tomcat/extras/juli/6.0.13/juli-6.0.13.jar
-%%T%%/repository/org/apache/tomcat/jasper-el/6.0.13/jasper-el-6.0.13.jar
-%%T%%/repository/org/apache/tomcat/jasper-jdt/6.0.13/jasper-jdt-6.0.13.jar
-%%T%%/repository/org/apache/tomcat/jasper/6.0.13-G543818/jasper-6.0.13-G543818.jar
-%%T%%/repository/org/apache/tomcat/juli/6.0.13/juli-6.0.13.jar
-%%T%%/repository/org/apache/tomcat/tribes/6.0.13/tribes-6.0.13.jar
-%%T%%/repository/org/apache/ws/commons/axiom/axiom-api/1.2.5/axiom-api-1.2.5.jar
-%%T%%/repository/org/apache/ws/commons/axiom/axiom-dom/1.2.5/axiom-dom-1.2.5.jar
-%%T%%/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.5/axiom-impl-1.2.5.jar
-%%T%%/repository/org/apache/ws/commons/schema/XmlSchema/1.2/XmlSchema-1.2.jar
-%%T%%/repository/org/apache/ws/commons/schema/XmlSchema/1.3.1/XmlSchema-1.3.1.jar
-%%T%%/repository/org/apache/ws/scout/scout/1.0rc1/scout-1.0rc1.jar
-%%T%%/repository/org/apache/xbean/xbean-finder/3.2/xbean-finder-3.2.jar
-%%T%%/repository/org/apache/xbean/xbean-naming/3.2/xbean-naming-3.2.jar
-%%T%%/repository/org/apache/xbean/xbean-reflect/3.2/xbean-reflect-3.2.jar
-%%T%%/repository/org/apache/xmlbeans/xmlbeans/2.3.0/xmlbeans-2.3.0.jar
-%%T%%/repository/org/apache/yoko/yoko-core/1.0-incubating-r557035/yoko-core-1.0-incubating-r557035.jar
-%%T%%/repository/org/apache/yoko/yoko-rmi-impl/1.0-incubating-r557035/yoko-rmi-impl-1.0-incubating-r557035.jar
-%%T%%/repository/org/apache/yoko/yoko-spec-corba/1.0-incubating-r557035/yoko-spec-corba-1.0-incubating-r557035.jar
-%%T%%/repository/org/codehaus/castor/castor/1.0.5/castor-1.0.5.jar
-%%T%%/repository/org/codehaus/swizzle/swizzle-stream/1.0.1/swizzle-stream-1.0.1.jar
-%%T%%/repository/org/codehaus/wadi/wadi-core/2.0-M5/wadi-core-2.0-M5.jar
-%%T%%/repository/org/codehaus/wadi/wadi-group/2.0-M5/wadi-group-2.0-M5.jar
-%%T%%/repository/org/codehaus/wadi/wadi-tribes/2.0-M5/wadi-tribes-2.0-M5.jar
-%%T%%/repository/org/mortbay/jetty/jetty-ajp/6.1.5/jetty-ajp-6.1.5.jar
-%%T%%/repository/org/mortbay/jetty/jetty-sslengine/6.1.5/jetty-sslengine-6.1.5.jar
-%%T%%/repository/org/mortbay/jetty/jetty-util/6.1.5/jetty-util-6.1.5.jar
-%%T%%/repository/org/mortbay/jetty/jetty/6.1.5/jetty-6.1.5.jar
-%%T%%/repository/org/objectweb/howl/howl/1.0.1-1/howl-1.0.1-1.jar
-%%T%%/repository/org/slf4j/slf4j-api/1.4.0/slf4j-api-1.4.0.jar
-%%T%%/repository/org/slf4j/slf4j-jcl/1.4.0/slf4j-jcl-1.4.0.jar
-%%T%%/repository/org/springframework/spring-beans/2.0.5/spring-beans-2.0.5.jar
-%%T%%/repository/org/springframework/spring-context/2.0.5/spring-context-2.0.5.jar
-%%T%%/repository/org/springframework/spring-core/2.0.5/spring-core-2.0.5.jar
-%%T%%/repository/org/tranql/tranql-connector-db2-xa/1.1/tranql-connector-db2-xa-1.1.rar
-%%T%%/repository/org/tranql/tranql-connector-derby-client-local/1.4/tranql-connector-derby-client-local-1.4.rar
-%%T%%/repository/org/tranql/tranql-connector-derby-client-xa/1.4/tranql-connector-derby-client-xa-1.4.rar
-%%T%%/repository/org/tranql/tranql-connector-derby-embed-local/1.4/tranql-connector-derby-embed-local-1.4.rar
-%%T%%/repository/org/tranql/tranql-connector-derby-embed-xa/1.4/tranql-connector-derby-embed-xa-1.4.rar
-%%T%%/repository/org/tranql/tranql-connector-mysql-local/1.1/tranql-connector-mysql-local-1.1.rar
-%%T%%/repository/org/tranql/tranql-connector-mysql-xa/1.1/tranql-connector-mysql-xa-1.1.rar
-%%T%%/repository/org/tranql/tranql-connector-oracle-local/1.3/tranql-connector-oracle-local-1.3.rar
-%%T%%/repository/org/tranql/tranql-connector-oracle-xa/1.3/tranql-connector-oracle-xa-1.3.rar
-%%T%%/repository/org/tranql/tranql-connector-postgresql-local/1.1/tranql-connector-postgresql-local-1.1.rar
-%%T%%/repository/org/tranql/tranql-connector-postgresql-xa/1.1/tranql-connector-postgresql-xa-1.1.rar
-%%T%%/repository/org/tranql/tranql-connector-ra/1.4/tranql-connector-ra-1.4.rar
-%%T%%/repository/portlet-api/portlet-api/1.0/portlet-api-1.0.jar
-%%T%%/repository/woodstox/wstx-asl/3.2.1/wstx-asl-3.2.1.jar
-%%T%%/repository/wsdl4j/wsdl4j/1.6.1/wsdl4j-1.6.1.jar
-%%T%%/repository/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar
-%%T%%/repository/xml-resolver/xml-resolver/1.1/xml-resolver-1.1.jar
-%%T%%/schema/attributes-1.1.xsd
-%%T%%/schema/attributes-1.2.xsd
-%%T%%/schema/geronimo-application-2.0.xsd
-%%T%%/schema/geronimo-application-client-2.0.xsd
-%%T%%/schema/geronimo-connector-1.2.xsd
-%%T%%/schema/geronimo-credential-store-1.0.xsd
-%%T%%/schema/geronimo-javabean-xmlattribute-1.0.xsd
-%%T%%/schema/geronimo-jetty-2.0.1.xsd
-%%T%%/schema/geronimo-jetty-config-1.0.xsd
-%%T%%/schema/geronimo-login-config-2.0.xsd
-%%T%%/schema/geronimo-module-1.2.xsd
-%%T%%/schema/geronimo-naming-1.2.xsd
-%%T%%/schema/geronimo-openejb-2.0.xsd
-%%T%%/schema/geronimo-security-1.2.xsd
-%%T%%/schema/geronimo-security-2.0.xsd
-%%T%%/schema/geronimo-subject-info-1.0.xsd
-%%T%%/schema/geronimo-web-2.0.1.xsd
-%%T%%/schema/plugins-1.1.xsd
-%%T%%/schema/plugins-1.2.xsd
-%%T%%/var/config/README.txt
-%%T%%/var/config/artifact_aliases.properties
-%%T%%/var/config/client_artifact_aliases.properties
-%%T%%/var/config/config-substitutions.properties
-%%T%%/var/config/config.xml
-%%T%%/var/config/jsr88-configurer-config.xml
-%%T%%/var/config/offline-deployer-config.xml
-%%T%%/var/log/client-log4j.properties
-%%T%%/var/log/deployer-log4j.properties
-%%T%%/var/log/geronimo.out
-%%T%%/var/log/server-log4j.properties
-%%T%%/var/security/demo_groups.properties
-%%T%%/var/security/demo_users.properties
-%%T%%/var/security/groups.properties
-%%T%%/var/security/keystores/geronimo-default
-%%T%%/var/security/users.properties
-%%T%%/var/temp/README.txt
-@dirrm %%T%%/var/temp
-@dirrm %%T%%/var/security/keystores
-@dirrm %%T%%/var/security
-@dirrm %%T%%/var/log
-@dirrm %%T%%/var/config
-@dirrm %%T%%/var
-@dirrm %%T%%/schema
-@dirrm %%T%%/repository/xml-resolver/xml-resolver/1.1
-@dirrm %%T%%/repository/xml-resolver/xml-resolver
-@dirrm %%T%%/repository/xml-resolver
-@dirrm %%T%%/repository/xerces/xercesImpl/2.8.1
-@dirrm %%T%%/repository/xerces/xercesImpl
-@dirrm %%T%%/repository/xerces
-@dirrm %%T%%/repository/wsdl4j/wsdl4j/1.6.1
-@dirrm %%T%%/repository/wsdl4j/wsdl4j
-@dirrm %%T%%/repository/wsdl4j
-@dirrm %%T%%/repository/woodstox/wstx-asl/3.2.1
-@dirrm %%T%%/repository/woodstox/wstx-asl
-@dirrm %%T%%/repository/woodstox
-@dirrm %%T%%/repository/portlet-api/portlet-api/1.0
-@dirrm %%T%%/repository/portlet-api/portlet-api
-@dirrm %%T%%/repository/portlet-api
-@dirrm %%T%%/repository/org/tranql/tranql-connector-ra/1.4
-@dirrm %%T%%/repository/org/tranql/tranql-connector-ra
-@dirrm %%T%%/repository/org/tranql/tranql-connector-postgresql-xa/1.1
-@dirrm %%T%%/repository/org/tranql/tranql-connector-postgresql-xa
-@dirrm %%T%%/repository/org/tranql/tranql-connector-postgresql-local/1.1
-@dirrm %%T%%/repository/org/tranql/tranql-connector-postgresql-local
-@dirrm %%T%%/repository/org/tranql/tranql-connector-oracle-xa/1.3
-@dirrm %%T%%/repository/org/tranql/tranql-connector-oracle-xa
-@dirrm %%T%%/repository/org/tranql/tranql-connector-oracle-local/1.3
-@dirrm %%T%%/repository/org/tranql/tranql-connector-oracle-local
-@dirrm %%T%%/repository/org/tranql/tranql-connector-mysql-xa/1.1
-@dirrm %%T%%/repository/org/tranql/tranql-connector-mysql-xa
-@dirrm %%T%%/repository/org/tranql/tranql-connector-mysql-local/1.1
-@dirrm %%T%%/repository/org/tranql/tranql-connector-mysql-local
-@dirrm %%T%%/repository/org/tranql/tranql-connector-derby-embed-xa/1.4
-@dirrm %%T%%/repository/org/tranql/tranql-connector-derby-embed-xa
-@dirrm %%T%%/repository/org/tranql/tranql-connector-derby-embed-local/1.4
-@dirrm %%T%%/repository/org/tranql/tranql-connector-derby-embed-local
-@dirrm %%T%%/repository/org/tranql/tranql-connector-derby-client-xa/1.4
-@dirrm %%T%%/repository/org/tranql/tranql-connector-derby-client-xa
-@dirrm %%T%%/repository/org/tranql/tranql-connector-derby-client-local/1.4
-@dirrm %%T%%/repository/org/tranql/tranql-connector-derby-client-local
-@dirrm %%T%%/repository/org/tranql/tranql-connector-db2-xa/1.1
-@dirrm %%T%%/repository/org/tranql/tranql-connector-db2-xa
-@dirrm %%T%%/repository/org/tranql
-@dirrm %%T%%/repository/org/springframework/spring-core/2.0.5
-@dirrm %%T%%/repository/org/springframework/spring-core
-@dirrm %%T%%/repository/org/springframework/spring-context/2.0.5
-@dirrm %%T%%/repository/org/springframework/spring-context
-@dirrm %%T%%/repository/org/springframework/spring-beans/2.0.5
-@dirrm %%T%%/repository/org/springframework/spring-beans
-@dirrm %%T%%/repository/org/springframework
-@dirrm %%T%%/repository/org/slf4j/slf4j-jcl/1.4.0
-@dirrm %%T%%/repository/org/slf4j/slf4j-jcl
-@dirrm %%T%%/repository/org/slf4j/slf4j-api/1.4.0
-@dirrm %%T%%/repository/org/slf4j/slf4j-api
-@dirrm %%T%%/repository/org/slf4j
-@dirrm %%T%%/repository/org/objectweb/howl/howl/1.0.1-1
-@dirrm %%T%%/repository/org/objectweb/howl/howl
-@dirrm %%T%%/repository/org/objectweb/howl
-@dirrm %%T%%/repository/org/objectweb
-@dirrm %%T%%/repository/org/mortbay/jetty/jetty/6.1.5
-@dirrm %%T%%/repository/org/mortbay/jetty/jetty-util/6.1.5
-@dirrm %%T%%/repository/org/mortbay/jetty/jetty-util
-@dirrm %%T%%/repository/org/mortbay/jetty/jetty-sslengine/6.1.5
-@dirrm %%T%%/repository/org/mortbay/jetty/jetty-sslengine
-@dirrm %%T%%/repository/org/mortbay/jetty/jetty-ajp/6.1.5
-@dirrm %%T%%/repository/org/mortbay/jetty/jetty-ajp
-@dirrm %%T%%/repository/org/mortbay/jetty/jetty
-@dirrm %%T%%/repository/org/mortbay/jetty
-@dirrm %%T%%/repository/org/mortbay
-@dirrm %%T%%/repository/org/codehaus/wadi/wadi-tribes/2.0-M5
-@dirrm %%T%%/repository/org/codehaus/wadi/wadi-tribes
-@dirrm %%T%%/repository/org/codehaus/wadi/wadi-group/2.0-M5
-@dirrm %%T%%/repository/org/codehaus/wadi/wadi-group
-@dirrm %%T%%/repository/org/codehaus/wadi/wadi-core/2.0-M5
-@dirrm %%T%%/repository/org/codehaus/wadi/wadi-core
-@dirrm %%T%%/repository/org/codehaus/wadi
-@dirrm %%T%%/repository/org/codehaus/swizzle/swizzle-stream/1.0.1
-@dirrm %%T%%/repository/org/codehaus/swizzle/swizzle-stream
-@dirrm %%T%%/repository/org/codehaus/swizzle
-@dirrm %%T%%/repository/org/codehaus/castor/castor/1.0.5
-@dirrm %%T%%/repository/org/codehaus/castor/castor
-@dirrm %%T%%/repository/org/codehaus/castor
-@dirrm %%T%%/repository/org/codehaus
-@dirrm %%T%%/repository/org/apache/yoko/yoko-spec-corba/1.0-incubating-r557035
-@dirrm %%T%%/repository/org/apache/yoko/yoko-spec-corba
-@dirrm %%T%%/repository/org/apache/yoko/yoko-rmi-impl/1.0-incubating-r557035
-@dirrm %%T%%/repository/org/apache/yoko/yoko-rmi-impl
-@dirrm %%T%%/repository/org/apache/yoko/yoko-core/1.0-incubating-r557035
-@dirrm %%T%%/repository/org/apache/yoko/yoko-core
-@dirrm %%T%%/repository/org/apache/yoko
-@dirrm %%T%%/repository/org/apache/xmlbeans/xmlbeans/2.3.0
-@dirrm %%T%%/repository/org/apache/xmlbeans/xmlbeans
-@dirrm %%T%%/repository/org/apache/xmlbeans
-@dirrm %%T%%/repository/org/apache/xbean/xbean-reflect/3.2
-@dirrm %%T%%/repository/org/apache/xbean/xbean-reflect
-@dirrm %%T%%/repository/org/apache/xbean/xbean-naming/3.2
-@dirrm %%T%%/repository/org/apache/xbean/xbean-naming
-@dirrm %%T%%/repository/org/apache/xbean/xbean-finder/3.2
-@dirrm %%T%%/repository/org/apache/xbean/xbean-finder
-@dirrm %%T%%/repository/org/apache/xbean
-@dirrm %%T%%/repository/org/apache/ws/scout/scout/1.0rc1
-@dirrm %%T%%/repository/org/apache/ws/scout/scout
-@dirrm %%T%%/repository/org/apache/ws/scout
-@dirrm %%T%%/repository/org/apache/ws/commons/schema/XmlSchema/1.3.1
-@dirrm %%T%%/repository/org/apache/ws/commons/schema/XmlSchema/1.2
-@dirrm %%T%%/repository/org/apache/ws/commons/schema/XmlSchema
-@dirrm %%T%%/repository/org/apache/ws/commons/schema
-@dirrm %%T%%/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.5
-@dirrm %%T%%/repository/org/apache/ws/commons/axiom/axiom-impl
-@dirrm %%T%%/repository/org/apache/ws/commons/axiom/axiom-dom/1.2.5
-@dirrm %%T%%/repository/org/apache/ws/commons/axiom/axiom-dom
-@dirrm %%T%%/repository/org/apache/ws/commons/axiom/axiom-api/1.2.5
-@dirrm %%T%%/repository/org/apache/ws/commons/axiom/axiom-api
-@dirrm %%T%%/repository/org/apache/ws/commons/axiom
-@dirrm %%T%%/repository/org/apache/ws/commons
-@dirrm %%T%%/repository/org/apache/ws
-@dirrm %%T%%/repository/org/apache/tomcat/tribes/6.0.13
-@dirrm %%T%%/repository/org/apache/tomcat/tribes
-@dirrm %%T%%/repository/org/apache/tomcat/juli/6.0.13
-@dirrm %%T%%/repository/org/apache/tomcat/juli
-@dirrm %%T%%/repository/org/apache/tomcat/jasper/6.0.13-G543818
-@dirrm %%T%%/repository/org/apache/tomcat/jasper-jdt/6.0.13
-@dirrm %%T%%/repository/org/apache/tomcat/jasper-jdt
-@dirrm %%T%%/repository/org/apache/tomcat/jasper-el/6.0.13
-@dirrm %%T%%/repository/org/apache/tomcat/jasper-el
-@dirrm %%T%%/repository/org/apache/tomcat/jasper
-@dirrm %%T%%/repository/org/apache/tomcat/extras/juli/6.0.13
-@dirrm %%T%%/repository/org/apache/tomcat/extras/juli-adapters/6.0.13
-@dirrm %%T%%/repository/org/apache/tomcat/extras/juli-adapters
-@dirrm %%T%%/repository/org/apache/tomcat/extras/juli
-@dirrm %%T%%/repository/org/apache/tomcat/extras
-@dirrm %%T%%/repository/org/apache/tomcat
-@dirrm %%T%%/repository/org/apache/pluto/pluto/1.0.1
-@dirrm %%T%%/repository/org/apache/pluto/pluto-portal/1.0.1
-@dirrm %%T%%/repository/org/apache/pluto/pluto-portal
-@dirrm %%T%%/repository/org/apache/pluto/pluto-descriptors/1.0.1
-@dirrm %%T%%/repository/org/apache/pluto/pluto-descriptors
-@dirrm %%T%%/repository/org/apache/pluto/pluto
-@dirrm %%T%%/repository/org/apache/pluto
-@dirrm %%T%%/repository/org/apache/openjpa/openjpa/1.0.0
-@dirrm %%T%%/repository/org/apache/openjpa/openjpa
-@dirrm %%T%%/repository/org/apache/openjpa
-@dirrm %%T%%/repository/org/apache/openejb/openejb-server/3.0-beta-1
-@dirrm %%T%%/repository/org/apache/openejb/openejb-server
-@dirrm %%T%%/repository/org/apache/openejb/openejb-loader/3.0-beta-1
-@dirrm %%T%%/repository/org/apache/openejb/openejb-loader
-@dirrm %%T%%/repository/org/apache/openejb/openejb-jee/3.0-beta-1
-@dirrm %%T%%/repository/org/apache/openejb/openejb-jee
-@dirrm %%T%%/repository/org/apache/openejb/openejb-javaagent/3.0-beta-1
-@dirrm %%T%%/repository/org/apache/openejb/openejb-javaagent
-@dirrm %%T%%/repository/org/apache/openejb/openejb-ejbd/3.0-beta-1
-@dirrm %%T%%/repository/org/apache/openejb/openejb-ejbd
-@dirrm %%T%%/repository/org/apache/openejb/openejb-core/3.0-beta-1
-@dirrm %%T%%/repository/org/apache/openejb/openejb-core
-@dirrm %%T%%/repository/org/apache/openejb/openejb-client/3.0-beta-1
-@dirrm %%T%%/repository/org/apache/openejb/openejb-client
-@dirrm %%T%%/repository/org/apache/openejb/openejb-axis/3.0-beta-1
-@dirrm %%T%%/repository/org/apache/openejb/openejb-axis
-@dirrm %%T%%/repository/org/apache/openejb
-@dirrm %%T%%/repository/org/apache/neethi/neethi/2.0
-@dirrm %%T%%/repository/org/apache/neethi/neethi
-@dirrm %%T%%/repository/org/apache/neethi
-@dirrm %%T%%/repository/org/apache/myfaces/core/myfaces-impl/1.2.0
-@dirrm %%T%%/repository/org/apache/myfaces/core/myfaces-impl
-@dirrm %%T%%/repository/org/apache/myfaces/core/myfaces-api/1.2.0
-@dirrm %%T%%/repository/org/apache/myfaces/core/myfaces-api
-@dirrm %%T%%/repository/org/apache/myfaces/core
-@dirrm %%T%%/repository/org/apache/myfaces
-@dirrm %%T%%/repository/org/apache/httpcomponents/httpcore/4.0-alpha5
-@dirrm %%T%%/repository/org/apache/httpcomponents/httpcore
-@dirrm %%T%%/repository/org/apache/httpcomponents
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.1
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-servlet_2.5_spec/1.1
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-servlet_2.5_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jta_1.1_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jsp_2.1_spec/1.0
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jsp_2.1_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jpa_3.0_spec/1.1
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jpa_3.0_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jaxrpc_1.1_spec/1.1
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jaxrpc_1.1_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jaxr_1.0_spec/1.1
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jaxr_1.0_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-javaee-deployment_1.1MR3_spec/1.0
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-javaee-deployment_1.1MR3_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jacc_1.1_spec/1.0
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-jacc_1.1_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-j2ee-connector_1.5_spec/1.1.1
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-j2ee-connector_1.5_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-interceptor_3.0_spec/1.0
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-interceptor_3.0_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-el_1.0_spec/1.0
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-el_1.0_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-ejb_3.0_spec/1.0
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-ejb_3.0_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-annotation_1.0_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0
-@dirrm %%T%%/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec
-@dirrm %%T%%/repository/org/apache/geronimo/specs
-@dirrm %%T%%/repository/org/apache/geronimo/schema/geronimo-schema-jee_5/1.1
-@dirrm %%T%%/repository/org/apache/geronimo/schema/geronimo-schema-jee_5
-@dirrm %%T%%/repository/org/apache/geronimo/schema/geronimo-schema-j2ee_1.4/1.2
-@dirrm %%T%%/repository/org/apache/geronimo/schema/geronimo-schema-j2ee_1.4
-@dirrm %%T%%/repository/org/apache/geronimo/schema
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-yoko/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-yoko
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-webservices/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-webservices-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-webservices-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-webservices
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-web-2.5-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-web-2.5-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-util/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-util
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-upgrade/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-upgrade
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-transformer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-transformer
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-transaction/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-transaction
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-timer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-timer
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-test-ddbean/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-test-ddbean
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-system/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-system
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-service-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-service-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-security/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-security-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-security-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-security
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-persistence-jpa10/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-persistence-jpa10-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-persistence-jpa10-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-persistence-jpa10
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-openjpa/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-openjpa
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-openejb/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-openejb-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-openejb-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-openejb
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-naming/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-naming-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-naming-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-naming
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-myfaces/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-myfaces-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-myfaces-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-myfaces
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-management/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-management
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-mail/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-mail
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jmx-remoting/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jmx-remoting
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6-clustering-wadi/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6-clustering-wadi
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6-clustering-builder-wadi/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6-clustering-builder-wadi
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jetty6
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jdbc/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jdbc
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jaxws/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jaxws-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jaxws-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jaxws
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jasper/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jasper-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jasper-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-jasper
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-j2ee/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-j2ee-schema/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-j2ee-schema
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-j2ee-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-j2ee-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-j2ee
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-interceptor/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-interceptor
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-hot-deploy/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-hot-deploy
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-derby/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-derby
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-deployment/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-deployment
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-deploy-tool/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-deploy-tool
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-deploy-jsr88/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-deploy-jsr88
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-deploy-config/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-deploy-config
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-cxf/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-cxf-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-cxf-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-cxf
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-core/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-core
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-corba/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-corba-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-corba-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-corba
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-converter/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-converter
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-connector/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-connector-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-connector-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-connector
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-common/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-common
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-clustering/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-clustering-wadi/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-clustering-wadi
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-clustering
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-client/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-client-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-client-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-client
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-cli/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-cli
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-axis2/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-axis2-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-axis2-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-axis2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-axis/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-axis-builder/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-axis-builder
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-axis
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-activemq/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-activemq-ra/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-activemq-ra
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-activemq-management/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-activemq-management
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-activemq
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-activation/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/modules/geronimo-activation
-@dirrm %%T%%/repository/org/apache/geronimo/modules
-@dirrm %%T%%/repository/org/apache/geronimo/javamail/geronimo-javamail_1.4_mail/1.2
-@dirrm %%T%%/repository/org/apache/geronimo/javamail/geronimo-javamail_1.4_mail
-@dirrm %%T%%/repository/org/apache/geronimo/javamail
-@dirrm %%T%%/repository/org/apache/geronimo/configs/xmlbeans/2.0.2/xmlbeans-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/xmlbeans/2.0.2/xmlbeans-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/xmlbeans/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/xmlbeans
-@dirrm %%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/images
-@dirrm %%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/WEB-INF/lib
-@dirrm %%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/WEB-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2/welcome-jetty-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/welcome-jetty/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/welcome-jetty
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webservices-common/2.0.2/webservices-common-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webservices-common/2.0.2/webservices-common-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webservices-common/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webservices-common
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/graphs
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/welcome
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager/connector
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webmanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/webaccesslogmanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/threads
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/servermanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/users
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se/groups
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/se
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/users
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby/groups
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager/derby
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/securityrealmmanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/repository
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/realmwizard
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/logmanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ldapmanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/keystore
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jndiview
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmxmanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmswizard
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/server/connector
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/server
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager/activemq
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/jmsmanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/internaldb
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/infomanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/derbylogmanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dependencyview
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/dbwizard
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/configmanager
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/classloaderview
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ca
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/apache/jk
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/apache
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view/ajax
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/view
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/tld
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/lib
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF/classes
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/WEB-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/standard.war
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/js
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/images
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/tld
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/lib
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/data/xml
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/data
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/config/services
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/config
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/classes
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF/aggregation
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/WEB-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/framework.war
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2/webconsole-jetty6-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/webconsole-jetty6
-@dirrm %%T%%/repository/org/apache/geronimo/configs/wadi-clustering/2.0.2/wadi-clustering-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/wadi-clustering/2.0.2/wadi-clustering-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/wadi-clustering/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/wadi-clustering
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/WEB-INF/lib
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/WEB-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-jetty
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF/maven/org.tranql/tranql-connector-derby-embed-local
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF/maven/org.tranql
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF/maven
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/uddi-db
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2/uddi-jetty6-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/uddi-jetty6
-@dirrm %%T%%/repository/org/apache/geronimo/configs/transformer-agent/2.0.2/transformer-agent-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/transformer-agent/2.0.2/transformer-agent-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/transformer-agent/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/transformer-agent
-@dirrm %%T%%/repository/org/apache/geronimo/configs/transaction/2.0.2/transaction-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/transaction/2.0.2/transaction-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/transaction/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/transaction
-@dirrm %%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF/maven/org.tranql/tranql-connector-derby-embed-xa
-@dirrm %%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF/maven/org.tranql
-@dirrm %%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF/maven
-@dirrm %%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/rar
-@dirrm %%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2/system-database-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/system-database/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/system-database
-@dirrm %%T%%/repository/org/apache/geronimo/configs/shutdown/2.0.2/shutdown-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/shutdown/2.0.2/shutdown-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/shutdown/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/shutdown
-@dirrm %%T%%/repository/org/apache/geronimo/configs/sharedlib/2.0.2/sharedlib-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/sharedlib/2.0.2/sharedlib-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/sharedlib/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/sharedlib
-@dirrm %%T%%/repository/org/apache/geronimo/configs/server-security-config/2.0.2/server-security-config-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/server-security-config/2.0.2/server-security-config-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/server-security-config/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/server-security-config
-@dirrm %%T%%/repository/org/apache/geronimo/configs/rmi-naming/2.0.2/rmi-naming-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/rmi-naming/2.0.2/rmi-naming-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/rmi-naming/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/rmi-naming
-@dirrm %%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/images
-@dirrm %%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/WEB-INF/lib
-@dirrm %%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/WEB-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2/remote-deploy-jetty-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/remote-deploy-jetty
-@dirrm %%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer/2.0.2/persistence-jpa10-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer/2.0.2/persistence-jpa10-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/persistence-jpa10-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2/openjpa-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2/openjpa-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openjpa/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openjpa
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb/2.0.2/openejb-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb/2.0.2/openejb-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb-deployer/2.0.2/openejb-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb-deployer/2.0.2/openejb-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer/2.0.2/openejb-corba-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer/2.0.2/openejb-corba-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb-corba-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/openejb
-@dirrm %%T%%/repository/org/apache/geronimo/configs/online-deployer/2.0.2/online-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/online-deployer/2.0.2/online-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/online-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/online-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/offline-deployer/2.0.2/offline-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/offline-deployer/2.0.2/offline-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/offline-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/offline-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/myfaces/2.0.2/myfaces-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/myfaces/2.0.2/myfaces-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/myfaces/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/myfaces-deployer/2.0.2/myfaces-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/myfaces-deployer/2.0.2/myfaces-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/myfaces-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/myfaces-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/myfaces
-@dirrm %%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2/mejb-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/mejb/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/mejb
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer/2.0.2/jsr88-war-configurer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer/2.0.2/jsr88-war-configurer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-war-configurer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer/2.0.2/jsr88-rar-configurer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer/2.0.2/jsr88-rar-configurer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-rar-configurer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer/2.0.2/jsr88-jar-configurer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer/2.0.2/jsr88-jar-configurer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-jar-configurer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer/2.0.2/jsr88-ear-configurer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer/2.0.2/jsr88-ear-configurer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-ear-configurer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory/2.0.2/jsr88-deploymentfactory-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory/2.0.2/jsr88-deploymentfactory-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-deploymentfactory
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-cli/2.0.2/jsr88-cli-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-cli/2.0.2/jsr88-cli-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-cli/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jsr88-cli
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6/2.0.2/jetty6-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6/2.0.2/jetty6-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-deployer/2.0.2/jetty6-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-deployer/2.0.2/jetty6-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi/2.0.2/jetty6-clustering-wadi-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi/2.0.2/jetty6-clustering-wadi-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-wadi
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi/2.0.2/jetty6-clustering-builder-wadi-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi/2.0.2/jetty6-clustering-builder-wadi-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6-clustering-builder-wadi
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jetty6
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jee-specs/2.0.2/jee-specs-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jee-specs/2.0.2/jee-specs-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jee-specs/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jee-specs
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jaxws-deployer/2.0.2/jaxws-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jaxws-deployer/2.0.2/jaxws-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jaxws-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jaxws-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/javamail/2.0.2/javamail-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/javamail/2.0.2/javamail-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/javamail/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/javamail
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jasper/2.0.2/jasper-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jasper/2.0.2/jasper-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jasper/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jasper-deployer/2.0.2/jasper-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jasper-deployer/2.0.2/jasper-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jasper-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jasper-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/jasper
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-system/2.0.2/j2ee-system-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-system/2.0.2/j2ee-system-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-system/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-system
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-server/2.0.2/j2ee-server-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-server/2.0.2/j2ee-server-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-server/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-server
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-security/2.0.2/j2ee-security-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-security/2.0.2/j2ee-security-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-security/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-security
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-deployer/2.0.2/j2ee-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-deployer/2.0.2/j2ee-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko/2.0.2/j2ee-corba-yoko-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko/2.0.2/j2ee-corba-yoko-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/j2ee-corba-yoko
-@dirrm %%T%%/repository/org/apache/geronimo/configs/hot-deployer/2.0.2/hot-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/hot-deployer/2.0.2/hot-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/hot-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/hot-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer/2.0.2/geronimo-gbean-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer/2.0.2/geronimo-gbean-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/geronimo-gbean-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/xml
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/vml
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/TreeV3
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images/Tree
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/images
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/buttons
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2/Dialog
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates/Editor2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/templates
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/svg
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/zh-cn
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/ja
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls/fr
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/nls
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/html
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates/images
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine/templates
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/demoEngine
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget/Editor2Plugin
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/widget
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/validate
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uuid
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/uri
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/undo
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/text
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/string
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/storage/java
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/storage
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/selection
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/rpc
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/namespaces
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/math
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/logging
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lfx
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang/timing
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/lang
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/io
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/ja
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/hi
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/en-us
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls/en
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency/nls
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/currency
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/zh-tw
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/zh-hk
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/zh-cn
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/zh
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/sv
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/pt-br
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/pt
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/nl
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/ko
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/ja
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/it
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/hu
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/fr
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/fi
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/es
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/en
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls/de
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar/nls
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n/calendar
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/i18n
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html/images
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/html
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/graphics/color
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/graphics
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx/color
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/gfx
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/flash/flash8
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/flash/flash6
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/flash
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/event
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/dnd
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/debug
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/date
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/provider
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old/format
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/old
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data/core
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/data
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/crypto
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/collections
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/vml
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting/svg
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/charting
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/cal
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src/animation
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/src
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/WEB-INF/lib
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/WEB-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2/dojo-jetty6-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/dojo-jetty6
-@dirrm %%T%%/repository/org/apache/geronimo/configs/cxf/2.0.2/cxf-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/cxf/2.0.2/cxf-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/cxf/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/cxf-deployer/2.0.2/cxf-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/cxf-deployer/2.0.2/cxf-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/cxf-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/cxf-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/cxf
-@dirrm %%T%%/repository/org/apache/geronimo/configs/connector-deployer/2.0.2/connector-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/connector-deployer/2.0.2/connector-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/connector-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/connector-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/clustering/2.0.2/clustering-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/clustering/2.0.2/clustering-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/clustering/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/clustering
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client/2.0.2/client-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client/2.0.2/client-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-transaction/2.0.2/client-transaction-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-transaction/2.0.2/client-transaction-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-transaction/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-transaction
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-system/2.0.2/client-system-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-system/2.0.2/client-system-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-system/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-system
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-security/2.0.2/client-security-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-security/2.0.2/client-security-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-security/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-security
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-deployer/2.0.2/client-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-deployer/2.0.2/client-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-corba-yoko/2.0.2/client-corba-yoko-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-corba-yoko/2.0.2/client-corba-yoko-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-corba-yoko/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client-corba-yoko
-@dirrm %%T%%/repository/org/apache/geronimo/configs/client
-@dirrm %%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/WEB-INF/lib
-@dirrm %%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/WEB-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2/ca-helper-jetty-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/ca-helper-jetty
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis2/2.0.2/axis2-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis2/2.0.2/axis2-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis2/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis2-deployer/2.0.2/axis2-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis2-deployer/2.0.2/axis2-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis2-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis2-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis/2.0.2/axis-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis/2.0.2/axis-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis-deployer/2.0.2/axis-deployer-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis-deployer/2.0.2/axis-deployer-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis-deployer/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis-deployer
-@dirrm %%T%%/repository/org/apache/geronimo/configs/axis
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/rar/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/rar
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2/activemq-ra-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-ra/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-ra
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-broker/2.0.2/activemq-broker-2.0.2.car/META-INF
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-broker/2.0.2/activemq-broker-2.0.2.car
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-broker/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/configs/activemq-broker
-@dirrm %%T%%/repository/org/apache/geronimo/configs
-@dirrm %%T%%/repository/org/apache/geronimo/components/geronimo-transaction/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/components/geronimo-transaction
-@dirrm %%T%%/repository/org/apache/geronimo/components/geronimo-connector/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/components/geronimo-connector
-@dirrm %%T%%/repository/org/apache/geronimo/components
-@dirrm %%T%%/repository/org/apache/geronimo/applications/geronimo-uddi-db/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/applications/geronimo-uddi-db
-@dirrm %%T%%/repository/org/apache/geronimo/applications/console/geronimo-console-core/2.0.2
-@dirrm %%T%%/repository/org/apache/geronimo/applications/console/geronimo-console-core
-@dirrm %%T%%/repository/org/apache/geronimo/applications/console
-@dirrm %%T%%/repository/org/apache/geronimo/applications
-@dirrm %%T%%/repository/org/apache/geronimo
-@dirrm %%T%%/repository/org/apache/derby/derbytools/10.2.2.0
-@dirrm %%T%%/repository/org/apache/derby/derbytools
-@dirrm %%T%%/repository/org/apache/derby/derbynet/10.2.2.0
-@dirrm %%T%%/repository/org/apache/derby/derbynet
-@dirrm %%T%%/repository/org/apache/derby/derbyclient/10.2.2.0
-@dirrm %%T%%/repository/org/apache/derby/derbyclient
-@dirrm %%T%%/repository/org/apache/derby/derby/10.2.2.0
-@dirrm %%T%%/repository/org/apache/derby/derby
-@dirrm %%T%%/repository/org/apache/derby
-@dirrm %%T%%/repository/org/apache/cxf/cxf-tools-common/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-tools-common
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-transports-http/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-transports-http
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-frontend-simple/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-frontend-simple
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-frontend-jaxws/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-frontend-jaxws
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-databinding-jaxb/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-databinding-jaxb
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-core/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-core
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-bindings-xml/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-bindings-xml
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-bindings-soap/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-rt-bindings-soap
-@dirrm %%T%%/repository/org/apache/cxf/cxf-common-utilities/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-common-utilities
-@dirrm %%T%%/repository/org/apache/cxf/cxf-api/2.0.2-incubator
-@dirrm %%T%%/repository/org/apache/cxf/cxf-api
-@dirrm %%T%%/repository/org/apache/cxf
-@dirrm %%T%%/repository/org/apache/bcel/bcel/5.2
-@dirrm %%T%%/repository/org/apache/bcel/bcel
-@dirrm %%T%%/repository/org/apache/bcel
-@dirrm %%T%%/repository/org/apache/axis2/axis2-saaj/1.3
-@dirrm %%T%%/repository/org/apache/axis2/axis2-saaj-api/1.3
-@dirrm %%T%%/repository/org/apache/axis2/axis2-saaj-api
-@dirrm %%T%%/repository/org/apache/axis2/axis2-saaj
-@dirrm %%T%%/repository/org/apache/axis2/axis2-metadata/1.3
-@dirrm %%T%%/repository/org/apache/axis2/axis2-metadata
-@dirrm %%T%%/repository/org/apache/axis2/axis2-kernel/1.3
-@dirrm %%T%%/repository/org/apache/axis2/axis2-kernel
-@dirrm %%T%%/repository/org/apache/axis2/axis2-jaxws/1.3
-@dirrm %%T%%/repository/org/apache/axis2/axis2-jaxws-api/1.3
-@dirrm %%T%%/repository/org/apache/axis2/axis2-jaxws-api
-@dirrm %%T%%/repository/org/apache/axis2/axis2-jaxws
-@dirrm %%T%%/repository/org/apache/axis2/axis2-java2wsdl/1.3
-@dirrm %%T%%/repository/org/apache/axis2/axis2-java2wsdl
-@dirrm %%T%%/repository/org/apache/axis2/axis2-adb/1.3
-@dirrm %%T%%/repository/org/apache/axis2/axis2-adb
-@dirrm %%T%%/repository/org/apache/axis2
-@dirrm %%T%%/repository/org/apache/activemq/activemq-core/4.1.1
-@dirrm %%T%%/repository/org/apache/activemq/activemq-core
-@dirrm %%T%%/repository/org/apache/activemq/activeio-core/3.0.0-incubator
-@dirrm %%T%%/repository/org/apache/activemq/activeio-core
-@dirrm %%T%%/repository/org/apache/activemq
-@dirrm %%T%%/repository/org/apache
-@dirrm %%T%%/repository/org
-@dirrm %%T%%/repository/ognl/ognl/2.6.9
-@dirrm %%T%%/repository/ognl/ognl
-@dirrm %%T%%/repository/ognl
-@dirrm %%T%%/repository/net/sourceforge/serp/serp/1.11.0
-@dirrm %%T%%/repository/net/sourceforge/serp/serp
-@dirrm %%T%%/repository/net/sourceforge/serp
-@dirrm %%T%%/repository/net/sourceforge
-@dirrm %%T%%/repository/net
-@dirrm %%T%%/repository/juddi/juddi/0.9rc4
-@dirrm %%T%%/repository/juddi/juddi
-@dirrm %%T%%/repository/juddi
-@dirrm %%T%%/repository/jstl/jstl/1.2
-@dirrm %%T%%/repository/jstl/jstl
-@dirrm %%T%%/repository/jstl
-@dirrm %%T%%/repository/jline/jline/0.9.9
-@dirrm %%T%%/repository/jline/jline
-@dirrm %%T%%/repository/jline
-@dirrm %%T%%/repository/jdom/jdom/1.0
-@dirrm %%T%%/repository/jdom/jdom
-@dirrm %%T%%/repository/jdom
-@dirrm %%T%%/repository/jaxen/jaxen/1.1-beta-10
-@dirrm %%T%%/repository/jaxen/jaxen
-@dirrm %%T%%/repository/jaxen
-@dirrm %%T%%/repository/javax/xml/bind/jaxb-api/2.0
-@dirrm %%T%%/repository/javax/xml/bind/jaxb-api
-@dirrm %%T%%/repository/javax/xml/bind
-@dirrm %%T%%/repository/javax/xml
-@dirrm %%T%%/repository/javax
-@dirrm %%T%%/repository/dwr/dwr/1.1.3
-@dirrm %%T%%/repository/dwr/dwr
-@dirrm %%T%%/repository/dwr
-@dirrm %%T%%/repository/commons-logging/commons-logging/1.0.4
-@dirrm %%T%%/repository/commons-logging/commons-logging
-@dirrm %%T%%/repository/commons-logging
-@dirrm %%T%%/repository/commons-lang/commons-lang/2.0
-@dirrm %%T%%/repository/commons-lang/commons-lang
-@dirrm %%T%%/repository/commons-lang
-@dirrm %%T%%/repository/commons-jexl/commons-jexl/1.1
-@dirrm %%T%%/repository/commons-jexl/commons-jexl
-@dirrm %%T%%/repository/commons-jexl
-@dirrm %%T%%/repository/commons-io/commons-io/1.1
-@dirrm %%T%%/repository/commons-io/commons-io
-@dirrm %%T%%/repository/commons-io
-@dirrm %%T%%/repository/commons-httpclient/commons-httpclient/3.0.1
-@dirrm %%T%%/repository/commons-httpclient/commons-httpclient
-@dirrm %%T%%/repository/commons-httpclient
-@dirrm %%T%%/repository/commons-fileupload/commons-fileupload/1.1.1
-@dirrm %%T%%/repository/commons-fileupload/commons-fileupload
-@dirrm %%T%%/repository/commons-fileupload
-@dirrm %%T%%/repository/commons-discovery/commons-discovery/0.4
-@dirrm %%T%%/repository/commons-discovery/commons-discovery
-@dirrm %%T%%/repository/commons-discovery
-@dirrm %%T%%/repository/commons-digester/commons-digester/1.8
-@dirrm %%T%%/repository/commons-digester/commons-digester
-@dirrm %%T%%/repository/commons-digester
-@dirrm %%T%%/repository/commons-collections/commons-collections/3.1
-@dirrm %%T%%/repository/commons-collections/commons-collections
-@dirrm %%T%%/repository/commons-collections
-@dirrm %%T%%/repository/commons-codec/commons-codec/1.3
-@dirrm %%T%%/repository/commons-codec/commons-codec
-@dirrm %%T%%/repository/commons-codec
-@dirrm %%T%%/repository/commons-cli/commons-cli/1.0
-@dirrm %%T%%/repository/commons-cli/commons-cli
-@dirrm %%T%%/repository/commons-cli
-@dirrm %%T%%/repository/commons-beanutils/commons-beanutils/1.6.1
-@dirrm %%T%%/repository/commons-beanutils/commons-beanutils
-@dirrm %%T%%/repository/commons-beanutils
-@dirrm %%T%%/repository/com/sun/xml/ws/jaxws-tools/2.0
-@dirrm %%T%%/repository/com/sun/xml/ws/jaxws-tools
-@dirrm %%T%%/repository/com/sun/xml/ws/jaxws-rt/2.0
-@dirrm %%T%%/repository/com/sun/xml/ws/jaxws-rt
-@dirrm %%T%%/repository/com/sun/xml/ws
-@dirrm %%T%%/repository/com/sun/xml/messaging/saaj/saaj-impl/1.3
-@dirrm %%T%%/repository/com/sun/xml/messaging/saaj/saaj-impl
-@dirrm %%T%%/repository/com/sun/xml/messaging/saaj
-@dirrm %%T%%/repository/com/sun/xml/messaging
-@dirrm %%T%%/repository/com/sun/xml/bind/jaxb-xjc/2.0.5
-@dirrm %%T%%/repository/com/sun/xml/bind/jaxb-xjc
-@dirrm %%T%%/repository/com/sun/xml/bind/jaxb-impl/2.0.5
-@dirrm %%T%%/repository/com/sun/xml/bind/jaxb-impl
-@dirrm %%T%%/repository/com/sun/xml/bind
-@dirrm %%T%%/repository/com/sun/xml
-@dirrm %%T%%/repository/com/sun
-@dirrm %%T%%/repository/com
-@dirrm %%T%%/repository/backport-util-concurrent/backport-util-concurrent/2.2
-@dirrm %%T%%/repository/backport-util-concurrent/backport-util-concurrent
-@dirrm %%T%%/repository/backport-util-concurrent
-@dirrm %%T%%/repository/axis/axis/1.4
-@dirrm %%T%%/repository/axis/axis
-@dirrm %%T%%/repository/axis
-@dirrm %%T%%/repository/asm/asm/2.2.3
-@dirrm %%T%%/repository/asm/asm-commons/2.2.3
-@dirrm %%T%%/repository/asm/asm-commons
-@dirrm %%T%%/repository/asm/asm
-@dirrm %%T%%/repository/asm
-@dirrm %%T%%/repository/annogen/annogen/0.1.0
-@dirrm %%T%%/repository/annogen/annogen
-@dirrm %%T%%/repository/annogen
-@dirrm %%T%%/repository
-@dirrm %%T%%/lib/endorsed
-@dirrm %%T%%/lib
-@dirrm %%T%%/deploy
-@dirrm %%T%%/bin
-@dirrm %%T%%

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20080228205542.13B99284B5>