summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJani Laakso <jani.laakso@itmill.com>2007-12-04 17:20:06 +0000
committerJani Laakso <jani.laakso@itmill.com>2007-12-04 17:20:06 +0000
commit0df0319345e22146c3ff8b12802937b37f5dc06d (patch)
tree13f72237e334693255c6f27c6369009e85174f3e
parentcc5839194344f56a22bd41cb8a6d6f9d7419d29f (diff)
downloadvaadin-framework-0df0319345e22146c3ff8b12802937b37f5dc06d.tar.gz
vaadin-framework-0df0319345e22146c3ff8b12802937b37f5dc06d.zip
packaging fixes
svn changeset:3159/svn branch:trunk
-rw-r--r--WebContent/release-notes.html55
-rw-r--r--build/build.xml3
2 files changed, 49 insertions, 9 deletions
diff --git a/WebContent/release-notes.html b/WebContent/release-notes.html
index 15ad8b9a07..e997f029b8 100644
--- a/WebContent/release-notes.html
+++ b/WebContent/release-notes.html
@@ -23,18 +23,57 @@
<div>
<h2>Release notes version <version></version></h2>
- <h4>General</h4>
-
-<p>
-This document is under construction.</p>
-<p>
+ <h2>Changes between Toolkit 4 and Toolkit 5.</h2>
+
+<h4>General</h4>
+<ul>
+ <li><b>Google Web Toolkit integration</b>: Create new or customize existing components using plain Java.</li>
+ <li><b>New default theme</b>: Enhanced look and feel of existing applications.</li>
+</ul>
+
+<h4>Client-side Enhancements</h4>
+<ul>
+ <li>API enhancements</li>
+ <li>Most theming actions are now easier to do through CSS changes</li>
+</ul>
+
+<h4>New layouting API</h4>
+<ul>
+ <li>Spacing between components
+ <li>Alignments configuring
+ <li>Margins configuring
+ <li>Layout size configuring
+</ul>
+
+<h4>Server-side enhancements</h4>
+<ul>
+ <li>Multiple different stateful views to same application</li>
+ <li> Enhanced file uploading and full streaming/monitoring support</li>
+</ul>
+
+<h4>Performance enhancements</h4>
+<ul>
+ <li>Easier client-side optimizations through GWT
+ <li>Initial launch of application has lower bandwidth requirements (100kb)
+ <li>File uploading uses less memory resources
+ <li>Client-side component caching
+</ul>
+
+<h4>New Components</h4>
+<ul>
+ <li>ExpandLayout
+ <li>SplitPanel
+ <li>Slider
+ <li>Notification
+ <li>RichTextEditor
+ <li>EntryCalendar
+</ul>
<br />
-<h4>Abbreviations</h4>
+<h2>Known issues in <version></version></h2>
<p>
-IE = Internet Explorer, FF = Firefox, SA = Safari, OP = Opera
+Abbreviations: IE = Internet Explorer, FF = Firefox, SA = Safari, OP = Opera
</p>
-<h4>Known issues in <version></version></h4>
<p>
Starting any demo may take long time (5 seconds) on some environments. Should not affect on "real" environments.
</p><p>
diff --git a/build/build.xml b/build/build.xml
index 342163db45..82b6ffa318 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -526,12 +526,13 @@
<java2html srcdir="${output-dir}/WebContent/WEB-INF/src/${toolkit-package}/demo" destdir="${output-dir}/WebContent/doc/example-source/${toolkit-package}/demo" includes="**/*.java" style="eclipse" showLineNumbers="false" showFileName="true" showTableBorder="false" />
<!-- Add WebContent -->
- <echo>Adding WebContent files, excluding ITMILL/widgetsets and few internal development libraries.</echo>
+ <echo>Adding ITMILL/themes, demo and hsqldb.jar files.</echo>
<copy todir="${output-dir}/WebContent">
<fileset dir="WebContent">
<exclude name="**/.svn" />
<exclude name="ITMILL/themes/tests*/**/*" />
<include name="demo/**/*" />
+ <include name="WEB-INF/lib/hsqldb.jar" />
<include name="ITMILL/themes/**/*" />
<include name="META-INF/**/*" />
</fileset>