summaryrefslogtreecommitdiffstats
path: root/server/tests/src/com
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | ContainerEventProvider returns style names from container. Fixes #10718Maciej Przepióra2014-04-161-0/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ContainerEventProvider doesn't actually return style names from container in certain situations (copy-pasted code). This patch fixes the problem. Change-Id: I512ea260f34a6db0572b614db393699da152fa8d
* | | | Merge changes from origin/7.2Artur Signell2014-04-141-7/+7
|\| | | | |/ / |/| | | | | | | | | | | | | | d2e24fe Update some APIs based on the 7.2 API review comments 758f26b Fix NPE when removing tabsheet (#13402) Change-Id: Ic23793738c866d3b6d1a376f37dc4a56f72b8e43
| * | Update some APIs based on the 7.2 API review commentsJonatan Kronqvist2014-04-141-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * NotificationConfiguration "helpers" removed from Notification * NotificationConfiguration methods accept Type instead of style (String) * Tab.setIconAltText -> Tab.setIconAlternateText * Remove the two new TabSheet.addTab() methods * UI.reinit() -> UI.refresh() Change-Id: I97488e7c6de8cfacc591450d69c821b2973b8707
* | | Merge branch '7.2'Jonatan Kronqvist2014-04-142-298/+0
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 51c2e93 Revert "Added ItemSetAddEvent and ItemSetRemoveEvent (#2794)" ee4ae9f Merge from 7.1 to 7.2 Conflicts: scripts/automerge7.sh Change-Id: Ieb61caed4b3b6bbc6d3dc84c02ae8eeed897a144
| * | Revert "Added ItemSetAddEvent and ItemSetRemoveEvent (#2794)"Jonatan Kronqvist2014-04-112-298/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 85251833de3bd101d388b20fdb9b02c532a9f1c9. Conflicts: server/src/com/vaadin/data/util/AbstractInMemoryContainer.java server/tests/src/com/vaadin/data/util/TestIndexedContainer.java Change-Id: I49dfdc58ae5841892c6d8e205c520437da9a05e5
* | | Apply abstract ordered layout settings for replaced component (#13568).Denis Anisimov2014-04-141-0/+85
| | | | | | | | | | | | Change-Id: If6863d518d902ee48bb73fbb0c9b3725cb7c8707
* | | Updated Window API based on 7.2 API reviewArtur Signell2014-04-141-0/+53
| | | | | | | | | | | | Change-Id: Ie6fa8b51c2fd1d1fe7def9ca7c11b4023eae52b7
* | | Refactor VaadinPortletRequest extending. (#13551)Sauli Tähkäpää2014-04-105-0/+351
| | | | | | | | | | | | Change-Id: Ibe169bf0ec6d2f335e099ac2659079c8fad6ac0b
* | | Prevent duplicate session destroy events (#12612)Johannes Dahlström2014-04-101-3/+19
| | | | | | | | | | | | Change-Id: Ic752268a9deac350dbff29ecf73cfce2eb1ba0cc
* | | Don't allocate unnecessary memory for empty array of Objects inDenis Anisimov2014-04-101-0/+145
|/ / | | | | | | | | | | MethodProperty (#10446). Change-Id: Ib8e2cfb42494a9dd3efb5ca62ddea9675a1dab1e
* | Optimizes memory and CPU usage in JSONCodec (#13545)Fabian Lange2014-04-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The null element and the empty JSONArray are frequently created and used as temporary objects to be encoded by the json encoder. Because they are never manipulated it is possible to reuse the same empty element again and save a significant amount of temp objects. This also helps jsonEquals, which then can return faster due to: if (fieldValue == referenceValue) return true jsonEquals does not need to check the referenceValue for JSONobject.NULL. The invoking code makes sure this never happens. Boolean and Integer values are very often and much more efficiently compared directly instead of using toString. Change-Id: I5fd736427019406469357cda1115d2683b7a5e2b
* | Don't add slash after jsessionid in URL (#12307)Henri Sara2014-04-091-0/+60
| | | | | | | | Change-Id: Ic329b4307bcc0613e6c0160375003d4b9f7e7ee1
* | Make removeFromParent throw if the right session is not locked (#13473)Leif Åstrand2014-04-021-0/+125
| | | | | | | | Change-Id: Id5ef40db07404d7cb41b26768d18e757b8cae2b3
* | Add reinit method for preserve-on-refresh UIs (#12191)Johannes Dahlström2014-03-311-0/+116
| | | | | | | | | | | | | | | | | | | | UI.reinit() is now called when an existing, preserved UI is shown after a browser reload of the current page. The default implementation is empty. The browser window size and location are up to date in UI.reinit(); window resize and URI fragment listeners, if any, will be called after returning from UI.reinit(). Change-Id: Ie7aa670aaecf8e0e1510c91325b2a137b41263af
* | Merge changes from origin/7.1Build Agent2014-03-282-9/+194
|\| | | | | | | | | | | | | | | | | | | | | 1f4ca4c Prevent resize for sorted column if not initialized (#12951) 437f4e9 Improved portlet configuration resolution. (#7814) 55a1b20 Added headers support for WebSphere Portal. (#13491) f979681 Fix VScrollTable to clear reported ranges (#13353) a473222 Added browser inclusion and exclusion for TB3Runner. 29e7df2 Makes combobox work with pasted texts. (#13214). Change-Id: Icdb5a633d1d9f7bf7004b4b45857d268ea674f50
| * Improved portlet configuration resolution. (#7814)Sauli Tähkäpää2014-03-262-9/+194
| | | | | | | | | | | | | | | | Refactored static path resolution in VaadinPortletService. Refactored theme name resolution in VaadinPortletService. Refactored widgetset name resolution in VaadinPortletService. Change-Id: I44c5ffaa7530383843205aadd8da7642899a04c9
* | Handle default package properly in deployment config (#12461).Denis Anisimov2014-03-281-0/+53
| | | | | | | | Change-Id: Ied046a49c4e3046011658dd77963972ea1e9e806
* | Added convenience methods for bean binding (#13068)Matti Tahvonen2014-03-271-0/+94
| | | | | | | | | | | | Reduces common bean binding code from 4 lines to 1 Change-Id: Ie5f20ec2791284b850a9f3e11e21face3b5e4276
* | Use the ErrorHandler mechanism in ConnectorResourceHandler (#12269)Johannes Dahlström2014-03-271-0/+97
| | | | | | | | Change-Id: I9d608e942380bd53868b65eda180fe9c8477c138
* | Always call close() method for session valueUnbound() method (#12843).Denis Anisimov2014-03-273-0/+121
| | | | | | | | Change-Id: I1500b4b50d1f7ae9ee5fd2252a7b682b93cce720
* | Remove all unnecessary semicolons reported by EclipseLeif Åstrand2014-03-216-9/+8
| | | | | | | | Change-Id: I15f6fff50e709238655a0a50f605a833e2be7d6f
* | Merge commit '49973354b22e8aba9cc71f83571020b0414c54e0'Sauli Tähkäpää2014-03-211-0/+58
|\| | | | | | | | | | | | | Conflicts: shared/ivy.xml Change-Id: I2aa7cc35953fdc7441d1a5b15a7bf0a34a97db7f
| * Fixed trailing slash trimming in VaadinPortletService.Sauli Tähkäpää2014-03-131-0/+58
| | | | | | | | Change-Id: Ia9f6230219adfb1fcb29b88ad819e3209770e1fc
* | Format project files according to conventionsArtur Signell2014-03-192-2/+3
| | | | | | | | Change-Id: I2522698237eb2a21c0896605bed8e73a82795c97
* | Refactored failing test for OptionGroup.Sauli Tähkäpää2014-03-192-26/+32
| | | | | | | | Change-Id: Ia7cc646649dd3e98822ace82e1eefac3f2ba2a5e
* | Revert "Merge branch 'master' into grid"John Ahlroos2014-03-182-493/+0
| | | | | | | | | | | | This reverts commit 4420f52578e245045677f88852f1ba3f405e88a3. Change-Id: I06effe06f245baaeb499071917c359eb34cc55ea
* | Merge branch 'master' into gridLeif Åstrand2014-03-182-0/+493
|\ \ | | | | | | | | | Change-Id: Ia9d156009a3f1b4e61f12eb415040670a52d7876
| * \ Merge remote-tracking branch 'origin/master' into gridLeif Åstrand2014-02-128-7/+200
| |\ \ | | | | | | | | | | | | Change-Id: I8f1f412eeb450688bba58b715eba6db9e4ae43ae
| * | | Validate column group boundaries #12907John Ahlroos2013-12-101-0/+29
| | | | | | | | | | | | | | | | Change-Id: I5078d97c5a6bc92f59d0d04eca2a2cfc27c973b4
| * | | Merge branch 'master' into grid-mergeHenrik Paul2013-12-044-62/+14
| |\ \ \ | | | | | | | | | | | | | | | Change-Id: I2502ed31f81326b2e32a03ad34c289a5bf7bd2b5
| * | | | Ensure setting value on detached column group throws exception #3153John Ahlroos2013-12-021-0/+25
| | | | | | | | | | | | | | | | | | | | Change-Id: I4cef3424dfe846ab814fcf70c5cda4a305cbdf1c
| * | | | Added JUnit tests for column groups #3153John Ahlroos2013-11-252-41/+211
| | | | | | | | | | | | | | | | | | | | Change-Id: I49c6fb59454a0aba3d2399c40a9b6b8c00667a71
| * | | | Add server-side API for column freezing (#3087)Henrik Paul2013-11-241-0/+14
| | | | | | | | | | | | | | | Change-Id: I4704ab2bd2b1af31b4586e26cf89f03d97f136a4
| * | | | Multiple headers and footer rows #3153John Ahlroos2013-11-221-22/+70
| | | | | | | | | | | | | | | | | | | | Change-Id: Iadb0d8b051d0f0ef1303e0d7d740cf476cd81971
| * | | | Merge branch 'master' into gridJohn Ahlroos2013-11-208-111/+442
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Change-Id: I9f669ec38c39a42d1ef2a25121b77aab31551863
| * | | | | Base grid component and column API (#12829, #12830)John Ahlroos2013-11-191-0/+207
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I6c4eae8a4369e9452dd56e764633cecfe9bf553a
* | | | | | Fire value change events from Label when content changes (#12414)Maciej Przepióra2014-03-101-0/+79
| |_|_|/ / |/| | | | | | | | | | | | | | Change-Id: I9656025ebde0a80c913713856f5c0374e0f92c27
* | | | | Ignore JSON serializers which do not need to be serializableArtur Signell2014-02-121-0/+2
| | | | | | | | | | | | | | | | | | | | Change-Id: Iccfe06495bc69d46c9c69e987776a39f824caf2f
* | | | | Merge changes from origin/7.1Jonatan Kronqvist2014-02-101-0/+44
|\ \ \ \ \ | | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c551507 Selected option is updated when item caption changes in Select (#9250) 3595685 Converted TestUIWidgetset test to TB3 and fixed wrong text in assertion. 89d860c Convinience methods for getting mouse and keyboard in test. d00397f Converted TB2 test to TB3 and fixed text assertion. 857de0f Renamed test according to conventions and fixed assertion text. b9a6a48 Update textbox when Select item caption changes (#9250) 1687889 Retain focus while changing DOM in OrderedLayout (#12967) f93c870 Remove unselected rows from selection on client side (#13008) 1d1ccf4 Fix Firefox and Vaadin 7 scroll distance (#11353) 62ac53a Ensure widgetset compile messages go to stdout (#7516) 171d02a Remove references to read/write through modes (#13184) 3f09c10 Better-looking CSS for Vaadin API Javadocs (#13219) f0a4ea9 Do not throw NPE for equals(null) (#8910) 3897025 Add deprecated expand ratio methods to FormLayout (#12876) b89dba9 Exclude a possible bin directory when building (#13258) 69983d0 Re-adjusted the rendering order of TabSheet tabs to prevent an NPE in isClipped (#12343) e5dee6a Use Calendar as sender for action handlers (#13191) Change-Id: I581ec7517aaa19a2e46b48e31cdefdd3db2c05c5
| * | | | Do not throw NPE for equals(null) (#8910)Artur Signell2014-01-211-0/+44
| | | | | | | | | | | | | | | | | | | | Change-Id: Ie9a658911c9f2722e518dedbe181c24e5ace07db
| * | | | Backported null value support for NestedMethodProperty to 7.1 (#12884)Jarno Rantala2013-12-164-20/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Support for null values in NestedMethodProperty was already implemented in master branch (#11435) This changeset includes changesets made for that. Change-Id: I10696467f792e234326075bbcdd5aad487905a7e Merge: no
* | | | | Merge changes from origin/7.1Jonatan Kronqvist2014-02-071-0/+15
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 74dcb6f Correct assertion message which changed due to #12915 12b6a8b Test for broken Webkit feature which causes extra scrollbars (#12736, #12727) ea46029 Allow excluding test from the standard test suite c171850 Disable client timeout so websockets are not disconnected when idle (#13015) 36fce65 Test for pushing for an extended period of time (24h) 54a5667 Fix compilation error 25fc48c Do not throw NPE if conversion messages is null (#12962) 26b5b67 Timeout redirect timer is reset on server activity (#12446) d45785d Fixes right click selection focus issues in Tree. (#12618) Change-Id: I3cef915ee46b77ca0f188296cfa343cde1ad59e6
| * | | | Do not throw NPE if conversion messages is null (#12962)Artur Signell2013-12-031-0/+15
| | | | | | | | | | | | | | | | | | | | Change-Id: Ie2b95ed4da89e2c5ab8b462300a6f4bd28dc7570
* | | | | Merge changes from origin/7.1Jonatan Kronqvist2014-02-061-0/+111
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5b2ddc1 Make test work reliably by activating @Push 10ca7ed Catch and log exceptions in session lifecycle listeners (#12915) 8abf434 Move working sass tests from sasslangbroken to sasslang. 1ac492e Move a sass test that no longer fails. Change-Id: I960e80fd2120c20bc7b042eccbadb1e748ec0f00
| * | | | Catch and log exceptions in session lifecycle listeners (#12915)Henri Sara2013-11-271-0/+111
| | | | | | | | | | | | | | | | | | | | Change-Id: Ie8638f010d74c569c5ff56e91c95e23a5cb92c9b
* | | | | Remove dead codeJohannes Dahlström2014-01-173-7/+1
| | | | | | | | | | | | | | | | | | | | Change-Id: I1ac813afa47e38fb508e676d25d103a29bfada6a
* | | | | Fixes serialization-related errorsHenrik Paul2013-12-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Build-breaking error introduced in c14334f284c7e7c344b2983726b9242e3ef8562e Change-Id: Ie27ffba1f700b9373f446a61f78cac2c2d3e23bc
* | | | | Added convenience method to add items as a varargs array (#13067)Matti Tahvonen2013-12-181-0/+26
| |_|_|/ |/| | | | | | | | | | | Change-Id: Iab49d0960946cec5e949f4f60bb2f79dce66dcc3
* | | | Simplified support for null intermediate properties (#11435)Artur Signell2013-11-304-62/+14
| |_|/ |/| | | | | | | | | | | | | | | | | Removed support for explicitly throwing NPE for intermediate properties as no use case could be identified where this would be the expected or wanted behavior. Change-Id: I10696467f792e234326075bbcdd5aad487905a7e
* | | Merge changes from origin/7.1Artur Signell2013-11-111-0/+15
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 30e9b7c Add a test for @mixin { @font-face {...} } (#11649) 0a2cf2c Prevent showing "Session Expired" notification if navigating away (#12298) 8efc385 Fixes NPE in TreeTable.setContainerDS(null) (#12928) 23815e6 Remove broken JSch check c308d8a Fixes double scrollbar issue in browserframes (#11780) Fixed by adding font-size 0 to the base theme. Change-Id: I64ae167e8e6b61205718998b80d534fb2cf0cb3d