View | Details | Raw Unified | Return to bug 162111
Collapse All | Expand All

(-)jasperserver/Makefile (-44 / +60 lines)
Lines 6-25 Link Here
6
#
6
#
7
7
8
PORTNAME=	jasperserver
8
PORTNAME=	jasperserver
9
PORTVERSION=	4.1.0
9
PORTVERSION=	4.2.1
10
CATEGORIES=	databases print java
10
CATEGORIES=	databases print java
11
MASTER_SITES=	SF/${PORTNAME}/JasperServer/JasperServer%20${PORTVERSION}/:source1
11
MASTER_SITES=	SF/${PORTNAME}/JasperServer/JasperServer%20${PORTVERSION}/:source1
12
DISTFILES=	jasperreports-server-cp-${PORTVERSION}-src.zip:source1 \
12
DISTFILES=	jasperreports-server-cp-${PORTVERSION}-src.zip:source1 \
13
		jasperreports-server-${PORTVERSION}-maven-repository.zip:source1
13
		jasperreports-server-cp-${PORTVERSION}-maven-repository.zip:source1
14
EXTRACT_ONLY=	jasperreports-server-cp-${PORTVERSION}-src.zip
14
EXTRACT_ONLY=	jasperreports-server-cp-${PORTVERSION}-src.zip
15
15
16
MAINTAINER=	jhelfman@experts-exchange.com
16
MAINTAINER=	jhelfman@experts-exchange.com
17
COMMENT=	Open Source Java Reporting Library
17
COMMENT=	Open Source Java Reporting Library
18
18
19
BUILD_DEPENDS=	mvn:${PORTSDIR}/devel/maven2
20
21
LICENSE_COMB=	multi
22
LICENSE=	GPLv2 MIT ASL
19
LICENSE=	GPLv2 MIT ASL
20
LICENSE_COMB=	multi
21
22
BUILD_DEPENDS=	mvn:${PORTSDIR}/devel/maven2
23
23
24
SRCDIR=		${WRKDIR}/jasperreports-server-cp-${PORTVERSION}-src
24
SRCDIR=		${WRKDIR}/jasperreports-server-cp-${PORTVERSION}-src
25
PATCH_WRKSRC=	${SRCDIR}
25
PATCH_WRKSRC=	${SRCDIR}
Lines 28-34 Link Here
28
SQLSRC=		${WRKSRC}/install_resources/sql
28
SQLSRC=		${WRKSRC}/install_resources/sql
29
JS=		${SRCDIR}/${PORTNAME}
29
JS=		${SRCDIR}/${PORTNAME}
30
JSREPO=		${JS}-repo
30
JSREPO=		${JS}-repo
31
JSMAVENARCH=	jasperreports-server-${PORTVERSION}-maven-repository.zip
31
JSMAVENARCH=	jasperreports-server-cp-${PORTVERSION}-maven-repository.zip
32
32
33
NO_WRKSUBDIR=	yes
33
NO_WRKSUBDIR=	yes
34
USE_JAVA=	yes
34
USE_JAVA=	yes
Lines 39-49 Link Here
39
# use own DOS2UNIX in pre-patch, not the one from bsd.port.mk!
39
# use own DOS2UNIX in pre-patch, not the one from bsd.port.mk!
40
DOS2UNIX_REGEX=	.*(css|dtd|java|js|txt|wsdd|xml|xsl)$$
40
DOS2UNIX_REGEX=	.*(css|dtd|java|js|txt|wsdd|xml|xsl)$$
41
41
42
OPTIONS=	TOMCAT5 "Enable Tomcat 5.x support"	on \
42
OPTIONS=	TOMCAT5 "Enable Tomcat 5.x support"	off \
43
		TOMCAT6 "Enable Tomcat 6.x support"	off \
43
		TOMCAT6 "Enable Tomcat 6.x support"	on \
44
		MYSQL   "Enable Mysql 5.x support"	on \
44
		TOMCAT7 "Enable Tomcat 7.x support"	off \
45
		POSTGRESQL "Enable PostgreSQL 8.x support" off \
45
		MYSQL   "Enable Mysql 5.x support"	off \
46
		POSTGRESQL9 "Enable PostgreSQL 9.x support" off
46
		POSTGRESQL "Enable PostgreSQL 9.x support" on
47
47
48
REPLACE_FILES=	${JS}/jasperserver-war/src/main/webappAdditions/WEB-INF/web.xml
48
REPLACE_FILES=	${JS}/jasperserver-war/src/main/webappAdditions/WEB-INF/web.xml
49
REPLACE_LIST_TEMP=	${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
49
REPLACE_LIST_TEMP=	${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
Lines 51-56 Link Here
51
SUB_FILES=	pkg-message
51
SUB_FILES=	pkg-message
52
52
53
SUB_LIST=	DATABASE=${DATABASE} \
53
SUB_LIST=	DATABASE=${DATABASE} \
54
		JSDB=${JSDB} \
54
		JSHOME=${JSHOME} \
55
		JSHOME=${JSHOME} \
55
		JSTIMEOUT=${JSTIMEOUT} \
56
		JSTIMEOUT=${JSTIMEOUT} \
56
		PORTNAME=${PORTNAME} \
57
		PORTNAME=${PORTNAME} \
Lines 64-93 Link Here
64
65
65
.include <bsd.port.options.mk>
66
.include <bsd.port.options.mk>
66
67
68
#use version <55,jasperserver quartz scheduler won't work properly (tested well with 51)
67
.if defined(WITH_MYSQL)
69
.if defined(WITH_MYSQL)
68
USE_MYSQL=	yes
70
USE_MYSQL=	yes
69
MYNAME?=	root
71
DBUSER?=	root
70
MYPASS?=
72
DBPASS?=
71
DATABASE=	mysql
73
DATABASE=	mysql
72
PLIST_SUB+=	JDBC="mysql-connector-java-5.1.10.jar"
74
RUN_DEPENDS+=	${JAVAJARDIR}/mysql-connector-java.jar:${PORTSDIR}/databases/mysql-connector-java
75
PLIST_SUB+=	JDBC="mysql-connector-java.jar"
73
.endif
76
.endif
74
77
75
#use version 84, application is certified against this version
78
#use version 90, application is certified w/ pg90
76
#use version 90, application is reported to work against this version
77
.if defined(WITH_POSTGRESQL)
79
.if defined(WITH_POSTGRESQL)
78
WANT_PGSQL_VER=	84
79
JDBC=		postgresql-8.4-702.jdbc4.jar
80
DISTFILES+=	postgresql-8.4-702.jdbc4.jar:source2
81
.elif defined(WITH_POSTGRESQL9)
82
WANT_PGSQL_VER=	90
80
WANT_PGSQL_VER=	90
83
JDBC=	postgresql-9.0-801.jdbc4.jar
81
JDBC=	postgresql-9.0-802.jdbc4.jar
84
DISTFILES+=	postgresql-9.0-801.jdbc4.jar:source2
82
DISTFILES+=	postgresql-9.0-802.jdbc4.jar:source2
85
.endif
86
87
.if ( defined(WITH_POSTGRESQL) || (WITH_POSTGRESQL9) )
88
USE_PGSQL=	yes
83
USE_PGSQL=	yes
89
MYNAME?=	pgsql
84
DBUSER?=	pgsql
90
MYPASS?=	pgsql
85
DBPASS?=	pgsql
91
DATABASE=	postgresql
86
DATABASE=	postgresql
92
PLIST_SUB+=	JDBC=${JDBC}
87
PLIST_SUB+=	JDBC=${JDBC}
93
MASTER_SITES+=	http://jdbc.postgresql.org/download/:source2
88
MASTER_SITES+=	http://jdbc.postgresql.org/download/:source2
Lines 95-104 Link Here
95
90
96
.if defined(WITH_TOMCAT5)
91
.if defined(WITH_TOMCAT5)
97
APPHOME?=	${LOCALBASE}/tomcat5.5
92
APPHOME?=	${LOCALBASE}/tomcat5.5
98
BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55
93
BUILD_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55
99
RUN_DEPENDS+=   ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55
94
RUN_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55
100
APPTYPE=	tomcat5
95
APPTYPE=	tomcat5
101
JSHOME?=	${APPHOME}/webapps/${PORTNAME}
102
PLIST_SUB+=	APP_VERSION="tomcat5.5"
96
PLIST_SUB+=	APP_VERSION="tomcat5.5"
103
JDBCLOC=	common/lib
97
JDBCLOC=	common/lib
104
.endif
98
.endif
Lines 108-125 Link Here
108
BUILD_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6
102
BUILD_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6
109
RUN_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6
103
RUN_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6
110
APPTYPE=	tomcat6
104
APPTYPE=	tomcat6
111
JSHOME?=	${APPHOME}/webapps/${PORTNAME}
112
PLIST_SUB+=	APP_VERSION="apache-tomcat-6.0"
105
PLIST_SUB+=	APP_VERSION="apache-tomcat-6.0"
113
JDBCLOC=	lib
106
JDBCLOC=	lib
114
.endif
107
.endif
115
108
109
.if defined(WITH_TOMCAT7)
110
APPHOME?=	${LOCALBASE}/apache-tomcat-7.0
111
BUILD_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7
112
RUN_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7
113
APPTYPE=	tomcat7
114
PLIST_SUB+=	APP_VERSION="apache-tomcat-7.0"
115
JDBCLOC=	lib
116
.endif
117
116
DBHOST?=	localhost
118
DBHOST?=	localhost
117
119
118
APP_PROPERTIES=	${SRCDIR}/${PORTNAME}/buildomatic/default_master.properties
120
APP_PROPERTIES=	${SRCDIR}/${PORTNAME}/buildomatic/default_master.properties
119
QTZ_PROPERTIES=	${SRCDIR}/${PORTNAME}/${PORTNAME}-war/target/${PORTNAME}/WEB-INF/js.quartz.properties
121
QTZ_PROPERTIES=	${SRCDIR}/${PORTNAME}/${PORTNAME}-war/target/${PORTNAME}/WEB-INF/js.quartz.properties
120
122
123
JSDB?=	jasperserver
121
JSPORT?=	8080
124
JSPORT?=	8080
122
JSEXTRA?=
125
JSEXTRA?=
126
JSHOME?=	${APPHOME}/webapps/${PORTNAME}
123
JSMAILHOST?=	localhost
127
JSMAILHOST?=	localhost
124
JSMAILUSER?=	admin
128
JSMAILUSER?=	admin
125
JSMAILPASS?=	password
129
JSMAILPASS?=	password
Lines 131-145 Link Here
131
check-sanity:
135
check-sanity:
132
.if ( defined(WITH_TOMCAT5) && defined(WITH_TOMCAT6) )
136
.if ( defined(WITH_TOMCAT5) && defined(WITH_TOMCAT6) )
133
IGNORE=	you can only define one application server
137
IGNORE=	you can only define one application server
134
.elif ( !defined(WITH_TOMCAT5) && !defined(WITH_TOMCAT6) )
138
.elif ( defined(WITH_TOMCAT5) && defined(WITH_TOMCAT7) )
139
IGNORE=	you can only define one application server
140
.elif ( defined(WITH_TOMCAT6) && defined(WITH_TOMCAT7) )
141
IGNORE=	you can only define one application server
142
.elif ( !defined(APPHOME) )
135
IGNORE=	choose at least one application server
143
IGNORE=	choose at least one application server
136
.elif ( defined(WITH_MYSQL) && defined(WITH_POSTGRESQL) )
144
.elif ( defined(WITH_MYSQL) && defined(WITH_POSTGRESQL) )
137
IGNORE=	you can only define one database
145
IGNORE=	you can only define one database
138
.elif ( defined(WITH_MYSQL) && defined(WITH_POSTGRESQL9) )
146
.elif ( !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL) )
139
IGNORE=	you can only define one database
140
.elif ( defined(WITH_POSTGRESQL) && defined(WITH_POSTGRESQL9) )
141
IGNORE=	you can only define one database
142
.elif ( !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL) && !defined(WITH_POSTGRESQL9) )
143
IGNORE=	choose at least one database
147
IGNORE=	choose at least one database
144
.endif
148
.endif
145
149
Lines 178-194 Link Here
178
	@${ECHO} "appServerType = ${APPTYPE}" > ${APP_PROPERTIES}
182
	@${ECHO} "appServerType = ${APPTYPE}" > ${APP_PROPERTIES}
179
	@${ECHO} "appServerDir = ${APPHOME}" >> ${APP_PROPERTIES}
183
	@${ECHO} "appServerDir = ${APPHOME}" >> ${APP_PROPERTIES}
180
	@${ECHO} "dbType = ${DATABASE}" >> ${APP_PROPERTIES}
184
	@${ECHO} "dbType = ${DATABASE}" >> ${APP_PROPERTIES}
181
	@${ECHO} "dbUsername = ${MYNAME}" >> ${APP_PROPERTIES}
185
	@${ECHO} "dbUsername = ${DBUSER}" >> ${APP_PROPERTIES}
182
	@${ECHO} "dbPassword = ${MYPASS}" >> ${APP_PROPERTIES}
186
	@${ECHO} "dbPassword = ${DBPASS}" >> ${APP_PROPERTIES}
183
	@${ECHO} "dbHost = ${DBHOST}" >> ${APP_PROPERTIES}
187
	@${ECHO} "dbHost = ${DBHOST}" >> ${APP_PROPERTIES}
188
	@${ECHO} "js.dbName = ${JSDB}" >> ${APP_PROPERTIES}
184
189
185
	@( if [ -f ${LOCALBASE}/bin/mvn ] ; then \
190
	@( if [ -f ${LOCALBASE}/bin/mvn ] ; then \
186
		${ECHO} "maven = ${JAVASHAREDIR}/maven2/bin/mvn" >> ${APP_PROPERTIES} ; \
191
		${ECHO} "maven = ${JAVASHAREDIR}/maven2/bin/mvn" >> ${APP_PROPERTIES} ; \
187
		else ${FALSE}; \
192
		else ${FALSE}; \
188
	fi )
193
	fi )
194
.if !defined(WITH_POSTGRESQL)
195
	@${ECHO} "maven.jdbc.groupId = mysql" >> ${APP_PROPERTIES}
196
	@${ECHO} "maven.jdbc.version = 5.1.17-bin" >> ${APP_PROPERTIES}
197
	@${ECHO} "maven.jdbc.artifactId = mysql-connector-java" >> ${APP_PROPERTIES}
198
.endif
189
	@${ECHO} "js-path = ${JS}" >> ${APP_PROPERTIES}
199
	@${ECHO} "js-path = ${JS}" >> ${APP_PROPERTIES}
190
	@${ECHO} "js-pro-path = ${JS}" >> ${APP_PROPERTIES}
200
	@${ECHO} "js-pro-path = ${JS}" >> ${APP_PROPERTIES}
191
	@${ECHO} "js-repo-path = ${JSREPO}">> ${APP_PROPERTIES}
201
	@${ECHO} "repo-path = ${JSREPO}" >> ${APP_PROPERTIES}
202
203
.if defined(WITH_MYSQL)
204
	${LN} -s ${JAVAJARDIR}/mysql-connector-java.jar ${SRCDIR}/${PORTNAME}/buildomatic/conf_source/db/mysql/jdbc/mysql-connector-java-5.1.17-bin.jar
205
.endif
192
206
193
do-build:
207
do-build:
194
	@( cd ${WRKSRC} && ./js-ant clean-config )
208
	@( cd ${WRKSRC} && ./js-ant clean-config )
Lines 197-203 Link Here
197
	@( ${CP} ${WRKDIR}/web.xml ${JS}/jasperserver-war/src/main/webappAdditions/WEB-INF/web.xml )
211
	@( ${CP} ${WRKDIR}/web.xml ${JS}/jasperserver-war/src/main/webappAdditions/WEB-INF/web.xml )
198
	@( cd ${WRKSRC} && ./js-ant build-ce )
212
	@( cd ${WRKSRC} && ./js-ant build-ce )
199
213
200
.if !( defined(WITH_POSTGRESQL) || (WITH_POSTGRESQL9) )
214
.if !defined(WITH_POSTGRESQL)
201
	@${ECHO} "quartz.delegateClass=org.quartz.impl.jdbcjobstore.StdJDBCDelegate" > ${QTZ_PROPERTIES}
215
	@${ECHO} "quartz.delegateClass=org.quartz.impl.jdbcjobstore.StdJDBCDelegate" > ${QTZ_PROPERTIES}
202
.else
216
.else
203
	@${ECHO} "quartz.delegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate" > ${QTZ_PROPERTIES}
217
	@${ECHO} "quartz.delegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate" > ${QTZ_PROPERTIES}
Lines 205-211 Link Here
205
219
206
	@${ECHO} "quartz.tablePrefix=QRTZ_" >> ${QTZ_PROPERTIES}
220
	@${ECHO} "quartz.tablePrefix=QRTZ_" >> ${QTZ_PROPERTIES}
207
	@${ECHO} "quartz.extraSettings=${JSEXTRA}" >> ${QTZ_PROPERTIES}
221
	@${ECHO} "quartz.extraSettings=${JSEXTRA}" >> ${QTZ_PROPERTIES}
208
	@${ECHO} "report.scheduler.web.deployment.uri=http://localhost:${JSPORT}/${PORTNAME}" >> ${QTZ_PROPERTIES}
222
	@${ECHO} "report.scheduler.web.deployment.uri=http://${DBHOST}:${JSPORT}/${JSDB}" >> ${QTZ_PROPERTIES}
209
	@${ECHO} "report.scheduler.mail.sender.host=${JSMAILHOST}" >> ${QTZ_PROPERTIES}
223
	@${ECHO} "report.scheduler.mail.sender.host=${JSMAILHOST}" >> ${QTZ_PROPERTIES}
210
	@${ECHO} "report.scheduler.mail.sender.username=${JSMAILUSER}" >> ${QTZ_PROPERTIES}
224
	@${ECHO} "report.scheduler.mail.sender.username=${JSMAILUSER}" >> ${QTZ_PROPERTIES}
211
	@${ECHO} "report.scheduler.mail.sender.password=${JSMAILPASS}" >> ${QTZ_PROPERTIES}
225
	@${ECHO} "report.scheduler.mail.sender.password=${JSMAILPASS}" >> ${QTZ_PROPERTIES}
Lines 221-233 Link Here
221
	@${INSTALL_DATA} ${FILESDIR}/jasperserverCreateDefaultSecurity-${DATABASE}.sql ${JSHOME}
235
	@${INSTALL_DATA} ${FILESDIR}/jasperserverCreateDefaultSecurity-${DATABASE}.sql ${JSHOME}
222
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/js-create.ddl ${JSHOME} )
236
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/js-create.ddl ${JSHOME} )
223
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/quartz.ddl ${JSHOME} )
237
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/quartz.ddl ${JSHOME} )
224
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/upgrade-${DATABASE}-4.0.0-4.1.0-ce.sql ${JSHOME} )
238
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/upgrade-${DATABASE}-4.1.0-4.2.1-ce.sql ${JSHOME} )
225
	@${INSTALL} -m 440 ${QTZ_PROPERTIES} ${JSHOME}/WEB-INF/
239
	@${INSTALL} -m 440 ${QTZ_PROPERTIES} ${JSHOME}/WEB-INF/
226
240
227
#removed shipped driver from vendor
241
#removed shipped driver from vendor
228
.if ( defined(WITH_TOMCAT6) || defined(WITH_TOMCAT5) && !defined(WITH_MYSQL) && defined(WITH_POSTGRESQL) || defined(WITH_POSTGRESQL9) )
242
.if !defined(WITH_MYSQL)
229
	${INSTALL_DATA} ${DISTDIR}/${JDBC} ${APPHOME}/${JDBCLOC}
243
	${INSTALL_DATA} ${DISTDIR}/${JDBC} ${APPHOME}/${JDBCLOC}
230
	@${RM} ${APPHOME}/${JDBCLOC}/postgresql-9.0-801.jdbc3.jar
244
	@${RM} ${APPHOME}/${JDBCLOC}/postgresql-9.0-801.jdbc3.jar
245
.else
246
	${LN} -s ${JAVAJARDIR}/mysql-connector-java.jar ${APPHOME}/${JDBCLOC}
231
.endif
247
.endif
232
248
233
post-install:
249
post-install:
(-)jasperserver/distinfo (-8 / +6 lines)
Lines 1-8 Link Here
1
SHA256 (jasperreports-server-cp-4.1.0-src.zip) = b6d2c460883848ebcedc75d7fef2fa4928fd8ca12187f53523a0affae2bc6d5e
1
SHA256 (jasperreports-server-cp-4.2.1-src.zip) = a584a99f36b44debef5eda715da9c432957ad0d705c8cff2ee3b8dc700194cc4
2
SIZE (jasperreports-server-cp-4.1.0-src.zip) = 131993640
2
SIZE (jasperreports-server-cp-4.2.1-src.zip) = 229873995
3
SHA256 (jasperreports-server-4.1.0-maven-repository.zip) = 8229eda108ba773b3d1f0c87ee915ba27468d784863e1ad2ea858b946345a742
3
SHA256 (jasperreports-server-cp-4.2.1-maven-repository.zip) = c306f2f028165bac8a93fed67ee82e256401db8ca34ec60ce690bc74a9a7edb0
4
SIZE (jasperreports-server-4.1.0-maven-repository.zip) = 226631661
4
SIZE (jasperreports-server-cp-4.2.1-maven-repository.zip) = 249731365
5
SHA256 (postgresql-9.0-801.jdbc4.jar) = 269faefab785ba5480b66b67b94a5189209e5cb86fb6def3e0a2155332ed6f3a
5
SHA256 (postgresql-9.0-802.jdbc4.jar) = 3e800c3bd081ed0bbc9dfdd0e862b9f98fe159b3276881d2da3f2c9767f30829
6
SIZE (postgresql-9.0-801.jdbc4.jar) = 539705
6
SIZE (postgresql-9.0-802.jdbc4.jar) = 543423
7
SHA256 (postgresql-8.4-702.jdbc4.jar) = 614727934086a416eaa23425ac5f57df937a258e6d327e6c23e9ff87b11fa138
8
SIZE (postgresql-8.4-702.jdbc4.jar) = 539510
(-)jasperserver/pkg-install (-5 / +12 lines)
Lines 8-19 Link Here
8
cat << _EOF
8
cat << _EOF
9
==============  W A R N I N G   I M P O R T A N T   N O T E  =================
9
==============  W A R N I N G   I M P O R T A N T   N O T E  =================
10
10
11
If UPGRADING from 4.0.0 to 4.1.0:
11
You can upgrade directly to 4.2.1 if your instance is one of the following:
12
(taken from release notes of 4.1.0 from vendor)
12
3.7.0
13
3.7.1
14
4.0.0
15
4.1.0
13
16
14
To upgrade from 4.0.0 to 4.1.0, refer to the recommended
17
Note that Jaspersoft did not release a 4.2.0 version of JasperReports Server
15
procedure described in the Installation Guide Chapter 8
18
Community Project. The version number progression goes from 4.1.0 to 4.2.1
16
"Upgrade from 4.0.0 to 4.1.0"
19
directly. The recommended upgrade procedures are fully described in the
20
Installation Guide.
21
22
There are no database changes between 4.1.0, and 4.2.1. So, the upgrade from
23
4.1.0 to 4.2.1 is simpler than upgrading from earlier versions.
17
24
18
WWW: http://jasperforge.org/projects/jasperserver
25
WWW: http://jasperforge.org/projects/jasperserver
19
26
(-)jasperserver/pkg-plist (-1245 / +1259 lines)
Lines 1-1247 Link Here
1
%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/MANIFEST.MF
1
%%APP_VERSION%%/webapps/jasperserver/META-INF/MANIFEST.MF
2
%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/context.xml
2
%%APP_VERSION%%/webapps/jasperserver/META-INF/context.xml
3
%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/foodmartDS-jdbc.xml
3
%%APP_VERSION%%/webapps/jasperserver/META-INF/foodmartDS-jdbc.xml
4
%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/jasperserverDS-jdbc.xml
4
%%APP_VERSION%%/webapps/jasperserver/META-INF/jasperserverDS-jdbc.xml
5
%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/sugarcrmDS-jdbc.xml
5
%%APP_VERSION%%/webapps/jasperserver/META-INF/sugarcrmDS-jdbc.xml
6
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocChart.xml
6
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-adhocChart.xml
7
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocCrosstab.xml
7
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-adhocCrosstab.xml
8
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocOlapCrosstab.xml
8
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-adhocOlapCrosstab.xml
9
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocTable.xml
9
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-adhocTable.xml
10
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-dashboard.xml
10
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-dashboard.xml
11
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-navigation.xml
11
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-navigation.xml
12
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-search.xml
12
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/actionModel-search.xml
13
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-cascade.xml
13
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-cascade.xml
14
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-events-logging.xml
14
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-events-logging.xml
15
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-logging.xml
15
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-logging.xml
16
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-olap-connection.xml
16
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-olap-connection.xml
17
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-report-scheduling.xml
17
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-report-scheduling.xml
18
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-search.xml
18
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-rest-services.xml
19
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-security-web.xml
19
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-search.xml
20
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-security.xml
20
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-security-web.xml
21
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-themes.xml
21
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-security.xml
22
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-themes.xml.orig
22
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-themes.xml
23
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-web-services.xml
23
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-themes.xml.orig
24
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-webHelp.xml
24
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-web-services.xml
25
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-webapp.xml
25
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-webHelp.xml
26
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext.xml
26
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext-webapp.xml
27
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar.properties
27
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/applicationContext.xml
28
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_de.properties
28
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar.properties
29
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_es.properties
29
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar_de.properties
30
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_fr.properties
30
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar_es.properties
31
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_ja.properties
31
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar_fr.properties
32
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_zh_CN.properties
32
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar_ja.properties
33
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages.properties
33
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/calendar_zh_CN.properties
34
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_de.properties
34
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages.properties
35
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_es.properties
35
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_de.properties
36
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_fr.properties
36
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_es.properties
37
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_ja.properties
37
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_fr.properties
38
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_zh_CN.properties
38
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_it.properties
39
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages.properties
39
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_ja.properties
40
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_de.properties
40
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja-pro_messages_zh_CN.properties
41
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_es.properties
41
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages.properties
42
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_fr.properties
42
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_de.properties
43
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_ja.properties
43
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_es.properties
44
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_zh_CN.properties
44
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_fr.properties
45
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config.properties
45
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_it.properties
46
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_de.properties
46
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_ja.properties
47
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_es.properties
47
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/ja_mondrian_messages_zh_CN.properties
48
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_fr.properties
48
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config.properties
49
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_ja.properties
49
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_de.properties
50
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_zh_CN.properties
50
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_es.properties
51
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages.properties
51
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_fr.properties
52
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_de.properties
52
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_ja.properties
53
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_es.properties
53
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_config_zh_CN.properties
54
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_fr.properties
54
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages.properties
55
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_ja.properties
55
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_de.properties
56
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_zh_CN.properties
56
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_es.properties
57
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages.properties
57
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_fr.properties
58
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_de.properties
58
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_ja.properties
59
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_es.properties
59
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jasperserver_messages_zh_CN.properties
60
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_fr.properties
60
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages.properties
61
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_ja.properties
61
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_de.properties
62
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_zh_CN.properties
62
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_es.properties
63
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages.properties
63
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_fr.properties
64
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_de.properties
64
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_ja.properties
65
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_es.properties
65
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jpivot_messages_zh_CN.properties
66
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_fr.properties
66
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages.properties
67
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_ja.properties
67
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_de.properties
68
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_zh_CN.properties
68
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_es.properties
69
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions.properties
69
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_fr.properties
70
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_de.properties
70
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_ja.properties
71
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_es.properties
71
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/jsexceptions_messages_zh_CN.properties
72
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_fr.properties
72
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions.properties
73
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_ja.properties
73
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_de.properties
74
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages.properties
74
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_es.properties
75
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_de.properties
75
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_fr.properties
76
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_es.properties
76
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_ja.properties
77
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_fr.properties
77
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/logger_descriptions_zh_CN.properties
78
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_ja.properties
78
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages.properties
79
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_zh_CN.properties
79
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_de.properties
80
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws.properties
80
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_es.properties
81
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_de.properties
81
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_fr.properties
82
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_es.properties
82
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_it.properties
83
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_fr.properties
83
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_ja.properties
84
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_ja.properties
84
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/mondrian_exception_messages_zh_CN.properties
85
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_zh_CN.properties
85
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws.properties
86
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/ehcache-hibernate.xml
86
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_de.properties
87
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/jasperreports.properties
87
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_es.properties
88
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/mondrian.properties
88
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_fr.properties
89
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/themes/default.properties
89
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_ja.properties
90
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/datasources.xml
90
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles/scheduling_ws_zh_CN.properties
91
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators.xml
91
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/ehcache-hibernate.xml
92
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/decorator.jsp
92
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/jasperreports.properties
93
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/decoratorCommonComponents.jsp
93
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/mondrian.properties
94
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/decoratorCommonImports.jsp
94
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/themes/default.properties
95
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/decoratorSample.jsp
95
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/datasources.xml
96
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/emptyDecorator.jsp
96
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators.xml
97
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/main.jsp
97
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/decorator.jsp
98
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/metadata.jsp
98
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/decoratorCommonComponents.jsp
99
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/panel.jsp
99
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/decoratorCommonImports.jsp
100
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/printable.jsp
100
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/decoratorSample.jsp
101
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators/withoutDecorator.jsp
101
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/emptyDecorator.jsp
102
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/ehcache.xml
102
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/main.jsp
103
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/faces-config.xml
103
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/metadata.jsp
104
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/addDataSourceFlow.xml
104
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/panel.jsp
105
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/addFileResourceFlow.xml
105
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/printable.jsp
106
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/addInputControlFlow.xml
106
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators/withoutDecorator.jsp
107
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/addListOfValuesFlow.xml
107
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/ehcache.xml
108
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/dataTypeBeans.xml
108
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/faces-config.xml
109
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/dataTypeFlow.xml
109
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/addDataSourceFlow.xml
110
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/defaultFlow.xml
110
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/addFileResourceFlow.xml
111
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/displayOlapModelFlow.xml
111
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/addInputControlFlow.xml
112
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/editFolderBeans.xml
112
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/addListOfValuesFlow.xml
113
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/editFolderFlow.xml
113
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/dataTypeBeans.xml
114
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/fileResourceBeans.xml
114
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/dataTypeFlow.xml
115
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/fileResourceFlow.xml
115
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/defaultFlow.xml
116
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/inputControlsBeans.xml
116
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/displayOlapModelFlow.xml
117
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/inputControlsFlow.xml
117
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/editFolderBeans.xml
118
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listOfValuesBeans.xml
118
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/editFolderFlow.xml
119
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listOfValuesFlow.xml
119
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/fileResourceBeans.xml
120
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listOlapViewsBeans.xml
120
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/fileResourceFlow.xml
121
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listOlapViewsFlow.xml
121
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/inputControlsBeans.xml
122
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/listReportsBeans.xml
122
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/inputControlsFlow.xml
123
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/logEventBeans.xml
123
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listOfValuesBeans.xml
124
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/logEventFlow.xml
124
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listOfValuesFlow.xml
125
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/mondrianXmlaSourceBeans.xml
125
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listOlapViewsBeans.xml
126
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/mondrianXmlaSourceFlow.xml
126
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listOlapViewsFlow.xml
127
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapClientConnectionBeans.xml
127
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/listReportsBeans.xml
128
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapClientConnectionFlow.xml
128
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/logEventBeans.xml
129
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapSchemaResourceFlow.xml
129
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/logEventFlow.xml
130
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapUnitBeans.xml
130
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/mondrianXmlaSourceBeans.xml
131
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapUnitFlow.xml
131
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/mondrianXmlaSourceFlow.xml
132
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/olapViewListBeans.xml
132
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapClientConnectionBeans.xml
133
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/queryBeans.xml
133
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapClientConnectionFlow.xml
134
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/queryFlow.xml
134
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapSchemaResourceFlow.xml
135
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/queryReferenceBeans.xml
135
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapUnitBeans.xml
136
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/queryReferenceFlow.xml
136
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapUnitFlow.xml
137
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/removedListReportsFlow.xml
137
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/olapViewListBeans.xml
138
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/removedOlapViewListFlow.xml
138
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/queryBeans.xml
139
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/removedRepositoryExplorerFlow.xml
139
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/queryFlow.xml
140
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repoAdminBeans.xml
140
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/queryReferenceBeans.xml
141
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repoAdminFlow.xml
141
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/queryReferenceFlow.xml
142
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportDataSourceBeans.xml
142
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/removedListReportsFlow.xml
143
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportDataSourceFlow.xml
143
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/removedOlapViewListFlow.xml
144
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportJobBeans.xml
144
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/removedRepositoryExplorerFlow.xml
145
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportJobFlow.xml
145
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repoAdminBeans.xml
146
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportSchedulingBeans.xml
146
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repoAdminFlow.xml
147
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportSchedulingFlow.xml
147
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportDataSourceBeans.xml
148
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportUnitBeans.xml
148
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportDataSourceFlow.xml
149
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/reportUnitFlow.xml
149
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportJobBeans.xml
150
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repositoryBeans.xml
150
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportJobFlow.xml
151
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repositoryExplorerBean.xml
151
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportSchedulingBeans.xml
152
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repositoryFlow.xml
152
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportSchedulingFlow.xml
153
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/repositorySearchBeans.xml
153
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportUnitBeans.xml
154
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/resourceActionBeans.xml
154
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/reportUnitFlow.xml
155
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/resourceActionFlow.xml
155
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repositoryBeans.xml
156
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/roleBeans.xml
156
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repositoryExplorerBean.xml
157
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/roleListFlow.xml
157
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repositoryFlow.xml
158
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/sampleFlow.xml
158
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/repositorySearchBeans.xml
159
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/searchBeans.xml
159
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/resourceActionBeans.xml
160
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/searchFlow.xml
160
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/resourceActionFlow.xml
161
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/spring-config.xml
161
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/roleBeans.xml
162
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/tiles2Flow.xml
162
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/roleListFlow.xml
163
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/treeBeans.xml
163
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/sampleFlow.xml
164
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/treeFlow.xml
164
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/searchBeans.xml
165
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/userBeans.xml
165
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/searchFlow.xml
166
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/userListFlow.xml
166
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/spring-config.xml
167
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewOlapModelBeans.xml
167
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/tiles2Flow.xml
168
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewOlapModelFlow.xml
168
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/treeBeans.xml
169
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewOlapViewFlow.xml
169
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/treeFlow.xml
170
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewReportBeans.xml
170
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/userBeans.xml
171
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows/viewReportFlow.xml
171
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/userListFlow.xml
172
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/hibernate.properties
172
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewOlapModelBeans.xml
173
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/internal/ja-pro_internal_messages.properties
173
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewOlapModelFlow.xml
174
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/internal/jasperserver.properties
174
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewOlapViewFlow.xml
175
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/internal/jpivot_internal_messages.properties
175
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewReportBeans.xml
176
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jasperserver-servlet.xml
176
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows/viewReportFlow.xml
177
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jasperserver.tld
177
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/hibernate.properties
178
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jboss-web.xml
178
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/internal/ja-pro_internal_messages.properties
179
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/chart/chart.xsl
179
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/internal/jasperserver.properties
180
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/chart/chartpropertiesform.xml
180
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/internal/jpivot_internal_messages.properties
181
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/chart/chartpropertiesform_no.xml
181
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jasperserver-servlet.xml
182
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/jpivot-tags.tld
182
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jasperserver.tld
183
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/jpivot-tags.xml
183
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jboss-web.xml
184
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi/hierarchy-navigator.xsl
184
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/chart/chart.xsl
185
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi/js-hierarchy-navigator.xsl
185
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/chart/chartpropertiesform.xml
186
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi/js-navigator.xsl
186
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/chart/chartpropertiesform_no.xml
187
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi/navigator.xsl
187
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/jpivot-tags.tld
188
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/arialuni.xml
188
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/jpivot-tags.xml
189
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/make-font.cmd
189
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi/hierarchy-navigator.xsl
190
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/printpropertiesform.xml
190
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi/js-hierarchy-navigator.xsl
191
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/printpropertiesform_no.xml
191
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi/js-navigator.xsl
192
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/simhei.xml
192
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi/navigator.xsl
193
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print/userconfig.xml
193
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/arialuni.xml
194
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/saveas/saveas.xml
194
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/make-font.cmd
195
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/showxml.xsl
195
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/printpropertiesform.xml
196
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/axisform.xml
196
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/printpropertiesform_no.xml
197
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/displayform.xml
197
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/simhei.xml
198
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/fo_mdxtable.xsl
198
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print/userconfig.xml
199
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxcell.xsl
199
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/saveas/saveas.xml
200
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxedit.xml
200
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/showxml.xsl
201
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxedit_no.xml
201
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/axisform.xml
202
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxslicer.xsl
202
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/displayform.xml
203
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxtable.xsl
203
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/fo_mdxtable.xsl
204
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxtableEfficient.xsl
204
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxcell.xsl
205
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/mdxtableLite.xsl
205
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxedit.xml
206
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/sortform.xml
206
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxedit_no.xml
207
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/sortform_no.xml
207
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxslicer.xsl
208
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table/xls_mdxtable.xsl
208
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxtable.xsl
209
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/toolbar/htoolbar.xsl
209
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxtableEfficient.xsl
210
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/toolbar/vtoolbar.xsl
210
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/mdxtableLite.xsl
211
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.jdbc.properties
211
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/sortform.xml
212
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.quartz.base.properties
212
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/sortform_no.xml
213
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.quartz.properties
213
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table/xls_mdxtable.xsl
214
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.scheduling.properties
214
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/toolbar/htoolbar.xsl
215
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.spring.properties
215
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/toolbar/vtoolbar.xsl
216
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax/ajaxerror.jsp
216
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/js.jdbc.properties
217
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax/ajaxresponse.jsp
217
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/js.quartz.base.properties
218
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/CalendarInput.jsp
218
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/js.quartz.properties
219
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/ListReports.jsp
219
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/js.scheduling.properties
220
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/about/about.jsp
220
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/js.spring.properties
221
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocate.jsp
221
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ajax/ajaxerror.jsp
222
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocateState.jsp
222
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ajax/ajaxresponse.jsp
223
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocate.jsp
223
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/CalendarInput.jsp
224
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocateState.jsp
224
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/ListReports.jsp
225
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocate.jsp
225
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/about/about.jsp
226
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocateState.jsp
226
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocate.jsp
227
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/connectionType.jsp
227
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocateState.jsp
228
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/connectionTypeState.jsp
228
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocate.jsp
229
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisView/analysisViewNaming.jsp
229
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocateState.jsp
230
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisView/analysisViewNamingState.jsp
230
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocate.jsp
231
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisView/mdxQuery.jsp
231
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocateState.jsp
232
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceBean.jsp
232
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/connectionType.jsp
233
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceCustom.jsp
233
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection/connectionTypeState.jsp
234
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceJDBC.jsp
234
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisView/analysisViewNaming.jsp
235
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceJNDI.jsp
235
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisView/analysisViewNamingState.jsp
236
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceState.jsp
236
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisView/mdxQuery.jsp
237
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataType/dataType.jsp
237
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceBean.jsp
238
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataType/dataTypeState.jsp
238
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceCustom.jsp
239
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/fileResource/addFileResource.jsp
239
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceJDBC.jsp
240
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/fileResource/addFileResourceState.jsp
240
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceJNDI.jsp
241
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/addInputControl.jsp
241
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource/addDataSourceState.jsp
242
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/addInputControlQueryInformation.jsp
242
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataType/dataType.jsp
243
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/addInputControlState.jsp
243
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataType/dataTypeState.jsp
244
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/dataTypeLocate.jsp
244
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/fileResource/addFileResource.jsp
245
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/dataTypeLocateState.jsp
245
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/fileResource/addFileResourceState.jsp
246
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/listOfValuesLocate.jsp
246
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/addInputControl.jsp
247
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/listOfValuesLocateState.jsp
247
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/addInputControlQueryInformation.jsp
248
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/queryLocate.jsp
248
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/addInputControlState.jsp
249
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls/queryLocateState.jsp
249
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/dataTypeLocate.jsp
250
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/jasperReport/locateControlResource.jsp
250
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/dataTypeLocateState.jsp
251
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/jasperReport/locateControlResourceState.jsp
251
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/listOfValuesLocate.jsp
252
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/listOfValues/addListOfValues.jsp
252
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/listOfValuesLocateState.jsp
253
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/listOfValues/addListOfValuesState.jsp
253
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/queryLocate.jsp
254
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/mondrianXML-A/addMondrianXML-A.jsp
254
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls/queryLocateState.jsp
255
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/mondrianXML-A/addMondrianXML-AState.jsp
255
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/jasperReport/locateControlResource.jsp
256
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep1.jsp
256
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/jasperReport/locateControlResourceState.jsp
257
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep1State.jsp
257
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/listOfValues/addListOfValues.jsp
258
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep2.jsp
258
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/listOfValues/addListOfValuesState.jsp
259
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep2State.jsp
259
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/mondrianXML-A/addMondrianXML-A.jsp
260
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep3.jsp
260
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/mondrianXML-A/addMondrianXML-AState.jsp
261
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/queryStep3State.jsp
261
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep1.jsp
262
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep2State.jsp
262
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep1State.jsp
263
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3.jsp
263
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep2.jsp
264
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3Resource.jsp
264
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep2State.jsp
265
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3ResourceNaming.jsp
265
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep3.jsp
266
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3ResourceNamingState.jsp
266
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/queryStep3State.jsp
267
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3ResourceState.jsp
267
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep2State.jsp
268
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep3State.jsp
268
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3.jsp
269
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep5.jsp
269
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3Resource.jsp
270
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep5State.jsp
270
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3ResourceNaming.jsp
271
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportStep6.jsp
271
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3ResourceNamingState.jsp
272
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/reportSteps1_2.jsp
272
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3ResourceState.jsp
273
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/administer/logSettings.jsp
273
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep3State.jsp
274
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common/dnd.jsp
274
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep5.jsp
275
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common/download.jsp
275
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep5State.jsp
276
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common/jsEdition.jsp
276
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportStep6.jsp
277
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common/tooltip.jsp
277
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/reportSteps1_2.jsp
278
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/commonJSTLScripts.jsp
278
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/administer/logSettings.jsp
279
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/defaultPaginatorLinks.jsp
279
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common/dnd.jsp
280
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/editFolderForm.jsp
280
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common/download.jsp
281
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/exporters/csvExportParams.jsp
281
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common/jsEdition.jsp
282
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/exporters/excelExportParams.jsp
282
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common/tooltip.jsp
283
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/exporters/swfExport.jsp
283
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/commonJSTLScripts.jsp
284
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/flowError.jsp
284
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/defaultPaginatorLinks.jsp
285
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/flowRemoveError.jsp
285
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/editFolderForm.jsp
286
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/heartbeat/heartbeat.jsp
286
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/exporters/csvExportParams.jsp
287
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/heartbeat/heartbeatState.jsp
287
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/exporters/excelExportParams.jsp
288
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/home.jsp
288
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/exporters/swfExport.jsp
289
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/DefaultParametersForm.jsp
289
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/flowError.jsp
290
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/InputControlLabel.jsp
290
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/flowRemoveError.jsp
291
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/Label.jsp
291
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/heartbeat/heartbeat.jsp
292
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/listOlapViews.jsp
292
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/heartbeat/heartbeatState.jsp
293
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/login.jsp
293
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/home.jsp
294
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/loginState.jsp
294
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/inputControls/DefaultParametersForm.jsp
295
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/rotating/login_rotating_community_0.jsp
295
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/inputControls/InputControlLabel.jsp
296
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/loginError.jsp
296
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/inputControls/Label.jsp
297
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage/roles.jsp
297
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/listOlapViews.jsp
298
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage/rolesState.jsp
298
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login/login.jsp
299
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage/users.jsp
299
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login/loginState.jsp
300
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage/usersState.jsp
300
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login/rotating/login_rotating_community_0.jsp
301
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages/messageDetail.jsp
301
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/loginError.jsp
302
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages/messageDetailState.jsp
302
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage/roles.jsp
303
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages/messageList.jsp
303
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage/rolesState.jsp
304
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages/messageListState.jsp
304
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage/users.jsp
305
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/busy.jsp
305
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage/usersState.jsp
306
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/empty.jsp
306
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages/messageDetail.jsp
307
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/error.jsp
307
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages/messageDetailState.jsp
308
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/flush.jsp
308
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages/messageList.jsp
309
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/properties.jsp
309
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages/messageListState.jsp
310
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/propertiesState.jsp
310
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/busy.jsp
311
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap/viewOlap.jsp
311
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/empty.jsp
312
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow/chooseSource.jsp
312
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/error.jsp
313
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow/chooseType.jsp
313
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/flush.jsp
314
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow/jdbcPropsForm.jsp
314
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/properties.jsp
315
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow/jndiPropsForm.jsp
315
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/propertiesState.jsp
316
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapUnitFlow/listResources.jsp
316
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap/viewOlap.jsp
317
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/query/editQueryForm.jsp
317
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow/chooseSource.jsp
318
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/query/editQueryTextForm.jsp
318
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow/chooseType.jsp
319
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/repoAdmin/defaultView.jsp
319
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow/jdbcPropsForm.jsp
320
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/beanPropsForm.jsp
320
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow/jndiPropsForm.jsp
321
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/chooseSource.jsp
321
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapUnitFlow/listResources.jsp
322
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/chooseType.jsp
322
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/query/editQueryForm.jsp
323
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/customPropsForm.jsp
323
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/query/editQueryTextForm.jsp
324
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/jdbcPropsForm.jsp
324
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/repoAdmin/defaultView.jsp
325
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow/jndiPropsForm.jsp
325
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/beanPropsForm.jsp
326
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobCommonState.jsp
326
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/chooseSource.jsp
327
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobList.jsp
327
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/chooseType.jsp
328
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobOutput.jsp
328
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/customPropsForm.jsp
329
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobParameters.jsp
329
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/jdbcPropsForm.jsp
330
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobParametersState.jsp
330
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow/jndiPropsForm.jsp
331
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobSetUp.jsp
331
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobCommonState.jsp
332
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling/jobSetUpState.jsp
332
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobList.jsp
333
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportUnitFlow/listResources.jsp
333
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobOutput.jsp
334
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/buttons.jsp
334
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobParameters.jsp
335
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/calendarSample.jsp
335
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobParametersState.jsp
336
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/columnsOne.jsp
336
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobSetUp.jsp
337
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/columnsThree.jsp
337
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling/jobSetUpState.jsp
338
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/columnsTwo.jsp
338
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportUnitFlow/listResources.jsp
339
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/controls.jsp
339
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/buttons.jsp
340
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/dialogs.jsp
340
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/calendarSample.jsp
341
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/flow.jsp
341
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/columnsOne.jsp
342
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/lists.jsp
342
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/columnsThree.jsp
343
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/menus.jsp
343
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/columnsTwo.jsp
344
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/mocks/jrTestReport_1.jsp
344
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/controls.jsp
345
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/mocks/reportViewer_top.jsp
345
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/dialogs.jsp
346
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/oneColumn.jsp
346
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/dnd-min.jsp
347
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/panels.jsp
347
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/dnd.jsp
348
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/sampleIndex.jsp
348
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/flow.jsp
349
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/tabbed.jsp
349
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/ipad-scroll.jsp
350
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/threeColumn.jsp
350
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/lists.jsp
351
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/twoColumn.jsp
351
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/menus.jsp
352
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/typography.jsp
352
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/mocks/jrTestReport_1.jsp
353
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/wizard.jsp
353
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/mocks/reportViewer_top.jsp
354
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search/results.jsp
354
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/oneColumn.jsp
355
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search/resultsState.jsp
355
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/panels.jsp
356
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search/searchComponents.jsp
356
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/sampleIndex.jsp
357
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/AccessDeniedPage.jsp
357
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/tabbed.jsp
358
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/errorPage.jsp
358
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/threeColumn.jsp
359
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/systemConfirm.jsp
359
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/twoColumn.jsp
360
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/DefaultJasperViewer.jsp
360
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/typography.jsp
361
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/DefaultJasperViewerState.jsp
361
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/wizard.jsp
362
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/FusionChartsIEFix.jsp
362
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/search/results.jsp
363
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/ViewReport.jsp
363
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/search/resultsState.jsp
364
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/ViewReportState.jsp
364
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/search/searchComponents.jsp
365
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/reportOutput.jsp
365
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/system/AccessDeniedPage.jsp
366
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/webHelp/webHelp.jsp
366
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/system/errorPage.jsp
367
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/aboutBox.jsp
367
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/system/systemConfirm.jsp
368
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addFolder.jsp
368
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/DefaultJasperViewer.jsp
369
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addOrganization.jsp
369
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/DefaultJasperViewerState.jsp
370
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addRole.jsp
370
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/FusionChartsIEFix.jsp
371
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addUser.jsp
371
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/ViewReport.jsp
372
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/calculatedField.jsp
372
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/ViewReportState.jsp
373
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/container.jsp
373
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport/reportOutput.jsp
374
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/control_groupBox.jsp
374
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/webHelp/webHelp.jsp
375
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/control_searchLockup.jsp
375
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/aboutBox.jsp
376
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/control_tabSet.jsp
376
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/addFolder.jsp
377
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/customURL.jsp
377
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/addOrganization.jsp
378
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/detail.jsp
378
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/addRole.jsp
379
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/editLabel.jsp
379
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/addUser.jsp
380
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/heartbeatOptin.jsp
380
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/calculatedField.jsp
381
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/inputControls.jsp
381
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/complexExpression.jsp
382
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/list.jsp
382
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/container.jsp
383
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/loading.jsp
383
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/control_groupBox.jsp
384
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/login.jsp
384
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/control_searchLockup.jsp
385
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/manageDataSource.jsp
385
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/control_tabSet.jsp
386
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/menu.jsp
386
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/customURL.jsp
387
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/nothingToDisplay.jsp
387
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/detail.jsp
388
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/page.jsp
388
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/editLabel.jsp
389
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/permissions.jsp
389
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/heartbeatOptin.jsp
390
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/propertiesResource.jsp
390
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/inputControls.jsp
391
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/saveAs.jsp
391
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/list.jsp
392
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/saveValues.jsp
392
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/loading.jsp
393
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/select.jsp
393
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/login.jsp
394
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectFields.jsp
394
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/manageDataSource.jsp
395
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectFile.jsp
395
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/menu.jsp
396
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectFromRepository.jsp
396
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/nothingToDisplay.jsp
397
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectPalette.jsp
397
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/page.jsp
398
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/sortDialog.jsp
398
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/permissions.jsp
399
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/standardAlert.jsp
399
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/propertiesResource.jsp
400
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/standardConfirm.jsp
400
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/saveAs.jsp
401
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/systemConfirm.jsp
401
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/saveValues.jsp
402
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/uploadTheme.jsp
402
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/select.jsp
403
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/userCountExceeded.jsp
403
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/selectFields.jsp
404
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/utility_cosmetic.jsp
404
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/selectFile.jsp
405
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/FoodMart.xml
405
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/selectFromRepository.jsp
406
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.BSD.yahoo.js.txt
406
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/selectPalette.jsp
407
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.MIT.nwmatcher.js.txt
407
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/sortDialog.jsp
408
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.MIT.prototype.js.txt
408
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/standardAlert.jsp
409
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.MIT.scriptaculous.js.txt
409
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/standardConfirm.jsp
410
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.abbreviator.txt
410
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/systemConfirm.jsp
411
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.ant.txt
411
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/uploadTheme.jsp
412
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.antlr.txt
412
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/userCountExceeded.jsp
413
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.avalon.txt
413
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates/utility_cosmetic.jsp
414
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.cas-client.txt
414
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/FoodMart.xml
415
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.cglib.txt
415
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.BSD.yahoo.js.txt
416
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.commons.txt
416
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.MIT.nwmatcher.js.txt
417
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.dateFormatter.js.txt
417
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.MIT.prototype.js.txt
418
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.dom4j.txt
418
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.MIT.scriptaculous.js.txt
419
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.dwr.txt
419
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.abbreviator.txt
420
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.easymock.txt
420
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.ant.txt
421
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.eclipse.txt
421
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.antlr.txt
422
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.ehcache.txt
422
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.apache-2.0.txt
423
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.groovy.txt
423
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.avalon.txt
424
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.hibernate.txt
424
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.bouncycastle.txt
425
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.hsqldb.txt
425
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.bsh.txt
426
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jasperreports.txt
426
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.cas-client.txt
427
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.javacup.txt
427
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.cglib.txt
428
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jcommon.txt
428
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.commons.txt
429
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jdom.txt
429
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.dateFormatter.js.txt
430
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jfreechart.txt
430
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.dom4j.txt
431
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.joda-time.txt
431
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.dwr.txt
432
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jpivot.txt
432
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.easymock.txt
433
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.json.txt
433
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.eclipse.txt
434
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jta.txt
434
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.ehcache.txt
435
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.jug.txt
435
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.eigenbase.txt
436
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.log4j.txt
436
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.groovy.txt
437
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.mondrian.html
437
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.hibernate.txt
438
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.nanotree.txt
438
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.hsqldb.txt
439
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.objenesis.txt
439
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jackson.txt
440
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.pngencoder.txt
440
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jasperreports.txt
441
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.prototype.txt
441
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.javacup.txt
442
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.spring.txt
442
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.javassist.txt
443
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.utils.common.js.txt
443
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jcommon.txt
444
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.wcf.txt
444
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jdom.txt
445
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.xalan.txt
445
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jfreechart.txt
446
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.xerces.txt
446
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.joda-time.txt
447
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.xml-api.txt
447
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jpivot.txt
448
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/activation-1.1.jar
448
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.json.txt
449
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/antlr-2.7.6.jar
449
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jta.txt
450
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/aopalliance-1.0.jar
450
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jug.txt
451
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/aspectjrt-1.5.4.jar
451
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.jxl.txt
452
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/avalon-framework-api-4.3.1.jar
452
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.lgpl-2.1.txt
453
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/avalon-framework-impl-4.2.0.jar
453
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.log4j.txt
454
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/avalon-framework-impl-4.3.1.jar
454
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.mondrian.html
455
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/axis-1.3.jar
455
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.nanotree.txt
456
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/axis-jaxrpc-1.3.jar
456
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.objenesis.txt
457
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/axis-saaj-1.3.jar
457
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.png-encoder.txt
458
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/backport-util-concurrent-3.1.jar
458
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.postgresql.txt
459
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/barbecue-1.5-beta1.jar
459
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.prototype.txt
460
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/barcode4j-2.0.jar
460
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.spring.txt
461
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-anim-1.7.jar
461
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.trove.txt
462
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-awt-util-1.7.jar
462
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.utils.common.js.txt
463
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-bridge-1.7.jar
463
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.wcf.txt
464
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-css-1.7.jar
464
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.xalan.txt
465
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-dom-1.7.jar
465
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.xerces.txt
466
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-ext-1.7.jar
466
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/LICENSE.xml-api.txt
467
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-extension-1.7.jar
467
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/activation-1.1.jar
468
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-gvt-1.7.jar
468
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/antlr-2.7.6.jar
469
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-parser-1.7.jar
469
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/aopalliance-1.0.jar
470
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-script-1.7.jar
470
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/aspectjrt-1.5.4.jar
471
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-svg-dom-1.7.jar
471
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/avalon-framework-api-4.3.1.jar
472
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-svggen-1.7.jar
472
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/avalon-framework-impl-4.3.1.jar
473
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-transcoder-1.7.jar
473
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/axis-1.3.jar
474
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-util-1.7.jar
474
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/axis-jaxrpc-1.3.jar
475
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/batik-xml-1.7.jar
475
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/axis-saaj-1.3.jar
476
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcmail-jdk14-1.38.jar
476
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/backport-util-concurrent-3.1.jar
477
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcmail-jdk14-138.jar
477
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/barbecue-1.5-beta1.jar
478
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcprov-jdk14-1.38.jar
478
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/barcode4j-2.0.jar
479
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcprov-jdk14-138.jar
479
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-anim-1.7.jar
480
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bctsp-jdk14-1.38.jar
480
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-awt-util-1.7.jar
481
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/cas-client-core-3.1.5.jar
481
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-bridge-1.7.jar
482
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/castor-1.2.jar
482
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-css-1.7.jar
483
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/cglib-nodep-2.2.jar
483
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-dom-1.7.jar
484
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-beanutils-1.8.0.jar
484
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-ext-1.7.jar
485
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-cli-1.2.jar
485
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-extension-1.7.jar
486
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-codec-1.3.jar
486
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-gvt-1.7.jar
487
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-collections-3.2.jar
487
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-parser-1.7.jar
488
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-dbcp-1.2.1.jar
488
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-script-1.7.jar
489
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-digester-1.7.jar
489
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-svg-dom-1.7.jar
490
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-discovery-0.4.jar
490
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-svggen-1.7.jar
491
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-fileupload-1.1.1.jar
491
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-transcoder-1.7.jar
492
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-httpclient-3.0.jar
492
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-util-1.7.jar
493
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-io-1.1.jar
493
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/batik-xml-1.7.jar
494
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-lang-2.4.jar
494
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcmail-jdk14-1.38.jar
495
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-logging-1.0.4.jar
495
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcmail-jdk14-138.jar
496
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-logging-api-1.1.jar
496
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcprov-jdk14-1.38.jar
497
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-math-1.0.jar
497
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bcprov-jdk14-138.jar
498
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-pool-1.2.jar
498
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/bctsp-jdk14-1.38.jar
499
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-vfs-1.0.jar
499
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/cas-client-core-3.1.5.jar
500
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/dom4j-1.6.1.jar
500
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/castor-1.2.jar
501
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/dwr-2.0.3.jar
501
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/cglib-nodep-2.2.jar
502
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/easymock-3.0.jar
502
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-beanutils-1.8.0.jar
503
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ehcache-core-1.7.2.jar
503
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-cli-1.2.jar
504
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/eigenbase-properties-1.1.0.10924.jar
504
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-codec-1.3.jar
505
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/eigenbase-resgen-1.3.0.11873.jar
505
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-collections-3.2.jar
506
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/eigenbase-xom-1.3.0.11999.jar
506
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-dbcp-1.2.1.jar
507
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/fop-0.95.jar
507
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-digester-1.7.jar
508
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/groovy-all-1.7.5.jar
508
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-discovery-0.4.jar
509
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/hibernate-core-3.3.2.GA-HHH-2763.jar
509
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-fileupload-1.1.1.jar
510
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/hibernate-jmx-3.3.2.GA.jar
510
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-httpclient-3.0.jar
511
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/iReport-utils-2.0.1.jar
511
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-io-1.1.jar
512
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/itext-2.1.7.jar
512
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-lang-2.4.jar
513
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jai_codec-1.1_mr.jar
513
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-logging-1.0.4.jar
514
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jai_core-1.1_mr.jar
514
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-logging-api-1.1.jar
515
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jakarta-regexp-1.4.jar
515
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-math-1.0.jar
516
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-4.0.1.1.jar
516
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-pool-1.2.jar
517
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-chart-themes-4.0.1.jar
517
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/commons-vfs-1.0.jar
518
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-fonts-4.0.0.jar
518
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/dom4j-1.6.1.jar
519
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-ofc-4.0.1.jar
519
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/dwr-2.0.3.jar
520
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-4.1.0.jar
520
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ehcache-core-1.7.2.jar
521
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-impl-4.1.0.jar
521
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/eigenbase-properties-1.1.0.10924.jar
522
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-4.1.0.jar
522
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/eigenbase-resgen-1.3.0.11873.jar
523
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-impl-4.1.0.jar
523
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/eigenbase-xom-1.3.0.11999.jar
524
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-4.1.0.jar
524
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/fop-0.95.jar
525
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-impl-4.1.0.jar
525
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/geronimo-stax-api_1.0_spec-1.0.jar
526
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-common-ws-4.1.0.jar
526
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/groovy-all-1.7.5.jar
527
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-core-util-4.1.0.jar
527
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/hibernate-core-3.3.2.GA-HHH-2763.jar
528
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-export-tool-4.1.0.jar
528
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/hibernate-jmx-3.3.2.GA.jar
529
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-repository-hibernate-4.1.0.jar
529
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/httpclient-4.1.1.jar
530
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-search-4.1.0.jar
530
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/httpcore-4.1.jar
531
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-war-jar-4.1.0.jar
531
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/httpmime-4.1.1.jar
532
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-ws-server-4.1.0.jar
532
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/iReport-utils-2.0.1.jar
533
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/javacup-0.10k.jar
533
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/itext-2.1.7.jar
534
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/javassist-3.7.ga.jar
534
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jai_codec-1.1_mr.jar
535
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jaxen-1.1-beta-8.jar
535
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jai_core-1.1_mr.jar
536
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jcommon-1.0.15.jar
536
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jakarta-regexp-1.4.jar
537
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jdom-1.1.jar
537
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-4.1.2.3.jar
538
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jdtcore-3.1.0.jar
538
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-chart-themes-4.1.1.jar
539
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jfreechart-1.0.12.jar
539
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-fonts-4.1.1.jar
540
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ji-jpivot-4.0.1.jar
540
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperreports-ofc-4.1.1.jar
541
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ji-wcf-4.0.1.jar
541
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-common-4.2.0.jar
542
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jsf-api-1.1.jar
542
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-common-impl-4.2.0.jar
543
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/json-org-1.0.jar
543
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-engine-4.2.0.jar
544
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jstl-1.1.2.jar
544
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-engine-impl-4.2.0.jar
545
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jta-1.1.jar
545
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-metadata-4.2.0.jar
546
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jxl-2.6.10.jar
546
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-api-metadata-impl-4.2.0.jar
547
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/log4j-1.2.12.jar
547
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-common-ws-4.2.0.jar
548
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mail-1.4.jar
548
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-core-util-4.2.0.jar
549
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mondrian-3.2.0-13661-JS.jar
549
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-export-tool-4.2.0.jar
550
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mondrian.dtd
550
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-remote-services-4.2.0.jar
551
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/objenesis-1.2.jar
551
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-repository-hibernate-4.2.0.jar
552
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ognl-2.7.3.jar
552
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-rest-server-4.2.0.jar
553
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/olap4j-0.9.7.309-JS.jar
553
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-search-4.2.0.jar
554
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/oro-2.0.8.jar
554
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-war-jar-4.2.0.jar
555
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/png-encoder-1.5.jar
555
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jasperserver-ws-server-4.2.0.jar
556
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/quartz-1.5.1-jaspersoft.jar
556
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/javacup-0.10k.jar
557
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/serializer-2.7.1.jar
557
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/javassist-3.7.ga.jar
558
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/sitemesh-2.2.1-JasperSoft.jar
558
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jaxen-1.1-beta-8.jar
559
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/slf4j-api-1.5.8.jar
559
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jcommon-1.0.15.jar
560
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/slf4j-log4j12-1.5.8.jar
560
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jdom-1.1.jar
561
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-2.5.6.SEC02.jar
561
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jdtcore-3.1.0.jar
562
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-binding-2.0.7.RELEASE.jar
562
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jfreechart-1.0.12.jar
563
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-context-support-2.5.6.SEC02.jar
563
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ji-jpivot-4.0.1.jar
564
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-js-2.0.7.RELEASE.jar
564
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ji-wcf-4.0.1.jar
565
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-ldap-core-1.3.0.RELEASE.jar
565
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jsf-api-1.1.jar
566
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-ldap-core-tiger-1.3.0.RELEASE.jar
566
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/json-org-1.0.jar
567
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-orm-2.5.6.SEC02.jar
567
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jstl-1.1.2.jar
568
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-cas-client-2.0.6.RELEASE.jar
568
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jta-1.1.jar
569
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-core-2.0.6.RELEASE.jar
569
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/jxl-2.6.10.jar
570
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-taglibs-2.0.6.RELEASE.jar
570
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/log4j-1.2.12.jar
571
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-web-2.5.6.SEC02.jar
571
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/mail-1.4.jar
572
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-webflow-2.0.7.RELEASE.jar
572
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/mondrian-3.2.0-13661-JS.jar
573
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-webmvc-2.5.6.SEC02.jar
573
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/mondrian.dtd
574
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/standard-1.1.2.jar
574
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/ognl-2.7.3.jar
575
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/tiles-api-2.1.4.jar
575
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/olap4j-0.9.7.309-JS.jar
576
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/tiles-core-2.1.4.jar
576
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/oro-2.0.8.jar
577
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/tiles-jsp-2.1.4.jar
577
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/png-encoder-1.5.jar
578
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/tiles-servlet-2.1.4.jar
578
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/poi-3.6.jar
579
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/wsdl4j-1.5.1.jar
579
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/poi-ooxml-3.6.jar
580
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xalan-2.7.1.jar
580
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/poi-ooxml-schemas-3.6.jar
581
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xercesImpl-2.7.1.jar
581
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/quartz-1.5.1-jaspersoft.jar
582
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xml-apis-1.3.04.jar
582
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/serializer-2.7.1.jar
583
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xml-apis-ext-1.3.04.jar
583
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/sitemesh-2.2.1-JasperSoft.jar
584
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xmlgraphics-commons-1.3.1.jar
584
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/slf4j-api-1.5.8.jar
585
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/log4j.properties
585
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/slf4j-log4j12-1.5.8.jar
586
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/logs/readme.txt
586
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-2.5.6.SEC02.jar
587
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/mondrian.connect.string.properties
587
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-binding-2.0.7.RELEASE.jar
588
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/olap-ehcache.xml
588
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-context-support-2.5.6.SEC02.jar
589
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/pdfFontBeans.xml
589
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-js-2.0.7.RELEASE.jar
590
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/queries/FoodMart.xml
590
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-ldap-core-1.3.0.RELEASE.jar
591
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/server-config.wsdd
591
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-ldap-core-tiger-1.3.0.RELEASE.jar
592
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/sitemesh.xml
592
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-orm-2.5.6.SEC02.jar
593
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/spring.tld
593
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-security-cas-client-2.0.6.RELEASE.jar
594
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/tiles.xml
594
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-security-core-2.0.6.RELEASE.jar
595
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/catedit.xsl
595
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-security-taglibs-2.0.6.RELEASE.jar
596
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/changeorder.xsl
596
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-web-2.5.6.SEC02.jar
597
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/confirm.xml
597
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-webflow-2.0.7.RELEASE.jar
598
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/controls-readonly.xsl
598
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/spring-webmvc-2.5.6.SEC02.jar
599
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/controls.xsl
599
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/standard-1.1.2.jar
600
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/fo_xtable.xsl
600
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/stax-api-1.0.1.jar
601
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/htoolbar.xsl
601
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/tiles-api-2.1.4.jar
602
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/identity.xsl
602
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/tiles-core-2.1.4.jar
603
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/popup.xsl
603
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/tiles-jsp-2.1.4.jar
604
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/showxml.xsl
604
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/tiles-servlet-2.1.4.jar
605
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/tableproperties.xml
605
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/velocity-1.7.jar
606
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/tableproperties_no.xml
606
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/wsdl4j-1.5.1.jar
607
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/vtoolbar.xsl
607
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xalan-2.7.1.jar
608
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/wcf-tags.tld
608
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xercesImpl-2.7.1.jar
609
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/wcf-tags.tld_wcf
609
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xml-apis-1.3.04.jar
610
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/wcf.dtd
610
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xml-apis-ext-1.3.04.jar
611
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/wcf.xsl
611
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xmlbeans-2.3.0.jar
612
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xform.xsl
612
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib/xmlgraphics-commons-1.3.1.jar
613
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xls_xtable.xsl
613
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/log4j.properties
614
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xtabbed.xsl
614
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/logs/readme.txt
615
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xtable.xsl
615
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/mondrian.connect.string.properties
616
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf/xtree.xsl
616
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/olap-ehcache.xml
617
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/web.xml
617
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/pdfFontBeans.xml
618
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/weblogic.xml
618
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/queries/FoodMart.xml
619
%%APP_VERSION%%/webapps/%%PORTNAME%%/blank.htm
619
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/server-config.wsdd
620
%%APP_VERSION%%/webapps/%%PORTNAME%%/cal/calendar.jsp
620
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/sitemesh.xml
621
%%APP_VERSION%%/webapps/%%PORTNAME%%/favicon.ico
621
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/spring.tld
622
%%APP_VERSION%%/webapps/%%PORTNAME%%/index.htm
622
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/tiles.xml
623
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/Thumbs.db
623
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/catedit.xsl
624
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-ab.gif
624
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/changeorder.xsl
625
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-auf.gif
625
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/confirm.xml
626
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-down.gif
626
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/controls-readonly.xsl
627
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-gdown.gif
627
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/controls.xsl
628
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-gup.gif
628
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/fo_xtable.xsl
629
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-ndown.gif
629
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/htoolbar.xsl
630
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-none.gif
630
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/identity.xsl
631
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-nup.gif
631
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/popup.xsl
632
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-ohne.gif
632
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/showxml.xsl
633
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-rdown.gif
633
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/tableproperties.xml
634
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-rup.gif
634
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/tableproperties_no.xml
635
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/arrow-up.gif
635
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/vtoolbar.xsl
636
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/collapse-all-d.png
636
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/wcf-tags.tld
637
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/collapse-all-down.png
637
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/wcf-tags.tld_wcf
638
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/collapse-all-up.png
638
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/wcf.dtd
639
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-member-collapse.gif
639
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/wcf.xsl
640
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-member-expand.gif
640
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xform.xsl
641
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-member-other.gif
641
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xls_xtable.xsl
642
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-position-collapse.gif
642
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xtabbed.xsl
643
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-position-expand.gif
643
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xtable.xsl
644
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-position-other.gif
644
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf/xtree.xsl
645
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-replace-collapse.gif
645
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/web.xml
646
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-replace-expand.gif
646
%%APP_VERSION%%/webapps/jasperserver/WEB-INF/weblogic.xml
647
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-replace-other.gif
647
%%APP_VERSION%%/webapps/jasperserver/blank.htm
648
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/drill-through.gif
648
%%APP_VERSION%%/webapps/jasperserver/cal/calendar.jsp
649
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/expand-all-d.png
649
%%APP_VERSION%%/webapps/jasperserver/favicon.ico
650
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/expand-all-down.gif
650
%%APP_VERSION%%/webapps/jasperserver/index.htm
651
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/expand-all-down.png
651
%%APP_VERSION%%/webapps/jasperserver/j/Thumbs.db
652
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/expand-all-up.png
652
%%APP_VERSION%%/webapps/jasperserver/j/arrow-ab.gif
653
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/filter-nochange.gif
653
%%APP_VERSION%%/webapps/jasperserver/j/arrow-auf.gif
654
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/filter-stepslope.gif
654
%%APP_VERSION%%/webapps/jasperserver/j/arrow-down.gif
655
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/filter-transient.gif
655
%%APP_VERSION%%/webapps/jasperserver/j/arrow-gdown.gif
656
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/mdxtable.css
656
%%APP_VERSION%%/webapps/jasperserver/j/arrow-gup.gif
657
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-current-down.gif
657
%%APP_VERSION%%/webapps/jasperserver/j/arrow-ndown.gif
658
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-current-up.gif
658
%%APP_VERSION%%/webapps/jasperserver/j/arrow-none.gif
659
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-down.gif
659
%%APP_VERSION%%/webapps/jasperserver/j/arrow-nup.gif
660
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-natural.gif
660
%%APP_VERSION%%/webapps/jasperserver/j/arrow-ohne.gif
661
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-other-down.gif
661
%%APP_VERSION%%/webapps/jasperserver/j/arrow-rdown.gif
662
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-other-up.gif
662
%%APP_VERSION%%/webapps/jasperserver/j/arrow-rup.gif
663
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/sort-up.gif
663
%%APP_VERSION%%/webapps/jasperserver/j/arrow-up.gif
664
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom-out-all-d.png
664
%%APP_VERSION%%/webapps/jasperserver/j/collapse-all-d.png
665
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom-out-all-down.png
665
%%APP_VERSION%%/webapps/jasperserver/j/collapse-all-down.png
666
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom-out-all-up.png
666
%%APP_VERSION%%/webapps/jasperserver/j/collapse-all-up.png
667
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom_in.cur
667
%%APP_VERSION%%/webapps/jasperserver/j/drill-member-collapse.gif
668
%%APP_VERSION%%/webapps/%%PORTNAME%%/j/zoom_out.cur
668
%%APP_VERSION%%/webapps/jasperserver/j/drill-member-expand.gif
669
%%APP_VERSION%%/webapps/%%PORTNAME%%/jasperreports-flash-4.0.0.swf
669
%%APP_VERSION%%/webapps/jasperserver/j/drill-member-other.gif
670
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/cat-available.png
670
%%APP_VERSION%%/webapps/jasperserver/j/drill-position-collapse.gif
671
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/cat-visible.png
671
%%APP_VERSION%%/webapps/jasperserver/j/drill-position-expand.gif
672
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/column.png
672
%%APP_VERSION%%/webapps/jasperserver/j/drill-position-other.gif
673
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/empty.png
673
%%APP_VERSION%%/webapps/jasperserver/j/drill-replace-collapse.gif
674
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/filter.png
674
%%APP_VERSION%%/webapps/jasperserver/j/drill-replace-expand.gif
675
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/functions.png
675
%%APP_VERSION%%/webapps/jasperserver/j/drill-replace-other.gif
676
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/level.png
676
%%APP_VERSION%%/webapps/jasperserver/j/drill-through.gif
677
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/mdxnavi.css
677
%%APP_VERSION%%/webapps/jasperserver/j/expand-all-d.png
678
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/properties.png
678
%%APP_VERSION%%/webapps/jasperserver/j/expand-all-down.gif
679
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/row.png
679
%%APP_VERSION%%/webapps/jasperserver/j/expand-all-down.png
680
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi/showsel.png
680
%%APP_VERSION%%/webapps/jasperserver/j/expand-all-up.png
681
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/Thumbs.db
681
%%APP_VERSION%%/webapps/jasperserver/j/filter-nochange.gif
682
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-ab.gif
682
%%APP_VERSION%%/webapps/jasperserver/j/filter-stepslope.gif
683
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-auf.gif
683
%%APP_VERSION%%/webapps/jasperserver/j/filter-transient.gif
684
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-down.gif
684
%%APP_VERSION%%/webapps/jasperserver/j/mdxtable.css
685
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-gdown.gif
685
%%APP_VERSION%%/webapps/jasperserver/j/sort-current-down.gif
686
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-gup.gif
686
%%APP_VERSION%%/webapps/jasperserver/j/sort-current-up.gif
687
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-ndown.gif
687
%%APP_VERSION%%/webapps/jasperserver/j/sort-down.gif
688
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-none.gif
688
%%APP_VERSION%%/webapps/jasperserver/j/sort-natural.gif
689
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-nup.gif
689
%%APP_VERSION%%/webapps/jasperserver/j/sort-other-down.gif
690
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-ohne.gif
690
%%APP_VERSION%%/webapps/jasperserver/j/sort-other-up.gif
691
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-rdown.gif
691
%%APP_VERSION%%/webapps/jasperserver/j/sort-up.gif
692
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-rup.gif
692
%%APP_VERSION%%/webapps/jasperserver/j/zoom-out-all-d.png
693
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/arrow-up.gif
693
%%APP_VERSION%%/webapps/jasperserver/j/zoom-out-all-down.png
694
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/collapse-all-d.png
694
%%APP_VERSION%%/webapps/jasperserver/j/zoom-out-all-up.png
695
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/collapse-all-down.png
695
%%APP_VERSION%%/webapps/jasperserver/j/zoom_in.cur
696
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/collapse-all-up.png
696
%%APP_VERSION%%/webapps/jasperserver/j/zoom_out.cur
697
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-member-collapse.gif
697
%%APP_VERSION%%/webapps/jasperserver/jasperreports-flash-4.0.0.swf
698
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-member-expand.gif
698
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/cat-available.png
699
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-member-other.gif
699
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/cat-visible.png
700
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-position-collapse.gif
700
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/column.png
701
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-position-expand.gif
701
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/empty.png
702
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-position-other.gif
702
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/filter.png
703
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-replace-collapse.gif
703
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/functions.png
704
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-replace-expand.gif
704
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/level.png
705
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-replace-other.gif
705
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/mdxnavi.css
706
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/drill-through.gif
706
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/properties.png
707
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/expand-all-d.png
707
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/row.png
708
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/expand-all-down.gif
708
%%APP_VERSION%%/webapps/jasperserver/jpivot/navi/showsel.png
709
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/expand-all-down.png
709
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/Thumbs.db
710
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/expand-all-up.png
710
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-ab.gif
711
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/filter-nochange.gif
711
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-auf.gif
712
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/filter-stepslope.gif
712
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-down.gif
713
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/filter-transient.gif
713
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-gdown.gif
714
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/mdxtable.css
714
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-gup.gif
715
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-current-down.gif
715
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-ndown.gif
716
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-current-up.gif
716
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-none.gif
717
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-down.gif
717
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-nup.gif
718
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-natural.gif
718
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-ohne.gif
719
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-other-down.gif
719
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-rdown.gif
720
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-other-up.gif
720
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-rup.gif
721
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/sort-up.gif
721
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/arrow-up.gif
722
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom-out-all-d.png
722
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/collapse-all-d.png
723
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom-out-all-down.png
723
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/collapse-all-down.png
724
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom-out-all-up.png
724
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/collapse-all-up.png
725
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom_in.cur
725
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-member-collapse.gif
726
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table/zoom_out.cur
726
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-member-expand.gif
727
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/admin-down.png
727
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-member-other.gif
728
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/admin-up.png
728
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-position-collapse.gif
729
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/bookmark-down.png
729
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-position-expand.gif
730
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/bookmark-up.png
730
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-position-other.gif
731
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-config-down.png
731
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-replace-collapse.gif
732
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-config-up.png
732
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-replace-expand.gif
733
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-down.png
733
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-replace-other.gif
734
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-new-down.png
734
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/drill-through.gif
735
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-new-up.png
735
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/expand-all-d.png
736
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart-up.png
736
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/expand-all-down.gif
737
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chart.png
737
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/expand-all-down.png
738
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chartoptions-down.png
738
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/expand-all-up.png
739
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/chartoptions-up.png
739
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/filter-nochange.gif
740
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/cube-down.png
740
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/filter-stepslope.gif
741
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/cube-new-down.png
741
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/filter-transient.gif
742
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/cube-new-up.png
742
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/mdxtable.css
743
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/cube-up.png
743
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-current-down.gif
744
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/debug-down.png
744
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-current-up.gif
745
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/debug-up.png
745
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-down.gif
746
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/displayoptions-down.png
746
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-natural.gif
747
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/displayoptions-up.png
747
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-other-down.gif
748
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/edit-down.png
748
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-other-up.gif
749
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/edit-up.png
749
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/sort-up.gif
750
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/empty-down.png
750
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom-out-all-d.png
751
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/empty-up.png
751
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom-out-all-down.png
752
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-config-down.png
752
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom-out-all-up.png
753
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-config-up.png
753
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom_in.cur
754
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-down.png
754
%%APP_VERSION%%/webapps/jasperserver/jpivot/table/zoom_out.cur
755
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-new-down.png
755
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/admin-down.png
756
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-new-up.png
756
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/admin-up.png
757
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/excel-up.png
757
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/bookmark-down.png
758
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/filter-down.png
758
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/bookmark-up.png
759
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/filter-up.png
759
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-config-down.png
760
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/hide-spans-down.png
760
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-config-up.png
761
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/hide-spans-up.png
761
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-down.png
762
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/level-style-down.png
762
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-new-down.png
763
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/level-style-up.png
763
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-new-up.png
764
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/mdx-edit-down.png
764
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart-up.png
765
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/mdx-edit-up.png
765
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chart.png
766
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/mdxquery-down.png
766
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chartoptions-down.png
767
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/mdxquery-up.png
767
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/chartoptions-up.png
768
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/member-selection-down.png
768
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/cube-down.png
769
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/member-selection-up.png
769
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/cube-new-down.png
770
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-member-down.png
770
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/cube-new-up.png
771
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-member-up.png
771
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/cube-up.png
772
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-position-down.png
772
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/debug-down.png
773
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-position-up.png
773
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/debug-up.png
774
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-replace-down.png
774
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/displayoptions-down.png
775
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-replace-up.png
775
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/displayoptions-up.png
776
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-through-down.png
776
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/edit-down.png
777
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/navi-through-up.png
777
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/edit-up.png
778
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/non-empty-down.png
778
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/empty-down.png
779
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/non-empty-up.png
779
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/empty-up.png
780
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/outputopts-down.png
780
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-config-down.png
781
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/outputopts-up.png
781
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-config-up.png
782
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/param-down.png
782
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-down.png
783
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/param-up.png
783
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-new-down.png
784
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-config-down.png
784
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-new-up.png
785
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-config-up.png
785
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/excel-up.png
786
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-down.png
786
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/filter-down.png
787
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-new-down.png
787
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/filter-up.png
788
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-new-up.png
788
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/hide-spans-down.png
789
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/print-up.png
789
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/hide-spans-up.png
790
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/properties-config-down.png
790
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/level-style-down.png
791
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/properties-config-up.png
791
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/level-style-up.png
792
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/properties-down.png
792
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/mdx-edit-down.png
793
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/properties-up.png
793
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/mdx-edit-up.png
794
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/reload-down.png
794
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/mdxquery-down.png
795
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/reload-up.png
795
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/mdxquery-up.png
796
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/reset-query-down.png
796
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/member-selection-down.png
797
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/reset-query-up.png
797
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/member-selection-up.png
798
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-as-down.png
798
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-member-down.png
799
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-as-up.png
799
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-member-up.png
800
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-dis-down.png
800
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-position-down.png
801
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-dis-up.png
801
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-position-up.png
802
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-down.png
802
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-replace-down.png
803
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/save-up.png
803
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-replace-up.png
804
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/showempty-down.png
804
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-through-down.png
805
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/showempty-up.png
805
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/navi-through-up.png
806
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/sort-asc-down.png
806
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/non-empty-down.png
807
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/sort-asc-up.png
807
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/non-empty-up.png
808
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/sortacross-down.png
808
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/outputopts-down.png
809
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/sortacross-up.png
809
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/outputopts-up.png
810
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/swap-axes-down.png
810
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/param-down.png
811
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/swap-axes-up.png
811
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/param-up.png
812
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/swapaxes-down.png
812
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-config-down.png
813
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/swapaxes-up.png
813
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-config-up.png
814
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/table-config-down.png
814
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-down.png
815
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/table-config-up.png
815
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-new-down.png
816
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/table-down.png
816
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-new-up.png
817
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/table-up.png
817
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/print-up.png
818
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/zoom-down.png
818
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/properties-config-down.png
819
%%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar/zoom-up.png
819
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/properties-config-up.png
820
%%APP_VERSION%%/webapps/%%PORTNAME%%/js-create.ddl
820
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/properties-down.png
821
%%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart/LICENSE-open-flash-chart.txt
821
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/properties-up.png
822
%%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart/README.txt
822
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/reload-down.png
823
%%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart/expressInstall.swf
823
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/reload-up.png
824
%%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart/open-flash-chart.swf
824
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/reset-query-down.png
825
%%APP_VERSION%%/webapps/%%PORTNAME%%/quartz.ddl
825
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/reset-query-up.png
826
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/actionModel.modelGenerator.js
826
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-as-down.png
827
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/actionModel.primaryNavigation.js
827
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-as-up.png
828
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/addinputcontrol.queryextra.js
828
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-dis-down.png
829
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/addlistofvalues.js
829
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-dis-up.png
830
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/administer.base.js
830
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-down.png
831
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/administer.logging.js
831
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/save-up.png
832
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/administer.options.js
832
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/showempty-down.png
833
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/cal.calendar.js
833
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/showempty-up.png
834
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/cal.calendarSetup.js
834
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/sort-asc-down.png
835
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/cascade.cascade.js
835
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/sort-asc-up.png
836
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.LinkButton.js
836
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/sortacross-down.png
837
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.ListBox.js
837
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/sortacross-up.png
838
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.about.js
838
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/swap-axes-down.png
839
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.checkbox-utils.js
839
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/swap-axes-up.png
840
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.customTooltip.js
840
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/swapaxes-down.png
841
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.dialogs.js
841
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/swapaxes-up.png
842
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.heartbeat.js
842
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/table-config-down.png
843
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.loginBox.js
843
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/table-config-up.png
844
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.pickers.js
844
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/table-down.png
845
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.searchBox.js
845
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/table-up.png
846
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.tabs.js
846
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/zoom-down.png
847
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.tabularList.js
847
%%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar/zoom-up.png
848
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.toolbarButtons.events.js
848
%%APP_VERSION%%/webapps/jasperserver/js-create.ddl
849
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.toolbarButtons.js
849
%%APP_VERSION%%/webapps/jasperserver/openflashchart/LICENSE-open-flash-chart.txt
850
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.tooltip.js
850
%%APP_VERSION%%/webapps/jasperserver/openflashchart/README.txt
851
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/components.validator.js
851
%%APP_VERSION%%/webapps/jasperserver/openflashchart/expressInstall.swf
852
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/controls.base.js
852
%%APP_VERSION%%/webapps/jasperserver/openflashchart/open-flash-chart.swf
853
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/controls.report.js
853
%%APP_VERSION%%/webapps/jasperserver/quartz.ddl
854
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.accessibility.js
854
%%APP_VERSION%%/webapps/jasperserver/scripts/actionModel.modelGenerator.js
855
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.ajax.js
855
%%APP_VERSION%%/webapps/jasperserver/scripts/actionModel.primaryNavigation.js
856
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.edition.js
856
%%APP_VERSION%%/webapps/jasperserver/scripts/addinputcontrol.queryextra.js
857
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.events.js
857
%%APP_VERSION%%/webapps/jasperserver/scripts/addlistofvalues.js
858
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.initialize.js
858
%%APP_VERSION%%/webapps/jasperserver/scripts/administer.base.js
859
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.key.events.js
859
%%APP_VERSION%%/webapps/jasperserver/scripts/administer.logging.js
860
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.layout.js
860
%%APP_VERSION%%/webapps/jasperserver/scripts/administer.options.js
861
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/core.touch.events.js
861
%%APP_VERSION%%/webapps/jasperserver/scripts/cal.calendar.js
862
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/error.error.js
862
%%APP_VERSION%%/webapps/jasperserver/scripts/cal.calendarSetup.js
863
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.unittests.yui.console-filters.js
863
%%APP_VERSION%%/webapps/jasperserver/scripts/cascade.cascade.js
864
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.unittests.yui.console.js
864
%%APP_VERSION%%/webapps/jasperserver/scripts/components.LinkButton.js
865
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.unittests.yui.js
865
%%APP_VERSION%%/webapps/jasperserver/scripts/components.ListBox.js
866
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.unittests.yui.test.js
866
%%APP_VERSION%%/webapps/jasperserver/scripts/components.about.js
867
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.builder.js
867
%%APP_VERSION%%/webapps/jasperserver/scripts/components.checkbox-utils.js
868
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.controls.js
868
%%APP_VERSION%%/webapps/jasperserver/scripts/components.customTooltip.js
869
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.dragdrop.extra.js
869
%%APP_VERSION%%/webapps/jasperserver/scripts/components.dialogs.js
870
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.dragdrop.js
870
%%APP_VERSION%%/webapps/jasperserver/scripts/components.heartbeat.js
871
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.dragdrop.touch.js
871
%%APP_VERSION%%/webapps/jasperserver/scripts/components.loginBox.js
872
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.effects.js
872
%%APP_VERSION%%/webapps/jasperserver/scripts/components.pickers.js
873
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.nwmatcher.js
873
%%APP_VERSION%%/webapps/jasperserver/scripts/components.searchBox.js
874
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.prototype.js
874
%%APP_VERSION%%/webapps/jasperserver/scripts/components.tabs.js
875
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.prototype.touch.js
875
%%APP_VERSION%%/webapps/jasperserver/scripts/components.tabularList.js
876
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.scriptaculous.js
876
%%APP_VERSION%%/webapps/jasperserver/scripts/components.toolbarButtons.events.js
877
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.slider.js
877
%%APP_VERSION%%/webapps/jasperserver/scripts/components.toolbarButtons.js
878
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.sound.js
878
%%APP_VERSION%%/webapps/jasperserver/scripts/components.tooltip.js
879
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/ext.utils.unittest.js
879
%%APP_VERSION%%/webapps/jasperserver/scripts/components.validator.js
880
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/jpivot.jaPro.js
880
%%APP_VERSION%%/webapps/jasperserver/scripts/controls.base.js
881
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/list.base.js
881
%%APP_VERSION%%/webapps/jasperserver/scripts/controls.report.js
882
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/messages.messageDetail.js
882
%%APP_VERSION%%/webapps/jasperserver/scripts/core.accessibility.js
883
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/messages.messageList.js
883
%%APP_VERSION%%/webapps/jasperserver/scripts/core.ajax.js
884
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/mng.common.actions.js
884
%%APP_VERSION%%/webapps/jasperserver/scripts/core.edition.js
885
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/mng.common.js
885
%%APP_VERSION%%/webapps/jasperserver/scripts/core.events.js
886
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/mng.main.js
886
%%APP_VERSION%%/webapps/jasperserver/scripts/core.initialize.js
887
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/old.report.view-report.js
887
%%APP_VERSION%%/webapps/jasperserver/scripts/core.key.events.js
888
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.role.mng.actions.js
888
%%APP_VERSION%%/webapps/jasperserver/scripts/core.layout.js
889
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.role.mng.components.js
889
%%APP_VERSION%%/webapps/jasperserver/scripts/core.touch.events.js
890
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.role.mng.main.js
890
%%APP_VERSION%%/webapps/jasperserver/scripts/error.error.js
891
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.rootObjectModifier.js
891
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.unittests.yui.console-filters.js
892
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.user.mng.actions.js
892
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.unittests.yui.console.js
893
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.user.mng.components.js
893
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.unittests.yui.js
894
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/org.user.mng.main.js
894
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.unittests.yui.test.js
895
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.js
895
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.builder.js
896
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.list.js
896
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.controls.js
897
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.output.js
897
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.dragdrop.extra.js
898
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.params.js
898
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.dragdrop.js
899
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.schedule.setup.js
899
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.dragdrop.touch.js
900
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.view.base.js
900
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.effects.js
901
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/report.view.runtime.js
901
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.iscroll.js
902
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/repository.search.actions.js
902
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.nwmatcher.js
903
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/repository.search.components.js
903
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.prototype.js
904
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/repository.search.globalSearchBoxInit.js
904
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.prototype.touch.js
905
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/repository.search.main.js
905
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.scriptaculous.js
906
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.add.files.js
906
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.slider.js
907
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.add.mondrianxmla.js
907
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.sound.js
908
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.dataSource.locate.js
908
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.touch.controller.js
909
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.js
909
%%APP_VERSION%%/webapps/jasperserver/scripts/ext.utils.unittest.js
910
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.locate.js
910
%%APP_VERSION%%/webapps/jasperserver/scripts/jpivot.jaPro.js
911
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.mondrian.locate.js
911
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/js/jquery-1.4.4.min.js
912
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisConnection.xmla.locate.js
912
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/js/jquery-ui-1.8.9.custom.min.js
913
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.analysisView.js
913
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_flat_0_aaaaaa_40x100.png
914
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.base.js
914
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_flat_75_ffffff_40x100.png
915
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.dataSource.js
915
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_55_fbf9ee_1x400.png
916
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.dataType.js
916
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_65_ffffff_1x400.png
917
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.dataType.locate.js
917
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_75_dadada_1x400.png
918
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.inputControl.js
918
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_75_e6e6e6_1x400.png
919
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.inputControl.locate.js
919
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_glass_95_fef1ec_1x400.png
920
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.listOfValues.locate.js
920
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png
921
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.listofvalues.js
921
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_222222_256x240.png
922
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.locate.js
922
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_2e83ff_256x240.png
923
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.query.js
923
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_454545_256x240.png
924
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.query.locate.js
924
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_888888_256x240.png
925
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.report.js
925
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images/ui-icons_cd0a0a_256x240.png
926
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/resource.reportResourceNaming.js
926
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.all.css
927
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tools.drag.js
927
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.base.css
928
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tools.infiniteScroll.js
928
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.core.css
929
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tools.truncator.js
929
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.resizable.css
930
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.events.js
930
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.selectable.css
931
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.nanotree.js
931
%%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/jquery.ui.theme.css
932
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.treenode.js
932
%%APP_VERSION%%/webapps/jasperserver/scripts/list.base.js
933
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.treesupport.js
933
%%APP_VERSION%%/webapps/jasperserver/scripts/messages.messageDetail.js
934
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/tree.utils.js
934
%%APP_VERSION%%/webapps/jasperserver/scripts/messages.messageList.js
935
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/utils.animation.js
935
%%APP_VERSION%%/webapps/jasperserver/scripts/mng.common.actions.js
936
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/utils.common.js
936
%%APP_VERSION%%/webapps/jasperserver/scripts/mng.common.js
937
%%APP_VERSION%%/webapps/%%PORTNAME%%/scripts/utils.dateFormatter.js
937
%%APP_VERSION%%/webapps/jasperserver/scripts/mng.main.js
938
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/buttons.css
938
%%APP_VERSION%%/webapps/jasperserver/scripts/old.report.view-report.js
939
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/containers.css
939
%%APP_VERSION%%/webapps/jasperserver/scripts/org.role.mng.actions.js
940
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/controls.css
940
%%APP_VERSION%%/webapps/jasperserver/scripts/org.role.mng.components.js
941
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/dataDisplays.css
941
%%APP_VERSION%%/webapps/jasperserver/scripts/org.role.mng.main.js
942
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/dialogSpecific.css
942
%%APP_VERSION%%/webapps/jasperserver/scripts/org.rootObjectModifier.js
943
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/adhoc_toolbar_buttons_sprite.png
943
%%APP_VERSION%%/webapps/jasperserver/scripts/org.user.mng.actions.js
944
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/body_bkgnd.png
944
%%APP_VERSION%%/webapps/jasperserver/scripts/org.user.mng.components.js
945
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_jumbo_primary_sprite.png
945
%%APP_VERSION%%/webapps/jasperserver/scripts/org.user.mng.main.js
946
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_jumbo_sprite.png
946
%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.js
947
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_primary_sprite.png
947
%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.list.js
948
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_sprite.png
948
%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.output.js
949
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_action_square_icons_sprite.png
949
%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.params.js
950
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_capsule_sprite.png
950
%%APP_VERSION%%/webapps/jasperserver/scripts/report.schedule.setup.js
951
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/button_options_sprite.png
951
%%APP_VERSION%%/webapps/jasperserver/scripts/report.view.base.js
952
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/column_bkgd.png
952
%%APP_VERSION%%/webapps/jasperserver/scripts/report.view.runtime.js
953
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/column_bkgd_corners.png
953
%%APP_VERSION%%/webapps/jasperserver/scripts/repository.search.actions.js
954
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/column_bkgd_edges_rl.png
954
%%APP_VERSION%%/webapps/jasperserver/scripts/repository.search.components.js
955
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/column_bkgd_edges_tb.png
955
%%APP_VERSION%%/webapps/jasperserver/scripts/repository.search.globalSearchBoxInit.js
956
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/cursor_copy.cur
956
%%APP_VERSION%%/webapps/jasperserver/scripts/repository.search.main.js
957
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/cursor_copy.png
957
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.add.files.js
958
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/disclosure_indicators_sprite.png
958
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.add.mondrianxmla.js
959
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/first-d.gif
959
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.dataSource.locate.js
960
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/first.gif
960
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.js
961
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/floatingMenu_sprite.png
961
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.locate.js
962
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_background_sprite.png
962
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.mondrian.locate.js
963
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_corners.png
963
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisConnection.xmla.locate.js
964
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_edges_rl.png
964
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.analysisView.js
965
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_edges_tb.png
965
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.base.js
966
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_header_sprite.png
966
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.dataSource.js
967
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/gradient_frame.content.png
967
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.dataType.js
968
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/grid_20x20_bkgd.png
968
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.dataType.locate.js
969
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/grouper_sprite.png
969
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.inputControl.js
970
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/header_primary_sprite.png
970
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.inputControl.locate.js
971
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/home_bkgd.png
971
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.listOfValues.locate.js
972
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/home_icons_sprite.png
972
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.listofvalues.js
973
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/input_bkgd.png
973
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.locate.js
974
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/last-d.gif
974
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.query.js
975
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/last.gif
975
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.query.locate.js
976
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/list_node_animation.gif
976
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.report.js
977
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/list_pressed_bkgd.png
977
%%APP_VERSION%%/webapps/jasperserver/scripts/resource.reportResourceNaming.js
978
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/lists_sprite.png
978
%%APP_VERSION%%/webapps/jasperserver/scripts/tools.drag.js
979
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/login_welcome_bkgd.jpg
979
%%APP_VERSION%%/webapps/jasperserver/scripts/tools.infiniteScroll.js
980
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/login_welcome_ce_bkgd.jpg
980
%%APP_VERSION%%/webapps/jasperserver/scripts/tools.truncator.js
981
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/logo.png
981
%%APP_VERSION%%/webapps/jasperserver/scripts/tree.events.js
982
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_context_bkgd_corners.png
982
%%APP_VERSION%%/webapps/jasperserver/scripts/tree.nanotree.js
983
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_context_bkgd_edges_rl.png
983
%%APP_VERSION%%/webapps/jasperserver/scripts/tree.treenode.js
984
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_context_bkgd_edges_tb.png
984
%%APP_VERSION%%/webapps/jasperserver/scripts/tree.treesupport.js
985
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_dropDown_bkgd_corners.png
985
%%APP_VERSION%%/webapps/jasperserver/scripts/tree.utils.js
986
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_dropDown_bkgd_edges_rl.png
986
%%APP_VERSION%%/webapps/jasperserver/scripts/utils.animation.js
987
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_dropDown_bkgd_edges_tb.png
987
%%APP_VERSION%%/webapps/jasperserver/scripts/utils.common.js
988
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_indicators_sprite.png
988
%%APP_VERSION%%/webapps/jasperserver/scripts/utils.dateFormatter.js
989
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_primaryNav_sprite.png
989
%%APP_VERSION%%/webapps/jasperserver/themes/default/buttons.css
990
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/menu_vertical_bkgd.png
990
%%APP_VERSION%%/webapps/jasperserver/themes/default/containers.css
991
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/message_icons_sprite.png
991
%%APP_VERSION%%/webapps/jasperserver/themes/default/controls.css
992
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/next-d.gif
992
%%APP_VERSION%%/webapps/jasperserver/themes/default/dataDisplays.css
993
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/next.gif
993
%%APP_VERSION%%/webapps/jasperserver/themes/default/dialogSpecific.css
994
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_bkgd_corners.png
994
%%APP_VERSION%%/webapps/jasperserver/themes/default/forPrint.css
995
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_bkgd_edges_rl.png
995
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/adhoc_toolbar_buttons_sprite.png
996
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_bkgd_edges_tb.png
996
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/ajax-loader.gif
997
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_confirm_bkgd.png
997
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/body_bkgnd.png
998
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_dialog_header_sprite.png
998
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_jumbo_primary_sprite.png
999
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_bkgd_corners.png
999
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_jumbo_sprite.png
1000
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_bkgd_edges_rl.png
1000
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_primary_sprite.png
1001
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_bkgd_edges_tb.png
1001
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_sprite.png
1002
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_system_bkgd_corners.png
1002
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_action_square_icons_sprite.png
1003
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_system_bkgd_edges_rl.png
1003
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_capsule_sprite.png
1004
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_info_system_bkgd_edges_tb.png
1004
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/button_options_sprite.png
1005
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_bkgd.png
1005
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/column_bkgd.png
1006
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_bkgd_corners.png
1006
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/column_bkgd_corners.png
1007
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_bkgd_edges_rl.png
1007
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/column_bkgd_edges_rl.png
1008
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_bkgd_edges_tb.png
1008
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/column_bkgd_edges_tb.png
1009
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_gradient_left.png
1009
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/cursor_copy.cur
1010
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inlay_gradient_right.png
1010
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/cursor_copy.png
1011
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inset_bkgd_corners.png
1011
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/disclosure_indicators_sprite.png
1012
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inset_bkgd_edges_rl.png
1012
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/first-d.gif
1013
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inset_bkgd_edges_tb.png
1013
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/first.gif
1014
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_inset_inset_bkgd.png
1014
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/floatingMenu_sprite.png
1015
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_sizer_sprite.png
1015
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_background_sprite.png
1016
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/panel_widget_header_sprite.png
1016
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_bkgd_corners.png
1017
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/prev-d.gif
1017
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_bkgd_edges_rl.png
1018
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/prev.gif
1018
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_bkgd_edges_tb.png
1019
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/search_sprite.png
1019
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/frame_header_sprite.png
1020
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/sort_indicators_sprite.png
1020
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/gradient_frame.content.png
1021
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/tabs_horizontal_buttons_bkgd.png
1021
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/grid_20x20_bkgd.png
1022
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/tabs_horizontal_sprite.png
1022
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/grouper_sprite.png
1023
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/tabs_vertical_sprite.png
1023
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/header_primary_sprite.png
1024
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/toolbar_bkgd.png
1024
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/home_bkgd.png
1025
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/wait_animation_large.gif
1025
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/home_icons_sprite.png
1026
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/lists.css
1026
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/input_bkgd.png
1027
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/overrides_custom.css
1027
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/last-d.gif
1028
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/overrides_ie7.css
1028
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/last.gif
1029
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/overrides_ie8.css
1029
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/list_node_animation.gif
1030
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/pageSpecific.css
1030
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/list_pressed_bkgd.png
1031
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/pages.css
1031
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/lists_sprite.png
1032
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/samples.css
1032
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/loadinfo.gif
1033
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/theme.css
1033
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/login_welcome_bkgd.jpg
1034
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/buttons.css
1034
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/login_welcome_bkgd_ipad.jpg
1035
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/containers.css
1035
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/login_welcome_ce_bkgd.jpg
1036
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/controls.css
1036
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/logo.png
1037
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/dialogSpecific.css
1037
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/logo_small.png
1038
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/bullet_arrow.gif
1038
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_context_bkgd_corners.png
1039
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/clear.png
1039
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_context_bkgd_edges_rl.png
1040
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/controls.png
1040
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_context_bkgd_edges_tb.png
1041
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/display.png
1041
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_dropDown_bkgd_corners.png
1042
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/export.png
1042
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_dropDown_bkgd_edges_rl.png
1043
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/folder.png
1043
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_dropDown_bkgd_edges_tb.png
1044
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/folder_open.png
1044
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_indicators_sprite.png
1045
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/grouper_sprite.png
1045
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_primaryNav_sprite.png
1046
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/home_bkgd.png
1046
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/menu_vertical_bkgd.png
1047
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/home_icons_sprite.png
1047
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/message_icons_sprite.png
1048
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/input_bg.gif
1048
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/next-d.gif
1049
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/js_logo_grays.png
1049
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/next.gif
1050
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/lists_sprite.png
1050
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_bkgd_corners.png
1051
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_down_gray.png
1051
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_bkgd_edges_rl.png
1052
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_down_gray.png
1052
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_bkgd_edges_tb.png
1053
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_left_gray.png
1053
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_confirm_bkgd.png
1054
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_right_gray.png
1054
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_dialog_header_sprite.png
1055
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_up_gray.png
1055
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_bkgd_corners.png
1056
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_left_gray.png
1056
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_bkgd_edges_rl.png
1057
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_right_gray.png
1057
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_bkgd_edges_tb.png
1058
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_up_gray.png
1058
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_system_bkgd_corners.png
1059
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/mutton.png
1059
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_system_bkgd_edges_rl.png
1060
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/navigation_down.png
1060
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_system_bkgd_edges_tb.png
1061
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/navigation_down_gray.png
1061
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_tooltip_bkgd_corners.png
1062
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/navigation_right_gray.png
1062
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_tooltip_bkgd_edges_rl.png
1063
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/options.png
1063
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_info_tooltip_bkgd_edges_tb.png
1064
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/panel_close.png
1064
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_bkgd.png
1065
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/pivot.png
1065
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_bkgd_corners.png
1066
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/redo.png
1066
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_bkgd_edges_rl.png
1067
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/resize_vertical.png
1067
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_bkgd_edges_tb.png
1068
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/save.png
1068
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_gradient_left.png
1069
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/search.png
1069
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inlay_gradient_right.png
1070
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/search_sprite.png
1070
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inset_bkgd_corners.png
1071
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/sort.png
1071
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inset_bkgd_edges_rl.png
1072
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/styles.png
1072
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inset_bkgd_edges_tb.png
1073
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/tabs_horizontal_sprite.png
1073
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_inset_inset_bkgd.png
1074
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/undo-all.png
1074
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_sizer_sprite.png
1075
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/undo.png
1075
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/panel_widget_header_sprite.png
1076
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/wait_animation_large.gif
1076
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/prev-d.gif
1077
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/lists.css
1077
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/prev.gif
1078
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/pageSpecific.css
1078
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/search_sprite.png
1079
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/pages.css
1079
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/sort_indicators_sprite.png
1080
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/samples.css
1080
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/tabs_horizontal_buttons_bkgd.png
1081
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/theme.css
1081
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/tabs_horizontal_sprite.png
1082
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/body_bkgnd.png
1082
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/tabs_vertical_sprite.png
1083
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_action_jumbo_sprite.png
1083
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/toolbar_bkgd.png
1084
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_action_primary_sprite.png
1084
%%APP_VERSION%%/webapps/jasperserver/themes/default/images/wait_animation_large.gif
1085
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_capsule_sprite.png
1085
%%APP_VERSION%%/webapps/jasperserver/themes/default/lists.css
1086
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/disclosure_indicators_sprite.png
1086
%%APP_VERSION%%/webapps/jasperserver/themes/default/overrides_custom.css
1087
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/frame_header_sprite.png
1087
%%APP_VERSION%%/webapps/jasperserver/themes/default/overrides_ie.css
1088
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/logo.png
1088
%%APP_VERSION%%/webapps/jasperserver/themes/default/overrides_ie7.css
1089
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/menu_primaryNav_sprite.png
1089
%%APP_VERSION%%/webapps/jasperserver/themes/default/overrides_ie8.css
1090
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/search_sprite.png
1090
%%APP_VERSION%%/webapps/jasperserver/themes/default/pageSpecific.css
1091
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/tabs_horizontal_sprite.png
1091
%%APP_VERSION%%/webapps/jasperserver/themes/default/pages.css
1092
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/tabs_vertical_sprite.png
1092
%%APP_VERSION%%/webapps/jasperserver/themes/default/samples.css
1093
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/overrides_custom.css
1093
%%APP_VERSION%%/webapps/jasperserver/themes/default/theme.css
1094
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/reset.css
1094
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/body_bkgnd.png
1095
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/cal.png
1095
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/button_action_jumbo_sprite.png
1096
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/calendar.css
1096
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/button_action_primary_sprite.png
1097
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/calendar.js
1097
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/button_capsule_sprite.png
1098
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/close.gif
1098
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/disclosure_indicators_sprite.png
1099
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/divider.gif
1099
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/frame_header_sprite.png
1100
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/drop1.gif
1100
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/logo.png
1101
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/drop2.gif
1101
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/menu_primaryNav_sprite.png
1102
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/left1.gif
1102
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/search_sprite.png
1103
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/left2.gif
1103
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/tabs_horizontal_sprite.png
1104
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/right1.gif
1104
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images/tabs_vertical_sprite.png
1105
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar/right2.gif
1105
%%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/overrides_custom.css
1106
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/category1.png
1106
%%APP_VERSION%%/webapps/jasperserver/themes/reset.css
1107
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/category2.png
1107
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/cal.png
1108
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/category3.png
1108
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/calendar.css
1109
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/empty.png
1109
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/calendar.js
1110
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit/xcatedit.css
1110
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/close.gif
1111
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/cut.png
1111
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/divider.gif
1112
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/move-down.png
1112
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/drop1.gif
1113
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/move-empty.png
1113
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/drop2.gif
1114
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/move-up.png
1114
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/left1.gif
1115
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/paste-after.png
1115
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/left2.gif
1116
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/paste-before.png
1116
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/right1.gif
1117
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder/uncut.png
1117
%%APP_VERSION%%/webapps/jasperserver/wcf/calendar/right2.gif
1118
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/form/cancel.png
1118
%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/category1.png
1119
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/form/ok.png
1119
%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/category2.png
1120
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/form/xform.css
1120
%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/category3.png
1121
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/pagestack/pagestack.css
1121
%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/empty.png
1122
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/popup/popup.css
1122
%%APP_VERSION%%/webapps/jasperserver/wcf/catedit/xcatedit.css
1123
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/popup/popup.js
1123
%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/cut.png
1124
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/scroller.js
1124
%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/move-down.png
1125
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/status/status.css
1125
%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/move-empty.png
1126
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tabbed/current.png
1126
%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/move-up.png
1127
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tabbed/other.png
1127
%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/paste-after.png
1128
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tabbed/xtabbed.css
1128
%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/paste-before.png
1129
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/csv16.png
1129
%%APP_VERSION%%/webapps/jasperserver/wcf/changeorder/uncut.png
1130
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/edit.png
1130
%%APP_VERSION%%/webapps/jasperserver/wcf/form/cancel.png
1131
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/gotopage.png
1131
%%APP_VERSION%%/webapps/jasperserver/wcf/form/ok.png
1132
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-first-down.png
1132
%%APP_VERSION%%/webapps/jasperserver/wcf/form/xform.css
1133
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-first.png
1133
%%APP_VERSION%%/webapps/jasperserver/wcf/pagestack/pagestack.css
1134
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-last-down.png
1134
%%APP_VERSION%%/webapps/jasperserver/wcf/popup/popup.css
1135
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-last.png
1135
%%APP_VERSION%%/webapps/jasperserver/wcf/popup/popup.js
1136
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-next-down.png
1136
%%APP_VERSION%%/webapps/jasperserver/wcf/scroller.js
1137
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-next.png
1137
%%APP_VERSION%%/webapps/jasperserver/wcf/status/status.css
1138
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-prev-down.png
1138
%%APP_VERSION%%/webapps/jasperserver/wcf/tabbed/current.png
1139
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/page-prev.png
1139
%%APP_VERSION%%/webapps/jasperserver/wcf/tabbed/other.png
1140
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/select.png
1140
%%APP_VERSION%%/webapps/jasperserver/wcf/tabbed/xtabbed.css
1141
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/sort-ac.png
1141
%%APP_VERSION%%/webapps/jasperserver/wcf/table/csv16.png
1142
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/sort-an.png
1142
%%APP_VERSION%%/webapps/jasperserver/wcf/table/edit.png
1143
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/sort-dc.png
1143
%%APP_VERSION%%/webapps/jasperserver/wcf/table/gotopage.png
1144
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/sort-dn.png
1144
%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-first-down.png
1145
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table/xtable.css
1145
%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-first.png
1146
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/toolbar/button-down.png
1146
%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-last-down.png
1147
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/toolbar/button-up.png
1147
%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-last.png
1148
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/accept.png
1148
%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-next-down.png
1149
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/cancel.png
1149
%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-next.png
1150
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/collapse.png
1150
%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-prev-down.png
1151
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/delete.png
1151
%%APP_VERSION%%/webapps/jasperserver/wcf/table/page-prev.png
1152
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/expand.png
1152
%%APP_VERSION%%/webapps/jasperserver/wcf/table/select.png
1153
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/leaf.png
1153
%%APP_VERSION%%/webapps/jasperserver/wcf/table/sort-ac.png
1154
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/select0.png
1154
%%APP_VERSION%%/webapps/jasperserver/wcf/table/sort-an.png
1155
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/select1.png
1155
%%APP_VERSION%%/webapps/jasperserver/wcf/table/sort-dc.png
1156
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/unbound.png
1156
%%APP_VERSION%%/webapps/jasperserver/wcf/table/sort-dn.png
1157
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/xtree.css
1157
%%APP_VERSION%%/webapps/jasperserver/wcf/table/xtable.css
1158
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/wcf.css
1158
%%APP_VERSION%%/webapps/jasperserver/wcf/toolbar/button-down.png
1159
%%APP_VERSION%%/webapps/%%PORTNAME%%/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql
1159
%%APP_VERSION%%/webapps/jasperserver/wcf/toolbar/button-up.png
1160
%%APP_VERSION%%/webapps/%%PORTNAME%%/upgrade-%%DATABASE%%-4.0.0-4.1.0-ce.sql
1160
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/accept.png
1161
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/cancel.png
1162
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/collapse.png
1163
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/delete.png
1164
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/expand.png
1165
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/leaf.png
1166
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/select0.png
1167
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/select1.png
1168
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/unbound.png
1169
%%APP_VERSION%%/webapps/jasperserver/wcf/tree/xtree.css
1170
%%APP_VERSION%%/webapps/jasperserver/wcf/wcf.css
1171
%%APP_VERSION%%/webapps/jasperserver/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql
1172
%%APP_VERSION%%/webapps/jasperserver/upgrade-%%DATABASE%%-4.1.0-4.2.1-ce.sql
1161
%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%
1173
%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%
1162
@exec if [ -f %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%% ]; then /bin/chmod a+r %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%; else exit 1; fi
1174
@exec if [ -f %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%% ]; then /bin/chmod a+r %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%; else exit 1; fi
1163
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree
1175
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/tree
1164
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/toolbar
1176
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/toolbar
1165
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/table
1177
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/table
1166
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tabbed
1178
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/tabbed
1167
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/status
1179
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/status
1168
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/popup
1180
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/popup
1169
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/pagestack
1181
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/pagestack
1170
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/form
1182
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/form
1171
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/changeorder
1183
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/changeorder
1172
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/catedit
1184
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/catedit
1173
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/calendar
1185
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf/calendar
1174
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf
1186
@dirrm %%APP_VERSION%%/webapps/jasperserver/wcf
1175
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images
1187
@dirrm %%APP_VERSION%%/webapps/jasperserver/themes/pods_summer/images
1176
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer
1188
@dirrm %%APP_VERSION%%/webapps/jasperserver/themes/pods_summer
1177
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images
1189
@dirrm %%APP_VERSION%%/webapps/jasperserver/themes/default/images
1178
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale
1190
@dirrm %%APP_VERSION%%/webapps/jasperserver/themes/default
1179
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images
1191
@dirrm %%APP_VERSION%%/webapps/jasperserver/themes
1180
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default
1192
@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme/images
1181
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes
1193
@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/jquery/theme
1182
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/scripts
1194
@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/jquery/js
1183
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/openflashchart
1195
@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts/jquery
1184
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/toolbar
1196
@dirrm %%APP_VERSION%%/webapps/jasperserver/scripts
1185
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/table
1197
@dirrm %%APP_VERSION%%/webapps/jasperserver/openflashchart
1186
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot/navi
1198
@dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot/toolbar
1187
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/jpivot
1199
@dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot/table
1188
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/j
1200
@dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot/navi
1189
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/cal
1201
@dirrm %%APP_VERSION%%/webapps/jasperserver/jpivot
1190
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/wcf
1202
@dirrm %%APP_VERSION%%/webapps/jasperserver/j
1191
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/queries
1203
@dirrm %%APP_VERSION%%/webapps/jasperserver/cal
1192
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/logs
1204
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/wcf
1193
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib
1205
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/queries
1194
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates
1206
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/logs
1195
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/webHelp
1207
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/lib
1196
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport
1208
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/templates
1197
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system
1209
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/webHelp
1198
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search
1210
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/viewReport
1199
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/mocks
1211
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/system
1200
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample
1212
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/search
1201
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportUnitFlow
1213
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample/mocks
1202
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling
1214
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/sample
1203
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportDataSourceFlow
1215
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportUnitFlow
1204
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/repoAdmin
1216
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportScheduling
1205
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/query
1217
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/reportDataSourceFlow
1206
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapUnitFlow
1218
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/repoAdmin
1207
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olapDataSourceFlow
1219
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/query
1208
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/olap
1220
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapUnitFlow
1209
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/messages
1221
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olapDataSourceFlow
1210
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/manage
1222
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/olap
1211
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/rotating
1223
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/messages
1212
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login
1224
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/manage
1213
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls
1225
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login/rotating
1214
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/heartbeat
1226
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/login
1215
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/exporters
1227
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/inputControls
1216
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/common
1228
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/heartbeat
1217
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/administer
1229
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/exporters
1218
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/mondrianXML-A
1230
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/common
1219
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/listOfValues
1231
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/administer
1220
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/jasperReport
1232
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/mondrianXML-A
1221
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/inputControls
1233
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/listOfValues
1222
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/fileResource
1234
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/jasperReport
1223
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataType
1235
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/inputControls
1224
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/dataSource
1236
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/fileResource
1225
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisView
1237
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataType
1226
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection
1238
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/dataSource
1227
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource
1239
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisView
1228
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/about
1240
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource/analysisClientConnection
1229
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules
1241
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/addResource
1230
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax
1242
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules/about
1231
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp
1243
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/modules
1232
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/toolbar
1244
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp/ajax
1233
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/table
1245
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jsp
1234
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/saveas
1246
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/toolbar
1235
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/print
1247
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/table
1236
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/navi
1248
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/saveas
1237
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/chart
1249
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/print
1238
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot
1250
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/navi
1239
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/internal
1251
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot/chart
1240
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/flows
1252
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/jpivot
1241
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/decorators
1253
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/internal
1242
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/themes
1254
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/flows
1243
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes
1255
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/decorators
1244
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles
1256
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes/themes
1245
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF
1257
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/classes
1246
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF
1258
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF/bundles
1247
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%
1259
@dirrm %%APP_VERSION%%/webapps/jasperserver/WEB-INF
1260
@dirrm %%APP_VERSION%%/webapps/jasperserver/META-INF
1261
@dirrm %%APP_VERSION%%/webapps/jasperserver
(-)jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml (-7 / +7 lines)
Lines 1-5 Link Here
1
--- ./jasperserver/common/shared-config/applicationContext-themes.xml.orig	2011-02-18 14:52:56.000000000 -0800
1
--- ./jasperserver/common/shared-config/applicationContext-themes.xml.orig	2011-10-18 16:40:01.000000000 -0700
2
+++ ./jasperserver/common/shared-config/applicationContext-themes.xml	2011-02-18 14:53:53.000000000 -0800
2
+++ ./jasperserver/common/shared-config/applicationContext-themes.xml	2011-10-18 16:40:56.000000000 -0700
3
@@ -14,7 +14,6 @@
3
@@ -14,7 +14,6 @@
4
 	     	
4
 	     	
5
 	 -->
5
 	 -->
Lines 8-21 Link Here
8
     <bean id="themeResolver" class="org.springframework.web.servlet.theme.FixedThemeResolver">
8
     <bean id="themeResolver" class="org.springframework.web.servlet.theme.FixedThemeResolver">
9
         <property name="defaultThemeName" value="default"/>
9
         <property name="defaultThemeName" value="default"/>
10
     </bean>
10
     </bean>
11
@@ -22,27 +21,32 @@
11
@@ -22,27 +21,29 @@
12
     <bean id="themeSource" class="org.springframework.ui.context.support.ResourceBundleThemeSource">
12
     <bean id="themeSource" class="org.springframework.ui.context.support.ResourceBundleThemeSource">
13
         <property name="basenamePrefix" value="themes."/>
13
         <property name="basenamePrefix" value="themes."/>
14
     </bean>
14
     </bean>
15
--->
15
--->
16
 
16
 
17
 	<!-- To run the themes from the repository, uncomment the three beans below and comment out the two beans above -->
17
 	<!-- To run the themes from the repository, uncomment the three beans below and comment out the two beans above -->
18
 	
18
-
19
+<!--
19
+<!--
20
     <bean id="themeResolver" class="com.jaspersoft.jasperserver.war.themes.JSThemeResolver">
20
     <bean id="themeResolver" class="com.jaspersoft.jasperserver.war.themes.JSThemeResolver">
21
         <property name="defaultThemeName">
21
         <property name="defaultThemeName">
Lines 23-30 Link Here
23
         </property>
23
         </property>
24
         <property name="delegate" ref="jsThemeResolver"/>
24
         <property name="delegate" ref="jsThemeResolver"/>
25
     </bean>
25
     </bean>
26
-
26
+-->
27
+-->
27
 
28
+<!--
28
+<!--
29
     <bean id="jsThemeResolver" class="com.jaspersoft.jasperserver.war.themes.MTThemeResolver">
29
     <bean id="jsThemeResolver" class="com.jaspersoft.jasperserver.war.themes.MTThemeResolver">
30
         <property name="defaultThemeName">
30
         <property name="defaultThemeName">
Lines 32-39 Link Here
32
         </property>
32
         </property>
33
         <property name="tenantService" ref="${bean.hibernateTenantService}" />
33
         <property name="tenantService" ref="${bean.hibernateTenantService}" />
34
     </bean>
34
     </bean>
35
-
35
+-->
36
+-->
36
 
37
+<!--
37
+<!--
38
     <bean id="themeSource" class="com.jaspersoft.jasperserver.war.themes.RepositoryFolderThemeSourceImpl">
38
     <bean id="themeSource" class="com.jaspersoft.jasperserver.war.themes.RepositoryFolderThemeSourceImpl">
39
         <property name="themeCache" ref="themeCache"/>
39
         <property name="themeCache" ref="themeCache"/>
Lines 42-48 Link Here
42
 
42
 
43
     <bean id="themeCache" class="com.jaspersoft.jasperserver.war.themes.ThemeCache">
43
     <bean id="themeCache" class="com.jaspersoft.jasperserver.war.themes.ThemeCache">
44
         <property name="repositoryService" ref="unsecureRepositoryService"/>
44
         <property name="repositoryService" ref="unsecureRepositoryService"/>
45
@@ -84,4 +88,4 @@
45
@@ -84,4 +85,4 @@
46
         <property name="themeSource" ref="themeSource" />
46
         <property name="themeSource" ref="themeSource" />
47
     </bean>
47
     </bean>
48
 
48
 
(-)jasperserver/files/pkg-message.in (-11 / +19 lines)
Lines 14-40 Link Here
14
14
15
Take necessary precautions before loading this sql into the %%PORTNAME%% database.
15
Take necessary precautions before loading this sql into the %%PORTNAME%% database.
16
16
17
To create the %%PORTNAME%% database, you may choose to run the following target against
17
To create the %%JSDB%% database, you may choose to run the following target against
18
%%SRCDIR%%/%%PORTNAME%%/buildomatic/js-ant
18
%%SRCDIR%%/%%PORTNAME%%/buildomatic/js-ant
19
19
20
./js-ant create-js-db (Creates the %%PORTNAME%% database)
20
./js-ant create-js-db (Creates the %%JSDB%% database)
21
21
22
If the %%PORTNAME%% database already exists, you may need to first drop the database:
22
If the %%JSDB%% database already exists, you may need to first drop the database:
23
./js-ant drop-js-db (Drops the %%PORTNAME%% database)
23
./js-ant drop-js-db (Drops the %%JSDB%% database)
24
24
25
Alternatively, you may choose to use the following method to create a suitable database:
25
Alternatively, you may choose to use the following method to create a suitable database:
26
 (mysql) mysql> create database jasperserver character set utf8;
26
 (mysql) mysql> create database %%JSDB%% character set utf8;
27
 (postgresql) create database jasperserver;
27
 (postgresql) create database %%JSDB%%;
28
28
29
29
30
==============  W A R N I N G   I M P O R T A N T   N O T E  =================
30
==============  W A R N I N G   I M P O R T A N T   N O T E  =================
31
31
32
If UPGRADING from 4.0.0 to 4.1.0:
32
You can upgrade directly to 4.2.1 if your instance is one of the following:
33
(taken from release notes of 4.1.0 from vendor)
33
3.7.0
34
3.7.1
35
4.0.0
36
4.1.0
37
38
Note that Jaspersoft did not release a 4.2.0 version of JasperReports Server
39
Community Project. The version number progression goes from 4.1.0 to 4.2.1
40
directly. The recommended upgrade procedures are fully described in the
41
Installation Guide.
42
43
There are no database changes between 4.1.0 and 4.2.1. So, the upgrade from
44
4.1.0 to 4.2.1 is simpler than upgrading from earlier versions.
34
45
35
To upgrade from 4.0.0 to 4.1.0, refer to the recommended
36
procedure described in the Installation Guide Chapter 8 
37
"Upgrade from 4.0.0 to 4.1.0"
38
==============  W A R N I N G   I M P O R T A N T   N O T E  =================
46
==============  W A R N I N G   I M P O R T A N T   N O T E  =================
39
47
40
WWW: http://jasperforge.org/projects/jasperserver
48
WWW: http://jasperforge.org/projects/jasperserver

Return to bug 162111