]> source.dussan.org Git - vaadin-framework.git/log
vaadin-framework.git
9 years agoUpdate @since to VaadinService.
Sauli Tähkäpää [Tue, 11 Nov 2014 07:01:07 +0000 (09:01 +0200)]
Update @since to VaadinService.

Change-Id: I1b473b9f5316674c5c5ed9a35d776fb8906eb559

9 years agoTreeTable column header and footer height fix (#15121)
Anna Koskinen [Tue, 28 Oct 2014 14:51:45 +0000 (16:51 +0200)]
TreeTable column header and footer height fix (#15121)

Fix for regression caused by (#14812) + Valo test for TreeTables.

Change-Id: I57f911cbf33e52196fa219b4feddfe62db7f6ded

9 years agoAdd null check to FieldGroup.bind. (#14729)
Sauli Tähkäpää [Fri, 26 Sep 2014 10:41:12 +0000 (13:41 +0300)]
Add null check to FieldGroup.bind. (#14729)

Change-Id: I56ee44f34307d76c8c98ca3346feed8e7ee2f72e

9 years agoAllow move any event in month calendar view (#12413).
Denis Anisimov [Sun, 21 Sep 2014 09:36:21 +0000 (12:36 +0300)]
Allow move any event in month calendar view (#12413).

Change-Id: I63491488356a32a233a4ba9a7434a9f4a1f5b9d1

9 years agoColumn drag'n'drop disables HeaderClickEvents until left-click (#15167)
Anna Koskinen [Wed, 5 Nov 2014 12:09:45 +0000 (14:09 +0200)]
Column drag'n'drop disables HeaderClickEvents until left-click (#15167)

Change-Id: Ic64c0eb685c3dd9d7fdb10d9e19745ae2cc36be5

9 years agoFix VCalendar to use correct year of week. (#14783)
Sauli Tähkäpää [Fri, 3 Oct 2014 21:03:38 +0000 (00:03 +0300)]
Fix VCalendar to use correct year of week. (#14783)

Change-Id: Id55ad5ed620bd5c187b70ae2a2d0a4c4adea382a

9 years agoReverse asc and desc table sorting indicators for Valo. (#15123)
Sauli Tähkäpää [Sat, 1 Nov 2014 12:04:39 +0000 (14:04 +0200)]
Reverse asc and desc table sorting indicators for Valo. (#15123)

Change-Id: If649d7ab0b4257cfaa1488dfff88afa8ef122f67

9 years agoChange the way classloader for VaadinService is selected (fixes #11295)
Maciej Przepióra [Wed, 22 Oct 2014 12:28:15 +0000 (15:28 +0300)]
Change the way classloader for VaadinService is selected (fixes #11295)

Change-Id: I2a25b4149f927ee7940edf596e8cebaaa48dcd0d

9 years agoUpload: OutOfMemory if stream already been read (#10096)
Sergey Budkin [Fri, 24 Oct 2014 09:29:58 +0000 (12:29 +0300)]
Upload: OutOfMemory if stream already been read (#10096)

Added -1 check and test.

Change-Id: I3f6c61417353884d22d8e6b33ef21319475c1907

9 years agoFix: Navigation to invisible days of week in VAADIN calendar (#12243)
Anna Miroshnik [Wed, 24 Sep 2014 07:33:01 +0000 (11:33 +0400)]
Fix: Navigation to invisible days of week in VAADIN calendar (#12243)

Some changes in BasicBackwardHandler and BasicForwardHandler.
Also test was added (CalendarBackwardForwardTest).
Changes after review.

Change-Id: Ibe0283534b784e3c18134619e1843440ca74e65c

9 years agoFire attach/detach events when Window is added/removed from UI (#14908).
Denis Anisimov [Thu, 23 Oct 2014 16:35:39 +0000 (19:35 +0300)]
Fire attach/detach events when Window is added/removed from UI (#14908).

Change-Id: Idc51aa5ab97a9d3f7a1f316d9536ae1cbaeafe38

9 years agoConvert TableScrollsOnSelectionTest to TB4.
Sauli Tähkäpää [Fri, 12 Sep 2014 13:10:48 +0000 (16:10 +0300)]
Convert TableScrollsOnSelectionTest to TB4.

Change-Id: I27b8edbd0761771054dc4e1b0b6b2559957da0c6

Conflicts:
uitest/src/com/vaadin/tests/components/table/LongMultiselectTest.java

9 years agoNew tests for Removing and re-adding all rows in Table (#14581)
Guillermo Alvarez [Thu, 16 Oct 2014 12:40:51 +0000 (15:40 +0300)]
New tests for Removing and re-adding all rows in Table (#14581)

Refactor of test into separate tests.
Addition of new cases to test when a new container is added and
when all items are removed and only one item is added

Change-Id: I6103404d1f21c02d7469f61ce942f7379b00a17b

9 years agoRe-adding content in Table causes table to lose scroll position (#14581)
Anna Miroshnik [Thu, 2 Oct 2014 12:02:55 +0000 (16:02 +0400)]
Re-adding content in Table causes table to lose scroll position (#14581)

At this moment behavior of restoring scroll position more like as in
7.2.6. But restoring is only in case of removeAll() - addAll() (or add()
one time - then restore index is reset).

In 7.2.6 restoring of scroll position was the result of client defect
(scrolling in lazyScroller was not changed if variable "firstvisible"
fromserver was 0). This "defect" was fixed in one of the patches.

Change-Id: I2e2fb8749ec95f3409caeacafff46c4c29159e74

9 years agoAllowed one pixel's worth of mismatch in
Anna Koskinen [Mon, 22 Sep 2014 13:18:51 +0000 (16:18 +0300)]
Allowed one pixel's worth of mismatch in
TableRepairsScrollPositionOnReAddingAllRowsTest.

Change-Id: I04f17bf0acbb445343e2f9b18f6a55ce4f764afa

9 years agoRe-adding all rows in Table causes table to loose scroll position (#14581)
Anna Miroshnik [Mon, 15 Sep 2014 13:11:56 +0000 (17:11 +0400)]
Re-adding all rows in Table causes table to loose scroll position (#14581)

Fix: if to remove (container.removeAllItems()) and then to re-add(container.addAll(..)) the same collection in table container - > scroll position is not loosed now.

The hash code and scroll position of the old container is stored when a new container is added.
If the new container has the same hash code, we restore the scroll position.
The scroll position is not restored if another items added to the container.

Change-Id: I52a22c3c1c7b71f1b3447b9d592ab8fececd67b8

9 years agoAdded missing @since and javadocs 7.3.4
Markus Koivisto [Mon, 3 Nov 2014 07:54:35 +0000 (09:54 +0200)]
Added missing @since and javadocs

Change-Id: I4241217a21b60b877a2213344607d112a14ff7d5

9 years agoFix a regression in VMenuBar.getSubpartElement (#14879).
Mika Murtojarvi [Mon, 27 Oct 2014 15:44:16 +0000 (17:44 +0200)]
Fix a regression in VMenuBar.getSubpartElement (#14879).

A change done in an earlier patch set
(https://dev.vaadin.com/review/#/c/5283/) caused a test failure with
Internet Explorer 8.

Change-Id: I8159135ab7ec4b73682e90daf393b879bf587930

9 years agoChange getSubPartElement(String) to ignore text icons (#14879).
Mika Murtojarvi [Fri, 17 Oct 2014 14:34:22 +0000 (17:34 +0300)]
Change getSubPartElement(String) to ignore text icons (#14879).

The test for this change set will be included in the TestBench project,
since the API required by the test is not present here.

Change-Id: Ia31d4ba49dabdb74d81e5b9d23db7af809d96942

9 years agoAdd SubPartAware interface to VSlider (#13760)
Dmitrii Rogozin [Thu, 11 Sep 2014 11:45:49 +0000 (14:45 +0300)]
Add SubPartAware interface to VSlider (#13760)

Change-Id: I19cc7e60a43a618f2b443f4b9d049b77d740b567

9 years agoAdd SubPartAware to VMenuBar (#13364)
Dmitrii Rogozin [Thu, 11 Sep 2014 11:57:02 +0000 (14:57 +0300)]
Add SubPartAware to VMenuBar (#13364)

Change-Id: Ibf8b82dff19736d5e2519638db50a26148f0e750

9 years agoFix VaadinFinderLocator for UIElement (#14010).
Dmitrii Rogozin [Mon, 20 Oct 2014 13:25:22 +0000 (16:25 +0300)]
Fix VaadinFinderLocator for UIElement (#14010).

Change-Id: If25ebdcdd4df438402d1cdc60a63c629e84c73a0

9 years agoUpdate testbench icon in debug window (#14913)
Dmitrii Rogozin [Tue, 21 Oct 2014 10:54:53 +0000 (13:54 +0300)]
Update testbench icon in debug window (#14913)

Change-Id: Ic114cb1c61a925347e70da3820e4b9f22abeb27c

9 years agoSet upload button width to 100% when immediate on Valo. (#14485)
Sauli Tähkäpää [Thu, 30 Oct 2014 14:11:10 +0000 (16:11 +0200)]
Set upload button width to 100% when immediate on Valo. (#14485)

Change-Id: I473fc080c143bc242326bd6f2b819450c42ffae5

9 years agoAdd addButton() AbstractTestUI.
Sauli Tähkäpää [Mon, 13 Oct 2014 11:56:50 +0000 (14:56 +0300)]
Add addButton() AbstractTestUI.

Change-Id: I55a02e96466b63f6b00047cc87ab111f6c08e45b

9 years agoSet correct versions for json package imports in OSGi manfiests (#14618)
Maciej Przepióra [Thu, 23 Oct 2014 15:07:20 +0000 (18:07 +0300)]
Set correct versions for json package imports in OSGi manfiests (#14618)

Change-Id: I4761ab889bfacedd66bd7ed5f37fe763d7539bef

9 years agoresolve org.json version conflict between server and shared (#14618)
Markus Koivisto [Wed, 10 Sep 2014 09:09:00 +0000 (12:09 +0300)]
resolve org.json version conflict between server and shared (#14618)

Change-Id: Iae1723bfcfa56084a1339247b1f82e9277555a5e

9 years agoFix button on immediate upload does not obey setWidth() (#14485)
denis.magdenkov [Wed, 1 Oct 2014 13:50:30 +0000 (17:50 +0400)]
Fix button on immediate upload does not obey setWidth() (#14485)

Added sass selector for upload in base theme.

Change-Id: Iebf796f0965de6afeac98d6e2a2a9246c9251bab

9 years agoSet v-disabled on Button inside Upload when disabled. (#14655)
Sauli Tähkäpää [Sun, 12 Oct 2014 20:42:28 +0000 (23:42 +0300)]
Set v-disabled on Button inside Upload when disabled. (#14655)

Change-Id: Ic28c8e4020eddae32a71b5c7f9da0ad61f2f7af9

9 years agoFormLayout margins do not work (#14610)
Jouni Koivuviita [Tue, 21 Oct 2014 11:13:15 +0000 (14:13 +0300)]
FormLayout margins do not work (#14610)

Change-Id: Ibad03664be53489121914a2dd7bb051cc6e5350c

9 years agoFix: Empty space on page after expanded component (#12672)
Anna Miroshnik [Tue, 7 Oct 2014 15:37:30 +0000 (19:37 +0400)]
Fix: Empty space on page after expanded component (#12672)

Full defect name: Empty space on page after expanded component - incorrect height calculation in Chrome

Layout:
[
Panel (auto x auto) [
Grid (auto x auto)
]
AnyComponent (100% x 100%)
<EMPTY SPACE>

Also sleep() was removed from tests BaseLayoutExpandTest and
BaseAddReplaceMoveTest

Change-Id: Ie8a14a58dd53a26a133ea99a7b809d92c1b33a1f

9 years agoFieldGroup should not throw NPE when data source is not set (#14901).
Denis Anisimov [Tue, 21 Oct 2014 17:41:05 +0000 (20:41 +0300)]
FieldGroup should not throw NPE when data source is not set (#14901).

Change-Id: I74bea857306fac5123aa86cdabc70d81c2a72094

9 years agoTest fix now that FormLayout margins work again. (#14890)
Anna Koskinen [Wed, 22 Oct 2014 08:26:52 +0000 (11:26 +0300)]
Test fix now that FormLayout margins work again. (#14890)

Change-Id: Ifa7d4ae9d36c1180a5c635833a9a13ad576d5c70

9 years agoReplace no-break-spaces with whitespaces (#14890)
Sara Seppola [Thu, 16 Oct 2014 13:54:11 +0000 (16:54 +0300)]
Replace no-break-spaces with whitespaces (#14890)

Change-Id: Ib378fbea73bc16caa12deb14f760025e68f16288

9 years agoCorrect positioning and sizing logic for context menu (#14863).
Denis Anisimov [Tue, 14 Oct 2014 19:16:00 +0000 (22:16 +0300)]
Correct positioning and sizing logic for context menu (#14863).

Change-Id: Ic2edd6e6f53cd8ae3dc2d39477f59261356beafd

9 years agoFix TabSheet becomes unresponsive after setSelectedTab (#14710)
Guillermo Alvarez [Fri, 17 Oct 2014 08:00:37 +0000 (11:00 +0300)]
Fix TabSheet becomes unresponsive after setSelectedTab (#14710)

Fixed unresponsiveness issue without removing the waitingForResponse
flag from VTabsheet. The flag is now set in revertToSharedStateSelection

Change-Id: I62cabc44d4ac4c284b0b35921d8624483b0150be

9 years agoRemoved the waitingForResponse flag from VTabsheet (#14710)
Taras Hupalo [Mon, 29 Sep 2014 10:41:44 +0000 (13:41 +0300)]
Removed the waitingForResponse flag from VTabsheet (#14710)

Change-Id: Idd918197c2026a3c574cffd0e9595ff9f02eb2d8

9 years agoAdd missing tests (#12976)
Guillermo Alvarez [Wed, 15 Oct 2014 12:33:18 +0000 (15:33 +0300)]
Add missing tests (#12976)

Adapted TB2 tests included in changeset number [26188] of Vaadin 6.8 SVN

Change-Id: Ib935524538e06bd51acc01068df6ad86beba05fb

9 years agoRemoves scrolling caused by updating an unfocused table (#12976)
Taras Hupalo [Fri, 19 Sep 2014 11:11:11 +0000 (14:11 +0300)]
Removes scrolling caused by updating an unfocused table (#12976)

Change-Id: Ifd5037c576480a03c7c74c29730338d5a592d20d

9 years agoAdded missing test when unframed (#14450)
Guillermo Alvarez [Mon, 20 Oct 2014 11:40:38 +0000 (14:40 +0300)]
Added missing test when unframed (#14450)

Now we check closing element is present in unframed tabsheets

Change-Id: If29c1006db0f9267d213b5f063a1c478efe60ea9

9 years agoFix Tabsheet close button not shown on tabsheet (Firefox 24) (#14450)
Jouni Koivuviita [Fri, 17 Oct 2014 09:03:48 +0000 (12:03 +0300)]
Fix Tabsheet close button not shown on tabsheet (Firefox 24) (#14450)

Change-Id: I099f94f47f2f7aa5856026f6cf6e53629732527c

9 years agofix: Tooltip does not shrink when content changes (#11871)
Anna Miroshnik [Tue, 23 Sep 2014 13:18:45 +0000 (17:18 +0400)]
fix: Tooltip does not shrink when content changes (#11871)

Change-Id: I6b0cc0996560b2f8dd28e110e455445952c0fbd9

9 years agoFixed FontIcons on VWindow (#14481).
Tapio Aali [Tue, 7 Oct 2014 07:22:24 +0000 (10:22 +0300)]
Fixed FontIcons on VWindow (#14481).

Change-Id: I1b7cb280088379a6512e23a663dbf2a31f8123cd

9 years agoUse deployment url property value for base URL if it's defined (#14758).
Denis Anisimov [Wed, 24 Sep 2014 17:42:54 +0000 (20:42 +0300)]
Use deployment url property value for base URL if it's defined (#14758).

Change-Id: I249e37cfaf23564b00136b33132df3d339a46e98

10 years agoAdd @since to isEnabled() and setEnabled(). (#14797)
Sauli Tähkäpää [Thu, 16 Oct 2014 13:01:26 +0000 (16:01 +0300)]
Add @since to isEnabled() and setEnabled(). (#14797)

Change-Id: Ic9b7e8f597afd68c4190b7eaffaee203876e24e0

10 years agoImplement HasEnabled in VPopupView. (#14797)
Sauli Tähkäpää [Thu, 2 Oct 2014 19:19:05 +0000 (22:19 +0300)]
Implement HasEnabled in VPopupView. (#14797)

Change-Id: I7384fb6312a921330d8b57193e53c235213dcf00

10 years agoHandle all native events in preview handler for Combobox popup (#14321).
Denis Anisimov [Sun, 24 Aug 2014 20:06:25 +0000 (23:06 +0300)]
Handle all native events in preview handler for Combobox popup (#14321).

Change-Id: Ibad2f45fb81d9573125fbc786bd3493ac6cdfc00

10 years agoPostpone shortcut action handler initialization in PopupView (#14275).
Denis Anisimov [Sun, 17 Aug 2014 13:20:32 +0000 (16:20 +0300)]
Postpone shortcut action handler initialization in PopupView (#14275).

Change-Id: I233a63fac4f1afe3f99105ac6dfbbbb38f9b9fad

10 years agoAdd @since to ContainerEventProvider. (#14178)
Sauli Tähkäpää [Thu, 16 Oct 2014 12:49:25 +0000 (15:49 +0300)]
Add @since to ContainerEventProvider. (#14178)

Change-Id: Ic44e8abf1e7405735c940573558e150b4e0de35d

10 years agoAll day property support is added to ContainerEventProvider (#14178).
Denis Anisimov [Sun, 17 Aug 2014 15:04:11 +0000 (18:04 +0300)]
All day property support is added to ContainerEventProvider (#14178).

Change-Id: I8d5580895a218440a8295ed79453d6cbe24195b1

10 years agoFix @since for isIPhone() and isIPad(). (#14424, #14423)
Sauli Tähkäpää [Thu, 16 Oct 2014 06:00:03 +0000 (09:00 +0300)]
Fix @since for isIPhone() and isIPad(). (#14424, #14423)

Change-Id: I8b72b362134d564165a7037e0722c3ff28f59497

10 years agoUpdate atmosphere-runtime to 2.1.2.vaadin6. (#14674, #14861) 17/head 7.3.3
Sauli Tähkäpää [Wed, 15 Oct 2014 10:24:37 +0000 (13:24 +0300)]
Update atmosphere-runtime to 2.1.2.vaadin6. (#14674, #14861)

Change-Id: Ie239bf110909f8acb47f2141431965061f9ac407

10 years agoEase test creation by making description and ticket number optional
Artur Signell [Mon, 29 Sep 2014 18:35:21 +0000 (21:35 +0300)]
Ease test creation by making description and ticket number optional

Change-Id: I00cde9e1ebc51669b959a6e98094fea87059a022

10 years agoNot able to scroll BrowserFrames on iOS Devices (#14813)
Sergey Budkin [Mon, 6 Oct 2014 13:35:28 +0000 (16:35 +0300)]
Not able to scroll BrowserFrames on iOS Devices (#14813)

Added CSS fixes.

Change-Id: I1f1d27a18b925ab9b4e21292218c75206d3d4984

10 years agoFixed the sizing of relative-sized components in AbsoluteLayout (#13131)
Anna Koskinen [Fri, 10 Oct 2014 07:51:11 +0000 (10:51 +0300)]
Fixed the sizing of relative-sized components in AbsoluteLayout (#13131)

Change-Id: Ibc0757fa383b15dbf33f0b75a7d20ee78db5e88a

10 years agoUse workaround for JDK6 Introspection bug JDK-6788525 (#14839).
Denis Anisimov [Sat, 11 Oct 2014 14:41:48 +0000 (17:41 +0300)]
Use workaround for JDK6 Introspection bug JDK-6788525 (#14839).

Change-Id: Ib7ef769b7537675c681ac1fab24a425d19a267e7

10 years agoTreeTable should support font icons for items (#14077)
Guillermo Alvarez [Thu, 2 Oct 2014 14:43:52 +0000 (17:43 +0300)]
TreeTable should support font icons for items (#14077)

Change-Id: I758e0f80446290f17280447b1ff5c1f44cb8604b

10 years agoFix empty table captions in Valo theme (#14812)
Teemu Pöntelin [Sat, 4 Oct 2014 13:05:49 +0000 (16:05 +0300)]
Fix empty table captions in Valo theme (#14812)

Change-Id: I6d18e9a16ea5c4c4de0653233fefa1af8f76205a

10 years agoIncorrect rendering of Panel with undefined size in Firefox (#14631).
Sergey Budkin [Fri, 3 Oct 2014 09:25:37 +0000 (12:25 +0300)]
Incorrect rendering of Panel with undefined size in Firefox (#14631).

Copied the fix from Valo.

Change-Id: I677fc4cfb65a57211fd82d994d75743fd49a83a2

10 years agoisIPad() and isIPhone() methods are added to WebBrowser (#14424,#14423).
Denis Anisimov [Sun, 7 Sep 2014 13:33:30 +0000 (16:33 +0300)]
isIPad() and isIPhone() methods are added to WebBrowser (#14424,#14423).

Change-Id: I7b3556d5f9c1dd84beec638d7fbff1c5382070a4

10 years agoFieldGroup.commit throws NPE if not bound to an item (#14732).
Sergey Budkin [Mon, 6 Oct 2014 11:42:54 +0000 (14:42 +0300)]
FieldGroup.commit throws NPE if not bound to an item (#14732).

Added null check and corresponding test.

Change-Id: I197dad14d6b5f7bf9bedcdf083d4b1f0f20efdcd

10 years agoAdd favicon.ico to Valo. (#14781)
Sauli Tähkäpää [Wed, 1 Oct 2014 13:01:17 +0000 (16:01 +0300)]
Add favicon.ico to Valo. (#14781)

Change-Id: Ic0c5152d634dfc8f07890cfee18bbebd6e54bbc3

10 years agoCheck eventRouter value against null in Page class (#14803).
Denis Anisimov [Sat, 4 Oct 2014 08:32:32 +0000 (11:32 +0300)]
Check eventRouter value against null in Page class (#14803).

Change-Id: Ia7dd54c4cf10a2c56a5ef36864a6bb94f1d9167f

10 years agoAdd ".v-required" style for required component (#10201).
Denis Anisimov [Sun, 5 Oct 2014 11:48:49 +0000 (14:48 +0300)]
Add ".v-required" style for required component (#10201).

Change-Id: I889587234acdb79e33e625f993c1918befa6aae3

10 years agoAdd outside-range styles for DateField. (#14711)
Jouni Koivuviita [Mon, 22 Sep 2014 10:28:29 +0000 (13:28 +0300)]
Add outside-range styles for DateField. (#14711)

Change-Id: I0f85fb72605c5500b0a835ddf715d60bc9c7a524

10 years agoAssign timezone before setting initial date in DateField. (#14653)
Sauli Tähkäpää [Sat, 13 Sep 2014 22:01:21 +0000 (01:01 +0300)]
Assign timezone before setting initial date in DateField. (#14653)

Change-Id: I3b527084d23ee8bd49887bef3d018c1003f492e2

10 years agoOpen combobox popup on click to icon (#14624).
Denis Anisimov [Sat, 13 Sep 2014 18:51:29 +0000 (21:51 +0300)]
Open combobox popup on click to icon (#14624).

Change-Id: I203b92561ab14d427466945845c6fbb62d6eb07b

10 years agoAudio component requests audio content on each client poll when in Window (#14785)
Sergey Budkin [Wed, 1 Oct 2014 12:02:44 +0000 (15:02 +0300)]
Audio component requests audio content on each client poll when in Window (#14785)

Changed cloning implementation.

Change-Id: Ic909551e6f78a0171f87f1f432b554abb900744c

10 years agoA cursor is displayed when clicking on radio buttons on iOS 8.0 (#14681)
Sergey Budkin [Tue, 30 Sep 2014 12:05:38 +0000 (15:05 +0300)]
A cursor is displayed when clicking on radio buttons on iOS 8.0 (#14681)

Added css instructions for enclosing span to prevent this.

Change-Id: Ib5e396b85ce37ab722e70fddf3553179248d59e8

10 years agoAction on click button contained in table is called two times on iOS 8.0 (#14632)
Sergey Budkin [Tue, 30 Sep 2014 11:58:30 +0000 (14:58 +0300)]
Action on click button contained in table is called two times on iOS 8.0 (#14632)

Added suppression of second phantom click event.

Change-Id: I97d01831b09f0a41976bbefef389f47a0271fc70

10 years agoCall endUpload() in finally block of fail handling (#14677).
Denis Anisimov [Tue, 16 Sep 2014 17:16:59 +0000 (20:16 +0300)]
Call endUpload() in finally block of fail handling (#14677).

Change-Id: I0b5976abf0d8804e8cd34c5dd489da8617ef89f1

10 years agoAdd logging helper functions to AbstractTB3Test.
Sauli Tähkäpää [Tue, 14 Oct 2014 13:09:02 +0000 (16:09 +0300)]
Add logging helper functions to AbstractTB3Test.

Change-Id: Ie2f85c744eac7f8451f22c717a9aea5ea2e74f0e

10 years agoRemoved obsolete fix for webkit scrollbar issue. (#14203)
Sergey Budkin [Tue, 16 Sep 2014 11:43:03 +0000 (14:43 +0300)]
Removed obsolete fix for webkit scrollbar issue. (#14203)

The fix was causing a flicker effect. Initial fix for #2138 was causing
a flicker effect, but the original issue is not reproducing currently
even when the previous fix is reverted.

Tested against tickets #3457, #3875, #7607, #6698 as well as filtering
out and removing rows.

Change-Id: I1aa6943eb93898d75c4e3c5b6d9326b95648bb1f

10 years agoTreeItem double click fixed (#14745)
Guillermo Alvarez [Mon, 29 Sep 2014 07:50:18 +0000 (10:50 +0300)]
TreeItem double click fixed (#14745)

The event wasn't sent immediately and was sometimes
overwritten by following click event.

Change-Id: I7d52030ee8aac2be11b3b3db207d1c7f187d4778

10 years agoRead input stream logic is corrected (#14533).
Denis Anisimov [Fri, 26 Sep 2014 17:44:32 +0000 (20:44 +0300)]
Read input stream logic is corrected (#14533).

Change-Id: I1a8a895d631889e04f7acbde29306e86da344a23

10 years agoFix ComboBox issue with font-based item icons (#14660)
Teemu Pöntelin [Wed, 24 Sep 2014 19:48:55 +0000 (22:48 +0300)]
Fix ComboBox issue with font-based item icons (#14660)

Change-Id: I8f3de9556cc62670c28523886998f89383b76305

10 years agoException on closing inactive UI causes issues (#14651)
Sergey Budkin [Mon, 22 Sep 2014 07:43:02 +0000 (10:43 +0300)]
Exception on closing inactive UI causes issues (#14651)
Added proposed fix

Change-Id: I88085546c2bf47f1e0952d64efadfc40bac12987

10 years agoPossible VaadinSession deadlock when invalidating HTTP session (#14452)
Sergey Budkin [Fri, 19 Sep 2014 13:52:08 +0000 (16:52 +0300)]
Possible VaadinSession deadlock when invalidating HTTP session (#14452)

VaadinService.fireSessionDestroy: session.accessSynchronously -> session.access

Change-Id: I72e08c9285e6b34dac54401c6c84b7175133e481

10 years agoSassDoc stubs, mostly auto-generated by special utility (#14377) 7.3.2
Sergey Budkin [Mon, 8 Sep 2014 09:11:12 +0000 (12:11 +0300)]
SassDoc stubs, mostly auto-generated by special utility (#14377)

Change-Id: Id621c25cae3314dc44a700e1e9dcdae97cda5bfb

10 years agoFix closed issues link in release notes.
Sauli Tähkäpää [Fri, 26 Sep 2014 06:14:49 +0000 (09:14 +0300)]
Fix closed issues link in release notes.

Change-Id: I79565d94c65efb4ae8a61627c9d313707aabe3d5

10 years agoAdd @since to isWindowsPhone(). (#14425)
Sauli Tähkäpää [Fri, 26 Sep 2014 05:44:29 +0000 (08:44 +0300)]
Add @since to isWindowsPhone(). (#14425)

Change-Id: Ia4c212ead39d7b71c56db586c0a8559935cae263

10 years agoRemove Calendar dependency (#14668)
Artur Signell [Tue, 16 Sep 2014 07:09:39 +0000 (10:09 +0300)]
Remove Calendar dependency (#14668)

This can cause GWT compilation problems as java.util.Calendar is not
available in GWT

Change-Id: Ia13d8f433ac43fcfd670c8e05b1295d3c64327cf

10 years agoAdded support PORTLET_CONTEXT for vaadin.resources.path value (#14640)
Taras Hupalo [Wed, 24 Sep 2014 09:10:46 +0000 (12:10 +0300)]
Added support PORTLET_CONTEXT for vaadin.resources.path value (#14640)

Change-Id: Ie801a17ed1eff29a7dc6be61755241777071ab8f

10 years agoSet internal value instead of converted value when locale has changed. (#14400)
Sauli Tähkäpää [Sat, 13 Sep 2014 19:46:28 +0000 (22:46 +0300)]
Set internal value instead of converted value when locale has changed. (#14400)

Change-Id: I2440f6471b8bbb016497bf59cffd023b013460dd

10 years agoDocument that current session and UI are referenced weakly (#14595)
Leif Åstrand [Thu, 4 Sep 2014 06:15:45 +0000 (09:15 +0300)]
Document that current session and UI are referenced weakly (#14595)

Change-Id: Iccf6a2b0da6e47b5b14c40e0ebaab52df1eef92a

10 years agoNotification animations feel janky (Valo) (#14656)
Jouni Koivuviita [Thu, 18 Sep 2014 11:58:42 +0000 (14:58 +0300)]
Notification animations feel janky (Valo) (#14656)

Added a small delay for notification animate-in animations.

Change-Id: Id5596957c56eae391c17e3ea8b942617b848c8f7

10 years agoFix FormLayout has always an odd 12px horizontal margin (#14574)
Jouni Koivuviita [Mon, 1 Sep 2014 13:50:32 +0000 (16:50 +0300)]
Fix FormLayout has always an odd 12px horizontal margin (#14574)

Change-Id: Idaba283636ccbbd3d4fccc8ea10128a464fa463d

10 years agoFixed ComboBox filtering when page length is zero (#14509)
Teemu Pöntelin [Tue, 26 Aug 2014 16:29:35 +0000 (19:29 +0300)]
Fixed ComboBox filtering when page length is zero (#14509)

Change-Id: I663b39a37bcdf4383fa76d04acd127503ced11df

10 years agoFix for audio component starting new playback on each client poll when in Window...
Sergey Budkin [Wed, 17 Sep 2014 12:00:15 +0000 (15:00 +0300)]
Fix for audio component starting new playback on each client poll when in Window (#14645)

Every poll triggers cloning of Window contents at postLayout phase, so media components
are cleared of autoplay attribute.

Change-Id: I0d81cc1bcfd1da1f7c9f1813fb91930139232737

10 years agoFix multiselection pressing shift before starting (#13483)
Guillermo Alvarez [Fri, 12 Sep 2014 12:49:53 +0000 (15:49 +0300)]
Fix multiselection pressing shift before starting (#13483)

selectionRangeStart wasn't set when starting a selection pressing shift.
SelectAllRowsTest was rewritten to enable extension to test this issue.

Change-Id: I1b578b28ba89fc8215ec853d92de09f44c2d58e6

10 years agoDon't scan classpath for any development servlet (#14604)
Leif Åstrand [Thu, 4 Sep 2014 10:09:59 +0000 (13:09 +0300)]
Don't scan classpath for any development servlet (#14604)

Change-Id: If3db4a35609260beff1079cbaafa8827643d9271

10 years agoCalendar event not shown correctly when partially out of view (#7261)
Anna Miroshnik [Thu, 4 Sep 2014 13:38:38 +0000 (17:38 +0400)]
Calendar event not shown correctly when partially out of view (#7261)

only tests. Fix was done during fix of (#12521)

Change-Id: I0097f4b3b0426e007af2eaf20323193ac75e1a8c

10 years agoFix invalid parameter name (#14602)
Leif Åstrand [Thu, 4 Sep 2014 11:00:02 +0000 (14:00 +0300)]
Fix invalid parameter name (#14602)

Change-Id: Ia746e41b7dd81b3465895aad4ca39991aac17d89

10 years agoWebBrowser.isWindowsPhone() is added (#14425).
Denis Anisimov [Sun, 7 Sep 2014 14:39:56 +0000 (17:39 +0300)]
WebBrowser.isWindowsPhone() is added (#14425).

Change-Id: Ia279c4da78ca04e0d3727b605e2ce68b99e8cd65

10 years agoKeyboard scrolling in multiselection mode fixed (#14094)
mtzukanov [Mon, 1 Sep 2014 14:21:11 +0000 (17:21 +0300)]
Keyboard scrolling in multiselection mode fixed (#14094)

Limiting focusing to single item selections.

Change-Id: I12403ddd76fb1eac44d8eca82f251b2b8097b16a

10 years agoFix CustomLayout: component not added at the default location (#14340)
Anna Miroshnik [Wed, 20 Aug 2014 10:47:39 +0000 (14:47 +0400)]
Fix CustomLayout: component not added at the default location (#14340)

Change-Id: I5eb76915b52f6b73ff0799631d98d5711041eeb5

10 years agoFix release notes.
Sauli Tähkäpää [Tue, 16 Sep 2014 12:53:20 +0000 (15:53 +0300)]
Fix release notes.

Change-Id: I16d4fc4644c62a7fd3cf0a9ff28c9f77fff395b3

10 years agoFix release notes to pick tickets with status pending-release/release.
Sauli Tähkäpää [Tue, 16 Sep 2014 12:17:10 +0000 (15:17 +0300)]
Fix release notes to pick tickets with status pending-release/release.

Change-Id: I88cfd3a5f71fe5471c93d816f45ef9457f8023b6

10 years agoUse div instead of notice to avoid UI removing it (#14597) 7.3.1
Manolo Carrasco [Tue, 9 Sep 2014 16:11:45 +0000 (18:11 +0200)]
Use div instead of notice to avoid UI removing it (#14597)

Change-Id: I70cf7f310ee8238a6846316d8c85b3ae4abfd67d

10 years agoFix themes build script not to overwrite all theme files on every iteration. (#14575)
Sauli Tähkäpää [Tue, 16 Sep 2014 07:09:23 +0000 (10:09 +0300)]
Fix themes build script not to overwrite all theme files on every iteration. (#14575)

Change-Id: I58d19f7f5c9e45068b6cc8a7356e41d5d5bce5b6