ports/154946: [maintainer-update][patch] databases/jasperserver: update jasperserver to 4.0.0

Jason Helfman jhelfman at e-e.com
Wed Feb 23 01:40:13 UTC 2011


The following reply was made to PR ports/154946; it has been noted by GNATS.

From: Jason Helfman <jhelfman at e-e.com>
To: bug-followup at freebsd.org
Cc: ohauer at freebsd.org
Subject: Re: ports/154946: [maintainer-update][patch] databases/jasperserver:
 update jasperserver to 4.0.0
Date: Tue, 22 Feb 2011 17:35:18 -0800

 * Added PostgreSQL Support based on vendor feedback for pgsql supported versions
 * Added default security credentials for jasperadmin user for postgresql
 * Added additional distribution file (postgreSQL jar)
 
 Index: databases/jasperserver/Makefile
 ===================================================================
 RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/Makefile,v
 retrieving revision 1.1
 diff -u -r1.1 Makefile
 --- databases/jasperserver/Makefile	24 Jan 2011 22:48:48 -0000	1.1
 +++ databases/jasperserver/Makefile	23 Feb 2011 01:18:26 -0000
 @@ -6,13 +6,12 @@
   #
   
   PORTNAME=	jasperserver
 -PORTVERSION=	3.5.0
 +PORTVERSION=	4.0.0
   CATEGORIES=	databases print java
 -MASTER_SITES=	SF/${PORTNAME}/JasperServer/JasperServer%20${PORTVERSION}/:source1 \
 -		http://www.glenbarber.us/ports/databases/${PORTNAME}/:source2
 -DISTFILES=	${PORTNAME}-${PORTVERSION}-src.zip:source1 \
 -		${PORTNAME}-${PORTVERSION}-maven-repository.tar.gz:source2
 -EXTRACT_ONLY=	${PORTNAME}-${PORTVERSION}-src.zip
 +MASTER_SITES=	SF/${PORTNAME}/JasperServer/JasperServer%20${PORTVERSION}/:source1
 +DISTFILES=	jasperreports-server-cp-${PORTVERSION}-src.zip:source1 \
 +		jasperreports-server-cp-${PORTVERSION}-maven-repository.zip:source1
 +EXTRACT_ONLY=	jasperreports-server-cp-${PORTVERSION}-src.zip
   
   MAINTAINER=	jhelfman at experts-exchange.com
   COMMENT=	Open Source Java Reporting Library
 @@ -22,25 +21,27 @@
   LICENSE_COMB=	multi
   LICENSE=	GPLv2 MIT ASL
   
 -SRCDIR=		${WRKDIR}/jasperserver-${PORTVERSION}-src
 +SRCDIR=		${WRKDIR}/jasperreports-server-cp-${PORTVERSION}-src
   PATCH_WRKSRC=	${SRCDIR}
 -WRKSRC=		${WRKDIR}/jasperserver-${PORTVERSION}-src/${PORTNAME}/buildomatic
 -WRKDIR?=	${WRKDIRPREFIX}${.CURDIR}/work
 -SQLSRC=		${WRKDIR}/jasperserver-${PORTVERSION}-src/${PORTNAME}/scripts
 -JS=		${WRKDIR}/jasperserver-${PORTVERSION}-src/${PORTNAME}
 +WRKSRC=		${SRCDIR}/${PORTNAME}/buildomatic
 +WRKDIR=		${WRKDIRPREFIX}${.CURDIR}/work
 +SQLSRC=		${WRKSRC}/install_resources/sql
 +JS=		${SRCDIR}/${PORTNAME}
   JSREPO=		${JS}-repo
 -JSMAVENTAR=	${PORTNAME}-${PORTVERSION}-maven-repository.tar.gz
 +JSMAVENARCH=	jasperreports-server-cp-${PORTVERSION}-maven-repository.zip
   
   NO_WRKSUBDIR=	yes
   USE_JAVA=	yes
   JAVA_VENDOR?=	freebsd
 -JAVA_VERSION?=	1.6+
 +JAVA_VERSION?=	1.6
   USE_ZIP=	yes
   # use own DOS2UNIX in pre-patch, not the one from bsd.port.mk!
   DOS2UNIX_REGEX=	.*(css|dtd|java|js|txt|wsdd|xml|xsl)$$
   
   OPTIONS=	TOMCAT5 "Enable Tomcat 5.x support"	on \
 -		TOMCAT6 "Enable Tomcat 6.x support"	off
 +		TOMCAT6 "Enable Tomcat 6.x support"	off \
 +		MYSQL   "Enable Mysql 5.x support"	on \
 +		POSTGRESQL "Enable PostgreSQL 8.x support" off
   
   REPLACE_FILES=	${JS}/jasperserver-war/src/main/webappAdditions/WEB-INF/web.xml
   REPLACE_LIST_TEMP=	${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
 @@ -52,39 +53,59 @@
   		JSTIMEOUT=${JSTIMEOUT} \
   		PORTNAME=${PORTNAME} \
   		PORTSDIR=${PORTSDIR} \
 -		PORTVERSION=${PORTVERSION}
 +		PORTVERSION=${PORTVERSION} \
 +		SRCDIR=${SRCDIR}
 +
 +PLIST_SUB=	DATABASE=${DATABASE} \
 +		JDBCLOC=${JDBCLOC} \
 +		PORTNAME=${PORTNAME}
   
   .include <bsd.port.options.mk>
   
 -# set a dummy user/passwd and the target database
 -# else the build will fail
 -# We need the native SQL client for several task after installation!
 +.if defined(WITH_MYSQL)
   USE_MYSQL=	yes
   MYNAME?=	root
   MYPASS?=
   DATABASE=	mysql
 -PLIST_SUB+=	JDBC="mysql-connector-java-5.1.5.jar" DATABASE=${DATABASE}
 +PLIST_SUB+=	JDBC="mysql-connector-java-5.1.10.jar"
 +.endif
 +
 +#use version 84, application is certified against this version
 +.if defined(WITH_POSTGRESQL)
 +USE_PGSQL=	yes
 +WANT_PGSQL_VER= 84
 +MYNAME?=	pgsql
 +MYPASS?=	pgsql
 +DATABASE=	postgresql
 +JDBC=	postgresql-8.4-702.jdbc4.jar
 +PLIST_SUB+=	JDBC=${JDBC}
 +MASTER_SITES+=	http://jdbc.postgresql.org/download/:source2
 +DISTFILES+=	postgresql-8.4-702.jdbc4.jar:source2
 +.endif
   
   .if defined(WITH_TOMCAT5)
 -BUILD_DEPENDS+=	tomcat>=5.5.31:${PORTSDIR}/www/tomcat55
 -RUN_DEPENDS+=	tomcat>=5.5.31:${PORTSDIR}/www/tomcat55
   APPHOME?=	${LOCALBASE}/tomcat5.5
 +BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55
 +RUN_DEPENDS+=   ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55
 +APPTYPE=	tomcat5
   JSHOME?=	${APPHOME}/webapps/${PORTNAME}
   PLIST_SUB+=	APP_VERSION="tomcat5.5"
 +JDBCLOC=	common/lib
   .endif
   
   .if defined(WITH_TOMCAT6)
 -BUILD_DEPENDS+=	tomcat>=6.0.29:${PORTSDIR}/www/tomcat6
 -RUN_DEPENDS+=	tomcat>=6.0.29:${PORTSDIR}/www/tomcat6
   APPHOME?=	${LOCALBASE}/apache-tomcat-6.0
 +BUILD_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6
 +RUN_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6
 +APPTYPE=	tomcat6
   JSHOME?=	${APPHOME}/webapps/${PORTNAME}
   PLIST_SUB+=	APP_VERSION="apache-tomcat-6.0"
 +JDBCLOC=	lib
   .endif
   
   DBHOST?=	localhost
   
   APP_PROPERTIES=	${SRCDIR}/${PORTNAME}/buildomatic/default_master.properties
 -JS_PROPERTIES=	${SRCDIR}/${PORTNAME}/buildomatic/js-build.properties
   MAIL_PROPERTIES=${SRCDIR}/${PORTNAME}/buildomatic/build_conf/default/webapp/WEB-INF/js.quartz.properties
   
   JSPORT?=	8080
 @@ -102,6 +123,10 @@
   IGNORE=	you can only define one application server
   .elif ( !defined(WITH_TOMCAT5) && !defined(WITH_TOMCAT6) )
   IGNORE=	choose at least one application server
 +.elif ( defined(WITH_MYSQL) && defined(WITH_POSTGRESQL) )
 +IGNORE=	you can only define one database
 +.elif ( !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL) )
 +IGNORE=	choose at least one database
   .endif
   
   pre-extract:
 @@ -129,22 +154,23 @@
   .endfor
   
   post-extract-script:
 -	@${LN} -fs ${WRKDIR}/.m2 ~/.m2 && ${TAR} -C ${WRKDIR} -xf ${DISTDIR}/${JSMAVENTAR};\
 +	@${LN} -fs ${WRKDIR}/.m2 ~/.m2 && ${UNZIP_CMD} -qq ${DISTDIR}/${JSMAVENARCH} -d ${WRKDIR}/.m2
   
   pre-build:
 -	@${ECHO} "appServerDir = ${APPHOME}" > ${APP_PROPERTIES}
 -	@${ECHO} "dbType = mysql" >> ${APP_PROPERTIES}
 +	@${ECHO} "appServerType = ${APPTYPE}" > ${APP_PROPERTIES}
 +	@${ECHO} "appServerDir = ${APPHOME}" >> ${APP_PROPERTIES}
 +	@${ECHO} "dbType = ${DATABASE}" >> ${APP_PROPERTIES}
   	@${ECHO} "dbUsername = ${MYNAME}" >> ${APP_PROPERTIES}
   	@${ECHO} "dbPassword = ${MYPASS}" >> ${APP_PROPERTIES}
   	@${ECHO} "dbHost = ${DBHOST}" >> ${APP_PROPERTIES}
   
   	@( if [ -f ${LOCALBASE}/bin/mvn ] ; then \
 -		${ECHO} "maven = ${LOCALBASE}/bin/mvn" > ${JS_PROPERTIES} ; \
 +		${ECHO} "maven = ${JAVASHAREDIR}/maven2/bin/mvn" >> ${APP_PROPERTIES} ; \
   		else ${FALSE}; \
   	fi )
 -	@${ECHO} "js-base-path = ${JS}" >> ${JS_PROPERTIES}
 -	@${ECHO} "repo-path = ${JSREPO}">> ${JS_PROPERTIES}
 -	@${CHMOD} 0755 ${SRCDIR}/${PORTNAME}/buildomatic/js-ant ${SRCDIR}/apache-ant/bin/ant
 +	@${ECHO} "js-path = ${JS}" >> ${APP_PROPERTIES}
 +	@${ECHO} "js-pro-path = ${JS}" >> ${APP_PROPERTIES}
 +	@${ECHO} "js-repo-path = ${JSREPO}">> ${APP_PROPERTIES}
   
   do-build:
   	@( cd ${WRKSRC} && ./js-ant clean-config )
 @@ -169,9 +195,14 @@
   
   do-install:
   	@( cd ${WRKSRC} && ./js-ant deploy-webapp-ce )
 -	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/jasperserverCreate-${DATABASE}.ddl ${JSHOME} )
 -	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/jasperserverCreateDefaultSecurity-${DATABASE}.sql ${JSHOME} )
 -	@${INSTALL} -m 640 ${MAIL_PROPERTIES} ${JSHOME}/WEB-INF/
 +	@${INSTALL_DATA} ${FILESDIR}/jasperserverCreateDefaultSecurity-${DATABASE}.sql ${JSHOME}
 +	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/js-create.ddl ${JSHOME} )
 +	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/quartz.ddl ${JSHOME} )
 +	@${INSTALL} -m 440 ${MAIL_PROPERTIES} ${JSHOME}/WEB-INF/
 +
 +.if ( defined(WITH_TOMCAT6) || defined(WITH_TOMCAT5) && !defined(WITH_MYSQL) )
 +	${INSTALL_DATA} ${DISTDIR}/${JDBC} ${APPHOME}/${JDBCLOC}
 +.endif
   
   post-install:
   	@${CAT} ${PKGMESSAGE}
 Index: databases/jasperserver/distinfo
 ===================================================================
 RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/distinfo,v
 retrieving revision 1.1
 diff -u -r1.1 distinfo
 --- databases/jasperserver/distinfo	24 Jan 2011 22:48:48 -0000	1.1
 +++ databases/jasperserver/distinfo	23 Feb 2011 00:05:12 -0000
 @@ -1,4 +1,6 @@
 -SHA256 (jasperserver-3.5.0-src.zip) = 49c5b80884421a2be228137f2714de54ef91fb4f8f51515ad335e3184567e8ac
 -SIZE (jasperserver-3.5.0-src.zip) = 113380131
 -SHA256 (jasperserver-3.5.0-maven-repository.tar.gz) = c6ab3c7e0a3375d2e0c50cfc35503e8f1df1e4e69b15cee050388b1e2249f54d
 -SIZE (jasperserver-3.5.0-maven-repository.tar.gz) = 153649123
 +SHA256 (jasperreports-server-cp-4.0.0-src.zip) = 2795f952b36af74efe8e90baa0d230bce51344abc706f6225661315b269d6e62
 +SIZE (jasperreports-server-cp-4.0.0-src.zip) = 151337059
 +SHA256 (jasperreports-server-cp-4.0.0-maven-repository.zip) = 535342169a6b53466b387670f6bbe8414ed7b0fa12f9734d6ad369144fca2fc5
 +SIZE (jasperreports-server-cp-4.0.0-maven-repository.zip) = 224104077
 +SHA256 (postgresql-8.4-702.jdbc4.jar) = 614727934086a416eaa23425ac5f57df937a258e6d327e6c23e9ff87b11fa138
 +SIZE (postgresql-8.4-702.jdbc4.jar) = 539510
 Index: databases/jasperserver/pkg-plist
 ===================================================================
 RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/pkg-plist,v
 retrieving revision 1.1
 diff -u -r1.1 pkg-plist
 --- databases/jasperserver/pkg-plist	24 Jan 2011 22:48:48 -0000	1.1
 +++ databases/jasperserver/pkg-plist	20 Feb 2011 21:36:15 -0000
 @@ -1,950 +1,1147 @@
 -%%APP_VERSION%%/webapps/jasperserver/META-INF/MANIFEST.MF
 -%%APP_VERSION%%/webapps/jasperserver/META-INF/context.xml
 -%%APP_VERSION%%/webapps/jasperserver/META-INF/foodmartDS-jdbc.xml
 -%%APP_VERSION%%/webapps/jasperserver/META-INF/jasperserverDS-jdbc.xml
 -%%APP_VERSION%%/webapps/jasperserver/META-INF/sugarcrmDS-jdbc.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/application.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-datasource.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-logging.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-olap-connection.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-report-scheduling.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-security.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-web-services.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/JI-menu.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/jasperreports.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/mondrian.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/datasources.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/main.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/metadata.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/panel.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/printable.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/ehcache.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/faces-config.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/dataTypeBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/dataTypeFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/defaultFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/displayOlapModelFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/editFolderBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/editFolderFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/fileResourceBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/fileResourceFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/inputControlsBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/inputControlsFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listOfValuesBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listOfValuesFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listOlapViewsBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listOlapViewsFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listReportsBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listReportsFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/logEventBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/logEventFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/mondrianXmlaSourceBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/mondrianXmlaSourceFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/objectPermissionBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/objectPermissionToRoleFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/objectPermissionToUserFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapClientConnectionBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapClientConnectionFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapSchemaResourceFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapUnitBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapUnitFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapViewListBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapViewListFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/queryBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/queryFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/queryReferenceBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/queryReferenceFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repoAdminBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repoAdminFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportDataSourceBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportDataSourceFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportJobBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportJobFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportSchedulingBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportSchedulingFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportUnitBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportUnitFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repositoryBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repositoryExplorerBean.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repositoryExplorerFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repositoryFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/roleBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/roleEditFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/roleListFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/treeBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/treeFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/userBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/userEditFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/userListFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewOlapModelBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewOlapModelFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewOlapViewFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewReportBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewReportFlow.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/hibernate.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/internal/ja-pro_internal_messages.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/internal/jasperserver.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/internal/jpivot_internal_messages.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jasperserver-servlet.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jasperserver.tld
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jboss-web.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/chart/chart.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/chart/chartpropertiesform.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/chart/chartpropertiesform_no.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/jpivot-tags.tld
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/jpivot-tags.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi/hierarchy-navigator.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi/js-hierarchy-navigator.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi/js-navigator.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi/navigator.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/arialuni.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/make-font.cmd
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/printpropertiesform.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/printpropertiesform_no.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/simhei.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/userconfig.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/saveas/saveas.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/showxml.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/axisform.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/displayform.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/fo_mdxtable.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxcell.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxedit.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxedit_no.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxslicer.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxtable.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxtableEfficient.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxtableLite.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/sortform.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/sortform_no.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/xls_mdxtable.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/toolbar/htoolbar.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/toolbar/vtoolbar.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/js.quartz.base.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/js.quartz.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/AccessDeniedPage.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/CalendarInput.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/DefaultJasperViewer.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/DefaultParametersForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/DisplayOlapModel.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/FillParams.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/InputControlLabel.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/JSErrorPage.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/JSErrorPopup.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ListReports.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ReportTopInputControls.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ReportTopParametersForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/TempView.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ViewOlapModel.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ViewReport.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ViewReportControlsDialog.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ViewReportWithParameters.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/accessDenied.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ajax/RepositoryExplorerAjaxTable.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ajax/ajaxerror.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ajax/ajaxresponse.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/customUI/customTooltip.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/defaultPaginatorLinks.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/editDataTypeForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/editFileResource/editNamingForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/editFileResource/newUploadForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/editFolderForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/editMondrianXmlaSourceForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/exporters/csvExportParams.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/exporters/excelExportParams.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/exporters/swfExport.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/fileResourceFlow/resourceNamingForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/fileResourceFlow/resourceUploadForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/flowError.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/flowRemoveError.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/heartbeatOptin.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/heartbeatSendClientInfo.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/home.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/inputControls/controlNamingAndType.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/inputControls/listOfValues.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/inputControls/queryExtraData.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/inputControls/singleOrMultiValue.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/listOfValues/lovEditForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/listOfValues/lovItemsEditForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/listOlapViews.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/logEvent/eventList.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/logEvent/viewEvent.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/log_settings.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/login.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/loginError.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/login_welcome.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/menutest.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/menutestr.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/objectPermission/objPermissionToRole.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/objectPermission/objPermissionToUser.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olap/JPErrorPage.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olap/busy.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olap/empty.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olap/error.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olap/flush.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olap/properties.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olap/viewOlap.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olap/viewOlapOrig.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapDataSourceFlow/chooseSource.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapDataSourceFlow/chooseType.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapDataSourceFlow/jdbcPropsForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapDataSourceFlow/jndiPropsForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/chooseConnectionSource.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/chooseConnectionType.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/connectionNamingForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/connectionValidationConfirmation.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/inputControlSource.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/listResources.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/mdxQueryForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/nameLabelDescForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/schemaUploadForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/validationConfirmation.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow/xmlaConnectionForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapXmlaDefinitionFlow/olapXmlaDefinition.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/query/editQueryForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/query/editQueryTextForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/query/querySource.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repoAdmin/defaultView.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportDataSourceFlow/beanPropsForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportDataSourceFlow/chooseSource.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportDataSourceFlow/chooseType.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportDataSourceFlow/customPropsForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportDataSourceFlow/jdbcPropsForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportDataSourceFlow/jndiPropsForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportScheduling/reportJobDetails.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportScheduling/reportJobOutput.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportScheduling/reportJobParameters.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportScheduling/reportJobTrigger.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportScheduling/reportJobs.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportUnitFlow/inputControlSource.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportUnitFlow/jrXmlUploadForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportUnitFlow/listResources.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportUnitFlow/nameLabelDescForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportUnitFlow/reportAndControlForm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportUnitFlow/validationConfirmation.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/RepositoryExplorerFolderPopUpMenu.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/RepositoryExplorerResourcePopUpMenu.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/addNewResourceDropDownMenu.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/createFolderDialog.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/defaultView.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/deleteResourceError.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/deletionConfirm.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/dragAndDrop.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/missingObjectDialog.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/missingParentDialog.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/moveOrCopyError.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/pasteConfirmDialog.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/pathNotVisible.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/repositoryExplorer.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository/resourceProperties.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/rolesFlow/roleCreator.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/rolesFlow/roleEditor.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/rolesFlow/roleManager.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/rolesFlow/roleViewer.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/userFlow/common.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/userFlow/userCreator.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/userFlow/userEditor.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/userFlow/userManager.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/userFlow/userViewer.jsp
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/FoodMart.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.ant.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.antlr.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.asm.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.cglib.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.commons.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.dom4j.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.ecache.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.groovy.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.hibernate.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.hsqldb.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.itext.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jasperreports.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jcommon.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jfreechart.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jpivot.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.json.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jta.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.log4j.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.mondrian.html
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.nanotree.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.pngencoder.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.prototype.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.spring.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.wcf.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.xalan.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.xerces.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.xml-api.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/acegi-security-1.0.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/activation-1.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/antlr-2.7.6.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/aopalliance-1.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/asm-1.5.3.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/asm-attrs-1.5.3.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/avalon-framework-cvs-20020806.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/axis-1.3.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/axis-jaxrpc-1.3.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/axis-saaj-1.3.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/backport-util-concurrent-2.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/barbecue-1.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-1.5-fop-0.20-5.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcmail-jdk14-136.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcprov-jdk14-136.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/castor-1.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/cglib-2.1_3.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-beanutils-1.7.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-cli-1.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-codec-1.4.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-collections-3.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-dbcp-1.2.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-digester-1.7.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-discovery-0.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-fileupload-1.1.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-httpclient-3.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-io-1.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-lang-2.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-logging-1.0.4.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-math-1.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-pool-1.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-vfs-1.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/dom4j-1.6.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ehcache-1.2.3.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/eigenbase-properties-1.1.0.10924.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/eigenbase-resgen-1.3.0.11873.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/eigenbase-xom-1.3.0.11999.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/fop-0.20.5.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/groovy-all-minimal-1.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/hibernate-3.2.1.ga.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/iReport-utils-2.0.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/itext-2.1.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jai_codec-1.1_mr.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jai_core-1.1_mr.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jakarta-regexp-1.4.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-chart-themes-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-ofc-component-0.0.2.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-common-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-common-impl-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-engine-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-engine-impl-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-metadata-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-metadata-impl-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-common-ws-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-export-tool-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-repository-hibernate-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-war-jar-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-ws-server-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/javacup-0.10k.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/javassist-3.7.ga.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jaxen-1.1-beta-8.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jcommon-1.0.15.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jdom-1.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jdtcore-3.1.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jfreechart-1.0.12.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ji-jpivot-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ji-wcf-3.5.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jsf-api-1.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/json-org-1.0.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jstl-1.1.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jta-1.0.1B.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jxl-2.6.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/log4j-1.2.12.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/mail-1.4.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/mondrian-3.0.4.11371-Jaspersoft.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/mondrian.dtd
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ognl-2.7.3.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/olap4j-0.9.7.126.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/oro-2.0.8.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/png-encoder-1.5.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/quartz-1.5.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/sitemesh-2.2.1-JasperSoft.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-2.0.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-beans-2.0.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-binding-1.0.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-context-2.0.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-core-2.0.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-dao-2.0.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-hibernate3-2.0.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-jdbc-2.0.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-web-2.0.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-webflow-1.0.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/standard-1.1.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/wsdl4j-1.5.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xalan-2.4.1.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xercesImpl-2.6.2.jar
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/log4j.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/logs/readme.txt
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/mondrian.properties
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/pdfFontBeans.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/queries/FoodMart.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/server-config.wsdd
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/sitemesh.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/spring.tld
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/catedit.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/changeorder.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/confirm.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/controls-readonly.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/controls.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/fo_xtable.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/htoolbar.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/identity.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/popup.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/showxml.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/tableproperties.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/tableproperties_no.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/vtoolbar.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/wcf-tags.tld
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/wcf-tags.tld_wcf
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/wcf.dtd
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/wcf.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xform.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xls_xtable.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xtabbed.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xtable.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xtree.xsl
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/web.xml
 -%%APP_VERSION%%/webapps/jasperserver/WEB-INF/weblogic.xml
 -%%APP_VERSION%%/webapps/jasperserver/cal/calendar-setup.js
 -%%APP_VERSION%%/webapps/jasperserver/cal/calendar-win2k-1.css
 -%%APP_VERSION%%/webapps/jasperserver/cal/calendar.js
 -%%APP_VERSION%%/webapps/jasperserver/cal/calendar.jsp
 -%%APP_VERSION%%/webapps/jasperserver/externalResource.htm
 -%%APP_VERSION%%/webapps/jasperserver/favicon.ico
 -%%APP_VERSION%%/webapps/jasperserver/images/addRole.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/addRoleDisabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/addRoleHover.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/alias.cur
 -%%APP_VERSION%%/webapps/jasperserver/images/arrow_down.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/arrow_up.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/bottom_left.PNG
 -%%APP_VERSION%%/webapps/jasperserver/images/bottom_right.PNG
 -%%APP_VERSION%%/webapps/jasperserver/images/cal.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/clearValue-dis.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/clearValue.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/clock.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/close.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/copy.cur
 -%%APP_VERSION%%/webapps/jasperserver/images/copy_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/copy_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/csv.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/dbtn_bg.png
 -%%APP_VERSION%%/webapps/jasperserver/images/delete1.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/delete_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/delete_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/design_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/design_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/drag_1.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/drag_2.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/drag_folder.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/drop_here_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/drop_here_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/edit_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/edit_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/first-d.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/first.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/folder_permissions_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/folder_permissions_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/gold-gradient.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/gold-gradient_flipped.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/invalidField.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/jasperforge-logo.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/jasperreports-flash-3.0.0.swf
 -%%APP_VERSION%%/webapps/jasperserver/images/jaspersoft-logo.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/jaspersoft-logo.png
 -%%APP_VERSION%%/webapps/jasperserver/images/last-d.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/last.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/login-bottom-left.png
 -%%APP_VERSION%%/webapps/jasperserver/images/login-bottom-middle.png
 -%%APP_VERSION%%/webapps/jasperserver/images/login-bottom-right.png
 -%%APP_VERSION%%/webapps/jasperserver/images/login-center-left.png
 -%%APP_VERSION%%/webapps/jasperserver/images/login-center-right.png
 -%%APP_VERSION%%/webapps/jasperserver/images/login-center.png
 -%%APP_VERSION%%/webapps/jasperserver/images/login-top-left.png
 -%%APP_VERSION%%/webapps/jasperserver/images/login-top-middle.png
 -%%APP_VERSION%%/webapps/jasperserver/images/login-top-right.png
 -%%APP_VERSION%%/webapps/jasperserver/images/mouse.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/move_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/move_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/new_folder_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/new_folder_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/new_resource_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/new_resource_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/next-d.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/next.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/no_drop.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/pdf.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/pixel.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/popup-bottom-left.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/popup-bottom-middle.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/popup-bottom-right.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/popup-center-left.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/popup-center-middle.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/popup-center-right.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/popup-top-left.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/popup-top-middle.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/popup-top-right.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/prev-d.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/prev.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/properties_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/properties_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/re_menu_bottom_left.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/re_menu_bottom_middle.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/re_menu_bottom_right.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/re_menu_center_left.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/re_menu_center_middle.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/re_menu_center_right.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/re_menu_top_left.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/re_menu_top_middle.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/re_menu_top_right.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/removeRole.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/removeRoleDisabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/removeRoleHover.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/report_options.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/return_to_repo.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/rtf.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/runreport.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/schedule.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/schedule_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/schedule_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/send_output_disabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/send_output_enabled.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/sflogo.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/spinner_moz.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/swapLeftArrowDisabled.png
 -%%APP_VERSION%%/webapps/jasperserver/images/swapLeftArrowOver.png
 -%%APP_VERSION%%/webapps/jasperserver/images/swapLeftArrowUp.png
 -%%APP_VERSION%%/webapps/jasperserver/images/swapRightArrowDisabled.png
 -%%APP_VERSION%%/webapps/jasperserver/images/swapRightArrowOver.png
 -%%APP_VERSION%%/webapps/jasperserver/images/swapRightArrowUp.png
 -%%APP_VERSION%%/webapps/jasperserver/images/swf.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/top_left.PNG
 -%%APP_VERSION%%/webapps/jasperserver/images/top_right.PNG
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/folder_closed.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/folder_open.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/help_16x16.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/lastnode.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/line.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/minus.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/minus_last.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/minus_last_no_root.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/minus_no_root.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/minus_nolines.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/page16x16.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/plus.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/plus_last.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/plus_last_no_root.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/plus_no_root.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/plus_nolines.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/t.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/t_no_root.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/user_16x16.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/treeimages/white.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/x-button.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/x.gif
 -%%APP_VERSION%%/webapps/jasperserver/images/xls.gif
 -%%APP_VERSION%%/webapps/jasperserver/index.htm
 -%%APP_VERSION%%/webapps/jasperserver/inputControl.htm
 -%%APP_VERSION%%/webapps/jasperserver/j/Thumbs.db
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-ab.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-auf.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-gdown.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-gup.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-ndown.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-none.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-nup.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-ohne.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-rdown.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-rup.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/arrow-up.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/collapse-all-d.png
 -%%APP_VERSION%%/webapps/jasperserver/j/collapse-all-down.png
 -%%APP_VERSION%%/webapps/jasperserver/j/collapse-all-up.png
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-member-collapse.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-member-expand.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-member-other.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-position-collapse.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-position-expand.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-position-other.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-replace-collapse.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-replace-expand.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-replace-other.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/drill-through.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/expand-all-d.png
 -%%APP_VERSION%%/webapps/jasperserver/j/expand-all-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/expand-all-down.png
 -%%APP_VERSION%%/webapps/jasperserver/j/expand-all-up.png
 -%%APP_VERSION%%/webapps/jasperserver/j/filter-nochange.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/filter-stepslope.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/filter-transient.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/mdxtable.css
 -%%APP_VERSION%%/webapps/jasperserver/j/sort-current-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/sort-current-up.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/sort-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/sort-natural.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/sort-other-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/sort-other-up.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/sort-up.gif
 -%%APP_VERSION%%/webapps/jasperserver/j/zoom-out-all-d.png
 -%%APP_VERSION%%/webapps/jasperserver/j/zoom-out-all-down.png
 -%%APP_VERSION%%/webapps/jasperserver/j/zoom-out-all-up.png
 -%%APP_VERSION%%/webapps/jasperserver/j/zoom_in.cur
 -%%APP_VERSION%%/webapps/jasperserver/j/zoom_out.cur
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/ja-pro.js
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/cat-available.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/cat-visible.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/column.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/empty.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/filter.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/functions.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/level.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/mdxnavi.css
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/properties.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/row.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/showsel.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/Thumbs.db
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-ab.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-auf.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-gdown.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-gup.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-ndown.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-none.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-nup.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-ohne.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-rdown.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-rup.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-up.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/collapse-all-d.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/collapse-all-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/collapse-all-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-member-collapse.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-member-expand.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-member-other.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-position-collapse.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-position-expand.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-position-other.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-replace-collapse.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-replace-expand.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-replace-other.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-through.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/expand-all-d.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/expand-all-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/expand-all-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/expand-all-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/filter-nochange.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/filter-stepslope.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/filter-transient.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/mdxtable.css
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-current-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-current-up.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-natural.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-other-down.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-other-up.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-up.gif
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom-out-all-d.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom-out-all-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom-out-all-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom_in.cur
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom_out.cur
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/admin-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/admin-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/bookmark-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/bookmark-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-config-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-config-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-new-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-new-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chartoptions-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chartoptions-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/cube-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/cube-new-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/cube-new-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/cube-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/debug-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/debug-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/displayoptions-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/displayoptions-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/edit-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/edit-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/empty-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/empty-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-config-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-config-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-new-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-new-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/filter-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/filter-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/hide-spans-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/hide-spans-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/level-style-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/level-style-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/mdx-edit-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/mdx-edit-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/mdxquery-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/mdxquery-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/member-selection-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/member-selection-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-member-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-member-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-position-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-position-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-replace-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-replace-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-through-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-through-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/non-empty-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/non-empty-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/outputopts-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/outputopts-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/param-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/param-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-config-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-config-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-new-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-new-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/properties-config-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/properties-config-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/properties-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/properties-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/reload-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/reload-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/reset-query-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/reset-query-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-as-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-as-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-dis-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-dis-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/showempty-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/showempty-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/sort-asc-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/sort-asc-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/sortacross-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/sortacross-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/swap-axes-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/swap-axes-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/swapaxes-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/swapaxes-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/table-config-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/table-config-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/table-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/table-up.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/zoom-down.png
 -%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/zoom-up.png
 -%%APP_VERSION%%/webapps/jasperserver/openflashchart/LICENSE-open-flash-chart.txt
 -%%APP_VERSION%%/webapps/jasperserver/openflashchart/LICENSE-swfobject.txt
 -%%APP_VERSION%%/webapps/jasperserver/openflashchart/README.txt
 -%%APP_VERSION%%/webapps/jasperserver/openflashchart/expressInstall.swf
 -%%APP_VERSION%%/webapps/jasperserver/openflashchart/open-flash-chart.swf
 -%%APP_VERSION%%/webapps/jasperserver/openflashchart/swfobject.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/LinkButton.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/ListBox.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/SearchTextBox.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/ajax.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/checkbox-utils.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/common-utils.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/common.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/customTooltip.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/dialog.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/drag.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/edition.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/error.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/jasperserver.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/nanotree.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/prototype.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/repositoryExplorer.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/repositoryExplorerDragAndDrop.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/rootObjectModifier.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/tabs.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/toolbarButtons.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/treesupport.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/basemanager.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/data.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/listModel.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/manager.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/message-utils.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/rolemanager/roleCreator.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/rolemanager/roleEditor.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/rolemanager/roleManager.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/rolemanager/roleViewer.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/tenantTree.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/usermanager/userCreator.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/usermanager/userEditor.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/usermanager/userManager.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/usermanager/userViewer.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/utils.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/validator.js
 -%%APP_VERSION%%/webapps/jasperserver/scripts/view-report.js
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/SearchTextBox.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/base.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/customtooltip.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/dialog.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/header.js
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/manager.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/manager/editor.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/manager/ie-specific.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/manager/ie7-specific.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/manager/userCreator.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/std_treelook.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/styles.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/stylesheet.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/tabs.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/toolbarButtons.css
 -%%APP_VERSION%%/webapps/jasperserver/stylesheets/userManager.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/cal.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/calendar.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/calendar.js
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/close.gif
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/divider.gif
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/drop1.gif
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/drop2.gif
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/left1.gif
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/left2.gif
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/right1.gif
 -%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/right2.gif
 -%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/category1.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/category2.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/category3.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/empty.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/xcatedit.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/cut.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/move-down.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/move-empty.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/move-up.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/paste-after.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/paste-before.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/uncut.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/form/cancel.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/form/ok.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/form/xform.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/pagestack/pagestack.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/popup/popup.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/popup/popup.js
 -%%APP_VERSION%%/webapps/jasperserver/wcf/scroller.js
 -%%APP_VERSION%%/webapps/jasperserver/wcf/status/status.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tabbed/current.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tabbed/other.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tabbed/xtabbed.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/csv16.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/edit.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/gotopage.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-first-down.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-first.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-last-down.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-last.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-next-down.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-next.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-prev-down.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-prev.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/select.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/sort-ac.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/sort-an.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/sort-dc.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/sort-dn.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/table/xtable.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/toolbar/button-down.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/toolbar/button-up.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/accept.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/cancel.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/collapse.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/delete.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/expand.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/leaf.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/select0.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/select1.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/unbound.png
 -%%APP_VERSION%%/webapps/jasperserver/wcf/tree/xtree.css
 -%%APP_VERSION%%/webapps/jasperserver/wcf/wcf.css
 -%%APP_VERSION%%/webapps/jasperserver/jasperserverCreate-%%DATABASE%%.ddl
 -%%APP_VERSION%%/webapps/jasperserver/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql
 -%%APP_VERSION%%/common/lib/%%JDBC%%
 - at exec if [ -f %D/%%APP_VERSION%%/common/lib/%%JDBC%% ]; then /bin/chmod a+r %D/%%APP_VERSION%%/common/lib/%%JDBC%%; else exit 1; fi
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/tree
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/toolbar
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/table
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/tabbed
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/status
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/popup
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/pagestack
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/form
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/changeorder
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/catedit
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/calendar
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/wcf
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/stylesheets/manager
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/stylesheets
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/usermanager
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles/rolemanager
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/usersandroles
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/scripts
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/openflashchart
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot/table
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot/navi
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/j
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/images/treeimages
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/images
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/cal
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/queries
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/logs
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/userFlow
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/rolesFlow
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repository
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportUnitFlow
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportScheduling
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/reportDataSourceFlow
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/repoAdmin
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/query
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapXmlaDefinitionFlow
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapUnitFlow
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olapDataSourceFlow
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/olap
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/objectPermission
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/logEvent
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/listOfValues
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/inputControls
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/fileResourceFlow
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/exporters
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/editFileResource
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/customUI
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ajax
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/toolbar
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/saveas
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/chart
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/internal
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF
 - at dirrm %%APP_VERSION%%/webapps/jasperserver/META-INF
 - at dirrm %%APP_VERSION%%/webapps/jasperserver
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/MANIFEST.MF
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/context.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/foodmartDS-jdbc.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/jasperserverDS-jdbc.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/sugarcrmDS-jdbc.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocChart.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocCrosstab.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocTable.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-dashboard.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-navigation.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-search.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-cascade.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-events-logging.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-logging.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-olap-connection.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-report-scheduling.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-search.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-security-web.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-security.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-themes.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-themes.xml.orig
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-web-services.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-webHelp.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-webapp.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/ehcache-hibernate.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/jasperreports.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/mondrian.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/themes/default.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/datasources.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/decorator.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/decoratorCommonComponents.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/decoratorCommonImports.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/decoratorSample.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/emptyDecorator.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/main.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/metadata.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/panel.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/printable.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/withoutDecorator.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/ehcache.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/faces-config.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/addDataSourceFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/addFileResourceFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/addInputControlFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/addListOfValuesFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/dataTypeBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/dataTypeFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/defaultFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/displayOlapModelFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/editFolderBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/editFolderFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/fileResourceBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/fileResourceFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/inputControlsBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/inputControlsFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listOfValuesBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listOfValuesFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listOlapViewsBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listOlapViewsFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listReportsBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/logEventBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/logEventFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/mondrianXmlaSourceBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/mondrianXmlaSourceFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapClientConnectionBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapClientConnectionFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapSchemaResourceFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapUnitBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapUnitFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapViewListBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/queryBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/queryFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/queryReferenceBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/queryReferenceFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/removedListReportsFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/removedOlapViewListFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/removedRepositoryExplorerFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repoAdminBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repoAdminFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportDataSourceBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportDataSourceFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportJobBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportJobFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportSchedulingBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportSchedulingFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportUnitBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportUnitFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repositoryBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repositoryExplorerBean.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repositoryFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repositorySearchBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/resourceActionBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/resourceActionFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/roleBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/roleListFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/sampleFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/searchBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/searchFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/spring-config.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/tiles2Flow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/treeBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/treeFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/userBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/userListFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewOlapModelBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewOlapModelFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewOlapViewFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewReportBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewReportFlow.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/hibernate.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/internal/ja-pro_internal_messages.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/internal/jasperserver.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/internal/jpivot_internal_messages.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jasperserver-servlet.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jasperserver.tld
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jboss-web.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/chart/chart.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/chart/chartpropertiesform.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/chart/chartpropertiesform_no.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/jpivot-tags.tld
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/jpivot-tags.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi/hierarchy-navigator.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi/js-hierarchy-navigator.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi/js-navigator.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi/navigator.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/arialuni.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/make-font.cmd
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/printpropertiesform.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/printpropertiesform_no.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/simhei.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/userconfig.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/saveas/saveas.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/showxml.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/axisform.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/displayform.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/fo_mdxtable.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxcell.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxedit.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxedit_no.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxslicer.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxtable.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxtableEfficient.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxtableLite.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/sortform.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/sortform_no.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/xls_mdxtable.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/toolbar/htoolbar.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/toolbar/vtoolbar.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.jdbc.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.quartz.base.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.quartz.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.scheduling.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.spring.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax/ajaxerror.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax/ajaxresponse.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls/controlNamingAndType.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls/listOfValues.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls/queryExtraData.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls/singleOrMultiValue.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/listOfValues/lovEditForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/listOfValues/lovItemsEditForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/CalendarInput.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/ListReports.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/about/about.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocate.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocate.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocateState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocate.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocateState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/connectionType.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/connectionTypeState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisView/analysisViewNaming.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisView/analysisViewNamingState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisView/mdxQuery.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceBean.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceCustom.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceJDBC.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceJNDI.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataType/dataType.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataType/dataTypeState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/fileResource/addFileResource.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/fileResource/addFileResourceState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/addInputControl.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/addInputControlQueryInformation.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/addInputControlState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/dataTypeLocate.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/dataTypeLocateState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/listOfValuesLocate.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/listOfValuesLocateState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/queryLocate.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/queryLocateState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/jasperReport/locateControlResource.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/jasperReport/locateControlResourceState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/listOfValues/addListOfValues.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/listOfValues/addListOfValuesState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/mondrianXML-A/addMondrianXML-A.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/mondrianXML-A/addMondrianXML-AState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep1.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep1State.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep2.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep2State.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep3.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep3State.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep2State.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3Resource.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3ResourceNaming.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3ResourceNamingState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3ResourceState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3State.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep5.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep5State.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep6.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportSteps1_2.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/administer/logSettings.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common/dnd.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common/download.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common/jsEdition.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common/tooltip.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/commonJSTLScripts.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/defaultPaginatorLinks.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/editFolderForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/exporters/csvExportParams.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/exporters/excelExportParams.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/exporters/swfExport.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/flowError.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/flowRemoveError.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/heartbeat/heartbeat.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/heartbeat/heartbeatState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/home.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/DefaultParametersForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/InputControlLabel.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/listOlapViews.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/login.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/loginState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/rotating/login_rotating_community_0.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/loginError.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage/roles.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage/rolesState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage/users.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage/usersState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages/messageDetail.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages/messageDetailState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages/messageList.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages/messageListState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/busy.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/empty.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/error.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/flush.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/properties.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/propertiesState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/viewOlap.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow/chooseSource.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow/chooseType.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow/jdbcPropsForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow/jndiPropsForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapUnitFlow/listResources.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/query/editQueryForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/query/editQueryTextForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/repoAdmin/defaultView.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/beanPropsForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/chooseSource.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/chooseType.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/customPropsForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/jdbcPropsForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/jndiPropsForm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobCommonState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobList.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobOutput.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobParameters.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobParametersState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobSetUp.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobSetUpState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportUnitFlow/listResources.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/buttons.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/calendarSample.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/columnsOne.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/columnsThree.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/columnsTwo.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/controls.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/dialogs.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/flow.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/lists.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/menus.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/oneColumn.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/panels.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/sampleIndex.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/tabbed.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/threeColumn.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/twoColumn.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/typography.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/wizard.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search/results.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search/resultsState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search/searchComponents.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/AccessDeniedPage.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/errorPage.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/systemConfirm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#aboutBox.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#addFolder.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#addOrganization.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#addRole.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#addUser.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#calculatedField.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#customURL.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#detail.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#editLabel.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#heartbeatOptin.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#inputControls.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#loading.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#login.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#manageDataSource.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#nothingToDisplay.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#permissions.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#propertiesResource.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#saveAs.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#saveValues.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#select.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#selectFields.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#selectFile.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#selectFromRepository.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#selectPalette.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#sortDialog.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#standardConfirm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#systemConfirm.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#uploadTheme.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/container.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/control_groupBox.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/control_searchLockup.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/control_tabSet.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/list.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/menu.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/page.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/utility_cosmetic.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/DefaultJasperViewer.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/DefaultJasperViewerState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/FusionChartsIEFix.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/ViewReport.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/ViewReportState.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/reportOutput.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/webHelp/webHelp.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/FoodMart.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.BSD.yahoo.js.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.MIT.nwmatcher.js.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.MIT.prototype.js.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.MIT.scriptaculous.js.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.abbreviator.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.ant.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.antlr.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.avalon.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.cas-client.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.cglib.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.commons.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.dateFormatter.js.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.dom4j.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.dwr.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.easymock.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.eclipse.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.ehcache.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.groovy.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.hibernate.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.hsqldb.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jasperreports.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.javacup.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jcommon.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jdom.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jfreechart.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.joda-time.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jpivot.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.json.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jta.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jug.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.log4j.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.mondrian.html
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.nanotree.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.objenesis.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.pngencoder.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.prototype.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.spring.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.utils.common.js.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.wcf.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.xalan.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.xerces.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.xml-api.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/activation-1.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/antlr-2.7.6.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/aopalliance-1.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/aspectjrt-1.5.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/avalon-framework-api-4.3.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/avalon-framework-impl-4.2.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/avalon-framework-impl-4.3.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/axis-1.3.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/axis-jaxrpc-1.3.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/axis-saaj-1.3.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/backport-util-concurrent-3.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/barbecue-1.5-beta1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/barcode4j-2.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-anim-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-awt-util-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-bridge-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-css-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-dom-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-ext-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-extension-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-gvt-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-parser-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-script-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-svg-dom-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-svggen-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-transcoder-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-util-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-xml-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcmail-jdk14-1.38.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcmail-jdk14-138.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcprov-jdk14-1.38.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcprov-jdk14-138.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bctsp-jdk14-1.38.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/cas-client-core-3.1.3.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/castor-1.2.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/cglib-nodep-2.2.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-beanutils-1.8.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-cli-1.2.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-codec-1.3.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-collections-3.2.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-dbcp-1.2.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-digester-1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-discovery-0.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-fileupload-1.1.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-httpclient-3.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-io-1.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-lang-2.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-logging-1.0.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-logging-api-1.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-math-1.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-pool-1.2.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-vfs-1.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/dom4j-1.6.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/dwr-2.0.3.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/easymock-3.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ehcache-core-1.7.2.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/eigenbase-properties-1.1.0.10924.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/eigenbase-resgen-1.3.0.11873.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/eigenbase-xom-1.3.0.11999.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/fop-0.95.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/groovy-all-1.7.5.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/hibernate-core-3.3.2.GA-HHH-2763.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/hibernate-jmx-3.3.2.GA.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/iReport-utils-2.0.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/itext-2.1.7.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jai_codec-1.1_mr.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jai_core-1.1_mr.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jakarta-regexp-1.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-chart-themes-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-fonts-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-ofc-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-impl-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-impl-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-impl-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-common-ws-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-core-util-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-export-tool-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-repository-hibernate-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-search-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-war-jar-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-ws-server-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/javacup-0.10k.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/javassist-3.7.ga.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jaxen-1.1-beta-8.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jcommon-1.0.15.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jdom-1.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jdtcore-3.1.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jfreechart-1.0.12.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ji-jpivot-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ji-wcf-4.0.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jsf-api-1.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/json-org-1.0.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jstl-1.1.2.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jta-1.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jxl-2.6.10.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/log4j-1.2.12.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mail-1.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mondrian-3.2.0-13661.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mondrian.dtd
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/objenesis-1.2.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ognl-2.7.3.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/olap4j-0.9.7.309.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/oro-2.0.8.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/png-encoder-1.5.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/quartz-1.5.1-jaspersoft.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/serializer-2.7.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/sitemesh-2.2.1-JasperSoft.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/slf4j-api-1.5.8.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/slf4j-log4j12-1.5.8.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-2.5.6.SEC02.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-binding-2.0.7.RELEASE.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-context-support-2.5.6.SEC02.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-js-2.0.7.RELEASE.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-ldap-core-1.3.0.RELEASE.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-ldap-core-tiger-1.3.0.RELEASE.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-orm-2.5.6.SEC02.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-cas-client-2.0.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-core-2.0.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-taglibs-2.0.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-web-2.5.6.SEC02.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-webflow-2.0.7.RELEASE.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-webmvc-2.5.6.SEC02.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/standard-1.1.2.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/tiles-api-2.1.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/tiles-core-2.1.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/tiles-jsp-2.1.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/tiles-servlet-2.1.4.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/wsdl4j-1.5.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xalan-2.7.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xercesImpl-2.7.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xml-apis-1.3.04.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xml-apis-ext-1.3.04.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xmlgraphics-commons-1.3.1.jar
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/log4j.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/logs/readme.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/mondrian.properties
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/olap-ehcache.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/pdfFontBeans.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/queries/FoodMart.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/server-config.wsdd
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/sitemesh.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/spring.tld
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/tiles.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/catedit.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/changeorder.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/confirm.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/controls-readonly.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/controls.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/fo_xtable.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/htoolbar.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/identity.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/popup.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/showxml.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/tableproperties.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/tableproperties_no.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/vtoolbar.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/wcf-tags.tld
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/wcf-tags.tld_wcf
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/wcf.dtd
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/wcf.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xform.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xls_xtable.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xtabbed.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xtable.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xtree.xsl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/web.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/weblogic.xml
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/blank.htm
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/cal/calendar.jsp
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/favicon.ico
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/index.htm
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/Thumbs.db
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-ab.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-auf.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-gdown.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-gup.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-ndown.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-none.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-nup.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-ohne.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-rdown.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-rup.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-up.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/collapse-all-d.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/collapse-all-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/collapse-all-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-member-collapse.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-member-expand.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-member-other.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-position-collapse.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-position-expand.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-position-other.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-replace-collapse.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-replace-expand.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-replace-other.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-through.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/expand-all-d.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/expand-all-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/expand-all-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/expand-all-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/filter-nochange.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/filter-stepslope.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/filter-transient.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/mdxtable.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-current-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-current-up.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-natural.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-other-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-other-up.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-up.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom-out-all-d.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom-out-all-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom-out-all-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom_in.cur
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom_out.cur
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jasperreports-flash-4.0.0.swf
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/cat-available.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/cat-visible.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/column.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/empty.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/filter.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/functions.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/level.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/mdxnavi.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/properties.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/row.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/showsel.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/Thumbs.db
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-ab.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-auf.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-gdown.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-gup.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-ndown.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-none.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-nup.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-ohne.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-rdown.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-rup.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-up.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/collapse-all-d.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/collapse-all-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/collapse-all-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-member-collapse.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-member-expand.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-member-other.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-position-collapse.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-position-expand.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-position-other.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-replace-collapse.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-replace-expand.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-replace-other.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-through.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/expand-all-d.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/expand-all-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/expand-all-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/expand-all-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/filter-nochange.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/filter-stepslope.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/filter-transient.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/mdxtable.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-current-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-current-up.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-natural.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-other-down.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-other-up.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-up.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom-out-all-d.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom-out-all-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom-out-all-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom_in.cur
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom_out.cur
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/admin-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/admin-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/bookmark-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/bookmark-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-config-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-config-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-new-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-new-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chartoptions-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chartoptions-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/cube-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/cube-new-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/cube-new-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/cube-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/debug-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/debug-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/displayoptions-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/displayoptions-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/edit-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/edit-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/empty-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/empty-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-config-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-config-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-new-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-new-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/filter-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/filter-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/hide-spans-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/hide-spans-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/level-style-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/level-style-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/mdx-edit-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/mdx-edit-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/mdxquery-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/mdxquery-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/member-selection-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/member-selection-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-member-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-member-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-position-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-position-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-replace-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-replace-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-through-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-through-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/non-empty-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/non-empty-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/outputopts-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/outputopts-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/param-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/param-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-config-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-config-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-new-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-new-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/properties-config-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/properties-config-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/properties-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/properties-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/reload-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/reload-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/reset-query-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/reset-query-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-as-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-as-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-dis-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-dis-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/showempty-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/showempty-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/sort-asc-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/sort-asc-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/sortacross-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/sortacross-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/swap-axes-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/swap-axes-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/swapaxes-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/swapaxes-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/table-config-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/table-config-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/table-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/table-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/zoom-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/zoom-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/js-create.ddl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart/LICENSE-open-flash-chart.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart/README.txt
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart/expressInstall.swf
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart/open-flash-chart.swf
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/quartz.ddl
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/actionModel.modelGenerator.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/actionModel.primaryNavigation.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/addinputcontrol.queryextra.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/addlistofvalues.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/administer.base.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/administer.logging.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/administer.options.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/cal.calendar.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/cal.calendarSetup.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/cascade.cascade.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.LinkButton.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.ListBox.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.about.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.checkbox-utils.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.customTooltip.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.dialogs.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.heartbeat.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.loginBox.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.pickers.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.searchBox.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.tabs.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.tabularList.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.toolbarButtons.events.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.toolbarButtons.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.tooltip.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.validator.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/controls.base.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/controls.report.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.accessibility.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.ajax.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.edition.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.events.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.initialize.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.key.events.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.layout.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.touch.events.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/error.error.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.unittests.yui.console-filters.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.unittests.yui.console.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.unittests.yui.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.unittests.yui.test.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.builder.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.controls.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.dragdrop.extra.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.dragdrop.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.dragdrop.touch.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.effects.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.nwmatcher.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.prototype.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.prototype.touch.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.scriptaculous.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.slider.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.sound.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.unittest.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/jpivot.jaPro.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/list.base.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/messages.messageDetail.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/messages.messageList.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/mng.common.actions.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/mng.common.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/mng.main.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/old.report.view-report.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.role.mng.actions.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.role.mng.components.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.role.mng.main.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.rootObjectModifier.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.user.mng.actions.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.user.mng.components.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.user.mng.main.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.list.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.output.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.params.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.setup.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.view.base.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.view.runtime.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/repository.search.actions.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/repository.search.components.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/repository.search.globalSearchBoxInit.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/repository.search.main.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.add.files.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.add.mondrianxmla.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.dataSource.locate.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.locate.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.mondrian.locate.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.xmla.locate.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisView.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.base.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.dataSource.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.dataType.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.dataType.locate.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.inputControl.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.inputControl.locate.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.listOfValues.locate.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.listofvalues.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.locate.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.query.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.query.locate.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.report.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.reportResourceNaming.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tools.drag.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tools.infiniteScroll.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tools.truncator.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.events.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.nanotree.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.treenode.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.treesupport.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.utils.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/utils.animation.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/utils.common.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/utils.dateFormatter.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/buttons.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/containers.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/controls.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/dataDisplays.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/dialogSpecific.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/adhoc_toolbar_buttons_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/body_bkgnd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_jumbo_primary_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_jumbo_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_primary_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_square_icons_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_capsule_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_options_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/column_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/column_bkgd_corners.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/column_bkgd_edges_rl.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/column_bkgd_edges_tb.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/cursor_copy.cur
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/cursor_copy.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/disclosure_indicators_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/first-d.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/first.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_background_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_corners.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_edges_rl.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_edges_tb.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_header_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/gradient_frame.content.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/grid_20x20_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/grouper_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/header_primary_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/home_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/home_icons_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/input_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/last-d.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/last.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/list_node_animation.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/list_pressed_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/lists_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/login_welcome_bkgd.jpg
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/login_welcome_ce_bkgd.jpg
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/logo.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_context_bkgd_corners.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_context_bkgd_edges_rl.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_context_bkgd_edges_tb.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_dropDown_bkgd_corners.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_dropDown_bkgd_edges_rl.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_dropDown_bkgd_edges_tb.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_indicators_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_primaryNav_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_vertical_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/message_icons_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/next-d.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/next.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_bkgd_corners.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_bkgd_edges_rl.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_bkgd_edges_tb.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_confirm_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_dialog_header_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_bkgd_corners.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_bkgd_edges_rl.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_bkgd_edges_tb.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_system_bkgd_corners.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_system_bkgd_edges_rl.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_system_bkgd_edges_tb.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_bkgd_corners.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_bkgd_edges_rl.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_bkgd_edges_tb.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_gradient_left.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_gradient_right.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inset_bkgd_corners.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inset_bkgd_edges_rl.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inset_bkgd_edges_tb.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inset_inset_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_sizer_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_widget_header_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/prev-d.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/prev.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/search_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/sort_indicators_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/tabs_horizontal_buttons_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/tabs_horizontal_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/tabs_vertical_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/toolbar_bkgd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/wait_animation_large.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/lists.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/overrides_custom.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/overrides_ie7.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/overrides_ie8.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/pageSpecific.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/pages.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/samples.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/theme.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/themeSpecific.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/body_bkgnd.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_action_jumbo_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_action_primary_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_capsule_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/disclosure_indicators_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/frame_header_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/logo.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/menu_primaryNav_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/search_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/tabs_horizontal_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/tabs_vertical_sprite.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/overrides_custom.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/reset.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/cal.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/calendar.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/calendar.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/close.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/divider.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/drop1.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/drop2.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/left1.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/left2.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/right1.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/right2.gif
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/category1.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/category2.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/category3.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/empty.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/xcatedit.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/cut.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/move-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/move-empty.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/move-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/paste-after.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/paste-before.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/uncut.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/form/cancel.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/form/ok.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/form/xform.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/pagestack/pagestack.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/popup/popup.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/popup/popup.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/scroller.js
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/status/status.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tabbed/current.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tabbed/other.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tabbed/xtabbed.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/csv16.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/edit.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/gotopage.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-first-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-first.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-last-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-last.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-next-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-next.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-prev-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-prev.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/select.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/sort-ac.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/sort-an.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/sort-dc.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/sort-dn.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/xtable.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/toolbar/button-down.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/toolbar/button-up.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/accept.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/cancel.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/collapse.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/delete.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/expand.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/leaf.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/select0.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/select1.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/unbound.png
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/xtree.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/wcf.css
 +%%APP_VERSION%%/webapps/%%PORTNAME%%/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql
 +%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%
 + at exec if [ -f %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%% ]; then /bin/chmod a+r %D/%%APP_VERSION%%/%%JDBCLOC%%/JDBC%%; else exit 1; fi
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/toolbar
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tabbed
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/status
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/popup
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/pagestack
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/form
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/scripts
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/j
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/cal
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/queries
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/logs
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/webHelp
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportUnitFlow
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/repoAdmin
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/query
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapUnitFlow
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/rotating
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/heartbeat
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/exporters
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/administer
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/mondrianXML-A
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/listOfValues
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/jasperReport
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/fileResource
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataType
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisView
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/about
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/listOfValues
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/toolbar
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/saveas
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/chart
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/internal
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/themes
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF
 + at dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%
 Index: databases/jasperserver/files/jasperserverCreateDefaultSecurity-mysql.sql
 ===================================================================
 RCS file: databases/jasperserver/files/jasperserverCreateDefaultSecurity-mysql.sql
 diff -N databases/jasperserver/files/jasperserverCreateDefaultSecurity-mysql.sql
 --- /dev/null	1 Jan 1970 00:00:00 -0000
 +++ databases/jasperserver/files/jasperserverCreateDefaultSecurity-mysql.sql	18 Feb 2011 19:45:21 -0000
 @@ -0,0 +1,38 @@
 +
 +INSERT INTO `JITenant` (`id`, `tenantId`, `parentId`, `tenantName`, `tenantDesc`, `tenantNote`, `tenantUri`, `tenantFolderUri`) 
 +VALUES (1,'organizations',NULL,'root','organizations',' ','/','/');
 +
 +INSERT INTO `JIRole` (`rolename`, `tenantId`,`externallyDefined`) VALUES 
 + ('ROLE_USER',1,0),
 + ('ROLE_ADMINISTRATOR',1,0),
 + ('ROLE_ANONYMOUS',1,0),
 + ('ROLE_PORTLET',1,0);
 +
 +INSERT INTO `JIUser` (`username`,`tenantId`,`fullname`,`emailAddress`,`password`,`externallyDefined`,`enabled`) VALUES
 +('anonymousUser',1,'Anonymous User',NULL,'CF35D2E88192D6EB',0,1);
 + 
 +INSERT INTO `JIUserRole` (`userId`,`roleId`)
 +select u.id, r.id from JIUser u, JIRole r where u.username = 'anonymousUser' and r.roleName = 'ROLE_ANONYMOUS';
 +
 +-- add jasperadmin user
 +
 +INSERT INTO `JIUser` (`username`,`tenantId`,`fullname`,`emailAddress`,`password`,`externallyDefined`,`enabled`) VALUES
 +('jasperadmin',1,'Jasper Administrator',NULL,'349AFAADD5C5A2BD477309618DCD58B9',0,1);
 +
 +INSERT INTO `JIUserRole` (`userId`,`roleId`)
 +select u.id, r.id from JIUser u, JIRole r where u.username = 'jasperadmin' and r.roleName = 'ROLE_ADMINISTRATOR';
 +
 +INSERT INTO JIUserRole (userId,roleId)
 +select u.id, r.id from JIUser u, JIRole r where u.username = 'jasperadmin' and r.roleName = 'ROLE_USER';
 +
 +INSERT INTO `JIResourceFolder` (`id`,`version`,`uri`,`hidden`,`name`,`label`,`description`,`parent_folder`,`creation_date`) VALUES 
 +(1,0,'/',0,'/','root','Root of the folder hierarchy',NULL,NOW());
 +
 +INSERT INTO `JIObjectPermission` (`uri`,`recipientobjectclass`,`permissionMask`,`recipientobjectid`)
 +select 'repo:/','com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole', 1, r.id
 +from `JIRole` r where rolename = 'ROLE_ADMINISTRATOR';
 +
 +INSERT INTO `JIObjectPermission` (`uri`,`recipientobjectclass`,`permissionMask`,`recipientobjectid`)
 +select 'repo:/','com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole', 2, r.id
 +from `JIRole` r where rolename = 'ROLE_USER';
 +
 Index: databases/jasperserver/files/jasperserverCreateDefaultSecurity-postgresql.sql
 ===================================================================
 RCS file: databases/jasperserver/files/jasperserverCreateDefaultSecurity-postgresql.sql
 diff -N databases/jasperserver/files/jasperserverCreateDefaultSecurity-postgresql.sql
 --- /dev/null	1 Jan 1970 00:00:00 -0000
 +++ databases/jasperserver/files/jasperserverCreateDefaultSecurity-postgresql.sql	22 Feb 2011 01:10:50 -0000
 @@ -0,0 +1,38 @@
 +-- Contributed by Alex Matzinger <amatzinger at experts-exchange.com>
 +
 +INSERT INTO JITenant (id, tenantId, parentId, tenantName, tenantDesc, tenantNote, tenantUri, tenantFolderUri, tenantAlias) 
 +VALUES (1,'organizations',NULL,'root','organizations',' ','/','/',' ');
 +
 +INSERT INTO JIRole (rolename, tenantId,externallyDefined) VALUES ('ROLE_USER',1,false);
 +INSERT INTO JIRole (rolename, tenantId,externallyDefined) VALUES ('ROLE_ADMINISTRATOR',1,false);
 +INSERT INTO JIRole (rolename, tenantId,externallyDefined) VALUES ('ROLE_ANONYMOUS',1,false);
 +INSERT INTO JIRole (rolename, tenantId,externallyDefined) VALUES ('ROLE_PORTLET',1,false);
 +
 +INSERT INTO JIUser (username,tenantId,fullname,emailAddress,password,externallyDefined,enabled) VALUES
 +('anonymousUser',1,'Anonymous User',NULL,'CF35D2E88192D6EB',false,true);
 + 
 +INSERT INTO JIUserRole (userId,roleId)
 +select u.id, r.id from JIUser u, JIRole r where u.username = 'anonymousUser' and r.roleName = 'ROLE_ANONYMOUS';
 +
 +-- add jasperadmin user
 +
 +INSERT INTO JIUser (username,tenantId,fullname,emailAddress,password,externallyDefined,enabled) VALUES
 +('jasperadmin',1,'Jasper Administrator',NULL,'349AFAADD5C5A2BD477309618DCD58B9',false,true);
 +
 +INSERT INTO JIUserRole (userId,roleId)
 +select u.id, r.id from JIUser u, JIRole r where u.username = 'jasperadmin' and r.roleName = 'ROLE_ADMINISTRATOR';
 +
 +INSERT INTO JIUserRole (userId,roleId)
 +select u.id, r.id from JIUser u, JIRole r where u.username = 'jasperadmin' and r.roleName = 'ROLE_USER';
 +
 +INSERT INTO JIResourceFolder (id,version,uri,hidden,name,label,description,parent_folder,creation_date,update_date) VALUES 
 +(1,0,'/',false,'/','root','Root of the folder hierarchy',NULL,NOW(),NOW());
 +
 +INSERT INTO JIObjectPermission (uri,recipientobjectclass,permissionMask,recipientobjectid)
 +select 'repo:/','com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole', 1, r.id
 +from JIRole r where rolename = 'ROLE_ADMINISTRATOR';
 +
 +INSERT INTO JIObjectPermission (uri,recipientobjectclass,permissionMask,recipientobjectid)
 +select 'repo:/','com.jaspersoft.jasperserver.api.metadata.user.domain.impl.hibernate.RepoRole', 2, r.id
 +from JIRole r where rolename = 'ROLE_USER';
 +
 Index: databases/jasperserver/files/patch-jasperserver__buildomatic__conf_source__db__mysql__db.template.properties
 ===================================================================
 RCS file: databases/jasperserver/files/patch-jasperserver__buildomatic__conf_source__db__mysql__db.template.properties
 diff -N databases/jasperserver/files/patch-jasperserver__buildomatic__conf_source__db__mysql__db.template.properties
 --- /dev/null	1 Jan 1970 00:00:00 -0000
 +++ databases/jasperserver/files/patch-jasperserver__buildomatic__conf_source__db__mysql__db.template.properties	18 Feb 2011 23:04:47 -0000
 @@ -0,0 +1,11 @@
 +--- ./jasperserver/buildomatic/conf_source/db/mysql/db.template.properties.orig	2011-02-18 15:03:17.000000000 -0800
 ++++ ./jasperserver/buildomatic/conf_source/db/mysql/db.template.properties	2011-02-18 15:04:04.000000000 -0800
 +@@ -8,7 +8,7 @@
 + 
 + # jdbc url templates...assume same host, port, db type
 + admin.jdbcUrl=jdbc:mysql://${dbHost}:${dbPort}/mysql
 +-js.jdbcUrl=jdbc:mysql://${dbHost}:${dbPort}/${js.dbName}?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&autoReconnectForPools=true
 ++js.jdbcUrl=jdbc:mysql://${dbHost}:${dbPort}/${js.dbName}?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&autoReconnectForPools=true
 + sugarcrm.jdbcUrl=jdbc:mysql://${dbHost}:${dbPort}/${sugarcrm.dbName}?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&autoReconnectForPools=true
 + foodmart.jdbcUrl=jdbc:mysql://${dbHost}:${dbPort}/${foodmart.dbName}?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&autoReconnectForPools=true
 + 
 Index: databases/jasperserver/files/patch-jasperserver__buildomatic__install_resources__sql__postgresql__js-create.ddl
 ===================================================================
 RCS file: databases/jasperserver/files/patch-jasperserver__buildomatic__install_resources__sql__postgresql__js-create.ddl
 diff -N databases/jasperserver/files/patch-jasperserver__buildomatic__install_resources__sql__postgresql__js-create.ddl
 --- /dev/null	1 Jan 1970 00:00:00 -0000
 +++ databases/jasperserver/files/patch-jasperserver__buildomatic__install_resources__sql__postgresql__js-create.ddl	22 Feb 2011 00:49:10 -0000
 @@ -0,0 +1,118 @@
 +--- ./jasperserver/buildomatic/install_resources/sql/postgresql/js-create.ddl.orig	2011-02-21 16:48:37.000000000 -0800
 ++++ ./jasperserver/buildomatic/install_resources/sql/postgresql/js-create.ddl	2011-02-21 15:45:58.000000000 -0800
 +@@ -1,6 +1,6 @@
 + 
 +     create table JIAccessEvent (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         user_id int8 not null,
 +         event_date timestamp not null,
 +         resource_id int8 not null,
 +@@ -108,7 +108,7 @@
 +     );
 + 
 +     create table JILogEvent (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         occurrence_date timestamp not null,
 +         event_type int2 not null,
 +         component varchar(100),
 +@@ -136,7 +136,7 @@
 +     );
 + 
 +     create table JIObjectPermission (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         uri varchar(250) not null,
 +         recipientobjectclass varchar(250),
 +         recipientobjectid int8,
 +@@ -158,7 +158,7 @@
 +     );
 + 
 +     create table JIProfileAttribute (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         attrName varchar(255) not null,
 +         attrValue varchar(255) not null,
 +         principalobjectclass varchar(255) not null,
 +@@ -175,7 +175,7 @@
 +     );
 + 
 +     create table JIReportJob (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         version int4 not null,
 +         owner int8 not null,
 +         label varchar(100) not null,
 +@@ -190,7 +190,7 @@
 +     );
 + 
 +     create table JIReportJobCalendarTrigger (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         minutes varchar(200) not null,
 +         hours varchar(80) not null,
 +         days_type int2 not null,
 +@@ -201,7 +201,7 @@
 +     );
 + 
 +     create table JIReportJobMail (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         version int4 not null,
 +         subject varchar(100) not null,
 +         message varchar(2000),
 +@@ -232,7 +232,7 @@
 +     );
 + 
 +     create table JIReportJobRepoDest (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         version int4 not null,
 +         folder_uri varchar(250) not null,
 +         sequential_filenames bool not null,
 +@@ -251,7 +251,7 @@
 +     );
 + 
 +     create table JIReportJobTrigger (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         version int4 not null,
 +         timezone varchar(40),
 +         start_type int2 not null,
 +@@ -287,7 +287,7 @@
 +     );
 + 
 +     create table JIRepositoryCache (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         uri varchar(250) not null,
 +         cache_name varchar(20) not null,
 +         data bytea,
 +@@ -299,7 +299,7 @@
 +     );
 + 
 +     create table JIResource (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         version int4 not null,
 +         name varchar(100) not null,
 +         parent_folder int8 not null,
 +@@ -328,7 +328,7 @@
 +     );
 + 
 +     create table JIRole (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         rolename varchar(100) not null,
 +         tenantId int8 not null,
 +         externallyDefined bool,
 +@@ -352,7 +352,7 @@
 +     );
 + 
 +     create table JIUser (
 +-        id int8 not null,
 ++        id bigserial not null,
 +         username varchar(100) not null,
 +         tenantId int8 not null,
 +         fullname varchar(100) not null,
 Index: databases/jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml
 ===================================================================
 RCS file: databases/jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml
 diff -N databases/jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml
 --- /dev/null	1 Jan 1970 00:00:00 -0000
 +++ databases/jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml	18 Feb 2011 22:54:06 -0000
 @@ -0,0 +1,51 @@
 +--- ./jasperserver/common/shared-config/applicationContext-themes.xml.orig	2011-02-18 14:52:56.000000000 -0800
 ++++ ./jasperserver/common/shared-config/applicationContext-themes.xml	2011-02-18 14:53:53.000000000 -0800
 +@@ -14,7 +14,6 @@
 + 	     	
 + 	 -->
 + 
 +-<!--
 +     <bean id="themeResolver" class="org.springframework.web.servlet.theme.FixedThemeResolver">
 +         <property name="defaultThemeName" value="default"/>
 +     </bean>
 +@@ -22,27 +21,32 @@
 +     <bean id="themeSource" class="org.springframework.ui.context.support.ResourceBundleThemeSource">
 +         <property name="basenamePrefix" value="themes."/>
 +     </bean>
 +--->
 + 
 + 	<!-- To run the themes from the repository, uncomment the three beans below and comment out the two beans above -->
 + 	
 ++<!--
 +     <bean id="themeResolver" class="com.jaspersoft.jasperserver.war.themes.JSThemeResolver">
 +         <property name="defaultThemeName">
 +             <util:property-path path="configurationBean.themeDefaultName"/>
 +         </property>
 +         <property name="delegate" ref="jsThemeResolver"/>
 +     </bean>
 ++-->
 + 
 ++<!--
 +     <bean id="jsThemeResolver" class="com.jaspersoft.jasperserver.war.themes.MTThemeResolver">
 +         <property name="defaultThemeName">
 +             <util:property-path path="configurationBean.themeDefaultName"/>
 +         </property>
 +         <property name="tenantService" ref="${bean.hibernateTenantService}" />
 +     </bean>
 ++-->
 + 
 ++<!--
 +     <bean id="themeSource" class="com.jaspersoft.jasperserver.war.themes.RepositoryFolderThemeSourceImpl">
 +         <property name="themeCache" ref="themeCache"/>
 +     </bean>
 ++-->
 + 
 +     <bean id="themeCache" class="com.jaspersoft.jasperserver.war.themes.ThemeCache">
 +         <property name="repositoryService" ref="unsecureRepositoryService"/>
 +@@ -84,4 +88,4 @@
 +         <property name="themeSource" ref="themeSource" />
 +     </bean>
 + 
 +-</beans>       
 +\ No newline at end of file
 ++</beans>       
 Index: databases/jasperserver/files/pkg-message.in
 ===================================================================
 RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/files/pkg-message.in,v
 retrieving revision 1.1
 diff -u -r1.1 pkg-message.in
 --- databases/jasperserver/files/pkg-message.in	24 Jan 2011 22:48:48 -0000	1.1
 +++ databases/jasperserver/files/pkg-message.in	22 Feb 2011 00:53:22 -0000
 @@ -4,14 +4,14 @@
   
   The %%DATABASE%% schema and default security credentials have been copied to:
   
 -%%JSHOME%%/jasperserverCreate-%%DATABASE%%.ddl
 +%%JSHOME%%/js-create.ddl, %%JSHOME%%/quartz.ddl 
   and 
   %%JSHOME%%/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql 
   
   Take necessary precautions before loading this sql into the %%PORTNAME%% database.
   
   To create the %%PORTNAME%% database, you may choose to run the following target against
 -%%PORTSDIR%%/databases/%%PORTNAME%%-%%PORTVERSION%%-src/%%PORTNAME%%/buildomatic/js-ant
 +%%SRCDIR%%/%%PORTNAME%%/buildomatic/js-ant
   
   ./js-ant create-js-db (Creates the %%PORTNAME%% database)
   
 @@ -20,4 +20,20 @@
   
   Alternatively, you may choose to use the following method to create a suitable database:
    (mysql) mysql> create database jasperserver character set utf8;
 + (postgresql) create database jasperserver;
   
 +If UPGRADING from 3.5.0 to 4.0:
 +(taken from release notes of 4.0 from vendor)
 +
 +If you are upgrading from an older JasperServer version such as 3.5 then you
 +must first upgrade to JasperServer 3.7 before upgrading to 4.0.
 +Upgrading directly from JasperServer 3.5 to 4.0 is not a "certified" (i.e. fully
 +QA tested) procedure.
 +
 +The steps to carry out this operation are fully documented in the JasperReports
 +Server Installation Guide for the 3.7 release.  You will need to download the 
 +JasperServer 3.7 release package to get the relevant files and documentation.
 +To download the JasperServer 3.7 WAR file distribution zip package, go to the
 +JasperForge.org website and to the JasperServer project.
 +
 +http://jasperforge.org/projects/jasperserver
 
 -- 
 Jason Helfman
 System Administrator
 experts-exchange.com
 http://www.experts-exchange.com/M_4830110.html
 E4AD 7CF1 1396 27F6 79DD  4342 5E92 AD66 8C8C FBA5



More information about the freebsd-ports-bugs mailing list