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

(-)jasperserver/Makefile (-23 / +42 lines)
Lines 6-17 Link Here
6
#
6
#
7
7
8
PORTNAME=	jasperserver
8
PORTNAME=	jasperserver
9
PORTVERSION=	4.0.0
9
PORTVERSION=	4.1.0
10
PORTREVISION=	2
11
CATEGORIES=	databases print java
10
CATEGORIES=	databases print java
12
MASTER_SITES=	SF/${PORTNAME}/JasperServer/JasperServer%20${PORTVERSION}/:source1
11
MASTER_SITES=	SF/${PORTNAME}/JasperServer/JasperServer%20${PORTVERSION}/:source1
13
DISTFILES=	jasperreports-server-cp-${PORTVERSION}-src.zip:source1 \
12
DISTFILES=	jasperreports-server-cp-${PORTVERSION}-src.zip:source1 \
14
		jasperreports-server-cp-${PORTVERSION}-maven-repository.zip:source1
13
		jasperreports-server-${PORTVERSION}-maven-repository.zip:source1
15
EXTRACT_ONLY=	jasperreports-server-cp-${PORTVERSION}-src.zip
14
EXTRACT_ONLY=	jasperreports-server-cp-${PORTVERSION}-src.zip
16
15
17
MAINTAINER=	jhelfman@experts-exchange.com
16
MAINTAINER=	jhelfman@experts-exchange.com
Lines 29-35 Link Here
29
SQLSRC=		${WRKSRC}/install_resources/sql
28
SQLSRC=		${WRKSRC}/install_resources/sql
30
JS=		${SRCDIR}/${PORTNAME}
29
JS=		${SRCDIR}/${PORTNAME}
31
JSREPO=		${JS}-repo
30
JSREPO=		${JS}-repo
32
JSMAVENARCH=	jasperreports-server-cp-${PORTVERSION}-maven-repository.zip
31
JSMAVENARCH=	jasperreports-server-${PORTVERSION}-maven-repository.zip
33
32
34
NO_WRKSUBDIR=	yes
33
NO_WRKSUBDIR=	yes
35
USE_JAVA=	yes
34
USE_JAVA=	yes
Lines 43-49 Link Here
43
OPTIONS=	TOMCAT5 "Enable Tomcat 5.x support"	on \
42
OPTIONS=	TOMCAT5 "Enable Tomcat 5.x support"	on \
44
		TOMCAT6 "Enable Tomcat 6.x support"	off \
43
		TOMCAT6 "Enable Tomcat 6.x support"	off \
45
		MYSQL   "Enable Mysql 5.x support"	on \
44
		MYSQL   "Enable Mysql 5.x support"	on \
46
		POSTGRESQL "Enable PostgreSQL 8.x support" off
45
		POSTGRESQL "Enable PostgreSQL 8.x support" off \
46
		POSTGRESQL9 "Enable PostgreSQL 9.x support" off
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 73-88 Link Here
73
.endif
73
.endif
74
74
75
#use version 84, application is certified against this version
75
#use version 84, application is certified against this version
76
#use version 90, application is reported to work against this version
76
.if defined(WITH_POSTGRESQL)
77
.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
83
JDBC=	postgresql-9.0-801.jdbc4.jar
84
DISTFILES+=	postgresql-9.0-801.jdbc4.jar:source2
85
.endif
86
87
.if ( defined(WITH_POSTGRESQL) || (WITH_POSTGRESQL9) )
77
USE_PGSQL=	yes
88
USE_PGSQL=	yes
78
WANT_PGSQL_VER= 84
79
MYNAME?=	pgsql
89
MYNAME?=	pgsql
80
MYPASS?=	pgsql
90
MYPASS?=	pgsql
81
DATABASE=	postgresql
91
DATABASE=	postgresql
82
JDBC=		postgresql-8.4-702.jdbc4.jar
83
PLIST_SUB+=	JDBC=${JDBC}
92
PLIST_SUB+=	JDBC=${JDBC}
84
MASTER_SITES+=	http://jdbc.postgresql.org/download/:source2
93
MASTER_SITES+=	http://jdbc.postgresql.org/download/:source2
85
DISTFILES+=	postgresql-8.4-702.jdbc4.jar:source2
86
.endif
94
.endif
87
95
88
.if defined(WITH_TOMCAT5)
96
.if defined(WITH_TOMCAT5)
Lines 108-114 Link Here
108
DBHOST?=	localhost
116
DBHOST?=	localhost
109
117
110
APP_PROPERTIES=	${SRCDIR}/${PORTNAME}/buildomatic/default_master.properties
118
APP_PROPERTIES=	${SRCDIR}/${PORTNAME}/buildomatic/default_master.properties
111
MAIL_PROPERTIES=${SRCDIR}/${PORTNAME}/buildomatic/build_conf/default/webapp/WEB-INF/js.quartz.properties
119
QTZ_PROPERTIES=	${SRCDIR}/${PORTNAME}/${PORTNAME}-war/target/${PORTNAME}/WEB-INF/js.quartz.properties
112
120
113
JSPORT?=	8080
121
JSPORT?=	8080
114
JSEXTRA?=
122
JSEXTRA?=
Lines 127-133 Link Here
127
IGNORE=	choose at least one application server
135
IGNORE=	choose at least one application server
128
.elif ( defined(WITH_MYSQL) && defined(WITH_POSTGRESQL) )
136
.elif ( defined(WITH_MYSQL) && defined(WITH_POSTGRESQL) )
129
IGNORE=	you can only define one database
137
IGNORE=	you can only define one database
130
.elif ( !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL) )
138
.elif ( defined(WITH_MYSQL) && defined(WITH_POSTGRESQL9) )
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) )
131
IGNORE=	choose at least one database
143
IGNORE=	choose at least one database
132
.endif
144
.endif
133
145
Lines 185-200 Link Here
185
	@( ${CP} ${WRKDIR}/web.xml ${JS}/jasperserver-war/src/main/webappAdditions/WEB-INF/web.xml )
197
	@( ${CP} ${WRKDIR}/web.xml ${JS}/jasperserver-war/src/main/webappAdditions/WEB-INF/web.xml )
186
	@( cd ${WRKSRC} && ./js-ant build-ce )
198
	@( cd ${WRKSRC} && ./js-ant build-ce )
187
199
188
	@${ECHO} "quartz.delegateClass=org.quartz.impl.jdbcjobstore.StdJDBCDelegate" > ${MAIL_PROPERTIES}
200
.if !( defined(WITH_POSTGRESQL) || (WITH_POSTGRESQL9) )
189
	@${ECHO} "quartz.tablePrefix=QRTZ_" >> ${MAIL_PROPERTIES}
201
	@${ECHO} "quartz.delegateClass=org.quartz.impl.jdbcjobstore.StdJDBCDelegate" > ${QTZ_PROPERTIES}
190
	@${ECHO} "quartz.extraSettings=${JSEXTRA}" >> ${MAIL_PROPERTIES}
202
.else
191
	@${ECHO} "report.scheduler.web.deployment.uri=http://localhost:${JSPORT}/${PORTNAME}" >> ${MAIL_PROPERTIES}
203
	@${ECHO} "quartz.delegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate" > ${QTZ_PROPERTIES}
192
	@${ECHO} "report.scheduler.mail.sender.host=${JSMAILHOST}" >> ${MAIL_PROPERTIES}
204
.endif
193
	@${ECHO} "report.scheduler.mail.sender.username=${JSMAILUSER}" >> ${MAIL_PROPERTIES}
205
194
	@${ECHO} "report.scheduler.mail.sender.password=${JSMAILPASS}" >> ${MAIL_PROPERTIES}
206
	@${ECHO} "quartz.tablePrefix=QRTZ_" >> ${QTZ_PROPERTIES}
195
	@${ECHO} "report.scheduler.mail.sender.from=${JSMAILFROM}" >> ${MAIL_PROPERTIES}
207
	@${ECHO} "quartz.extraSettings=${JSEXTRA}" >> ${QTZ_PROPERTIES}
196
	@${ECHO} "report.scheduler.mail.sender.protocol=${JSMAILPROTO}" >> ${MAIL_PROPERTIES}
208
	@${ECHO} "report.scheduler.web.deployment.uri=http://localhost:${JSPORT}/${PORTNAME}" >> ${QTZ_PROPERTIES}
197
	@${ECHO} "report.scheduler.mail.sender.port=${JSMAILPORT}" >> ${MAIL_PROPERTIES}
209
	@${ECHO} "report.scheduler.mail.sender.host=${JSMAILHOST}" >> ${QTZ_PROPERTIES}
210
	@${ECHO} "report.scheduler.mail.sender.username=${JSMAILUSER}" >> ${QTZ_PROPERTIES}
211
	@${ECHO} "report.scheduler.mail.sender.password=${JSMAILPASS}" >> ${QTZ_PROPERTIES}
212
	@${ECHO} "report.scheduler.mail.sender.from=${JSMAILFROM}" >> ${QTZ_PROPERTIES}
213
	@${ECHO} "report.scheduler.mail.sender.protocol=${JSMAILPROTO}" >> ${QTZ_PROPERTIES}
214
	@${ECHO} "report.scheduler.mail.sender.port=${JSMAILPORT}" >> ${QTZ_PROPERTIES}
198
215
199
post-build:
216
post-build:
200
	@if [ -L ~/.m2 ]; then ${RM} -f ~/.m2; fi
217
	@if [ -L ~/.m2 ]; then ${RM} -f ~/.m2; fi
Lines 204-214 Link Here
204
	@${INSTALL_DATA} ${FILESDIR}/jasperserverCreateDefaultSecurity-${DATABASE}.sql ${JSHOME}
221
	@${INSTALL_DATA} ${FILESDIR}/jasperserverCreateDefaultSecurity-${DATABASE}.sql ${JSHOME}
205
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/js-create.ddl ${JSHOME} )
222
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/js-create.ddl ${JSHOME} )
206
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/quartz.ddl ${JSHOME} )
223
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/quartz.ddl ${JSHOME} )
207
	@${INSTALL} -m 440 ${MAIL_PROPERTIES} ${JSHOME}/WEB-INF/
224
	@( cd ${SQLSRC} && ${INSTALL_DATA} ${DATABASE}/upgrade-${DATABASE}-4.0.0-4.1.0-ce.sql ${JSHOME} )
225
	@${INSTALL} -m 440 ${QTZ_PROPERTIES} ${JSHOME}/WEB-INF/
208
226
209
.if ( defined(WITH_TOMCAT6) || defined(WITH_TOMCAT5) && !defined(WITH_MYSQL) )
227
#removed shipped driver from vendor
228
.if ( defined(WITH_TOMCAT6) || defined(WITH_TOMCAT5) && !defined(WITH_MYSQL) && defined(WITH_POSTGRESQL) || defined(WITH_POSTGRESQL9) )
210
	${INSTALL_DATA} ${DISTDIR}/${JDBC} ${APPHOME}/${JDBCLOC}
229
	${INSTALL_DATA} ${DISTDIR}/${JDBC} ${APPHOME}/${JDBCLOC}
211
	@${RM} ${APPHOME}/${JDBCLOC}/postgresql-8.1-407.jdbc3.jar
230
	@${RM} ${APPHOME}/${JDBCLOC}/postgresql-9.0-801.jdbc3.jar
212
.endif
231
.endif
213
232
214
post-install:
233
post-install:
(-)jasperserver/distinfo (-4 / +6 lines)
Lines 1-6 Link Here
1
SHA256 (jasperreports-server-cp-4.0.0-src.zip) = 2795f952b36af74efe8e90baa0d230bce51344abc706f6225661315b269d6e62
1
SHA256 (jasperreports-server-cp-4.1.0-src.zip) = b6d2c460883848ebcedc75d7fef2fa4928fd8ca12187f53523a0affae2bc6d5e
2
SIZE (jasperreports-server-cp-4.0.0-src.zip) = 151337059
2
SIZE (jasperreports-server-cp-4.1.0-src.zip) = 131993640
3
SHA256 (jasperreports-server-cp-4.0.0-maven-repository.zip) = 535342169a6b53466b387670f6bbe8414ed7b0fa12f9734d6ad369144fca2fc5
3
SHA256 (jasperreports-server-4.1.0-maven-repository.zip) = 8229eda108ba773b3d1f0c87ee915ba27468d784863e1ad2ea858b946345a742
4
SIZE (jasperreports-server-cp-4.0.0-maven-repository.zip) = 224104077
4
SIZE (jasperreports-server-4.1.0-maven-repository.zip) = 226631661
5
SHA256 (postgresql-9.0-801.jdbc4.jar) = 269faefab785ba5480b66b67b94a5189209e5cb86fb6def3e0a2155332ed6f3a
6
SIZE (postgresql-9.0-801.jdbc4.jar) = 539705
5
SHA256 (postgresql-8.4-702.jdbc4.jar) = 614727934086a416eaa23425ac5f57df937a258e6d327e6c23e9ff87b11fa138
7
SHA256 (postgresql-8.4-702.jdbc4.jar) = 614727934086a416eaa23425ac5f57df937a258e6d327e6c23e9ff87b11fa138
6
SIZE (postgresql-8.4-702.jdbc4.jar) = 539510
8
SIZE (postgresql-8.4-702.jdbc4.jar) = 539510
(-)jasperserver/pkg-install (-12 / +5 lines)
Lines 8-26 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 3.5.0 to 4.0:
11
If UPGRADING from 4.0.0 to 4.1.0:
12
(taken from release notes of 4.0 from vendor)
12
(taken from release notes of 4.1.0 from vendor)
13
13
14
If you are upgrading from an older JasperServer version such as 3.5 then you
14
To upgrade from 4.0.0 to 4.1.0, refer to the recommended
15
must first upgrade to JasperServer 3.7 before upgrading to 4.0.
15
procedure described in the Installation Guide Chapter 8
16
Upgrading directly from JasperServer 3.5 to 4.0 is not a "certified" (i.e. fully
16
"Upgrade from 4.0.0 to 4.1.0"
17
QA tested) procedure.
18
19
The steps to carry out this operation are fully documented in the JasperReports
20
Server Installation Guide for the 3.7 release.  You will need to download the 
21
JasperServer 3.7 release package to get the relevant files and documentation.
22
To download the JasperServer 3.7 WAR file distribution zip package, go to the
23
JasperForge.org website and to the JasperServer project.
24
17
25
WWW: http://jasperforge.org/projects/jasperserver
18
WWW: http://jasperforge.org/projects/jasperserver
26
19
(-)jasperserver/pkg-plist (-71 / +171 lines)
Lines 5-10 Link Here
5
%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/sugarcrmDS-jdbc.xml
5
%%APP_VERSION%%/webapps/%%PORTNAME%%/META-INF/sugarcrmDS-jdbc.xml
6
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocChart.xml
6
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocChart.xml
7
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocCrosstab.xml
7
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocCrosstab.xml
8
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocOlapCrosstab.xml
8
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocTable.xml
9
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-adhocTable.xml
9
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-dashboard.xml
10
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-dashboard.xml
10
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-navigation.xml
11
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/actionModel-navigation.xml
Lines 24-38 Link Here
24
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-webapp.xml
25
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext-webapp.xml
25
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext.xml
26
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/applicationContext.xml
26
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar.properties
27
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar.properties
28
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_de.properties
29
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_es.properties
30
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_fr.properties
31
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_ja.properties
32
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/calendar_zh_CN.properties
27
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages.properties
33
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages.properties
34
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_de.properties
35
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_es.properties
36
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_fr.properties
37
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_ja.properties
38
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja-pro_messages_zh_CN.properties
28
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages.properties
39
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages.properties
40
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_de.properties
41
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_es.properties
42
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_fr.properties
43
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_ja.properties
44
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/ja_mondrian_messages_zh_CN.properties
29
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config.properties
45
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config.properties
46
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_de.properties
47
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_es.properties
48
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_fr.properties
49
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_ja.properties
50
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_config_zh_CN.properties
30
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages.properties
51
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages.properties
52
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_de.properties
53
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_es.properties
54
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_fr.properties
55
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_ja.properties
56
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jasperserver_messages_zh_CN.properties
31
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages.properties
57
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages.properties
58
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_de.properties
59
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_es.properties
60
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_fr.properties
61
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_ja.properties
62
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jpivot_messages_zh_CN.properties
32
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages.properties
63
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages.properties
64
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_de.properties
65
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_es.properties
66
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_fr.properties
67
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_ja.properties
68
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/jsexceptions_messages_zh_CN.properties
33
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions.properties
69
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions.properties
70
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_de.properties
71
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_es.properties
72
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_fr.properties
73
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/logger_descriptions_ja.properties
34
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages.properties
74
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages.properties
75
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_de.properties
76
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_es.properties
77
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_fr.properties
78
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_ja.properties
79
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/mondrian_exception_messages_zh_CN.properties
35
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws.properties
80
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws.properties
81
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_de.properties
82
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_es.properties
83
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_fr.properties
84
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_ja.properties
85
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/bundles/scheduling_ws_zh_CN.properties
36
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/ehcache-hibernate.xml
86
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/ehcache-hibernate.xml
37
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/jasperreports.properties
87
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/jasperreports.properties
38
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/mondrian.properties
88
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/classes/mondrian.properties
Lines 165-180 Link Here
165
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.spring.properties
215
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/js.spring.properties
166
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax/ajaxerror.jsp
216
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax/ajaxerror.jsp
167
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax/ajaxresponse.jsp
217
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax/ajaxresponse.jsp
168
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls/controlNamingAndType.jsp
169
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls/listOfValues.jsp
170
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls/queryExtraData.jsp
171
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls/singleOrMultiValue.jsp
172
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/listOfValues/lovEditForm.jsp
173
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/listOfValues/lovItemsEditForm.jsp
174
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/CalendarInput.jsp
218
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/CalendarInput.jsp
175
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/ListReports.jsp
219
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/ListReports.jsp
176
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/about/about.jsp
220
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/about/about.jsp
177
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocate.jsp
221
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocate.jsp
222
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionDataSourceLocateState.jsp
178
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocate.jsp
223
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocate.jsp
179
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocateState.jsp
224
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionMondrianLocateState.jsp
180
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocate.jsp
225
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource/analysisClientConnection/analysisClientConnectionXmlLocate.jsp
Lines 243-248 Link Here
243
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/home.jsp
288
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/home.jsp
244
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/DefaultParametersForm.jsp
289
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/DefaultParametersForm.jsp
245
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/InputControlLabel.jsp
290
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/InputControlLabel.jsp
291
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/inputControls/Label.jsp
246
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/listOlapViews.jsp
292
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/listOlapViews.jsp
247
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/login.jsp
293
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/login.jsp
248
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/loginState.jsp
294
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/login/loginState.jsp
Lines 295-300 Link Here
295
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/flow.jsp
341
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/flow.jsp
296
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/lists.jsp
342
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/lists.jsp
297
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/menus.jsp
343
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/menus.jsp
344
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/mocks/jrTestReport_1.jsp
345
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/mocks/reportViewer_top.jsp
298
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/oneColumn.jsp
346
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/oneColumn.jsp
299
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/panels.jsp
347
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/panels.jsp
300
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/sampleIndex.jsp
348
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/sampleIndex.jsp
Lines 309-350 Link Here
309
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/AccessDeniedPage.jsp
357
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/AccessDeniedPage.jsp
310
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/errorPage.jsp
358
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/errorPage.jsp
311
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/systemConfirm.jsp
359
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system/systemConfirm.jsp
312
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#aboutBox.jsp
313
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#addFolder.jsp
314
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#addOrganization.jsp
315
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#addRole.jsp
316
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#addUser.jsp
317
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#calculatedField.jsp
318
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#customURL.jsp
319
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#detail.jsp
320
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#editLabel.jsp
321
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#heartbeatOptin.jsp
322
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#inputControls.jsp
323
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#loading.jsp
324
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#login.jsp
325
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#manageDataSource.jsp
326
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#nothingToDisplay.jsp
327
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#permissions.jsp
328
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#propertiesResource.jsp
329
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#saveAs.jsp
330
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#saveValues.jsp
331
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#select.jsp
332
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#selectFields.jsp
333
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#selectFile.jsp
334
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#selectFromRepository.jsp
335
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#selectPalette.jsp
336
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#sortDialog.jsp
337
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#standardConfirm.jsp
338
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#systemConfirm.jsp
339
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/#uploadTheme.jsp
340
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/container.jsp
341
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/control_groupBox.jsp
342
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/control_searchLockup.jsp
343
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/control_tabSet.jsp
344
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/list.jsp
345
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/menu.jsp
346
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/page.jsp
347
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates/utility_cosmetic.jsp
348
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/DefaultJasperViewer.jsp
360
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/DefaultJasperViewer.jsp
349
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/DefaultJasperViewerState.jsp
361
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/DefaultJasperViewerState.jsp
350
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/FusionChartsIEFix.jsp
362
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/FusionChartsIEFix.jsp
Lines 352-357 Link Here
352
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/ViewReportState.jsp
364
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/ViewReportState.jsp
353
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/reportOutput.jsp
365
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport/reportOutput.jsp
354
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/webHelp/webHelp.jsp
366
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/webHelp/webHelp.jsp
367
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/aboutBox.jsp
368
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addFolder.jsp
369
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addOrganization.jsp
370
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addRole.jsp
371
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/addUser.jsp
372
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/calculatedField.jsp
373
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/container.jsp
374
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/control_groupBox.jsp
375
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/control_searchLockup.jsp
376
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/control_tabSet.jsp
377
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/customURL.jsp
378
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/detail.jsp
379
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/editLabel.jsp
380
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/heartbeatOptin.jsp
381
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/inputControls.jsp
382
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/list.jsp
383
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/loading.jsp
384
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/login.jsp
385
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/manageDataSource.jsp
386
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/menu.jsp
387
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/nothingToDisplay.jsp
388
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/page.jsp
389
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/permissions.jsp
390
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/propertiesResource.jsp
391
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/saveAs.jsp
392
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/saveValues.jsp
393
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/select.jsp
394
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectFields.jsp
395
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectFile.jsp
396
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectFromRepository.jsp
397
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/selectPalette.jsp
398
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/sortDialog.jsp
399
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/standardAlert.jsp
400
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/standardConfirm.jsp
401
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/systemConfirm.jsp
402
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/uploadTheme.jsp
403
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/userCountExceeded.jsp
404
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates/utility_cosmetic.jsp
355
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/FoodMart.xml
405
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/FoodMart.xml
356
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.BSD.yahoo.js.txt
406
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.BSD.yahoo.js.txt
357
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.MIT.nwmatcher.js.txt
407
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/LICENSE.MIT.nwmatcher.js.txt
Lines 428-434 Link Here
428
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcprov-jdk14-1.38.jar
478
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcprov-jdk14-1.38.jar
429
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcprov-jdk14-138.jar
479
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bcprov-jdk14-138.jar
430
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bctsp-jdk14-1.38.jar
480
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/bctsp-jdk14-1.38.jar
431
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/cas-client-core-3.1.3.jar
481
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/cas-client-core-3.1.5.jar
432
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/castor-1.2.jar
482
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/castor-1.2.jar
433
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/cglib-nodep-2.2.jar
483
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/cglib-nodep-2.2.jar
434
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-beanutils-1.8.0.jar
484
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/commons-beanutils-1.8.0.jar
Lines 463-485 Link Here
463
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jai_codec-1.1_mr.jar
513
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jai_codec-1.1_mr.jar
464
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jai_core-1.1_mr.jar
514
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jai_core-1.1_mr.jar
465
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jakarta-regexp-1.4.jar
515
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jakarta-regexp-1.4.jar
466
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-4.0.0.jar
516
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-4.0.1.1.jar
467
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-chart-themes-4.0.0.jar
517
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-chart-themes-4.0.1.jar
468
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-fonts-4.0.0.jar
518
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-fonts-4.0.0.jar
469
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-ofc-4.0.0.jar
519
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperreports-ofc-4.0.1.jar
470
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-4.0.0.jar
520
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-4.1.0.jar
471
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-impl-4.0.0.jar
521
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-common-impl-4.1.0.jar
472
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-4.0.0.jar
522
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-4.1.0.jar
473
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-impl-4.0.0.jar
523
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-engine-impl-4.1.0.jar
474
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-4.0.0.jar
524
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-4.1.0.jar
475
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-impl-4.0.0.jar
525
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-api-metadata-impl-4.1.0.jar
476
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-common-ws-4.0.0.jar
526
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-common-ws-4.1.0.jar
477
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-core-util-4.0.0.jar
527
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-core-util-4.1.0.jar
478
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-export-tool-4.0.0.jar
528
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-export-tool-4.1.0.jar
479
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-repository-hibernate-4.0.0.jar
529
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-repository-hibernate-4.1.0.jar
480
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-search-4.0.0.jar
530
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-search-4.1.0.jar
481
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-war-jar-4.0.0.jar
531
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-war-jar-4.1.0.jar
482
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-ws-server-4.0.0.jar
532
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jasperserver-ws-server-4.1.0.jar
483
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/javacup-0.10k.jar
533
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/javacup-0.10k.jar
484
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/javassist-3.7.ga.jar
534
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/javassist-3.7.ga.jar
485
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jaxen-1.1-beta-8.jar
535
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jaxen-1.1-beta-8.jar
Lines 487-494 Link Here
487
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jdom-1.1.jar
537
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jdom-1.1.jar
488
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jdtcore-3.1.0.jar
538
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jdtcore-3.1.0.jar
489
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jfreechart-1.0.12.jar
539
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jfreechart-1.0.12.jar
490
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ji-jpivot-4.0.0.jar
540
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ji-jpivot-4.0.1.jar
491
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ji-wcf-4.0.0.jar
541
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ji-wcf-4.0.1.jar
492
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jsf-api-1.1.jar
542
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jsf-api-1.1.jar
493
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/json-org-1.0.jar
543
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/json-org-1.0.jar
494
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jstl-1.1.2.jar
544
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jstl-1.1.2.jar
Lines 496-506 Link Here
496
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jxl-2.6.10.jar
546
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/jxl-2.6.10.jar
497
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/log4j-1.2.12.jar
547
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/log4j-1.2.12.jar
498
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mail-1.4.jar
548
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mail-1.4.jar
499
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mondrian-3.2.0-13661.jar
549
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mondrian-3.2.0-13661-JS.jar
500
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mondrian.dtd
550
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/mondrian.dtd
501
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/objenesis-1.2.jar
551
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/objenesis-1.2.jar
502
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ognl-2.7.3.jar
552
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/ognl-2.7.3.jar
503
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/olap4j-0.9.7.309.jar
553
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/olap4j-0.9.7.309-JS.jar
504
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/oro-2.0.8.jar
554
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/oro-2.0.8.jar
505
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/png-encoder-1.5.jar
555
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/png-encoder-1.5.jar
506
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/quartz-1.5.1-jaspersoft.jar
556
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/quartz-1.5.1-jaspersoft.jar
Lines 515-523 Link Here
515
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-ldap-core-1.3.0.RELEASE.jar
565
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-ldap-core-1.3.0.RELEASE.jar
516
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-ldap-core-tiger-1.3.0.RELEASE.jar
566
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-ldap-core-tiger-1.3.0.RELEASE.jar
517
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-orm-2.5.6.SEC02.jar
567
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-orm-2.5.6.SEC02.jar
518
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-cas-client-2.0.4.jar
568
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-cas-client-2.0.6.RELEASE.jar
519
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-core-2.0.4.jar
569
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-core-2.0.6.RELEASE.jar
520
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-taglibs-2.0.4.jar
570
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-security-taglibs-2.0.6.RELEASE.jar
521
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-web-2.5.6.SEC02.jar
571
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-web-2.5.6.SEC02.jar
522
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-webflow-2.0.7.RELEASE.jar
572
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-webflow-2.0.7.RELEASE.jar
523
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-webmvc-2.5.6.SEC02.jar
573
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/spring-webmvc-2.5.6.SEC02.jar
Lines 534-540 Link Here
534
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xmlgraphics-commons-1.3.1.jar
584
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib/xmlgraphics-commons-1.3.1.jar
535
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/log4j.properties
585
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/log4j.properties
536
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/logs/readme.txt
586
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/logs/readme.txt
537
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/mondrian.properties
587
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/mondrian.connect.string.properties
538
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/olap-ehcache.xml
588
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/olap-ehcache.xml
539
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/pdfFontBeans.xml
589
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/pdfFontBeans.xml
540
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/queries/FoodMart.xml
590
%%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/queries/FoodMart.xml
Lines 908-913 Link Here
908
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/disclosure_indicators_sprite.png
958
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/disclosure_indicators_sprite.png
909
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/first-d.gif
959
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/first-d.gif
910
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/first.gif
960
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/first.gif
961
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/floatingMenu_sprite.png
911
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_background_sprite.png
962
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_background_sprite.png
912
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_corners.png
963
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_corners.png
913
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_edges_rl.png
964
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images/frame_bkgd_edges_rl.png
Lines 980-986 Link Here
980
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/pages.css
1031
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/pages.css
981
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/samples.css
1032
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/samples.css
982
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/theme.css
1033
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/theme.css
983
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/themeSpecific.css
1034
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/buttons.css
1035
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/containers.css
1036
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/controls.css
1037
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/dialogSpecific.css
1038
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/bullet_arrow.gif
1039
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/clear.png
1040
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/controls.png
1041
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/display.png
1042
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/export.png
1043
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/folder.png
1044
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/folder_open.png
1045
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/grouper_sprite.png
1046
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/home_bkgd.png
1047
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/home_icons_sprite.png
1048
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/input_bg.gif
1049
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/js_logo_grays.png
1050
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/lists_sprite.png
1051
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_down_gray.png
1052
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_down_gray.png
1053
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_left_gray.png
1054
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_right_gray.png
1055
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_far_up_gray.png
1056
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_left_gray.png
1057
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_right_gray.png
1058
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/move_up_gray.png
1059
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/mutton.png
1060
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/navigation_down.png
1061
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/navigation_down_gray.png
1062
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/navigation_right_gray.png
1063
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/options.png
1064
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/panel_close.png
1065
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/pivot.png
1066
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/redo.png
1067
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/resize_vertical.png
1068
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/save.png
1069
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/search.png
1070
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/search_sprite.png
1071
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/sort.png
1072
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/styles.png
1073
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/tabs_horizontal_sprite.png
1074
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/undo-all.png
1075
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/undo.png
1076
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images/wait_animation_large.gif
1077
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/lists.css
1078
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/pageSpecific.css
1079
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/pages.css
1080
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/samples.css
1081
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/theme.css
984
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/body_bkgnd.png
1082
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/body_bkgnd.png
985
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_action_jumbo_sprite.png
1083
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_action_jumbo_sprite.png
986
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_action_primary_sprite.png
1084
%%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images/button_action_primary_sprite.png
Lines 1059-1064 Link Here
1059
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/xtree.css
1157
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree/xtree.css
1060
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/wcf.css
1158
%%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/wcf.css
1061
%%APP_VERSION%%/webapps/%%PORTNAME%%/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql
1159
%%APP_VERSION%%/webapps/%%PORTNAME%%/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql
1160
%%APP_VERSION%%/webapps/%%PORTNAME%%/upgrade-%%DATABASE%%-4.0.0-4.1.0-ce.sql
1062
%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%
1161
%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%
1063
@exec if [ -f %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%% ]; then /bin/chmod a+r %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%; else exit 1; fi
1162
@exec if [ -f %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%% ]; then /bin/chmod a+r %D/%%APP_VERSION%%/%%JDBCLOC%%/%%JDBC%%; else exit 1; fi
1064
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree
1163
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf/tree
Lines 1075-1080 Link Here
1075
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf
1174
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/wcf
1076
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images
1175
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer/images
1077
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer
1176
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/pods_summer
1177
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale/images
1178
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/hale
1078
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images
1179
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default/images
1079
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default
1180
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes/default
1080
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes
1181
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/themes
Lines 1090-1100 Link Here
1090
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/queries
1191
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/queries
1091
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/logs
1192
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/logs
1092
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib
1193
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/lib
1194
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/templates
1093
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/webHelp
1195
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/webHelp
1094
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport
1196
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/viewReport
1095
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/templates
1096
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system
1197
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/system
1097
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search
1198
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/search
1199
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample/mocks
1098
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample
1200
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/sample
1099
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportUnitFlow
1201
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportUnitFlow
1100
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling
1202
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/reportScheduling
Lines 1125-1132 Link Here
1125
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource
1227
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/addResource
1126
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/about
1228
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules/about
1127
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules
1229
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/modules
1128
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/listOfValues
1129
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/inputControls
1130
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax
1230
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp/ajax
1131
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp
1231
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jsp
1132
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/toolbar
1232
@dirrm %%APP_VERSION%%/webapps/%%PORTNAME%%/WEB-INF/jpivot/toolbar
(-)jasperserver/files/pkg-message.in (-13 / +6 lines)
Lines 8-13 Link Here
8
8
9
- %%JSHOME%%/js-create.ddl
9
- %%JSHOME%%/js-create.ddl
10
- %%JSHOME%%/quartz.ddl 
10
- %%JSHOME%%/quartz.ddl 
11
- %%JSHOME%%/upgrade-%%DATABASE%%-4.0.0-4.1.0-ce.sql
11
and 
12
and 
12
- %%JSHOME%%/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql 
13
- %%JSHOME%%/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql 
13
14
Lines 28-47 Link Here
28
29
29
==============  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  =================
30
31
31
If UPGRADING from 3.5.0 to 4.0:
32
If UPGRADING from 4.0.0 to 4.1.0:
32
(taken from release notes of 4.0 from vendor)
33
(taken from release notes of 4.1.0 from vendor)
33
34
If you are upgrading from an older JasperServer version such as 3.5 then you
35
must first upgrade to JasperServer 3.7 before upgrading to 4.0.
36
Upgrading directly from JasperServer 3.5 to 4.0 is not a "certified" (i.e. fully
37
QA tested) procedure.
38
39
The steps to carry out this operation are fully documented in the JasperReports
40
Server Installation Guide for the 3.7 release.  You will need to download the 
41
JasperServer 3.7 release package to get the relevant files and documentation.
42
To download the JasperServer 3.7 WAR file distribution zip package, go to the
43
JasperForge.org website and to the JasperServer project.
44
34
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"
45
==============  W A R N I N G   I M P O R T A N T   N O T E  =================
38
==============  W A R N I N G   I M P O R T A N T   N O T E  =================
46
39
47
WWW: http://jasperforge.org/projects/jasperserver
40
WWW: http://jasperforge.org/projects/jasperserver

Return to bug 159094