From 1ba941491e0d919fd56e6aa4bba3a46185346f36 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 14 Nov 2011 05:59:19 +0000 Subject: Tickets for 6.7.2 svn changeset:21978/svn branch:6.7 --- WebContent/release-notes.html | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) (limited to 'WebContent') diff --git a/WebContent/release-notes.html b/WebContent/release-notes.html index b05a5e1548..72b961bedb 100644 --- a/WebContent/release-notes.html +++ b/WebContent/release-notes.html @@ -231,21 +231,18 @@

Fixes in Vaadin @version@

- #7788 Field.setProperyDatasource() does not reflect value for 6.7.0
- #7479 Vaadin apps cannot current be deployed on IBM WebSphere v8
- #7724 TextField with PropertyFormatter did not repaint in 6.7.0 (event with requestRepaint() call)
- #7731 Javascript error when adding an item to an empty Table when setColumnWidth is used
- #7776 AbstractField don't respect value change events from property during commit
- #7778 Table rendering problem
- #6588 Repainting in TextChangeListener will send wrong value to client.
- #7720 TreeTable doesn't get refreshed if all entries are removed
- #7738 Slashes or backslahes in ApplicationResources URLs should not be encoded
- #7753 TreeTable gets into a state that causes internal error when getChildren throws an exception.
- #3710 Width is miscalculated for the footer layouts in forms of undefined size
- #7548 TestBench pressSpecialKey (arrows) doesn't work on Tree in IE6
- #7708 DragAndDropWrapper.setDescription("foo") does not work
- #7736 Logging level of SqlContainer is too high
- #7755 Debug window "highlight component" does not work with sub windows
+ #7852 TreeTable partial update throws NegativeArraySizeException
+ #3125 Portlet size is not updated when window is resized
+ #7780 TreeTable rendering problem when adding or removing nodes
+ #7836 Table repaint throws ArrayIndexOutOfBounds when using FileSystemContainer
+ #5562 Widgetset build throws an exception while throwing an exception
+ #7698 FileSystemContainer throws NPE when a directory cannot be read
+ #7790 table.requestRepaint() does not invoke cellStylesGenerators
+ #7822 Loading Vaadin application in JBoss AS 7 throws java.lang.LinkageError
+ #7823 JBoss 7 AS can't load FlagSeResource
+ #7839 Out of Sync error when using Generated Columns with TreeTable
+ #7918 Test with Firefox 8 + #7923 Shrinking browser window not detected if resizeLazy is enabled

The full -- cgit v1.2.3 From ca7490fd4cf8ab09e50c10a4c305ff39558d3a28 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 14 Nov 2011 07:52:43 +0000 Subject: Updated list of supported browsers svn changeset:21979/svn branch:6.7 --- WebContent/release-notes.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'WebContent') diff --git a/WebContent/release-notes.html b/WebContent/release-notes.html index 72b961bedb..6c26efd791 100644 --- a/WebContent/release-notes.html +++ b/WebContent/release-notes.html @@ -478,11 +478,11 @@

Vaadin on the Web

-- cgit v1.2.3 From ba9e4dcc5892442ba4838e391f0e7b8dabdb03bf Mon Sep 17 00:00:00 2001 From: Leif Åstrand Date: Mon, 14 Nov 2011 10:09:31 +0000 Subject: (non-automated) test case for #7923 svn changeset:21984/svn branch:6.7 --- WebContent/statictestfiles/EmbedSizeHostPage.html | 43 +++++++++++++++++ .../vaadin/tests/integration/EmbedSizeTest.java | 55 ++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 WebContent/statictestfiles/EmbedSizeHostPage.html create mode 100644 tests/testbench/com/vaadin/tests/integration/EmbedSizeTest.java (limited to 'WebContent') diff --git a/WebContent/statictestfiles/EmbedSizeHostPage.html b/WebContent/statictestfiles/EmbedSizeHostPage.html new file mode 100644 index 0000000000..06dfd5dfd7 --- /dev/null +++ b/WebContent/statictestfiles/EmbedSizeHostPage.html @@ -0,0 +1,43 @@ + + + + +com.vaadin.tests.integration.EmbedSizeTest + + + + + +
+

Test page for resize events with embedded applications

+
+ +
+ diff --git a/tests/testbench/com/vaadin/tests/integration/EmbedSizeTest.java b/tests/testbench/com/vaadin/tests/integration/EmbedSizeTest.java new file mode 100644 index 0000000000..479af4aa87 --- /dev/null +++ b/tests/testbench/com/vaadin/tests/integration/EmbedSizeTest.java @@ -0,0 +1,55 @@ +package com.vaadin.tests.integration; + +import com.vaadin.tests.components.TestBase; +import com.vaadin.tests.util.Log; +import com.vaadin.ui.Button; +import com.vaadin.ui.Button.ClickEvent; +import com.vaadin.ui.CheckBox; +import com.vaadin.ui.Window; +import com.vaadin.ui.Window.ResizeEvent; + +public class EmbedSizeTest extends TestBase { + + private Log log = new Log(10); + + @Override + protected void setup() { + Window mainWindow = getMainWindow(); + mainWindow.setSizeUndefined(); + mainWindow.getContent().setSizeUndefined(); + mainWindow.setImmediate(true); + + CheckBox lazyCheckBox = new CheckBox("Lazy resize", + new Button.ClickListener() { + public void buttonClick(ClickEvent event) { + boolean resizeLazy = Boolean.TRUE == event.getButton() + .getValue(); + getMainWindow().setResizeLazy(resizeLazy); + log.log("Resize lazy: " + resizeLazy); + } + }); + lazyCheckBox.setValue(Boolean.FALSE); + lazyCheckBox.setImmediate(true); + addComponent(lazyCheckBox); + + addComponent(log); + mainWindow.addListener(new Window.ResizeListener() { + public void windowResized(ResizeEvent e) { + Window window = e.getWindow(); + log.log("Resize event: " + window.getWidth() + " x " + + window.getHeight()); + } + }); + } + + @Override + protected String getDescription() { + return "Resizing the browser window should send consistent resize events to the server even when the application is embedded"; + } + + @Override + protected Integer getTicketNumber() { + return Integer.valueOf(7923); + } + +} -- cgit v1.2.3