summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Merge changes from origin/7.2 into masterJonatan Kronqvist2014-05-051596-1962/+3565
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: build.properties client/src/com/vaadin/client/ApplicationConnection.java client/src/com/vaadin/client/extensions/ResponsiveConnector.java server/src/com/vaadin/server/Responsive.java Change-Id: I49f90521611d1b86704a60c3d003cdeea9c3b864
| * | Fast-forward DateField only with left mouse button (#8012)Teemu Pöntelin2014-05-043-2/+105
| | | | | | | | | | | | Change-Id: Ib21c650feeed1ca584b2aeefb6c694e73e12b90d
| * | Merge changes from origin/7.2Artur Signell2014-05-023-51/+135
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 08b0589 Refactored TimeoutRedirectResetsOnActivity tests. Conflicts: uitest/src/com/vaadin/tests/components/ui/TimeoutRedirectResetsOnActivityTest.java Change-Id: Id2dc47cb5396a24c97a2689c1412b29a421ac400
| * \ \ Merge changes from origin/7.2Artur Signell2014-05-021-1/+1
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 591996b Updated javadoc copyright years. Change-Id: I50856e97c276b6a6c073be34b6f4faf042e7fab6
| * \ \ \ Merge changes from origin/7.2Artur Signell2014-05-023-9/+12
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 15e24ec Fix too wide Table columns while sorting from init (#13517) a86798c Fix ScreenshotTB3Test removing reference images Change-Id: Iec1c2caceb99a6c8cfad9a0911d4a9cd7a23db36
| * | | | | Set explicit left alignment instead of removing text-align style (#13399).Denis Anisimov2014-04-304-27/+171
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I3407555739ff443055e2e61aa14327d44a65cd8e
| * | | | | Modified vaadinBootstrap to send v-loc as POST instead of GET (#13685).Tapio Aali2014-04-291-24/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since there seems to be no difference, moved also almost all other parameters from GET to POST for consistency. Change-Id: I528963c4c832339a9853fbee97cebcb8fabb35e1
| * | | | | Prevent scroll position reset on GridLayout hierarchy change (#13386)Johannes Dahlström2014-04-294-2/+167
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | State change handling by default clears measured size if the size is set to undefined; this would cause GridLayout to shrink to zero size because its child cells have position: absolute. The layout phase recomputes the size, but in some cases the browser reflows first, affecting the scroll position of the layout parent. This patch prevents GridLayout from clearing once-computed sizes during state change. Change-Id: Id6e066c3ea360083d16d3fcc5c6d7d4bb6cea8b7
| * | | | | Replace DragStartModes TB2 test with TB3 testTeemu Suo-Anttila2014-04-292-62/+46
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ief8c36aeeff2026b4beb7d73ab61f13721a2fd4f
| * | | | | Avoid client side exception on DnD for empty table (#13655).Denis Anisimov2014-04-283-2/+131
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I71c18e87760ecbff34cfe215f56390fd75f3e55c
| * | | | | Fix ComboBox cleared suggestion popup on ItemSetChange (#13635)Teemu Suo-Anttila2014-04-283-3/+120
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I77285e17819daf1b8328a8aea6d62a6b6b53510c
| * | | | | Fix Table width calculation when adding the first item (#13592)Juuso Valli2014-04-283-1/+139
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I328dd83cac0cc6ba08fa32a1227f10ece9b52d6f
| * | | | | Ensure session is set before writing timeout interval (#13617)Artur Signell2014-04-282-1/+97
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I4a4f85fe400b9d6e60b81fd5c6c8dbc3b3eac02c
| * | | | | Fix ComboBox popup scrolling when paging disabled (#13488)mtzukanov2014-04-253-4/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added pagelength == 0 conditions on scroll and hasNextPage. Change-Id: I42c0eb56d42cc54ff57a6bc6b9eee2f6734315bb
| * | | | | Fix TextArea with enter keyboard shortcut (#12424)Markus Koivisto2014-04-253-0/+245
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a keyboardshortcut has been added to anywhere on the page, the previous behaviour would cause the keyboardshortcut event to be processeed before the newline was processed. The end result was that newlines were never added when typing in the TextArea. Keyboard shortcuts operate on KeyDown events. By adding a listener for these events and stopping their propagation when the ENTER key is pressed, this unwanted behaviour can be averted, and the user can enter multi-line text in a TextArea even when Enter is used as a keyboard shortcut. Obviously, this means that the keyboard shortcut will not work as long as the TextArea widget has focus. This is the new intended behaviour. Change-Id: Ied438acb8589df498e5634271e486517bf6ac41e
| * | | | | Update uitest/ivy.xml to use TestBench 4.0.0.alpha1 (#13625)Teemu Suo-Anttila2014-04-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I141ffe924bb404bc282a6c7c81e5203a7c5cfda0
| * | | | | Apply layout after remove tab in Accordion (#11366, #13423)Denis Anisimov2014-04-253-0/+138
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ia56729d2d533697bea78bdb1de6b2710e166893a
| * | | | | Fix missing TreeTable column lines in IE8 (#12989)Juuso Valli2014-04-251-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Iddc6ecd5f455d28a43a67cdbf22cf81dbf3a6a5b
| * | | | | Fix Table.sort(...) to update the sort indicator (#8978)Juuso Valli2014-04-253-1/+203
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I2df7de7648a8a311a913267ef0d0d0e57f52f19d
| * | | | | Report an error if RPC interface is parameterized (#10392).Denis Anisimov2014-04-242-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I887c14b1df282c56a1e839eae5a4534501fa3911
| * | | | | Disable test which changes global behavior of the servletArtur Signell2014-04-241-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ia9249d76e12217089d9214573a4363fdde94d1e4
| * | | | | Support running tests on PhantomJSArtur Signell2014-04-232-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I32bda24fbb8a104a9867b7889a74d3c159bbf516
| * | | | | Clarify comments in Table.typeIsCompatible (#8168)Juuso Valli2014-04-231-16/+2
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Idc9b2e2052afe2b5586904c535674ec686bb4685
| * | | | | Fix findUI throwing NullPointerException when extending Vaadin (#13556)Juuso Valli2014-04-232-1/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | findUI sometimes threw a NPE when the session wasn't set but the UI ID was. Doesn't occur in normal use, just when doing custom things with requestStart/requestEnd or runPendingAccessTasks Change-Id: Id7733567923fa30dcab4946c43b73200c2a0fac2
| * | | | | Add caching support for PublishedFileHandler (#13574)Juuso Valli2014-04-234-1/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add caching support for PublishedFileHandler similar to VaadinServlet. Testing is done manually as browser caching is difficult to develop tests for. Change-Id: I314745766c9feb60758547dba77eb9e13976ce91
| * | | | | Fixed javadoc XHTML to HTML and fixed typos (#13518)Markus Koivisto2014-04-231-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I9a61031b0ba786098db51d77d8c73dc9fb36aeb9
| * | | | | Clean Table.propertyValueConverters if the property is removed (#8168)Juuso Valli2014-04-232-9/+445
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clean Table.propertyValueConverters if the property it attached to is removed, or if the container is changed and the new container does not contain a property with that identifier with a matching type. Change-Id: I894ee6462ea7b9c1f9138a24fcb84db829165c7d
| * | | | | Javadoc fixArtur Signell2014-04-231-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: If07374ae79b6970ccdd47e24aecb866bd5bbc838
| * | | | | Clarify lock check assert message if another session is locked (#13473)Leif Åstrand2014-04-171-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I1120ad5acd553e22db95e3635fffbd453fd26310
| * | | | | Fix test depending on default localeJuuso Valli2014-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I4b90e01ddaa4535131df3262ac53a1e2e634b2ac
| * | | | | Use getChildComponents in PopupView instead of getChildren (#13503)Denis Anisimov2014-04-163-4/+104
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ifd155376804e2403c55a115186df2b2c1c673334
| * | | | | ContainerEventProvider returns style names from container. Fixes #10718Maciej Przepióra2014-04-162-2/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ContainerEventProvider doesn't actually return style names from container in certain situations (copy-pasted code). This patch fixes the problem. Change-Id: I512ea260f34a6db0572b614db393699da152fa8d
| * | | | | Remove redundant toggling of calendarToggle enabled state (#13124)Leif Åstrand2014-04-151-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the original changes for #13124 in how calendarToggle is enabled and disabled, the toggling performed by the connector is no longer needed and can be removed. Change-Id: I74fc1c5b2b8768f42f344478c5dad24eef11d8e6
| * | | | | Drag image for text-area should contain text of text-area (#13557).Denis Anisimov2014-04-155-1/+200
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I4c3da88e80b5516bc8f6dc0eb8020ca4dcdf43fc
| * | | | | Disable/enable text field for DateField on setEnable() method (#13124).Denis Anisimov2014-04-154-6/+36
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I49222e44f75ff228219042360f1764077da1016c
| * | | | | Merge changes from origin/7.2Build Agent2014-04-149-123/+10455
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e697d8b Merge "Merge branch 'master' into 7.2" into 7.2 4879639 Redo Push reconnect tests. 8314e3c Downgrade Atmosphere client jQuery 2.0.3 -> 1.11.0. (#13374) dab3e63 Disable PopupView Animations (#13593) 3ba1e69 Update to Atmosphere js 2.1.5.vaadin2 (#13578) Change-Id: I8205b1d1debeb7c2fd6585021ea76a77abd8403b
| * \ \ \ \ \ No-op merge from origin/7.2Build Agent2014-04-140-0/+0
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 416e2f9 Merge branch 'master' into 7.2 Change-Id: Ib4bfc6c631c66384096be50a3445cd8b64059265
| * \ \ \ \ \ \ Merge changes from origin/7.2Artur Signell2014-04-1423-608/+283
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d2e24fe Update some APIs based on the 7.2 API review comments 758f26b Fix NPE when removing tabsheet (#13402) Change-Id: Ic23793738c866d3b6d1a376f37dc4a56f72b8e43
| * | | | | | | | Fix copyright headers not passing the validationLeif Åstrand2014-04-145-21/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also let through some other formatting changes that Eclipse insisted on when saving the touched files. Change-Id: I319de35c4862555b010d6da6d4a5e096619e2c34
* | | | | | | | | Remove the automerge scriptJonatan Kronqvist2014-05-051-165/+0
| |_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes it impossible to run this script by mistake, as it should no longer be used with the new master based workflow. Change-Id: I0400ecb20bb135c09e0414196f692dd8e9ffa510
* | | | | | | | Update remaining copyright years to 2014Artur Signell2014-04-23129-139/+139
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I1fc2bd735b538ebac6d4f41fc8536f26795cc85f
* | | | | | | | Merge changes from origin/7.1Artur Signell2014-04-237-53/+304
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9c29442 Replace SelectionRangeDragging TB2 test with TB3 test 9fa230d Avoid eagerly layouting from VScrollTable.updateFromUIDL (#13188) Change-Id: I4f1395a13e8b1eae44a0030a3679475a3db9160a
| * | | | | | | | Avoid eagerly layouting from VScrollTable.updateFromUIDL (#13188)Tomi Virtanen2014-04-175-1/+226
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closing a modal sub-window at the same time when TreeTable item is removed, caused the detached Window being re-opened by WindowConnector.postLayout() call. This change adds a check in postLayout: continue operation only if the window is attached to DOM. Or else, log a warning message about the invalid postLayout call. Another change is in TreeTableConnector and VScrollTable to disallow Util.notifyParentOfSizeChange(Widget, boolean) with a boolean 'false' argument, when rendering is in progress. 'false' causes an immediate LayoutManager.layoutNow() call, which is the main reason for this issue. Change-Id: I6f3e331b0feff9e7814ae1d749f6f7812dcd49ac
| * | | | | | | | Replace SelectionRangeDragging TB2 test with TB3 testTeemu Suo-Anttila2014-04-162-52/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ic60e13b94e550c0457649ef093c8d6269a7efa19
* | | | | | | | | Merge changes from origin/7.1Artur Signell2014-04-231459-1630/+1630
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e77e73c Update copyright year to 2014 Conflicts: client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ConnectorBundle.java client/src/com/vaadin/client/ApplicationConnection.java server/src/com/vaadin/data/util/converter/StringToNumberConverter.java shared/src/com/vaadin/shared/ui/ui/PageState.java shared/src/com/vaadin/shared/ui/window/WindowState.java theme-compiler/src/com/vaadin/sass/SassCompiler.java theme-compiler/src/com/vaadin/sass/internal/ScssStylesheet.java theme-compiler/src/com/vaadin/sass/internal/expression/ArithmeticExpressionEvaluator.java theme-compiler/src/com/vaadin/sass/internal/expression/BinaryExpression.java theme-compiler/src/com/vaadin/sass/internal/expression/BinaryOperator.java theme-compiler/src/com/vaadin/sass/internal/expression/exception/ArithmeticException.java theme-compiler/src/com/vaadin/sass/internal/expression/exception/IncompatibleUnitsException.java theme-compiler/src/com/vaadin/sass/internal/handler/SCSSDocumentHandler.java theme-compiler/src/com/vaadin/sass/internal/handler/SCSSDocumentHandlerImpl.java theme-compiler/src/com/vaadin/sass/internal/handler/SCSSErrorHandler.java theme-compiler/src/com/vaadin/sass/internal/parser/CharStream.java theme-compiler/src/com/vaadin/sass/internal/parser/Generic_CharStream.java theme-compiler/src/com/vaadin/sass/internal/parser/LexicalUnitImpl.java theme-compiler/src/com/vaadin/sass/internal/parser/LocatorImpl.java theme-compiler/src/com/vaadin/sass/internal/parser/MediaListImpl.java theme-compiler/src/com/vaadin/sass/internal/parser/ParseException.java theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java theme-compiler/src/com/vaadin/sass/internal/parser/ParserConstants.java theme-compiler/src/com/vaadin/sass/internal/parser/ParserTokenManager.java theme-compiler/src/com/vaadin/sass/internal/parser/SCSSLexicalUnit.java theme-compiler/src/com/vaadin/sass/internal/parser/SCSSParseException.java theme-compiler/src/com/vaadin/sass/internal/parser/SelectorListImpl.java theme-compiler/src/com/vaadin/sass/internal/parser/Selectors.java theme-compiler/src/com/vaadin/sass/internal/parser/ThrowedParseException.java theme-compiler/src/com/vaadin/sass/internal/parser/Token.java theme-compiler/src/com/vaadin/sass/internal/parser/TokenMgrError.java theme-compiler/src/com/vaadin/sass/internal/resolver/ClassloaderResolver.java theme-compiler/src/com/vaadin/sass/internal/resolver/FilesystemResolver.java theme-compiler/src/com/vaadin/sass/internal/resolver/ScssStylesheetResolver.java theme-compiler/src/com/vaadin/sass/internal/resolver/VaadinResolver.java theme-compiler/src/com/vaadin/sass/internal/selector/SelectorUtil.java theme-compiler/src/com/vaadin/sass/internal/tree/BlockNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ExtendNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ForNode.java theme-compiler/src/com/vaadin/sass/internal/tree/FunctionNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ImportNode.java theme-compiler/src/com/vaadin/sass/internal/tree/KeyframesNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ListContainsNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ListModifyNode.java theme-compiler/src/com/vaadin/sass/internal/tree/ListRemoveNode.java theme-compiler/src/com/vaadin/sass/internal/tree/MediaNode.java theme-compiler/src/com/vaadin/sass/internal/tree/MicrosoftRuleNode.java theme-compiler/src/com/vaadin/sass/internal/tree/MixinDefNode.java theme-compiler/src/com/vaadin/sass/internal/tree/MixinNode.java theme-compiler/src/com/vaadin/sass/internal/tree/NestPropertiesNode.java theme-compiler/src/com/vaadin/sass/internal/tree/Node.java theme-compiler/src/com/vaadin/sass/internal/tree/RuleNode.java theme-compiler/src/com/vaadin/sass/internal/tree/SimpleNode.java theme-compiler/src/com/vaadin/sass/internal/tree/VariableNode.java theme-compiler/src/com/vaadin/sass/internal/tree/controldirective/EachDefNode.java theme-compiler/src/com/vaadin/sass/internal/tree/controldirective/IfElseDefNode.java theme-compiler/src/com/vaadin/sass/internal/tree/controldirective/IfNode.java theme-compiler/src/com/vaadin/sass/internal/util/ColorUtil.java theme-compiler/src/com/vaadin/sass/internal/util/DeepCopy.java theme-compiler/src/com/vaadin/sass/internal/util/FastByteArrayInputStream.java theme-compiler/src/com/vaadin/sass/internal/util/FastByteArrayOutputStream.java theme-compiler/src/com/vaadin/sass/internal/util/StringUtil.java theme-compiler/src/com/vaadin/sass/internal/visitor/BlockNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/EachNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/ExtendNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/IfElseNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/ImportNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/MixinNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/NestedNodeHandler.java theme-compiler/src/com/vaadin/sass/internal/visitor/VariableNodeHandler.java theme-compiler/tests/src/com/vaadin/sass/AbstractTestBase.java theme-compiler/tests/src/com/vaadin/sass/internal/expression/ArithmeticExpressionEvaluatorTest.java theme-compiler/tests/src/com/vaadin/sass/parser/ParserTest.java theme-compiler/tests/src/com/vaadin/sass/resolvers/VaadinResolverTest.java theme-compiler/tests/src/com/vaadin/sass/testcases/css/Interpolation.java theme-compiler/tests/src/com/vaadin/sass/testcases/css/Selectors.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/AbstractDirectoryScanningSassTests.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/AutomaticSassTests.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Comments.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/ControlDirectives.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Extends.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Functions.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Imports.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Mixins.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/NestedProperties.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Nesting.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/ParentImports.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/ParentSelector.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/SassLangTests.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/SassLangTestsBroken.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/SassTestRunner.java theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Variables.java theme-compiler/tests/src/com/vaadin/sass/tree/ImportNodeTest.java uitest/src/com/vaadin/tests/push/BasicPushTest.java uitest/src/com/vaadin/tests/push/PushConfigurationTest.java uitest/src/com/vaadin/tests/push/PushReconnectTest.java Change-Id: Ic08c4f9aecd4c684ce74408de4e0b0d0ff617273
| * | | | | | | | Update copyright year to 2014Artur Signell2014-04-161549-1726/+1726
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ic77338304dc7e58e49f27dcdaf0bab2e00f5bba6
* | | | | | | | | Merge changes from origin/7.1Artur Signell2014-04-2314-57/+436
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0d4080b ContainerEventProvider returns style names from container. Fixes #10718 6e91bdf Add test for TransactionalPropertyWrapper memory leaks f0aaf89 Fixed resetting of ComboBox if focused and new items allowed (#13413). e033fcd Always initialize WebBrowser for new sessions (#13571) 168de1f Revert "Drag image for text-area should contain text of text-area (#13557)" 35e2a34 Fix FieldGroup and TransactionalPropertyWrapper memory leaks (#13438) 7e5d44d Introduce a drag threshold for Drag and Drop (#13381) f227f0c Drag image for text-area should contain text of text-area (#13557). Change-Id: Idb01471f8ab0c7118fa884c364e6bc200d13948a
| * | | | | | | | ContainerEventProvider returns style names from container. Fixes #10718Maciej Przepióra2014-04-162-2/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ContainerEventProvider doesn't actually return style names from container in certain situations (copy-pasted code). This patch fixes the problem. Change-Id: I512ea260f34a6db0572b614db393699da152fa8d (cherry picked from commit 4709b75bb47d28630dacbb240bb43de16d972371)
| * | | | | | | | Add test for TransactionalPropertyWrapper memory leaksTeemu Suo-Anttila2014-04-142-1/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I69d0d759f95100f1dd9e2dbba57ec2c246e3aca9
| * | | | | | | | Fixed resetting of ComboBox if focused and new items allowed (#13413).Tapio Aali2014-04-143-1/+119
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ibea81666101ff119e1b3e48726224f369e59b00f