summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Position tooltips in the visible area (#15129).7.2.6.3Anna Miroshnik2015-03-244-7/+271
| | | | | | | | | | | | | Based on Mika's reverted patch, with additional fix and test for regression "an empty tooltip appears while the application is initializing". Change-Id: I8237fc9340265708a05a7576a5d9e8e374dc1fea Conflicts: uitest/src/com/vaadin/tests/components/menubar/MenuTooltipTest.java Change-Id: Idff1b1e705012e67700db9e337f374de0eb557c5
* Manually merged most important changes from 7.2.6.4Johannes Tuikkala2015-03-2413-22/+192
| | | | Change-Id: I04bc18f59bfdcd6d85dbe825f6ad3df44d050ebc
* Test classesJohannes Tuikkala2015-03-234-0/+275
| | | | Change-Id: I107dbd4c371128268cf45ce87d5269d2f0bfd955
* VScrollTable and WidgetUtil from 7.4.1 to 7.2.6 without DeferredWorkerAnna Koskinen2015-03-1761-1860/+3771
| | | | Change-Id: I01a4b67ddebcf6f868250bf149e507a011ef9d1e
* Revert "Fix background color of Notification in chameleon theme (#14246)"7.2.6Bogdan Udrescu2014-07-311-3/+0
| | | | This reverts commit 13eb3732b96561831cdee96740064ab8d4ddd08c.
* Merge branch 'release/7.2.6' of ssh://dev.vaadin.com:29418/vaadin into ↵Markus Koivisto2014-07-312-2/+2
|\ | | | | | | release/7.2.6
| * Correct TB2 tests urls.Bogdan Udrescu2014-07-312-2/+2
| | | | | | | | | | | | | | Correct ButtonTooltips TB2 with coeect test class package. Add ?restartApplication to SubWindows. Change-Id: I32fbf93875d537f6dc6ec232e3063c33de8ae71f
* | Revert "Fixed regression with changing widths when stylenames have changed ↵Markus Koivisto2014-07-313-53/+32
|/ | | | | | | (#13444, #8801):" This reverts commit d45e5c2592a3b949d781cdd05532560375fc524e. this is not supposed to be picked before 7.3.0
* Fixed regression with changing widths when stylenames have changed (#13444, ↵Markus Koivisto2014-07-313-32/+53
| | | | | | | | | | | | | | | | | | #8801): Changing the name of a style should not cause the width of the textbox to change. If there is a width set for the wrapper, the width for the wrapper should not change if the styles changes. To reconcile these two demands, we have removed the width for the wrapper and only manipulate the width of the textbox itself. This solves both issues neatly. Change-Id: Idb2dbc5d2ca6406cafb44df93110e079a1dff473 Conflicts: client/src/com/vaadin/client/ui/VFilterSelect.java client/src/com/vaadin/client/ui/combobox/ComboBoxConnector.java
* Revert "Keyboard shift-selection now works as expected in VScrollTable. ↵Markus Koivisto2014-07-314-72/+14
| | | | | | | | | | | (#14094)" This reverts commit 3390332b3e75e970cd3bf3b6bc5075bb867320b5. Conflicts: client/src/com/vaadin/client/ui/VScrollTable.java Change-Id: If33910705cdf9e4d7612557bfb55a01dde9e435d
* Fix typo that caused spanned cells to be removed in Gridlayout (#14335)Markus Koivisto2014-07-313-10/+114
| | | | | | | | Gridlayout removes columns and rows with no content. Gridlayout is supposed to check for spanned cells and not remove otherwise empty rows or columns if they are covered by a span. Change-Id: I1c25a8e6426e6ce0e24f9110a6b994598c395e7a
* Revert "Fix Table stuck scroll position after setting scroll to last page ↵Bogdan Udrescu2014-07-305-412/+134
| | | | | | | | | | | | (#14147)" This reverts commit 2ed3a310ca9e32f255602139eb1b08bfdfe2f25f. Conflicts: client/src/com/vaadin/client/ui/VScrollTable.java client/src/com/vaadin/client/ui/table/TableConnector.java Change-Id: Ie18f4ad61a88c17cd2b8eff677836fc68abffc15
* Revert "Context menu is not shown in Table body on mobile browsers (#13694)"Bogdan Udrescu2014-07-302-449/+210
| | | | This reverts commit 6f3aec50bfb17d14c75318f0172c45695c22a811.
* Fix background color of Notification in chameleon theme (#14246)Dmitrii Rogozin2014-07-291-0/+3
| | | | | | | Change-Id: Ie561a3ef95fcc15e357d1edb65b45f596683e7e4 Conflicts: WebContent/VAADIN/themes/chameleon/components/notification/notification.scss
* Minor refactor to #14147 patch (#14147)Anthony Guerreiro2014-07-292-10/+10
| | | | Change-Id: I78cdbbad41fa6980f445ae770f7e7a8d7db39176
* Context menu is not shown in Table body on mobile browsers (#13694)Heikki Ohinmaa2014-07-292-210/+449
| | | | Change-Id: I095401164a931f3a69dea91037a6cbf35b197121
* Fix Table stuck scroll position after setting scroll to last page (#14147)Anthony Guerreiro2014-07-295-2/+280
| | | | Change-Id: I9c39db5c2ccafd495a1ecc8b28687eeeebe3b6c2
* TextArea size get reset when css resize is set (#14080)Bogdan Udrescu2014-07-297-92/+566
| | | | | | | Listen to MouseUp event on the <textarea> and notify the state with the width and height if changed. Add com.vaadin.client.Util.Size to manipulates the css width/height. Change-Id: I96a308658d2877f1f6c05feaa7840a268bb06709
* Fix VWindow Vai-Aria roles for alertdialogs (#14289)Juuso Valli2014-07-293-4/+165
| | | | Change-Id: Ie33ef684f2177fe1807f95bf234031cc3a44f317
* Reduce TestBench 3 socket timeout (#14298)Henri Sara2014-07-291-3/+44
| | | | | | | Change-Id: I45907c5c22bcea1a403af71ecbf5236e5669ab38 Conflicts: uitest/src/com/vaadin/tests/tb3/TB3Runner.java
* Keyboard shift-selection now works as expected in VScrollTable. (#14094)Markus Koivisto2014-07-294-14/+78
| | | | Change-Id: I0dcd9f75cd30fe91c17ca0755241e73a37da79ec
* Add scrollbars to ComboBox suggestion popup if low on screen estate (#11929)Antti Tanhuanpää2014-07-297-137/+553
| | | | | | | Change-Id: Idfeb20a385fc68c6527f1947bdbf238d9d4af918 Conflicts: client/src/com/vaadin/client/ui/VFilterSelect.java
* Bottom component click scroll up the parent panel in a window (#12943)Bogdan Udrescu2014-07-298-89/+323
| | | | | | | | | | | | | | | Due to old fix for (#11994) the v-scrollable div of the window would expand to 110% of its size then immediately back to the original size. The first action, expanding the v-scrollable to 110% would decrease the scrollTop value of our panel, while increasing its height. When the revert back action would set the v-scrollable to its own size, the panel's scrollTop would remain decreased, causing the scroll bar to move up, hiding the ~10% at the bottom. Fixed by calling Util.runWebkitOverflowAutoFix(); instead of changing the height. Change-Id: I79eafd1f9500c2e4c10dadbfc7100608c0732e04
* Alter TooltipInWindowTest to inherit from TooltipTest (#14240)Juuso Valli2014-07-293-104/+72
| | | | Change-Id: I27c0a236d4dd654c1cf8d567752af9d1ea3c1de5
* Fix NativeButton clickEvent coordinates in IE11 (#14022)Anthony Guerreiro2014-07-293-1/+163
| | | | | | | | Two clicks were being triggered for IE11, the first with coordinates (0,0) and the second with the correct coordinates. Change-Id: I6f0feb520710b254eac6542f082a5012de2c5f85
* Revert "Add scrollbars to ComboBox suggestion popup if low on screen estate ↵Sauli Tähkäpää2014-07-293-202/+15
| | | | | | | | (#11929)" This reverts commit ede8fbaad050c98682df9da935caf59a3a3787c6. Change-Id: I6d2b6ad3901ac50782a9c8af6847c0b917d6027d
* Add scrollbars to ComboBox suggestion popup if low on screen estate (#11929)Antti Tanhuanpää2014-07-293-15/+202
| | | | Change-Id: I8563f1e2cfc66ca89399590401fd77ec67e50e82
* Revert "Fixing problem caused by ↵Bogdan Udrescu2014-07-292-6/+33
| | | | | | | | | | | | | | release/7.2.6/39c3ab667db7ab7b2aa9cb4449e4ccad840135b3" This reverts commit 10b64f824597f85a5c83784a6b82802a4c7521a0. It also adds the gwt/ivy.xml to make the build work. Actually the project won't build with the latest GWT if we don't use the gwt/ivy.xml and the laters build/ide.xml from Leif's patch. Change-Id: I3cdd40303d309aa0ebf82bf427c307f96983a75d
* Fixing problem caused by release/7.2.6/39c3ab667db7ab7b2aa9cb4449e4ccad840135b3Bogdan Udrescu2014-07-291-3/+6
| | | | | | , Parallelize ide.xml (#14276) - master/be2a71110a75bc83a7281c11b60285079e8cbffa Change-Id: I87e3cb4bb35ba5cb10ef9927f528938791a70650
* Revert "Add asserts checking for negative container sizes (#14232)"Bogdan Udrescu2014-07-296-69/+2
| | | | | | | This reverts commit c43ebbac50a55e965738ec82c83a3fe08636b911. Reverted because it might actually break some theoretically broken applications that still happen to work by chance.
* Parallelize ide.xml (#14276)Leif Åstrand2014-07-251-56/+72
| | | | | | | | | | | With this patch, the theme-and-default-widgetset target finishes in 50 seconds, whereas it takes about 80 seconds without the patch. This happens at the cost of peak memory usage rising from ~750mb to ~850mb. Change-Id: I969e9b3b01907e24bb8d411884d060ca1b539bde Conflicts: build/ide.xml
* Fallback to finding disconnected UI based on AtmosphereResource (#14251)Leif Åstrand2014-07-233-7/+148
| | | | Change-Id: Icdac51322a90c32c122a182bc692c4eff3d8285b
* Simulate @RunLocally using eclipse-run-selected-test.properties (#14272)Leif Åstrand2014-07-235-14/+199
| | | | | | | Conflicts when cherry-pick (the file was missing): uitest/src/com/vaadin/tests/components/upload/TestFileUploadTest.java Change-Id: I4eb9409629f64c17f39b1560062e763270f1f582
* Improves performance of VaadinService.requestEnd(). (#14218)Fabian Lange2014-07-232-130/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Doing two times session.accessSynchronously is unnecessary effort in multiple aspects: * The session will be locked twice. * CurrentInstances are set twice. * CurrentInstances are restored twice. * VaadinSession being checked for being the current via VaadinService.verifyNoOtherSessionLocked(this); When we leave requestEnd we unset all CurrentInstances. There is no need to just restore them before doing so. When we are in requestEnd, VaadinSession is set to "current" by PushHandler.callWithUi() or VaadinService.handleRequest(). Also, the cleanupSession code does not need any of these thread locals, so not having them set would also not hurt. having an extra accessSynchronously call for just setting the duration does not make a lot of sense. While it somehow wants to make the previous accessSynchronously call to be counted completely into the duration it invests an the same time that would have been left out additionally. VaadinService removeClosedUIs is a cleanup which also locks and sets CurrentInstances just to figure out that the UI it is checking is not closing. This change moves that check out of ui.accessSynchronously. In the end, the resulting code is a tiny bit less robust, however it eliminates over 50% response time on trivial push request/responses. Change-Id: If71d1dbbae5d1fd57d3d4e735c592fd263261a81
* Fixed javadoc for Upload class (#14266)Heikki Ohinmaa2014-07-231-80/+80
| | | | Change-Id: Ib16d4b8922a139b37d551797ada163b6d6b5e720
* Fix web.xml element order issue (#14257)Juuso Valli2014-07-231-2/+2
| | | | | In some servlet definitions async-supported was before init-param Change-Id: I2d4886a0aa4c37bad3b0385e25b51e91d59a4c31
* Explain what to do if chrome.driver.path is needed but missing (#14231)Leif Åstrand2014-07-231-5/+19
| | | | Change-Id: Ibd6f890136d62a3b19f8c60158b4aa1397454f7e
* Add asserts checking for negative container sizes (#14232)Leif Åstrand2014-07-236-2/+69
| | | | Change-Id: I5b6298be367e4fe820320a5e3fd6bf5aaa7e2047
* Fixes memory leak in VScrollTable (#14159)Dmitrii Rogozin2014-07-234-6/+209
| | | | Change-Id: I59596630b71f5a6b78c13bc5dbeaf7ef5dfaccf9
* Omit BOM when parsing issue list for release notes7.2.5Juuso Valli2014-07-181-3/+7
| | | | Change-Id: If241edbb79fecd3d99939a53f70c7c6d78f74e40
* Optimizes initial sizes of frequently used Collections. (#14223)Fabian Lange2014-07-185-201/+210
| | | | | | | | | | | | There are a few places in frequently used core classes which could initialize collection classes with the correct (or slightly oversized) length. Maps are initialized with 2x the size due to its load factor. Change-Id: I3aee5a60602937a8550ca5a200ec2a529ff36fe9 Conflicts: server/src/com/vaadin/server/VaadinService.java
* Fix compile error caused by cherry-pick in commit 85c71bdBogdan Udrescu2014-07-171-1/+6
| | | | Change-Id: I9ca1597e7696c16462ecbb7a392292bf44fa8114
* Update Atmosphere runtime to 2.1.2.vaadin3 (#13971)Sauli Tähkäpää2014-07-163-3/+3
| | | | | | | Atmosphere 2.1.2.vaadin3 includes fix for: https://github.com/Atmosphere/atmosphere/issues/1643 Change-Id: I67c07dc3b32ebb3b0eed634bf143bac9a7e5efe2
* Remove csrfToken if disable-xsrf-protection is true (#14111)Bogdan Udrescu2014-07-1615-116/+903
| | | | | | | If the server sends no token and the client value remains "init" then it's not sent back to the server. Change-Id: I74fc470c5c22d57c4a48eab3e4476ae4cc2dd242
* Make it possible to disable the sync id checking (#14193)Leif Åstrand2014-07-167-9/+57
| | | Change-Id: I35c2a767d7726abbbe7bae56387952343ac21157
* Improve error message if @RunLocally is committed (#14216)Leif Åstrand2014-07-151-0/+4
| | | | Change-Id: Ic35b71a01b207ff87072d2e46f34f171ec581fe0
* Mention Date serialization in javadocs related to JavaScript (#14143)Leif Åstrand2014-07-152-0/+4
| | | | Change-Id: I14d782843684f623a2cf671f14d0ab062829ebac
* Allow customizing DeploymentConfiguration for test UIs (#14215)Leif Åstrand2014-07-154-0/+267
| | | | Change-Id: I4a9db58e65b94ec0e46e849e6856817986bd750e
* Fix Tabsheet scrollbutton by css position in Chameleon theme (#12154)Johannes Tuikkala2014-07-153-0/+123
| | | | Change-Id: Icd38631f8802fc86949fa29dd517f1aca0499c33
* Adds a scrollbar to table column drop down (#14156).Felype Santiago Ferreira2014-07-154-0/+119
| | | | Change-Id: I7ce7c61f842a09af1842a14fedec3412120944c7