1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" style="width:100%;height:100%;border:0;margin:0;">
<head>
<title>IT Mill Toolkit 5</title>
<script type="text/javascript">
var itmill = {
toolkitConfigurations: {
'fb' :{
appUri:'/FeatureBrowser',
pathInfo: '/',
themeUri: '/ITMILL/themes/example',
versionInfo : {toolkitVersion:"5.9.9-INTERNAL-NONVERSIONED-DEBUG-BUILD",applicationVersion:"NONVERSIONED"}
},
'calc' :{
appUri:'/Calc',
pathInfo: '/',
themeUri: '/ITMILL/themes/example',
versionInfo : {toolkitVersion:"5.9.9-INTERNAL-NONVERSIONED-DEBUG-BUILD",applicationVersion:"NONVERSIONED"}
},
'hello' :{
appUri:'/HelloWorld',
pathInfo: '/',
themeUri: '/ITMILL/themes/example',
versionInfo : {toolkitVersion:"5.9.9-INTERNAL-NONVERSIONED-DEBUG-BUILD",applicationVersion:"NONVERSIONED"}
}
}};
</script>
<script language='javascript' src='/ITMILL/widgetsets/com.itmill.toolkit.terminal.gwt.DefaultWidgetSet/com.itmill.toolkit.terminal.gwt.DefaultWidgetSet.nocache.js'></script>
<link REL="stylesheet" TYPE="text/css" HREF="/ITMILL/themes/example/styles.css">
</head>
<body class="i-generated-body">
<iframe id="__gwt_historyFrame" style="width:0;height:0;border:0;overflow:hidden" src="javascript:false"></iframe>
<p>Multiple toolkits per html file test page</p>
<div id="fb" style="height:400px;border:2px solid red;margin:0"></div>
<div id="calc" style="border:2px solid green;margin:0"></div>
<div id="hello" style="border:2px solid blue;margin:0"></div>
</body>
</html>
|