]> source.dussan.org Git - vaadin-framework.git/commitdiff
See #2108 . Bringing back multiapp.html which works and is beneficial example for...
authorJani Laakso <jani.laakso@itmill.com>
Thu, 25 Sep 2008 05:46:25 +0000 (05:46 +0000)
committerJani Laakso <jani.laakso@itmill.com>
Thu, 25 Sep 2008 05:46:25 +0000 (05:46 +0000)
svn changeset:5508/svn branch:trunk

WebContent/multiapp.html [new file with mode: 0644]

diff --git a/WebContent/multiapp.html b/WebContent/multiapp.html
new file mode 100644 (file)
index 0000000..58aaf88
--- /dev/null
@@ -0,0 +1,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>
+       <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>
\ No newline at end of file