From: Henri Sara Date: Tue, 5 Jan 2010 07:55:14 +0000 (+0000) Subject: Merge from 6.2 to 6.3 X-Git-Tag: 6.7.0.beta1~2084 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7faf0d2de1692e410558f38bce46965981cca1a6;p=vaadin-framework.git Merge from 6.2 to 6.3 svn changeset:10625/svn branch:6.3 --- 7faf0d2de1692e410558f38bce46965981cca1a6 diff --cc WebContent/release-notes.html index 74f84f9653,cc508c831e..0de559fda8 --- a/WebContent/release-notes.html +++ b/WebContent/release-notes.html @@@ -34,119 -34,22 +34,125 @@@
  • Requirements
  • -

    Vaadin @version@ is a maintenance release for Vaadin 6.2, -containing a number of important fixes. In addition to the fixes listed in the Change Log below, the release includes the following fix or enhacements:

    +

    Vaadin @version@ is an update release for Vaadin 6. In addition to various fixes, it +contains a number of significant enhancements.

    +
  • Widget set definition and component-to-widget mapping has been redesigned
  • + +
  • Other enhancements to development of new components
  • + +
  • Portlet 2.0 (JSR 268) support
  • + +
  • OSGi support
  • + +
  • Enhanced sorting of IndexedContainer and BeanItemContainer
  • + +
  • Improved event support
  • + +
  • JavaScript execution with Window.excecuteJavaScript()
  • + +
  • Additional Maven archetypes
  • + +
  • Maven Vaadin plugin
  • + +
  • HttpServletRequestListener
  • + +
  • PortletRequestListener + ++
  • Enhancements for the Portlet 2.0 support (#3918)
  • ++ +
  • Enhancements to various components:
  • + +
  • Automatic integration tests
  • + +
  • Dozens of other small enhancements and bug fixes
  • +

    Problem fixes and enhancements planned for upcoming releases can be found from the Vaadin Roadmap in Vaadin Trac.

    diff --cc src/com/vaadin/data/util/FilesystemContainer.java index adcfcfe3a7,758c1444de..1c9671d52d --- a/src/com/vaadin/data/util/FilesystemContainer.java +++ b/src/com/vaadin/data/util/FilesystemContainer.java @@@ -399,15 -395,14 +395,14 @@@ public class FilesystemContainer implem } else { l = f.listFiles(); } - final List ll = Arrays.asList(l); + final List ll = Arrays.asList(l); Collections.sort(ll); - for (final Iterator i = ll.iterator(); i.hasNext();) { - final File lf = (File) i.next(); + for (final Iterator i = ll.iterator(); i.hasNext();) { + final File lf = i.next(); + col.add(lf); if (lf.isDirectory()) { addItemIds(col, lf); - } else { - col.add(lf); } } }