| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
|
| |
Yes, I should never have created "D:\eclipse workspaces" in the first
place.
No, I am not replacing "%20" with spaces, or creating an URI instance.
"D:\eclipse%20workspaces" is a valid folder and I'm not willing to go
down the rabbit hole and see what that turns into.
|
|
|
| |
Fixes #9170
|
|
|
|
|
|
|
|
|
|
|
|
| |
The Vaadin OSGi integration component uses Declarative Services, but it does some odd things:
* It uses the whiteboard service's own bundle context to get hold of the service instance
* It has an asymmetric get/release for the whiteboard service, which could leak instances over time
* It releases service instances that it is still actively using
This change tidies up the service lifecycle by delegating the get/release to the Service Component Runtime managing the container (specifically by injecting the service instance). Using this injection also ensures that the Vaadin whiteboard service is obtained using this component's bundle context.
This change also simplifies the code a little by using the reference as the key to track the registrations. Different references for the same service are required to be equal so there is no issue with doing this.
This change does not alter the fact that the whiteboard service's bundle context is used to register the Http Whiteboard servlet, as this may be the intended behaviour. As a result the component should be prepared for an IllegalStateException when unregistering the service whiteboard service, which may already have been unregistered by the OSGi framework if the target bundle is stopping.
|
|
|
| |
Fixes #9661
|
|
|
|
|
| |
data (#9673)
Resolves #9674
|
|
|
| |
Related to #9631
|
|
|
| |
Fixes #9629
|
|
|
|
| |
This greatly improves discoverability of the feature and was made possible
by dropping Java 7 support
|
|
|
| |
Fixes #9686
|
|
|
| |
Fixes #9637
|
| |
|
| |
|
|
|
|
| |
* Trying to lower the barrier to start following the tutorial
* Guiding new Vaadin users to start with the tutorial
|
|
|
| |
Fixes #9071
|
|
|
| |
This allows extending AtmospherePushConnection, and then doing overriding sendMessage. One use case is to correlate the IP address and the message in the logs.
|
| |
|
|
|
| |
Fixes #9670
|
| |
|
|
|
|
|
| |
Fixes #9606
Fixes #9645
Fixes #9647
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
Fixes #9614
|
|
|
|
|
| |
drop (#9605)
Fixes #9600
|
|
|
| |
Fixes #9452
|
| |
|
|
|
| |
Fixes #9596
|
|
|
| |
This also fixes/improves AbstractDateField validation.
|
|
|
|
|
|
|
|
|
|
|
| |
Use ZoneId rather than ZoneOffset for conversion between model (Date) and presentation of LocalDateTime.
LocalDateToDateConverter (correctly) uses ZoneId, whereas LocalDateTimeToDateConverter (incorrectly) used a ZoneOffset. This fix aligns the two Converter implementations and makes the latter one more robust.
A ZoneOffset is a fixed time difference, e.g., +07:00, whereas a time zone - represented by a ZoneId - is more dynamic, including features like Daylight-Savings Time. A ZoneId returns one or more ZoneOffsets via its ZoneRules method. (ZoneOffsets have trivial ZoneRules that simply return the ZoneOffset.)
Since the date/time being displayed may be from any date on the calendar, the ZoneOffset imposes a negative limitation. Using ZoneId instead gets us past that limitation and allows a more robust set of conversion rules.
Fixes #9594
|
| |
|
|
|
| |
Fixes #9584
|
|
|
| |
it's Vaadin Framework EIGHT nowadays
|
|
|
| |
Move remaining button and link related styles from _global to _nativebutton and _link.
|
|
|
| |
Fixes #9357
|
| |
|
| |
|
|
|
|
|
| |
Was using length - 1 and 0 for getting the row element,
which caused client side exception when dragging over header or footer when the grid had enough rows.
This had no effect on UX, only exceptions thrown. Now using visible range instead.
|
|
|
| |
Fixes #9545
|
|
|
|
|
|
|
|
|
| |
Provide old value of position in SplitPositionChangeEvent of *SplitPanel
New properties have been added to SplitPositionChangeEvent:
oldSplitPositionUnit, oldSplitPosition, userOriginated
Resolves #9472
|
| |
|
|
|
|
| |
This provides a way to get the mouse button clicked as
requested in #9335.
|
|
|
| |
Fixes #9595
|
|
|
| |
Resolves #9372
|
|
|
|
|
|
| |
This patch changes Grid Columns, so they can have different value and presentation types. A presentation provider can be given when setting the renderer for a column. This provider takes the value of the column on a row and chooses what to present for this value. Using this approach it is easier to have an editor for the actual backing data instead of the presentation of it.
Fixes #8656
Resolves #9588
|
|
|
| |
Resolves #9265
|
| |
|