hg: openjfx/8/controls/rt: 12 new changesets

hang.vo at oracle.com hang.vo at oracle.com
Tue Nov 20 08:19:01 PST 2012


Changeset: 37cdc2382b25
Author:    David Grieve<david.grieve at oracle.com>
Date:      2012-11-20 10:34 -0500
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/37cdc2382b25

unit test fixes and ignores

! javafx-ui-common/test/unit/com/sun/javafx/css/Node_cssStyleMap_Test.java
! javafx-ui-common/test/unit/com/sun/javafx/css/StyleManagerTest.java
! javafx-ui-common/test/unit/com/sun/javafx/css/StyleablePropertyTest.java

Changeset: f5e438202f2d
Author:    rbair
Date:      2012-11-06 14:59 -0800
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/f5e438202f2d

Open source of decora-compiler

+ decora-compiler/.classpath
+ decora-compiler/.project
+ decora-compiler/build.xml
+ decora-compiler/nbproject/project.xml
+ decora-compiler/project.properties
+ decora-compiler/src/com/sun/scenario/effect/compiler/JSL.g
+ decora-compiler/src/com/sun/scenario/effect/compiler/JSLC.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/hw/ES2Backend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/hw/GLSLBackend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/hw/HLSLBackend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/hw/SLBackend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/j2d/jogl/JOGLBackend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/j2d/jogl/JOGLGlue.stg
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/j2d/rsl/RSLBackend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/j2d/rsl/RSLGlue.stg
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/prism/PrismBackend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/prism/PrismGlue.stg
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/java/JSWBackend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/java/JSWCallScanner.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/java/JSWFuncImpls.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/java/JSWGlue.stg
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/java/JSWTreeScanner.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/me/MEBackend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/me/MECallScanner.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/me/MEFuncImpls.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/me/MEJavaGlue.stg
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/me/MENativeGlue.stg
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/me/METreeScanner.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/sse/SSEBackend.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/sse/SSECallScanner.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/sse/SSEFuncImpls.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/sse/SSEJavaGlue.stg
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/sse/SSENativeGlue.stg
+ decora-compiler/src/com/sun/scenario/effect/compiler/backend/sw/sse/SSETreeScanner.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/BaseType.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/BinaryOpType.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/CoreSymbols.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/FuncImpl.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/Function.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/Param.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/Precision.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/Qualifier.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/SymbolTable.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/Type.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/UnaryOpType.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/model/Variable.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/ArrayAccessExpr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/BinaryExpr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/BreakStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/CallExpr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/CompoundStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/ContinueStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/DeclStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/DiscardStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/DoWhileStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/Expr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/ExprStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/ExtDecl.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/FieldSelectExpr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/ForStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/FuncDef.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/GlueBlock.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/LiteralExpr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/ParenExpr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/ProgramUnit.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/ReturnStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/SelectStmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/Stmt.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/Tree.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/TreeMaker.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/TreeScanner.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/TreeVisitor.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/UnaryExpr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/VarDecl.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/VariableExpr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/VectorCtorExpr.java
+ decora-compiler/src/com/sun/scenario/effect/compiler/tree/WhileStmt.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/SymbolTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/lexer/BoolTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/lexer/CommentTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/lexer/FloatTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/lexer/IdentifierTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/lexer/IntegerTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/lexer/LexerBase.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/lexer/LineCommentTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/lexer/TypeTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/lexer/WhitespaceTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/AddExprTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/AssignmentExprTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/EqualityExprTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/Expressions.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/ExternalDeclarationTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/FieldSelectTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/FullySpecifiedTypeTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/IterationStatementTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/JumpStatementTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/MultExprTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/ParserBase.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/PrimaryExprTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/RelationalExprTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/SelectionStatementTest.java
+ decora-compiler/test/com/sun/scenario/effect/compiler/parser/UnaryExprTest.java

Changeset: 7995eb685119
Author:    peterz
Date:      2012-11-07 07:33 +0400
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/7995eb685119

RT-22493 WebView should use Toolkit for initialization

! javafx-ui-common/src/com/sun/javafx/tk/DummyToolkit.java
! javafx-ui-common/src/com/sun/javafx/tk/Toolkit.java
! test-stub-toolkit/build-closed.xml
! test-stub-toolkit/src/com/sun/javafx/pgstub/StubToolkit.java
+ test-stub-toolkit/src/com/sun/javafx/pgstub/StubWebView.java

Changeset: d3eeaeeb85bd
Author:    Martin Sladecek <martin.sladecek at oracle.com>
Date:      2012-11-07 14:30 +0100
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/d3eeaeeb85bd

RT-26094 Event classes should have serialVersionUID

! javafx-ui-common/src/com/sun/javafx/stage/FocusUngrabEvent.java
! javafx-ui-common/src/javafx/scene/input/ContextMenuEvent.java
! javafx-ui-common/src/javafx/scene/input/DragEvent.java
! javafx-ui-common/src/javafx/scene/input/GestureEvent.java
! javafx-ui-common/src/javafx/scene/input/InputEvent.java
! javafx-ui-common/src/javafx/scene/input/InputMethodEvent.java
! javafx-ui-common/src/javafx/scene/input/KeyEvent.java
! javafx-ui-common/src/javafx/scene/input/MouseDragEvent.java
! javafx-ui-common/src/javafx/scene/input/MouseEvent.java
! javafx-ui-common/src/javafx/scene/input/RotateEvent.java
! javafx-ui-common/src/javafx/scene/input/ScrollEvent.java
! javafx-ui-common/src/javafx/scene/input/SwipeEvent.java
! javafx-ui-common/src/javafx/scene/input/TouchEvent.java
! javafx-ui-common/src/javafx/scene/input/ZoomEvent.java
! javafx-ui-common/src/javafx/scene/transform/TransformChangedEvent.java
! javafx-ui-common/src/javafx/stage/WindowEvent.java

Changeset: 7e871632dfe4
Author:    Felipe Heidrich <felipe.heidrich at oracle.com>
Date:      2012-11-07 21:38 -0800
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/7e871632dfe4

[ECLIPSE ONLY] fixing classpath due changes in decora

! .classpath

Changeset: ab55578e4692
Author:    kcr
Date:      2012-11-09 17:07 -0800
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/ab55578e4692

Automated merge with ssh://jfxsrc.us.oracle.com//javafx/8.0/MASTER/jfx/rt


Changeset: 09cbcb519b6d
Author:    Felipe Heidrich <felipe.heidrich at oracle.com>
Date:      2012-11-09 22:01 -0800
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/09cbcb519b6d

Merge Rich Text - RT-17392 (part1) including fixes for RT-20645, RT-24735, RT-24634, RT-24467, RT-24435, RT-24012, RT-23231, RT-16853, RT-14356

+ javafx-ui-common/src/com/sun/javafx/scene/text/GlyphList.java
+ javafx-ui-common/src/com/sun/javafx/scene/text/TextLayout.java
+ javafx-ui-common/src/com/sun/javafx/scene/text/TextLayoutFactory.java
+ javafx-ui-common/src/com/sun/javafx/scene/text/TextLine.java
+ javafx-ui-common/src/com/sun/javafx/scene/text/TextSpan.java
! javafx-ui-common/src/com/sun/javafx/tk/DummyToolkit.java
! javafx-ui-common/src/com/sun/javafx/tk/Toolkit.java
! javafx-ui-common/src/javafx/scene/shape/Shape.java
! javafx-ui-common/src/javafx/scene/text/Text.java
! javafx-ui-common/test/unit/javafx/scene/text/Text_builder_Test.java
! javafx-ui-common/test/unit/javafx/scene/text/Text_onInvalidate_Test.java
+ test-stub-toolkit/src/com/sun/javafx/pgstub/StubSpan.java
+ test-stub-toolkit/src/com/sun/javafx/pgstub/StubTextLayout.java
+ test-stub-toolkit/src/com/sun/javafx/pgstub/StubTextLayoutFactory.java
! test-stub-toolkit/src/com/sun/javafx/pgstub/StubToolkit.java

Changeset: 194fe6a98a4a
Author:    Artem Ananiev <artem.ananiev at oracle.com>
Date:      2012-11-12 11:41 -0800
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/194fe6a98a4a

com.sun.glass.taskbarApplication system property is renamed to glass.taskbarApplication

! javafx-ui-common/src/com/sun/javafx/application/PlatformImpl.java

Changeset: 5ca1d6e4604d
Author:    Martin Sladecek <martin.sladecek at oracle.com>
Date:      2012-11-13 14:40 +0100
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/5ca1d6e4604d

RT-26126 Popup menus stopped working

! javafx-ui-common/src/javafx/scene/Scene.java
! javafx-ui-common/src/javafx/scene/input/MouseEvent.java

Changeset: 38b5c364c630
Author:    jpgodine at JPGODINE-LAP.st-users.us.oracle.com
Date:      2012-11-13 09:56 -0800
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/38b5c364c630

Automated merge with ssh://jpgodine@jfxsrc.us.oracle.com//javafx/8.0/MASTER/jfx//rt

! javafx-ui-common/src/com/sun/javafx/tk/DummyToolkit.java
! javafx-ui-common/src/com/sun/javafx/tk/Toolkit.java
! javafx-ui-common/src/javafx/scene/Scene.java
! javafx-ui-common/src/javafx/scene/text/Text.java
! test-stub-toolkit/src/com/sun/javafx/pgstub/StubToolkit.java

Changeset: 5047d4016211
Author:    hudson
Date:      2012-11-15 21:18 -0800
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/5047d4016211

Added tag 8.0-b65 for changeset 38b5c364c630

! .hgtags

Changeset: ca9d915db72f
Author:    David Grieve<david.grieve at oracle.com>
Date:      2012-11-20 11:14 -0500
URL:       http://hg.openjdk.java.net/openjfx/8/controls/rt/rev/ca9d915db72f

branch merge

- javafx-ui-common/src/com/sun/javafx/css/ParentStyleManager.java
- javafx-ui-common/src/com/sun/javafx/css/SceneStyleManager.java
! javafx-ui-common/src/javafx/scene/Scene.java



More information about the openjfx-dev mailing list