vaadin-framework/WebContent/multiapp.html
Henri Sara c73acbc50b #2904 Miscellaneous Toolkit -> Vaadin renames
svn changeset:7854/svn branch:6.0
2009-05-18 11:31:16 +00:00

42 lines
1.6 KiB
HTML

<!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>Multiple embedded applications</title>
<script type="text/javascript">
var vaadin = {
vaadinConfigurations: {
'fb' :{
appUri:'/FeatureBrowser',
pathInfo: '/',
themeUri: '/VAADIN/themes/example',
versionInfo : {vaadinVersion:"6.0.0-INTERNAL-NONVERSIONED-DEBUG-BUILD",applicationVersion:"NONVERSIONED"}
},
'calc' :{
appUri:'/Calc',
pathInfo: '/',
themeUri: '/VAADIN/themes/example',
versionInfo : {vaadinVersion:"6-INTERNAL-NONVERSIONED-DEBUG-BUILD",applicationVersion:"NONVERSIONED"}
},
'hello' :{
appUri:'/HelloWorld',
pathInfo: '/',
themeUri: '/VAADIN/themes/example',
versionInfo : {vaadinVersion:"6.0.0-INTERNAL-NONVERSIONED-DEBUG-BUILD",applicationVersion:"NONVERSIONED"}
}
}};
</script>
<script language='javascript' src='/VAADIN/widgetsets/com.vaadin.terminal.gwt.DefaultWidgetSet/com.vaadin.terminal.gwt.DefaultWidgetSet.nocache.js'></script>
<link REL="stylesheet" TYPE="text/css" HREF="/VAADIN/themes/example/styles.css">
</head>
<body>
<iframe id="__gwt_historyFrame" style="width:0;height:0;border:0;overflow:hidden" src="javascript:false"></iframe>
<p>Multiple Vaadin applications 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>