Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Oct 2011 13:02:56 -0700
From:      Jason Helfman <jhelfman@experts-exchange.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/162111: [patch][maintainer-update] databases/jasperserver: update to 4.2.1
Message-ID:  <1319832176.571979.98061.nullmailer@experts-exchange.com>
Resent-Message-ID: <201110282010.p9SKA9Ro025124@freefall.freebsd.org>

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

>Number:         162111
>Category:       ports
>Synopsis:       [patch][maintainer-update] databases/jasperserver: update to 4.2.1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Oct 28 20:10:09 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Jason Helfman
>Release:        FreeBSD 8.2-RELEASE i386
>Organization:
Experts Exchange, LLC.
>Environment:
System: FreeBSD eggman.experts-exchange.com 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386


	
>Description:
Update to 4.2.1
Builds cleanly in Tinderbox => http://jgh.devio.us/files/logs/jasperserver-4.2.1.log
Pet portlint

make tomcat6 default, to prepare for tomcat55 removal
add tomcat7 as an option
remove plist_sub of PORTNAME from pkg-plist to support updates more easily for list
allow database name to be configurable
follow upstream support model with release

>How-To-Repeat:
	
>Fix:

Index: jasperserver/Makefile
===================================================================
RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/Makefile,v
retrieving revision 1.6
diff -u -r1.6 Makefile
--- jasperserver/Makefile	23 Jul 2011 21:33:34 -0000	1.6
+++ jasperserver/Makefile	28 Oct 2011 19:59:25 -0000
@@ -6,20 +6,20 @@
 #
 
 PORTNAME=	jasperserver
-PORTVERSION=	4.1.0
+PORTVERSION=	4.2.1
 CATEGORIES=	databases print java
 MASTER_SITES=	SF/${PORTNAME}/JasperServer/JasperServer%20${PORTVERSION}/:source1
 DISTFILES=	jasperreports-server-cp-${PORTVERSION}-src.zip:source1 \
-		jasperreports-server-${PORTVERSION}-maven-repository.zip:source1
+		jasperreports-server-cp-${PORTVERSION}-maven-repository.zip:source1
 EXTRACT_ONLY=	jasperreports-server-cp-${PORTVERSION}-src.zip
 
 MAINTAINER=	jhelfman@experts-exchange.com
 COMMENT=	Open Source Java Reporting Library
 
-BUILD_DEPENDS=	mvn:${PORTSDIR}/devel/maven2
-
-LICENSE_COMB=	multi
 LICENSE=	GPLv2 MIT ASL
+LICENSE_COMB=	multi
+
+BUILD_DEPENDS=	mvn:${PORTSDIR}/devel/maven2
 
 SRCDIR=		${WRKDIR}/jasperreports-server-cp-${PORTVERSION}-src
 PATCH_WRKSRC=	${SRCDIR}
@@ -28,7 +28,7 @@
 SQLSRC=		${WRKSRC}/install_resources/sql
 JS=		${SRCDIR}/${PORTNAME}
 JSREPO=		${JS}-repo
-JSMAVENARCH=	jasperreports-server-${PORTVERSION}-maven-repository.zip
+JSMAVENARCH=	jasperreports-server-cp-${PORTVERSION}-maven-repository.zip
 
 NO_WRKSUBDIR=	yes
 USE_JAVA=	yes
@@ -39,11 +39,11 @@
 # 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 \
-		MYSQL   "Enable Mysql 5.x support"	on \
-		POSTGRESQL "Enable PostgreSQL 8.x support" off \
-		POSTGRESQL9 "Enable PostgreSQL 9.x support" off
+OPTIONS=	TOMCAT5 "Enable Tomcat 5.x support"	off \
+		TOMCAT6 "Enable Tomcat 6.x support"	on \
+		TOMCAT7 "Enable Tomcat 7.x support"	off \
+		MYSQL   "Enable Mysql 5.x support"	off \
+		POSTGRESQL "Enable PostgreSQL 9.x support" on
 
 REPLACE_FILES=	${JS}/jasperserver-war/src/main/webappAdditions/WEB-INF/web.xml
 REPLACE_LIST_TEMP=	${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
@@ -51,6 +51,7 @@
 SUB_FILES=	pkg-message
 
 SUB_LIST=	DATABASE=${DATABASE} \
+		JSDB=${JSDB} \
 		JSHOME=${JSHOME} \
 		JSTIMEOUT=${JSTIMEOUT} \
 		PORTNAME=${PORTNAME} \
@@ -64,30 +65,24 @@
 
 .include <bsd.port.options.mk>
 
+#use version <55,jasperserver quartz scheduler won't work properly (tested well with 51)
 .if defined(WITH_MYSQL)
 USE_MYSQL=	yes
-MYNAME?=	root
-MYPASS?=
+DBUSER?=	root
+DBPASS?=
 DATABASE=	mysql
-PLIST_SUB+=	JDBC="mysql-connector-java-5.1.10.jar"
+RUN_DEPENDS+=	${JAVAJARDIR}/mysql-connector-java.jar:${PORTSDIR}/databases/mysql-connector-java
+PLIST_SUB+=	JDBC="mysql-connector-java.jar"
 .endif
 
-#use version 84, application is certified against this version
-#use version 90, application is reported to work against this version
+#use version 90, application is certified w/ pg90
 .if defined(WITH_POSTGRESQL)
-WANT_PGSQL_VER=	84
-JDBC=		postgresql-8.4-702.jdbc4.jar
-DISTFILES+=	postgresql-8.4-702.jdbc4.jar:source2
-.elif defined(WITH_POSTGRESQL9)
 WANT_PGSQL_VER=	90
-JDBC=	postgresql-9.0-801.jdbc4.jar
-DISTFILES+=	postgresql-9.0-801.jdbc4.jar:source2
-.endif
-
-.if ( defined(WITH_POSTGRESQL) || (WITH_POSTGRESQL9) )
+JDBC=	postgresql-9.0-802.jdbc4.jar
+DISTFILES+=	postgresql-9.0-802.jdbc4.jar:source2
 USE_PGSQL=	yes
-MYNAME?=	pgsql
-MYPASS?=	pgsql
+DBUSER?=	pgsql
+DBPASS?=	pgsql
 DATABASE=	postgresql
 PLIST_SUB+=	JDBC=${JDBC}
 MASTER_SITES+=	http://jdbc.postgresql.org/download/:source2
@@ -95,10 +90,9 @@
 
 .if defined(WITH_TOMCAT5)
 APPHOME?=	${LOCALBASE}/tomcat5.5
-BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55
-RUN_DEPENDS+=   ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55
+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
@@ -108,18 +102,28 @@
 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
 
+.if defined(WITH_TOMCAT7)
+APPHOME?=	${LOCALBASE}/apache-tomcat-7.0
+BUILD_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7
+RUN_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7
+APPTYPE=	tomcat7
+PLIST_SUB+=	APP_VERSION="apache-tomcat-7.0"
+JDBCLOC=	lib
+.endif
+
 DBHOST?=	localhost
 
 APP_PROPERTIES=	${SRCDIR}/${PORTNAME}/buildomatic/default_master.properties
 QTZ_PROPERTIES=	${SRCDIR}/${PORTNAME}/${PORTNAME}-war/target/${PORTNAME}/WEB-INF/js.quartz.properties
 
+JSDB?=	jasperserver
 JSPORT?=	8080
 JSEXTRA?=
+JSHOME?=	${APPHOME}/webapps/${PORTNAME}
 JSMAILHOST?=	localhost
 JSMAILUSER?=	admin
 JSMAILPASS?=	password
@@ -131,15 +135,15 @@
 check-sanity:
 .if ( defined(WITH_TOMCAT5) && defined(WITH_TOMCAT6) )
 IGNORE=	you can only define one application server
-.elif ( !defined(WITH_TOMCAT5) && !defined(WITH_TOMCAT6) )
+.elif ( defined(WITH_TOMCAT5) && defined(WITH_TOMCAT7) )
+IGNORE=	you can only define one application server
+.elif ( defined(WITH_TOMCAT6) && defined(WITH_TOMCAT7) )
+IGNORE=	you can only define one application server
+.elif ( !defined(APPHOME) )
 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_POSTGRESQL9) )
-IGNORE=	you can only define one database
-.elif ( defined(WITH_POSTGRESQL) && defined(WITH_POSTGRESQL9) )
-IGNORE=	you can only define one database
-.elif ( !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL) && !defined(WITH_POSTGRESQL9) )
+.elif ( !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL) )
 IGNORE=	choose at least one database
 .endif
 
@@ -178,17 +182,27 @@
 	@${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} "dbUsername = ${DBUSER}" >> ${APP_PROPERTIES}
+	@${ECHO} "dbPassword = ${DBPASS}" >> ${APP_PROPERTIES}
 	@${ECHO} "dbHost = ${DBHOST}" >> ${APP_PROPERTIES}
+	@${ECHO} "js.dbName = ${JSDB}" >> ${APP_PROPERTIES}
 
 	@( if [ -f ${LOCALBASE}/bin/mvn ] ; then \
 		${ECHO} "maven = ${JAVASHAREDIR}/maven2/bin/mvn" >> ${APP_PROPERTIES} ; \
 		else ${FALSE}; \
 	fi )
+.if !defined(WITH_POSTGRESQL)
+	@${ECHO} "maven.jdbc.groupId = mysql" >> ${APP_PROPERTIES}
+	@${ECHO} "maven.jdbc.version = 5.1.17-bin" >> ${APP_PROPERTIES}
+	@${ECHO} "maven.jdbc.artifactId = mysql-connector-java" >> ${APP_PROPERTIES}
+.endif
 	@${ECHO} "js-path = ${JS}" >> ${APP_PROPERTIES}
 	@${ECHO} "js-pro-path = ${JS}" >> ${APP_PROPERTIES}
-	@${ECHO} "js-repo-path = ${JSREPO}">> ${APP_PROPERTIES}
+	@${ECHO} "repo-path = ${JSREPO}" >> ${APP_PROPERTIES}
+
+.if defined(WITH_MYSQL)
+	${LN} -s ${JAVAJARDIR}/mysql-connector-java.jar ${SRCDIR}/${PORTNAME}/buildomatic/conf_source/db/mysql/jdbc/mysql-connector-java-5.1.17-bin.jar
+.endif
 
 do-build:
 	@( cd ${WRKSRC} && ./js-ant clean-config )
@@ -197,7 +211,7 @@
 	@( ${CP} ${WRKDIR}/web.xml ${JS}/jasperserver-war/src/main/webappAdditions/WEB-INF/web.xml )
 	@( cd ${WRKSRC} && ./js-ant build-ce )
 
-.if !( defined(WITH_POSTGRESQL) || (WITH_POSTGRESQL9) )
+.if !defined(WITH_POSTGRESQL)
 	@${ECHO} "quartz.delegateClass=org.quartz.impl.jdbcjobstore.StdJDBCDelegate" > ${QTZ_PROPERTIES}
 .else
 	@${ECHO} "quartz.delegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate" > ${QTZ_PROPERTIES}
@@ -205,7 +219,7 @@
 
 	@${ECHO} "quartz.tablePrefix=QRTZ_" >> ${QTZ_PROPERTIES}
 	@${ECHO} "quartz.extraSettings=${JSEXTRA}" >> ${QTZ_PROPERTIES}
-	@${ECHO} "report.scheduler.web.deployment.uri=http://localhost:${JSPORT}/${PORTNAME}" >> ${QTZ_PROPERTIES}
+	@${ECHO} "report.scheduler.web.deployment.uri=http://${DBHOST}:${JSPORT}/${JSDB}" >> ${QTZ_PROPERTIES}
 	@${ECHO} "report.scheduler.mail.sender.host=${JSMAILHOST}" >> ${QTZ_PROPERTIES}
 	@${ECHO} "report.scheduler.mail.sender.username=${JSMAILUSER}" >> ${QTZ_PROPERTIES}
 	@${ECHO} "report.scheduler.mail.sender.password=${JSMAILPASS}" >> ${QTZ_PROPERTIES}
@@ -221,13 +235,15 @@
 	@${INSTALL_DATA} ${FILESDIR}/jasperserverCreateDefaultSecurity-${DATABASE}.sql ${JSHOME}
 	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/js-create.ddl ${JSHOME} )
 	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/quartz.ddl ${JSHOME} )
-	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/upgrade-${DATABASE}-4.0.0-4.1.0-ce.sql ${JSHOME} )
+	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/upgrade-${DATABASE}-4.1.0-4.2.1-ce.sql ${JSHOME} )
 	@${INSTALL} -m 440 ${QTZ_PROPERTIES} ${JSHOME}/WEB-INF/
 
 #removed shipped driver from vendor
-.if ( defined(WITH_TOMCAT6) || defined(WITH_TOMCAT5) && !defined(WITH_MYSQL) && defined(WITH_POSTGRESQL) || defined(WITH_POSTGRESQL9) )
+.if !defined(WITH_MYSQL)
 	${INSTALL_DATA} ${DISTDIR}/${JDBC} ${APPHOME}/${JDBCLOC}
 	@${RM} ${APPHOME}/${JDBCLOC}/postgresql-9.0-801.jdbc3.jar
+.else
+	${LN} -s ${JAVAJARDIR}/mysql-connector-java.jar ${APPHOME}/${JDBCLOC}
 .endif
 
 post-install:
Index: jasperserver/distinfo
===================================================================
RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/distinfo,v
retrieving revision 1.3
diff -u -r1.3 distinfo
--- jasperserver/distinfo	23 Jul 2011 21:33:34 -0000	1.3
+++ jasperserver/distinfo	28 Oct 2011 19:10:57 -0000
@@ -1,8 +1,6 @@
-SHA256 (jasperreports-server-cp-4.1.0-src.zip) = b6d2c460883848ebcedc75d7fef2fa4928fd8ca12187f53523a0affae2bc6d5e
-SIZE (jasperreports-server-cp-4.1.0-src.zip) = 131993640
-SHA256 (jasperreports-server-4.1.0-maven-repository.zip) = 8229eda108ba773b3d1f0c87ee915ba27468d784863e1ad2ea858b946345a742
-SIZE (jasperreports-server-4.1.0-maven-repository.zip) = 226631661
-SHA256 (postgresql-9.0-801.jdbc4.jar) = 269faefab785ba5480b66b67b94a5189209e5cb86fb6def3e0a2155332ed6f3a
-SIZE (postgresql-9.0-801.jdbc4.jar) = 539705
-SHA256 (postgresql-8.4-702.jdbc4.jar) = 614727934086a416eaa23425ac5f57df937a258e6d327e6c23e9ff87b11fa138
-SIZE (postgresql-8.4-702.jdbc4.jar) = 539510
+SHA256 (jasperreports-server-cp-4.2.1-src.zip) = a584a99f36b44debef5eda715da9c432957ad0d705c8cff2ee3b8dc700194cc4
+SIZE (jasperreports-server-cp-4.2.1-src.zip) = 229873995
+SHA256 (jasperreports-server-cp-4.2.1-maven-repository.zip) = c306f2f028165bac8a93fed67ee82e256401db8ca34ec60ce690bc74a9a7edb0
+SIZE (jasperreports-server-cp-4.2.1-maven-repository.zip) = 249731365
+SHA256 (postgresql-9.0-802.jdbc4.jar) = 3e800c3bd081ed0bbc9dfdd0e862b9f98fe159b3276881d2da3f2c9767f30829
+SIZE (postgresql-9.0-802.jdbc4.jar) = 543423
Index: jasperserver/pkg-install
===================================================================
RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/pkg-install,v
retrieving revision 1.2
diff -u -r1.2 pkg-install
--- jasperserver/pkg-install	23 Jul 2011 21:33:34 -0000	1.2
+++ jasperserver/pkg-install	28 Oct 2011 19:04:29 -0000
@@ -8,12 +8,19 @@
 cat << _EOF
 ==============  W A R N I N G   I M P O R T A N T   N O T E  =================
 
-If UPGRADING from 4.0.0 to 4.1.0:
-(taken from release notes of 4.1.0 from vendor)
+You can upgrade directly to 4.2.1 if your instance is one of the following:
+3.7.0
+3.7.1
+4.0.0
+4.1.0
 
-To upgrade from 4.0.0 to 4.1.0, refer to the recommended
-procedure described in the Installation Guide Chapter 8
-"Upgrade from 4.0.0 to 4.1.0"
+Note that Jaspersoft did not release a 4.2.0 version of JasperReports Server
+Community Project. The version number progression goes from 4.1.0 to 4.2.1
+directly. The recommended upgrade procedures are fully described in the
+Installation Guide.
+
+There are no database changes between 4.1.0, and 4.2.1. So, the upgrade from
+4.1.0 to 4.2.1 is simpler than upgrading from earlier versions.
 
 WWW: http://jasperforge.org/projects/jasperserver
 
Index: jasperserver/pkg-plist
===================================================================
RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/pkg-plist,v
retrieving revision 1.3
diff -u -r1.3 pkg-plist
--- jasperserver/pkg-plist	23 Jul 2011 21:33:34 -0000	1.3
+++ jasperserver/pkg-plist	19 Oct 2011 17:56:26 -0000
@@ -1,1247 +1,1261 @@
-%%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-adhocOlapCrosstab.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/calendar_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_zh_CN.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_zh_CN.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_zh_CN.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_zh_CN.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_zh_CN.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_zh_CN.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_zh_CN.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_zh_CN.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_de.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_es.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_fr.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_ja.properties
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_zh_CN.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/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/analysisClientConnectionDataSourceLocateState.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/inputControls/Label.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/mocks/jrTestReport_1.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/mocks/reportViewer_top.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/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/jsp/templates/aboutBox.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addFolder.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addOrganization.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addRole.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addUser.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/calculatedField.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/container.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/control_groupBox.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/control_searchLockup.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/control_tabSet.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/customURL.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/detail.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/editLabel.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/heartbeatOptin.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/inputControls.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/list.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/loading.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/login.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/manageDataSource.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/menu.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/nothingToDisplay.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/page.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/permissions.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/propertiesResource.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/saveAs.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/saveValues.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/select.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectFields.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectFile.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectFromRepository.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectPalette.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/sortDialog.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/standardAlert.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/standardConfirm.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/systemConfirm.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/uploadTheme.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/userCountExceeded.jsp
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/utility_cosmetic.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.5.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.1.1.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-chart-themes-4.0.1.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.1.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-impl-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-impl-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-impl-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-common-ws-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-core-util-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-export-tool-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-repository-hibernate-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-search-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-war-jar-4.1.0.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-ws-server-4.1.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.1.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ji-wcf-4.0.1.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-JS.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-JS.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.6.RELEASE.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-core-2.0.6.RELEASE.jar
-%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-taglibs-2.0.6.RELEASE.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.connect.string.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/floatingMenu_sprite.png
-%%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/hale/buttons.css
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/containers.css
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/controls.css
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/dialogSpecific.css
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/bullet_arrow.gif
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/clear.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/controls.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/display.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/export.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/folder.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/folder_open.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/grouper_sprite.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/home_bkgd.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/home_icons_sprite.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/input_bg.gif
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/js_logo_grays.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/lists_sprite.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_down_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_down_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_left_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_right_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_up_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_left_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_right_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_up_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/mutton.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/navigation_down.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/navigation_down_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/navigation_right_gray.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/options.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/panel_close.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/pivot.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/redo.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/resize_vertical.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/save.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/search.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/search_sprite.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/sort.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/styles.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/tabs_horizontal_sprite.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/undo-all.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/undo.png
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/wait_animation_large.gif
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/lists.css
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/pageSpecific.css
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/pages.css
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/samples.css
-%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/theme.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%%/webapps/%%PORTNAME%%/upgrade-%%DATABASE%%-4.0.0-4.1.0-ce.sql
+%%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/actionModel-adhocChart.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-adhocCrosstab.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-adhocOlapCrosstab.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-adhocTable.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-dashboard.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-navigation.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-search.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-cascade.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-events-logging.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-rest-services.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-search.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-security-web.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-security.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-themes.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-themes.xml.orig
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-web-services.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-webHelp.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-webapp.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/calendar_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_it.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_it.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_it.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_de.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_es.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_fr.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_ja.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_zh_CN.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/ehcache-hibernate.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/classes/themes/default.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/datasources.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/decorator.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/decoratorCommonComponents.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/decoratorCommonImports.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/decoratorSample.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/emptyDecorator.jsp
+%%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/decorators/withoutDecorator.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/addDataSourceFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/addFileResourceFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/addInputControlFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/addListOfValuesFlow.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/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/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/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/removedListReportsFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/removedOlapViewListFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/removedRepositoryExplorerFlow.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/repositoryFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repositorySearchBeans.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/resourceActionBeans.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/resourceActionFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/roleBeans.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/roleListFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/sampleFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/searchBeans.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/searchFlow.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/spring-config.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/tiles2Flow.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/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.jdbc.properties
+%%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/js.scheduling.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/js.spring.properties
+%%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/modules/CalendarInput.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/ListReports.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/about/about.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocate.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocateState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocate.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocateState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocate.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocateState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/connectionType.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/connectionTypeState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisView/analysisViewNaming.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisView/analysisViewNamingState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisView/mdxQuery.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceBean.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceCustom.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceJDBC.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceJNDI.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataType/dataType.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataType/dataTypeState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/fileResource/addFileResource.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/fileResource/addFileResourceState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/addInputControl.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/addInputControlQueryInformation.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/addInputControlState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/dataTypeLocate.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/dataTypeLocateState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/listOfValuesLocate.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/listOfValuesLocateState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/queryLocate.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/queryLocateState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/jasperReport/locateControlResource.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/jasperReport/locateControlResourceState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/listOfValues/addListOfValues.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/listOfValues/addListOfValuesState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/mondrianXML-A/addMondrianXML-A.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/mondrianXML-A/addMondrianXML-AState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep1.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep1State.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep2.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep2State.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep3.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep3State.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep2State.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3Resource.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3ResourceNaming.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3ResourceNamingState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3ResourceState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3State.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep5.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep5State.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep6.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportSteps1_2.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/administer/logSettings.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common/dnd.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common/download.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common/jsEdition.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common/tooltip.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/commonJSTLScripts.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/defaultPaginatorLinks.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/editFolderForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/exporters/csvExportParams.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/exporters/excelExportParams.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/exporters/swfExport.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/flowError.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/flowRemoveError.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/heartbeat/heartbeat.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/heartbeat/heartbeatState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/home.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/inputControls/DefaultParametersForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/inputControls/InputControlLabel.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/inputControls/Label.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/listOlapViews.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login/login.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login/loginState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login/rotating/login_rotating_community_0.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/loginError.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage/roles.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage/rolesState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage/users.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage/usersState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages/messageDetail.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages/messageDetailState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages/messageList.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages/messageListState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/busy.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/empty.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/error.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/flush.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/properties.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/propertiesState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/viewOlap.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow/chooseSource.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow/chooseType.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow/jdbcPropsForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow/jndiPropsForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapUnitFlow/listResources.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/query/editQueryForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/query/editQueryTextForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/repoAdmin/defaultView.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/beanPropsForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/chooseSource.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/chooseType.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/customPropsForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/jdbcPropsForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/jndiPropsForm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobCommonState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobList.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobOutput.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobParameters.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobParametersState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobSetUp.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobSetUpState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportUnitFlow/listResources.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/buttons.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/calendarSample.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/columnsOne.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/columnsThree.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/columnsTwo.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/controls.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/dialogs.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/dnd-min.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/dnd.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/flow.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/ipad-scroll.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/lists.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/menus.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/mocks/jrTestReport_1.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/mocks/reportViewer_top.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/oneColumn.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/panels.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/sampleIndex.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/tabbed.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/threeColumn.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/twoColumn.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/typography.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/wizard.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/search/results.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/search/resultsState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/search/searchComponents.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/system/AccessDeniedPage.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/system/errorPage.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/system/systemConfirm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/DefaultJasperViewer.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/DefaultJasperViewerState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/FusionChartsIEFix.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/ViewReport.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/ViewReportState.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/reportOutput.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/webHelp/webHelp.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/aboutBox.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/addFolder.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/addOrganization.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/addRole.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/addUser.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/calculatedField.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/complexExpression.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/container.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/control_groupBox.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/control_searchLockup.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/control_tabSet.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/customURL.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/detail.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/editLabel.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/heartbeatOptin.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/inputControls.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/list.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/loading.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/login.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/manageDataSource.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/menu.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/nothingToDisplay.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/page.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/permissions.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/propertiesResource.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/saveAs.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/saveValues.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/select.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/selectFields.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/selectFile.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/selectFromRepository.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/selectPalette.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/sortDialog.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/standardAlert.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/standardConfirm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/systemConfirm.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/uploadTheme.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/userCountExceeded.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/utility_cosmetic.jsp
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/FoodMart.xml
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.BSD.yahoo.js.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.MIT.nwmatcher.js.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.MIT.prototype.js.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.MIT.scriptaculous.js.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.abbreviator.txt
+%%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.apache-2.0.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.avalon.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.bouncycastle.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.bsh.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.cas-client.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.dateFormatter.js.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.dom4j.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.dwr.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.easymock.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.eclipse.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.ehcache.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.eigenbase.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.jackson.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jasperreports.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.javacup.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.javassist.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jcommon.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jdom.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jfreechart.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.joda-time.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.jug.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jxl.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.lgpl-2.1.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.objenesis.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.png-encoder.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.postgresql.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.trove.txt
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.utils.common.js.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/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/aspectjrt-1.5.4.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/avalon-framework-api-4.3.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/avalon-framework-impl-4.3.1.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-3.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/barbecue-1.5-beta1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/barcode4j-2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-anim-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-awt-util-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-bridge-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-css-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-dom-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-ext-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-extension-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-gvt-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-parser-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-script-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-svg-dom-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-svggen-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-transcoder-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-util-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-xml-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcmail-jdk14-1.38.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcmail-jdk14-138.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcprov-jdk14-1.38.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcprov-jdk14-138.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bctsp-jdk14-1.38.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/cas-client-core-3.1.5.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/castor-1.2.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/cglib-nodep-2.2.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-beanutils-1.8.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-cli-1.2.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-codec-1.3.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.4.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.4.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-logging-1.0.4.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-logging-api-1.1.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/dwr-2.0.3.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ehcache-core-1.7.2.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.95.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/geronimo-stax-api_1.0_spec-1.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/groovy-all-1.7.5.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/hibernate-core-3.3.2.GA-HHH-2763.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/hibernate-jmx-3.3.2.GA.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/httpclient-4.1.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/httpcore-4.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/httpmime-4.1.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/iReport-utils-2.0.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/itext-2.1.7.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-4.1.2.3.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-chart-themes-4.1.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-fonts-4.1.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-ofc-4.1.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-common-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-common-impl-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-engine-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-engine-impl-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-metadata-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-metadata-impl-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-common-ws-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-core-util-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-export-tool-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-remote-services-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-repository-hibernate-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-rest-server-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-search-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-war-jar-4.2.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-ws-server-4.2.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.1.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-4.0.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ji-wcf-4.0.1.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.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jxl-2.6.10.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.2.0-13661-JS.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.309-JS.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/poi-3.6.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/poi-ooxml-3.6.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/poi-ooxml-schemas-3.6.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/quartz-1.5.1-jaspersoft.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/serializer-2.7.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/sitemesh-2.2.1-JasperSoft.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/slf4j-api-1.5.8.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/slf4j-log4j12-1.5.8.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-2.5.6.SEC02.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-binding-2.0.7.RELEASE.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-context-support-2.5.6.SEC02.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-js-2.0.7.RELEASE.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-ldap-core-1.3.0.RELEASE.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-ldap-core-tiger-1.3.0.RELEASE.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-orm-2.5.6.SEC02.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-security-cas-client-2.0.6.RELEASE.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-security-core-2.0.6.RELEASE.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-security-taglibs-2.0.6.RELEASE.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-web-2.5.6.SEC02.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-webflow-2.0.7.RELEASE.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-webmvc-2.5.6.SEC02.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/standard-1.1.2.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/stax-api-1.0.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/tiles-api-2.1.4.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/tiles-core-2.1.4.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/tiles-jsp-2.1.4.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/tiles-servlet-2.1.4.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/velocity-1.7.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/wsdl4j-1.5.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xalan-2.7.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xercesImpl-2.7.1.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xml-apis-1.3.04.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xml-apis-ext-1.3.04.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xmlbeans-2.3.0.jar
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xmlgraphics-commons-1.3.1.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.connect.string.properties
+%%APP_VERSION%%/webapps/jasperserver/WEB-INF/olap-ehcache.xml
+%%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/tiles.xml
+%%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/blank.htm
+%%APP_VERSION%%/webapps/jasperserver/cal/calendar.jsp
+%%APP_VERSION%%/webapps/jasperserver/favicon.ico
+%%APP_VERSION%%/webapps/jasperserver/index.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/jasperreports-flash-4.0.0.swf
+%%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/js-create.ddl
+%%APP_VERSION%%/webapps/jasperserver/openflashchart/LICENSE-open-flash-chart.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/quartz.ddl
+%%APP_VERSION%%/webapps/jasperserver/scripts/actionModel.modelGenerator.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/actionModel.primaryNavigation.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/addinputcontrol.queryextra.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/addlistofvalues.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/administer.base.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/administer.logging.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/administer.options.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/cal.calendar.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/cal.calendarSetup.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/cascade.cascade.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.LinkButton.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.ListBox.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.about.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.checkbox-utils.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.customTooltip.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.dialogs.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.heartbeat.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.loginBox.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.pickers.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.searchBox.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.tabs.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.tabularList.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.toolbarButtons.events.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.toolbarButtons.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.tooltip.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/components.validator.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/controls.base.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/controls.report.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/core.accessibility.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/core.ajax.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/core.edition.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/core.events.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/core.initialize.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/core.key.events.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/core.layout.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/core.touch.events.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/error.error.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.unittests.yui.console-filters.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.unittests.yui.console.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.unittests.yui.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.unittests.yui.test.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.builder.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.controls.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.dragdrop.extra.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.dragdrop.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.dragdrop.touch.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.effects.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.iscroll.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.nwmatcher.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.prototype.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.prototype.touch.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.scriptaculous.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.slider.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.sound.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.touch.controller.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.unittest.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/jpivot.jaPro.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/js/jquery-1.4.4.min.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/js/jquery-ui-1.8.9.custom.min.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_flat_0_aaaaaa_40x100.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_flat_75_ffffff_40x100.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_55_fbf9ee_1x400.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_65_ffffff_1x400.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_75_dadada_1x400.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_75_e6e6e6_1x400.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_95_fef1ec_1x400.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_222222_256x240.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_2e83ff_256x240.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_454545_256x240.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_888888_256x240.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_cd0a0a_256x240.png
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.all.css
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.base.css
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.core.css
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.resizable.css
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.selectable.css
+%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.theme.css
+%%APP_VERSION%%/webapps/jasperserver/scripts/list.base.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/messages.messageDetail.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/messages.messageList.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/mng.common.actions.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/mng.common.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/mng.main.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/old.report.view-report.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/org.role.mng.actions.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/org.role.mng.components.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/org.role.mng.main.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/org.rootObjectModifier.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/org.user.mng.actions.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/org.user.mng.components.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/org.user.mng.main.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.list.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.output.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.params.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.setup.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/report.view.base.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/report.view.runtime.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/repository.search.actions.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/repository.search.components.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/repository.search.globalSearchBoxInit.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/repository.search.main.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.add.files.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.add.mondrianxmla.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.dataSource.locate.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.locate.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.mondrian.locate.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.xmla.locate.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisView.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.base.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.dataSource.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.dataType.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.dataType.locate.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.inputControl.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.inputControl.locate.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.listOfValues.locate.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.listofvalues.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.locate.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.query.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.query.locate.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.report.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/resource.reportResourceNaming.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/tools.drag.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/tools.infiniteScroll.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/tools.truncator.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/tree.events.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/tree.nanotree.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/tree.treenode.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/tree.treesupport.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/tree.utils.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/utils.animation.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/utils.common.js
+%%APP_VERSION%%/webapps/jasperserver/scripts/utils.dateFormatter.js
+%%APP_VERSION%%/webapps/jasperserver/themes/default/buttons.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/containers.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/controls.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/dataDisplays.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/dialogSpecific.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/forPrint.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/adhoc_toolbar_buttons_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/ajax-loader.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/body_bkgnd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_jumbo_primary_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_jumbo_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_primary_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_square_icons_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_capsule_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_options_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/column_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/column_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/column_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/column_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/cursor_copy.cur
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/cursor_copy.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/disclosure_indicators_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/first-d.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/first.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/floatingMenu_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_background_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_header_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/gradient_frame.content.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/grid_20x20_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/grouper_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/header_primary_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/home_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/home_icons_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/input_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/last-d.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/last.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/list_node_animation.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/list_pressed_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/lists_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/loadinfo.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/login_welcome_bkgd.jpg
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/login_welcome_bkgd_ipad.jpg
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/login_welcome_ce_bkgd.jpg
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/logo.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/logo_small.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_context_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_context_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_context_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_dropDown_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_dropDown_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_dropDown_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_indicators_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_primaryNav_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_vertical_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/message_icons_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/next-d.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/next.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_confirm_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_dialog_header_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_system_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_system_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_system_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_tooltip_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_tooltip_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_tooltip_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_gradient_left.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_gradient_right.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inset_bkgd_corners.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inset_bkgd_edges_rl.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inset_bkgd_edges_tb.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inset_inset_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_sizer_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_widget_header_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/prev-d.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/prev.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/search_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/sort_indicators_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/tabs_horizontal_buttons_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/tabs_horizontal_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/tabs_vertical_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/toolbar_bkgd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/default/images/wait_animation_large.gif
+%%APP_VERSION%%/webapps/jasperserver/themes/default/lists.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/overrides_custom.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/overrides_ie.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/overrides_ie7.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/overrides_ie8.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/pageSpecific.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/pages.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/samples.css
+%%APP_VERSION%%/webapps/jasperserver/themes/default/theme.css
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/body_bkgnd.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/button_action_jumbo_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/button_action_primary_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/button_capsule_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/disclosure_indicators_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/frame_header_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/logo.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/menu_primaryNav_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/search_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/tabs_horizontal_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/tabs_vertical_sprite.png
+%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/overrides_custom.css
+%%APP_VERSION%%/webapps/jasperserver/themes/reset.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/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql
+%%APP_VERSION%%/webapps/jasperserver/upgrade-%%DATABASE%%-4.1.0-4.2.1-ce.sql
 %%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%
 @exec if [ -f %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%% ]; then /bin/chmod a+r %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%; else exit 1; fi
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/toolbar
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tabbed
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/status
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/popup
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/pagestack
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/form
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/scripts
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/j
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/cal
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/queries
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/logs
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/webHelp
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/mocks
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportUnitFlow
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/repoAdmin
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/query
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapUnitFlow
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/rotating
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/heartbeat
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/exporters
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/administer
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/mondrianXML-A
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/listOfValues
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/jasperReport
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/fileResource
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataType
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisView
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/about
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/toolbar
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/saveas
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/chart
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/internal
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/themes
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF
-@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/tree
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/toolbar
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/table
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/tabbed
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/status
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/popup
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/pagestack
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/form
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/changeorder
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/catedit
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/calendar
+@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf
+@dirrm %%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images
+@dirrm %%APP_VERSION%%/webapps/jasperserver/themes/pods_summer
+@dirrm %%APP_VERSION%%/webapps/jasperserver/themes/default/images
+@dirrm %%APP_VERSION%%/webapps/jasperserver/themes/default
+@dirrm %%APP_VERSION%%/webapps/jasperserver/themes
+@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images
+@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme
+@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/jquery/js
+@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/jquery
+@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts
+@dirrm %%APP_VERSION%%/webapps/jasperserver/openflashchart
+@dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar
+@dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot/table
+@dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot/navi
+@dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot
+@dirrm %%APP_VERSION%%/webapps/jasperserver/j
+@dirrm %%APP_VERSION%%/webapps/jasperserver/cal
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/queries
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/logs
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/webHelp
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/system
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/search
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/mocks
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportUnitFlow
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/repoAdmin
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/query
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapUnitFlow
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login/rotating
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/inputControls
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/heartbeat
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/exporters
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/administer
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/mondrianXML-A
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/listOfValues
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/jasperReport
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/fileResource
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataType
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisView
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/about
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ajax
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/toolbar
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/saveas
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/chart
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/internal
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/themes
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles
+@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF
+@dirrm %%APP_VERSION%%/webapps/jasperserver/META-INF
+@dirrm %%APP_VERSION%%/webapps/jasperserver
Index: jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml
===================================================================
RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml,v
retrieving revision 1.1
diff -u -r1.1 patch-jasperserver__common__shared-config__applicationContext-themes.xml
--- jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml	28 Feb 2011 23:14:44 -0000	1.1
+++ jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml	18 Oct 2011 23:41:10 -0000
@@ -1,5 +1,5 @@
---- ./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
+--- ./jasperserver/common/shared-config/applicationContext-themes.xml.orig	2011-10-18 16:40:01.000000000 -0700
++++ ./jasperserver/common/shared-config/applicationContext-themes.xml	2011-10-18 16:40:56.000000000 -0700
 @@ -14,7 +14,6 @@
  	     	
  	 -->
@@ -8,14 +8,14 @@
      <bean id="themeResolver" class="org.springframework.web.servlet.theme.FixedThemeResolver">
          <property name="defaultThemeName" value="default"/>
      </bean>
-@@ -22,27 +21,32 @@
+@@ -22,27 +21,29 @@
      <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">
@@ -23,8 +23,8 @@
          </property>
          <property name="delegate" ref="jsThemeResolver"/>
      </bean>
+-
 +-->
- 
 +<!--
      <bean id="jsThemeResolver" class="com.jaspersoft.jasperserver.war.themes.MTThemeResolver">
          <property name="defaultThemeName">
@@ -32,8 +32,8 @@
          </property>
          <property name="tenantService" ref="${bean.hibernateTenantService}" />
      </bean>
+-
 +-->
- 
 +<!--
      <bean id="themeSource" class="com.jaspersoft.jasperserver.war.themes.RepositoryFolderThemeSourceImpl">
          <property name="themeCache" ref="themeCache"/>
@@ -42,7 +42,7 @@
  
      <bean id="themeCache" class="com.jaspersoft.jasperserver.war.themes.ThemeCache">
          <property name="repositoryService" ref="unsecureRepositoryService"/>
-@@ -84,4 +88,4 @@
+@@ -84,4 +85,4 @@
          <property name="themeSource" ref="themeSource" />
      </bean>
  
Index: jasperserver/files/pkg-message.in
===================================================================
RCS file: /home/jhelfman/ncvs/ports/databases/jasperserver/files/pkg-message.in,v
retrieving revision 1.3
diff -u -r1.3 pkg-message.in
--- jasperserver/files/pkg-message.in	23 Jul 2011 21:33:34 -0000	1.3
+++ jasperserver/files/pkg-message.in	28 Oct 2011 19:05:12 -0000
@@ -14,27 +14,35 @@
 
 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
+To create the %%JSDB%% database, you may choose to run the following target against
 %%SRCDIR%%/%%PORTNAME%%/buildomatic/js-ant
 
-./js-ant create-js-db (Creates the %%PORTNAME%% database)
+./js-ant create-js-db (Creates the %%JSDB%% database)
 
-If the %%PORTNAME%% database already exists, you may need to first drop the database:
-./js-ant drop-js-db (Drops the %%PORTNAME%% database)
+If the %%JSDB%% database already exists, you may need to first drop the database:
+./js-ant drop-js-db (Drops the %%JSDB%% database)
 
 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;
+ (mysql) mysql> create database %%JSDB%% character set utf8;
+ (postgresql) create database %%JSDB%%;
 
 
 ==============  W A R N I N G   I M P O R T A N T   N O T E  =================
 
-If UPGRADING from 4.0.0 to 4.1.0:
-(taken from release notes of 4.1.0 from vendor)
+You can upgrade directly to 4.2.1 if your instance is one of the following:
+3.7.0
+3.7.1
+4.0.0
+4.1.0
+
+Note that Jaspersoft did not release a 4.2.0 version of JasperReports Server
+Community Project. The version number progression goes from 4.1.0 to 4.2.1
+directly. The recommended upgrade procedures are fully described in the
+Installation Guide.
+
+There are no database changes between 4.1.0 and 4.2.1. So, the upgrade from
+4.1.0 to 4.2.1 is simpler than upgrading from earlier versions.
 
-To upgrade from 4.0.0 to 4.1.0, refer to the recommended
-procedure described in the Installation Guide Chapter 8 
-"Upgrade from 4.0.0 to 4.1.0"
 ==============  W A R N I N G   I M P O R T A N T   N O T E  =================
 
 WWW: http://jasperforge.org/projects/jasperserver
>Release-Note:
>Audit-Trail:
>Unformatted:



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