From: Marko Grönroos Date: Fri, 19 Dec 2008 13:09:47 +0000 (+0000) Subject: Toolkit 5.3.0 RC4. X-Git-Tag: 6.7.0.beta1~3481 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b29a3034a828a1704e4c7ec4c33a3f6369e43849;p=vaadin-framework.git Toolkit 5.3.0 RC4. svn changeset:6303/svn branch:trunk --- diff --git a/WebContent/release-notes.html b/WebContent/release-notes.html index 4ab2869ca1..ea81a06211 100644 --- a/WebContent/release-notes.html +++ b/WebContent/release-notes.html @@ -46,6 +46,32 @@ href="http://code.google.com/webtoolkit/">GWT web site

As GWT now requires Java 5, support for Java 1.4 is discontinued also in IT Mill Toolkit.

+

Debug Mode Enabled by Default

+ +

The debug mode is now enabled by default, to allow debugging layout and other problems +more easily. The debug mode:

+ + + +

You should disable the debug mode when releasing your application for production +use. You can do this by including the following setting in your web.xml.

+ +
  <context-param>
+  	<param-name>productionMode</param-name>
+  	<param-value>true</param-value>
+  	<description>IT Mill Toolkit production mode</description>
+  </context-param>
+
+

Layout Changes

The stable IT Mill Toolkit version 5.3 introduces a major rework of layout components @@ -65,23 +91,12 @@ since the beta versions 5.2.x and before.

Use debug mode during development / debugging

Layouts are now more strict than before and some components may even be invisible if -you use relative sizes in a wrong way. You should always have the following parameter in -your web.xml file during development:

- -
  <context-param>
-  	<param-name>Debug</param-name>
-  	<param-value>true</param-value>
-  	<description>IT Mill Toolkit debug mode</description>
-  </context-param>
-
- -

This will make Toolkit run some sanity checks for relatively sized components and print -informative error messages to the server console. Invalid components are painted without -their relative size and colored red.

+you use relative sizes in a wrong way.

-

From version 5.3 this parameter is also needed to show the client-side logging window, -which you can enable by adding the request parameter "?debug=true" to application -URI.

+

The debug mode, which is now enabled by default (see above), will make Toolkit run some +sanity checks for relatively sized components and print informative error messages to the +server console. Invalid components are painted without their relative size and colored +red.

OrderedLayout deprecated

diff --git a/build/VERSION.properties b/build/VERSION.properties index ea0ad45aef..7b48afb4ef 100644 --- a/build/VERSION.properties +++ b/build/VERSION.properties @@ -1 +1 @@ -version=5.3.0-rc3 +version=5.3.0-rc4