diff options
author | Marko Grönroos <magi@iki.fi> | 2010-06-21 09:13:04 +0000 |
---|---|---|
committer | Marko Grönroos <magi@iki.fi> | 2010-06-21 09:13:04 +0000 |
commit | fe715456d191e5f98d570f114117ff7406cd27f5 (patch) | |
tree | 9e2de18351db974efd0124a245e79f182d4a1954 /WebContent | |
parent | ad809d15b2df98787771dc971b52584af8a2bd67 (diff) | |
download | vaadin-framework-fe715456d191e5f98d570f114117ff7406cd27f5.tar.gz vaadin-framework-fe715456d191e5f98d570f114117ff7406cd27f5.zip |
Mentioned how to properly define extension of DefaultWidgetSet in .gwt.xml.
svn changeset:13804/svn branch:6.4
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/release-notes.html | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/WebContent/release-notes.html b/WebContent/release-notes.html index 6cf0858869..680d01c48f 100644 --- a/WebContent/release-notes.html +++ b/WebContent/release-notes.html @@ -1,19 +1,20 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" -"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -<title>Vaadin 6</title> -<link rel="stylesheet" type="text/css" href="demo/css/styles.css" /> -<!--[if IE]> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title>Vaadin @version@</title> + <link rel="stylesheet" type="text/css" href="demo/css/styles.css" /> + <link rel="stylesheet" type="text/css" href="demo/css/zoombox.css" /> + <!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="demo/css/ie.css" /> <![endif]--> -</head> -<body> + </head> <!-- /head --> + <body> <div id="header"> <h1>Vaadin – thinking of U and I</h1> <div id="version"> + <strong>Version @version@</strong> <a href="javascript:history.go(-1);" title="Back to index page">« Back</a> </div> </div> <!-- /header --> @@ -52,7 +53,21 @@ contains a number of significant enhancements.</p> </ul> </li> - <li><p>Possibility for lazy loading of client-side components (aka GWT code splitting), which speeds up load times; see <a href="http://dev.vaadin.com/wiki/WidgetSet">more details</a></p></li> + <li><p>Possibility for lazy loading of client-side components (aka GWT code splitting), which speeds up load times; see <a href="http://dev.vaadin.com/wiki/WidgetSet">more details</a></p> + + <ul> + <li>In the rare case that you have extended the <b>DefaultWidgetSet</b> class, please notice that earlier, the custom entry point was defined in the <tt>.gwt.xml</tt> file as follows: + + <pre> <entry-point class="com.example.MyExtendedWidgetSet" /></pre> + + Now you need to write as follows: + <pre> <replace-with class="com.example.MyExtendedWidgetSet"> + <when-type-is class="com.vaadin.terminal.gwt.client.WidgetSet" /> + </replace-with></pre> + </li> + </ul> + + </li> <li><p>HTTP-level tester compatibility (JMeter, etc)</p></li> |