summaryrefslogtreecommitdiff
path: root/BKUOnline
diff options
context:
space:
mode:
authorwbauer <wbauer@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2008-10-10 09:42:51 +0000
committerwbauer <wbauer@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2008-10-10 09:42:51 +0000
commit520f2a4ee9ae69a06e5355028f5d62ee173cd484 (patch)
tree2a5b4f058bbb7a085eb351608aba00f1db54a726 /BKUOnline
parent378f735d14a1f21571a3c3d5d4ae7eab02c5cf3c (diff)
downloadmocca-520f2a4ee9ae69a06e5355028f5d62ee173cd484.tar.gz
mocca-520f2a4ee9ae69a06e5355028f5d62ee173cd484.tar.bz2
mocca-520f2a4ee9ae69a06e5355028f5d62ee173cd484.zip
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@98 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUOnline')
-rw-r--r--BKUOnline/src/main/webapp/appletPage.jsp31
1 files changed, 20 insertions, 11 deletions
diff --git a/BKUOnline/src/main/webapp/appletPage.jsp b/BKUOnline/src/main/webapp/appletPage.jsp
index 11f46dca..6c4aee58 100644
--- a/BKUOnline/src/main/webapp/appletPage.jsp
+++ b/BKUOnline/src/main/webapp/appletPage.jsp
@@ -19,15 +19,24 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>MOCCA Appletpage</title>
- <link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
- <script type="text/javascript" src="js/deployJava.js"></script>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>MOCCA Appletpage</title>
+<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
+<script type="text/javascript" src="js/deployJava.js"></script>
+<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
+<META HTTP-EQUIV="EXPIRES" CONTENT="Mon, 22 Jul 2002 11:12:01 GMT">
+<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
</head>
<body>
-<% int width= session.getAttribute("appletWidth") == null ? 190 : (Integer)session.getAttribute("appletWidth");
- int height=session.getAttribute("appletHeight") == null ? 130 : (Integer)session.getAttribute("appletHeight");
- String backgroundImg = (String) session.getAttribute("appletBackground");
+<%
+ int width = session.getAttribute("appletWidth") == null
+ ? 190
+ : (Integer) session.getAttribute("appletWidth");
+ int height = session.getAttribute("appletHeight") == null
+ ? 130
+ : (Integer) session.getAttribute("appletHeight");
+ String backgroundImg = (String) session
+ .getAttribute("appletBackground");
%>
<script>
if (!deployJava.versionCheck('1.6.0_04+')) {
@@ -38,13 +47,13 @@
codebase :'applet',
code :'at.gv.egiz.bku.online.applet.BKUApplet.class',
archive :'BKUApplet-1.0-SNAPSHOT.jar, commons-logging-1.1.1.jar, iaik_jce_me4se-3.04.jar',
- width : <%= width %>,
- height :<%= height %>
+ width : <%=width%>,
+ height :<%=height%>
};
var parameters = {
- background : '<%= backgroundImg %>',
+ background : '<%=backgroundImg%>',
WSDL_URL :'../stal?wsdl',
- SessionID : '<%= session.getId() %>',
+ SessionID : '<%=session.getId()%>',
redirectURL : '../bkuResult'
};
var version = '1.6.0_02';