From 32d579c45b0fc8a99e4f9b71164415fa09e2d79f Mon Sep 17 00:00:00 2001
From: wbauer <wbauer@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>
Date: Thu, 9 Oct 2008 15:18:40 +0000
Subject: Introduced SL Request parameters to customize Applet layout

git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@92 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
---
 BKUOnline/src/main/webapp/HTTP-ohne.html | 6 ++++++
 BKUOnline/src/main/webapp/appletPage.jsp | 9 +++++++--
 2 files changed, 13 insertions(+), 2 deletions(-)

(limited to 'BKUOnline/src/main/webapp')

diff --git a/BKUOnline/src/main/webapp/HTTP-ohne.html b/BKUOnline/src/main/webapp/HTTP-ohne.html
index f61081cc..1923113e 100644
--- a/BKUOnline/src/main/webapp/HTTP-ohne.html
+++ b/BKUOnline/src/main/webapp/HTTP-ohne.html
@@ -86,6 +86,12 @@ legend {
 <sl:BinaryFileParameters ContentIsXMLEntity="true" />
 </sl:InfoboxReadRequest>
 -->
+<p><label for="appletWidth">Applet Width</label> <input
+  name="appletWidth" value="190" id="appletWidth">
+<p><label for="appletHeight">Applet Height</label> <input
+  name="appletHeight" value="130" id="appletHeight">
+<p><label for="appletBackground">Applet Background</label> <input
+  name="appletBackground" value="" id="appletBackground">
 
 </textarea></p>
 <!-- 
diff --git a/BKUOnline/src/main/webapp/appletPage.jsp b/BKUOnline/src/main/webapp/appletPage.jsp
index b9225e56..59dc2ad5 100644
--- a/BKUOnline/src/main/webapp/appletPage.jsp
+++ b/BKUOnline/src/main/webapp/appletPage.jsp
@@ -25,6 +25,10 @@
   	<script type="text/javascript" src="js/deployJava.js"></script>
 </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");
+%>
 <script>
 	if (!deployJava.versionCheck('1.6.0_04+')) {
 		document
@@ -34,10 +38,11 @@
 			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 :190,
-			height :130
+			width : <%= width %>,
+			height :<%= height %>
 		};
 		var parameters = {
+			background : <%= backgroundImg %>,
 			WSDL_URL :'../stal?wsdl',
 			SessionID : '<%= session.getId() %>',
 			redirectURL : '../bkuResult'
-- 
cgit v1.2.3