aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unused private method (#8224)Leif Åstrand2017-01-111-15/+0
| | | | * Remove unused private method
* Import element tests from TestBench (#8117)Artur2017-01-11115-30/+6588
| | | Contains some additional tests and element changes based on review.
* Fix OSGi configuration for Liferay 7 (#8204)Henri Sara2017-01-101-1/+2
| | | | * Fix OSGi configuration for Liferay 7
* Correctly reset DataCommunicator when its DataProvider is changed (#8138)Aleksi Hietanen2017-01-1015-33/+288
| | | | | | | | * Correctly reset DataCommunicator when its DataProvider is changed * Improve ReplaceDataProviderTest * Remove return type from AbstractListing.readItems
* Exclude GAE packages from OSGi imports (#8205)Henri Sara2017-01-101-1/+5
| | | | | | * Exclude GAE packages from OSGi imports Fixes #8092
* Fix broken method signature of Grid.addColumn (#8180)Aleksi Hietanen2017-01-104-2/+92
| | | Fixes #8129
* Refactor AbstractDateField. (#8146)Denis2017-01-1065-1463/+2413
| | | First round for #8132.
* Allow AbstractField to override value equality (#8201)Leif Åstrand2017-01-102-1/+76
| | | | | | * Allow AbstractField to override value equality Fixes #8089
* Remove all referrals to book examples (#8163)Pekka Hyvönen2017-01-1010-45/+6
| | | Minor documentation fixes.
* Fix bad documentation for TwinColSelect (#8183)Pekka Hyvönen2017-01-091-2/+1
|
* Fix broken links in documentation (#8182)Pekka Hyvönen2017-01-092-4/+4
|
* Clean up pom.xml files in vaadin-test (#8181)Teemu Suo-Anttila2017-01-098-62/+15
| | | Use plugin management for maven plugin, remove version numbers
* Jouni's diagrams source file to keep in place.Ilia Motornyi2017-01-091-0/+0
|
* Add maven-source plugin to testbench-api (#8167)rogozinds2017-01-091-1/+13
|
* Fix vaadin-test and all its submodules (#8076)Teemu Suo-Anttila2017-01-0918-136/+106
| | | | | | | | | This patch applies following fixes: * ContextMenu with correct version for Vaadin 8 * Correctly skip install plugin for test submodules * Make widgetset-test-util a test depdendency, don't use test-jar * Fix vaadin-test project structure and dependencies * Clean up testutil pom * Add README.md
* Fix syntax error in pom.xmlLeif Åstrand2017-01-091-1/+0
|
* Remove uriFragmentChanged from the public API of UriFragmentManager (#8164)Leif Åstrand2017-01-093-21/+8
| | | | | It's an implementation detail that UriFragmentManager uses a UriFragmentChangedListener, so this shouldn't be exposed in its public API.
* New documentation diagrams (#8156)Ilia Motornyi2017-01-0959-18942/+91
| | | Fixes texts and a couple errors in IDEA, components and layout chapters.
* Update documentation for GridPekka Hyvönen2017-01-051-342/+177
| | | Part of vaadin/framework8-issues#538
* Add LocalDateToDateConverter (#8147)Leif Åstrand2017-01-052-0/+180
| | | | * Add LocalDateToDateConverter
* Update component docs for 8 except GridPekka Hyvönen2017-01-0527-480/+96
|
* Update layout chapter of the documentation for version 8 (#8154)Henri Sara2017-01-0513-115/+48
| | | The SplitPanel chapter still uses a Tree in its example.
* Migrate Grid UI tests P4 (#8133)Denis2017-01-0513-256/+241
| | | Fixes vaadin/framework8-issues#592
* Documentation/application screenshots update (#8137)Ilia Motornyi2017-01-0512-8/+8
| | | | | | | | | | | | | | | | * Documentation/application screenshots update * Avoid redundant autoboxing in BackEndDataProvider's size callback (#8127) * Update general Component documentation Part of vaadin/framework8-issues#538 * Documentation/application screenshots update * Notification types fixed * Merge branch 'documentation-screenshots-part1' of https://github.com/vaadin/framework into documentation-screenshots-part1
* Restore all current instance values after running access tasks (#8131)Leif Åstrand2017-01-052-5/+37
| | | | | | * Restore all current instance values after running access tasks Fixes vaadin/framework8-issues#593
* Update general Component documentationPekka Hyvönen2017-01-0430-1589/+139
| | | Part of vaadin/framework8-issues#538
* Avoid redundant autoboxing in BackEndDataProvider's size callback (#8127)Aleksi Hietanen2017-01-042-3/+39
|
* Grid UI tests migration P3. (#8121)Denis2017-01-0433-931/+695
| | | | | | | | | | | | | | | | | | * Grid UI tests migration P2. Fixes vaadin/framework8-issues#588 * Grid UI tests migration P3. Fixes vaadin/framework8-issues#589 * Merge branch 'master' into 589-grid-tests-migration Conflicts: uitest/src/main/java/com/vaadin/tests/components/grid/GridCellFocusOnResetSize.java uitest/src/main/java/com/vaadin/tests/components/grid/GridClientDataChangeHandler.java * Update screenshot submodule reference.
* Fix typo in documentation anchor (#8130)Artur2017-01-031-1/+1
|
* Make it easy to run Sonar on the project (#8118)Artur2017-01-039-1/+33
|
* Update remaining of application documentation for 8 (#8124)Pekka Hyvönen2017-01-0310-361/+50
| | | Fixes vaadin/framework8-issues#580
* Automatically complete custom bindings in BeanBinder#bindInstanceFields (#8012)Aleksi Hietanen2017-01-033-3/+179
| | | Closes vaadin/framework8-issues#511
* Update test to behave correctly due changes in the text components.Denis Anisimov2017-01-031-6/+2
| | | | | Correction after migration fix for (#20469).
* Move Grid event handlers to a list, add method to add custom handlersJohannes Dahlström2017-01-034-304/+447
| | | | | | | Change-Id: I2fe67ae961bfb0f7c44ba704346762a0faf6da2c # Conflicts: # client/src/main/java/com/vaadin/client/widgets/Grid.java
* Refactor Grid event handling methods to instances of a handler interfaceJohannes Dahlström2017-01-032-266/+362
| | | | | | | Change-Id: Icbed14cbef14c434f1909fa0350cb0364235c774 # Conflicts: # client/src/main/java/com/vaadin/client/widgets/Grid.java
* Start client-side Grid DOM event handling refactorJohannes Dahlström2017-01-032-32/+66
| | | | Change-Id: I67dad4cfbd6e9e355c48703253ff3d6da00e4eef
* Add javadocs and @since for the #20469 migration patch.Denis Anisimov2017-01-032-0/+13
|
* Re-add body rows when Escalator is reattached to DOM (#20477)Artur Signell2017-01-033-34/+80
| | | | | | | Change-Id: I0ae9144817db3bb730c80748d5e9190484b323e7 # Conflicts: # uitest/src/main/java/com/vaadin/tests/widgetset/client/grid/EscalatorBasicClientFeaturesWidget.java
* Update @since tags for 7.7.5Denis Anisimov2017-01-0315-12/+59
| | | | | | | | | | | Change-Id: I73201908b537ca0a65106e03c9bad913b59fae9f Re-added back disappeared commit from 7.7.5 migration PR: Mark TextField/TextArea as busy when a text change event is pending (#20469) Change-Id: I404985ae0be1e7dc65171b610032f8649e700f50
* Grid UI tests migration P2.Denis2017-01-0210-31/+361
| | | Fixes vaadin/framework8-issues#588
* Update documentation, BoV chapters 1 - 5.3 (#8085)Pekka Hyvönen2017-01-0246-7166/+120
| | | | | | | | | | | | | | | | | * Update documentation chapters 1 - 5.3 Images and diagrams have not been updated, but unnecessary images have been removed. * Sync application declarative and architecture sections source code. Screenshot image is updated to match the source code. * Old datamodel image is removed. * Ivy install image is removed. * Remove unnecessary linking / reference
* Migrate Grid tests P1. (#8108)Denis2017-01-0217-353/+189
| | | | | | * Migrate Grid tests P1. Fixes vaadin/framework8-issues#586
* Partial javadocs fix for vaadin-serverIlia Motornyi2017-01-0262-182/+105
|
* Correct DateField smoke test: use explicit locale.Denis2016-12-291-0/+5
|
* Provide a smoke test for a Form.Denis2016-12-282-4/+4
| | | Fixes vaadin/framework8-issues#585
* Converted old Framework TestBench test docs to markdown (#8084)Olli Tietäväinen2016-12-281-0/+131
| | | * Converted old Framework TestBench test docs to markdown
* Clean up DateField UI tests. Denis2016-12-2838-2533/+236
| | | | | Fixes vaadin/framework8-issues#584
* Clean up SQL container tests. (#8091)Denis2016-12-2814-984/+55
| | | | | Only one UI smoke test for the SQL container (along with a Table). Fixes vaadin/framework8-issues#582
* Clean up calendar tests. (#8094)Denis2016-12-2747-5403/+28
|
* Remove caption from javadoc comment (#8080)Pekka Hyvönen2016-12-231-2/+2
|