hg: openjfx/8u-dev/rt: [SCENEBUILDER] Fix DTL-6793 : Wrap In commands may not keep children order

2014-07-17 Thread sandra . lions-piron
Changeset: ca6d3a083a4c
Author:slions
Date:  2014-07-17 11:31 +0200
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/ca6d3a083a4c

[SCENEBUILDER] Fix DTL-6793 : Wrap In commands may not keep children order

! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/AbstractWrapInContentJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/AbstractWrapInJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/AbstractWrapInSubComponentJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/UnwrapJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInAnchorPaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInFlowPaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInGridPaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInGroupJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInHBoxJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInPaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInScrollPaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInSplitPaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInStackPaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInTabPaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInTilePaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInTitledPaneJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInToolBarJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapInVBoxJob.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/editor/job/wrap/WrapJobUtils.java



hg: openjfx/8u-dev/rt: Fix for RT-37857 [Monocle] Implement native cursor for odroid

2014-07-17 Thread lisa . selle
Changeset: cb274afd0401
Author:lisa.se...@oracle.com
Date:  2014-07-17 09:56 -0400
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/cb274afd0401

Fix for RT-37857 [Monocle] Implement native cursor for odroid

Reviewed by dblaukopf
Tested with HelloSanity

! modules/graphics/src/main/java/com/sun/glass/ui/monocle/X.java
! 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/X11AcceleratedScreen.java
+ modules/graphics/src/main/java/com/sun/glass/ui/monocle/X11Cursor.java
! modules/graphics/src/main/java/com/sun/glass/ui/monocle/X11Platform.java
! modules/graphics/src/main/java/com/sun/glass/ui/monocle/X11Screen.java
+ modules/graphics/src/main/java/com/sun/glass/ui/monocle/X11WarpingCursor.java
! modules/graphics/src/main/native-glass/monocle/x11/X11.c



Package change in jdk-8u11-windows-x64

2014-07-17 Thread Peter Penzov
HI All,
I tried to compile ControlsFX with the latest Java release
jdk-8u11-windows-x64 but I get error that these packages are not found:


import com.sun.javafx.scene.traversal.ParentTraversalEngine;
import com.sun.javafx.scene.traversal.TraversalContext;

Can you tell me where is the new location if just the location is changed
so I can fix the imports?

BR,
Peter


Re: Package change in jdk-8u11-windows-x64

2014-07-17 Thread Kevin Rushforth
You probably already know this, but importing from a com.sun.* package 
is not supported. These packages are internal implementation, and the 
classes and methods are subject to change or removal at any time.


Having said that, this class was introduced in 8u20 so I wouldn't expect 
to see it in 8u11.


-- Kevin


Peter Penzov wrote:

HI All,
I tried to compile ControlsFX with the latest Java release
jdk-8u11-windows-x64 but I get error that these packages are not found:


import com.sun.javafx.scene.traversal.ParentTraversalEngine;
import com.sun.javafx.scene.traversal.TraversalContext;

Can you tell me where is the new location if just the location is changed
so I can fix the imports?

BR,
Peter
  


Re: Package change in jdk-8u11-windows-x64

2014-07-17 Thread Peter Penzov
Is there any to fix the problem?


On Thu, Jul 17, 2014 at 6:18 PM, Kevin Rushforth kevin.rushfo...@oracle.com
 wrote:

 You probably already know this, but importing from a com.sun.* package is
 not supported. These packages are internal implementation, and the classes
 and methods are subject to change or removal at any time.

 Having said that, this class was introduced in 8u20 so I wouldn't expect
 to see it in 8u11.

 -- Kevin



 Peter Penzov wrote:

 HI All,
 I tried to compile ControlsFX with the latest Java release
 jdk-8u11-windows-x64 but I get error that these packages are not found:


 import com.sun.javafx.scene.traversal.ParentTraversalEngine;
 import com.sun.javafx.scene.traversal.TraversalContext;

 Can you tell me where is the new location if just the location is changed
 so I can fix the imports?

 BR,
 Peter





hg: openjfx/8u-dev/rt: Fix to RT-33209: Support 3D on the embedded platform

2014-07-17 Thread chien . yang
Changeset: b15131b2d7dd
Author:Chien Yang chien.y...@oracle.com
Date:  2014-07-17 09:24 -0700
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/b15131b2d7dd

Fix to RT-33209: Support 3D on the embedded platform
reviewed by kcr, lisa

! modules/base/src/main/java/com/sun/javafx/PlatformUtil.java
! modules/graphics/src/main/java/com/sun/prism/es2/ES2Pipeline.java
! modules/graphics/src/main/java/javafx/scene/shape/Shape3D.java



Re: hg: openjfx/8u-dev/rt: RT-37832: [packager] Mac App Store Bundler fails to strip jfxmedia.dylib and strips Info.plist

2014-07-17 Thread Danno Ferrin
FYI b23 just went live on the EA site: 

https://jdk8.java.net/download.html



 
 
 On Tuesday, July 8, 2014 3:18 PM, Kevin Rushforth 
 kevin.rushfo...@oracle.com wrote:
 
 
 As soon as EA builds of 8u40 start up (nor sure exactly when but likely in 1 
 or 2 weeks) you can get the fix from 8u40-b01. If you don't mind using JDK 9, 
 the fix will be in 9-b22 which should be out on Friday or Monday.
 
 Not sure when / if 8u20-b23 will be available (it's the GA candidate build 
 and those are often not posted on java.net).
 
 -- Kevin
 
 
 Tony Anecito wrote:
 Ok. Something odd happened I never seen before and acts like issue might be 
 with Info.pList in the pkg file. The app file works just fine.
 
 -Tony
 
 
 On Tuesday, July 8, 2014 2:59 PM, Danno Ferrin danno.fer...@oracle.com 
 wrote:
 
 
 The Info.plist in the plugins dir.  i.e. 
 app/Contents/PlugIns/jdk_name/Contents/Info.plist - we should be 
 preserving this as I believe apple checks the meta-data for it.  I still 
 haven’t been able to sign it in a way the ApplicationLoader won’t complain, 
 but it is just a warning at the moment.
 
 It’s been broken since b18, the second week of June.
 
 As for when b23 will appear, that’s always been above my pay grade.  The fix 
 is in the 8u40 line at the moment, and to get stuff into 8u20 involves 
 committee approval now.  Looks good, but I don’t sit in or listen into those 
 meetings.  The HG repo to keep an eye on is 
 http://hg.openjdk.java.net/openjfx/8u20/rt/, and I missed the b22 build but 
 the repo isn’t reflecting that yet.
 
 On Jul 8, 2014, at 2:02 PM, Tony Anecito adanec...@yahoo.com wrote:
 
  Thanks Kevin. I know why the media libraries need to not be present but 
  not what the stripped Info.plist means.
  
  So when might b23 appear?
  
  Thanks,
  -Tony
  
  
  
  On Tuesday, July 8, 2014 1:53 PM, Kevin Rushforth 
  kevin.rushfo...@oracle.com wrote:
  
  
  
  Danno will answer the first question (it is related to needing to omit 
  the media libraries). As to when it will appear, if it is approved for 
  inclusion into 8u20 it will be in b23.
  
  -- Kevin
  
  
  
  Tony Anecito wrote:
  Hi Danno,
  
  What do you mean by strips Info.plist? I am having a strange problem 
  using b20 and wondering if it is related to what you meant by stripped 
  Info.plist.
  Also, what build will this be fixed in?
  
  Thanks,
  -Tony
  
  
  
  On Monday, July 7, 2014 2:46 PM, danno.fer...@shemnon.com 
  danno.fer...@shemnon.com wrote:
   
  
  
  Changeset: 7398ae52202d
  Author:shemnon
  Date:  2014-07-07 10:51 -0600
  URL:  http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/7398ae52202d
  
  RT-37832: [packager] Mac App Store Bundler fails to strip jfxmedia.dylib 
  and strips Info.plist
  Summary: unit test for file verifications
  
  ! 
  modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacAppStoreBundlerTest.java
   
 
 
 
 



hg: openjfx/8u-dev/rt: 3 new changesets

2014-07-17 Thread kevin . rushforth
Changeset: 189408c0ff70
Author:hudson
Date:  2014-07-16 08:33 -0700
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/189408c0ff70

Added tag 8u20-b23 for changeset 286ceb40550c

! .hgtags

Changeset: fb2c6cb178c1
Author:mtvo
Date:  2014-07-16 13:54 -0700
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/fb2c6cb178c1

RT-3: Change the milestone of Java FX 8u20 to fcs from ea. Reviewed by kcr.

! build.properties

Changeset: 0d6d668824a0
Author:kcr
Date:  2014-07-17 10:28 -0700
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/0d6d668824a0

Automated merge with http://hg.openjdk.java.net/openjfx/8u20/rt

- .idea/rt-tests.iml
! build.properties
- modules/graphics/src/main/java/com/sun/glass/ui/PlatformAccessible.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/dispman/DispmanAcceleratedScreen.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/dispman/DispmanCursor.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/dispman/DispmanPlatform.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/dispman/DispmanPlatformFactory.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/dispman/DispmanScreen.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/headless/HeadlessPlatform.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/headless/HeadlessPlatformFactory.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/headless/HeadlessScreen.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/InputDevice.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/InputDeviceRegistry.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/KeyInput.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/KeyState.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/MouseInput.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/MouseInputSynthesizer.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/MouseState.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/TouchInput.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/TouchState.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/filters/AssignPointIDTouchFilter.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/filters/LookaheadTouchFilter.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/filters/NearbyPointsTouchFilter.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/filters/SmallMoveTouchFilter.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/filters/TouchFilter.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/input/filters/TouchPipeline.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/AbsoluteInputCapabilities.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/FBDevScreen.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/GetEvent.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/Input.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/KeyBits.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxEventBuffer.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxEventBuffers.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxFrameBuffer.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxInputDevice.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxInputDeviceRegistry.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxInputProcessor.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxKeyProcessor.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxMouseProcessor.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxPlatform.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxPlatformFactory.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxSimpleTouchProcessor.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxStatefulMultiTouchProcessor.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxStatelessMultiTouchProcessor.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxSystem.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxTouchProcessor.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/LinuxTouchTransform.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/SysFS.java
- modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/Udev.java
- 
modules/graphics/src/main/java/com/sun/glass/ui/monocle/linux/UdevListener.java
- 

hg: openjfx/8u-dev/rt: [Accessibility] javadoc fixes for AccessibleRole

2014-07-17 Thread felipe . heidrich
Changeset: ef2af7e0bf8b
Author:Felipe Heidrich felipe.heidr...@oracle.com
Date:  2014-07-17 10:32 -0700
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/ef2af7e0bf8b

[Accessibility] javadoc fixes for AccessibleRole

! modules/graphics/src/main/java/javafx/scene/AccessibleRole.java



Re: hg: openjfx/8u-dev/rt: RT-37832: [packager] Mac App Store Bundler fails to strip jfxmedia.dylib and strips Info.plist

2014-07-17 Thread Tony Anecito
Thanks I will download it.

-Tony



On Thursday, July 17, 2014 10:33 AM, Danno Ferrin danno.fer...@oracle.com 
wrote:
 


FYI b23 just went live on the EA site: 

https://jdk8.java.net/download.html








On Tuesday, July 8, 2014 3:18 PM, Kevin Rushforth kevin.rushfo...@oracle.com 
wrote:
 


As soon as EA builds of 8u40 start up (nor sure exactly when but likely
in 1 or 2 weeks) you can get the fix from 8u40-b01. If you don't mind
using JDK 9, the fix will be in 9-b22 which should be out on Friday or
Monday.

Not sure when / if 8u20-b23 will be available (it's the GA candidate
build and those are often not posted on java.net).

-- Kevin


Tony Anecito wrote: 
Ok. Something odd happened I never seen before and acts
like issue might be with Info.pList in the pkg file. The app file works
just fine.


-Tony




On Tuesday, July 8,
2014 2:59 PM, Danno Ferrin danno.fer...@oracle.com wrote:
 


The Info.plist in the plugins dir.  i.e.
app/Contents/PlugIns/jdk_name/Contents/Info.plist - we
should be preserving this as I believe apple checks the meta-data for
it.  I still haven’t been able to sign it in a way the
ApplicationLoader won’t complain, but it is just a warning at the
moment.

It’s been broken since b18, the second week of June.

As for when b23 will appear, that’s always been above my pay grade. 
The fix is in the 8u40 line at the moment, and to get stuff into 8u20
involves committee approval now.  Looks good, but I don’t sit in or
listen into those meetings.  The HG repo to keep an eye on is 
http://hg.openjdk.java.net/openjfx/8u20/rt/, and I missed the b22 build but the 
repo isn’t reflecting that yet.


On Jul 8, 2014, at 2:02 PM, Tony Anecito adanec...@yahoo.com wrote:

 Thanks Kevin. I know why the media libraries need to not be
present but not what the stripped Info.plist means.
 
 So when might b23 appear?
 
 Thanks,
 -Tony
 
 
 
 On Tuesday, July 8, 2014 1:53 PM, Kevin Rushforth 
 kevin.rushfo...@oracle.com
wrote:
 
 
 
 Danno will answer the first question (it is related to needing to
omit 
 the media libraries). As to when it will appear, if it is approved
for 
 inclusion into 8u20 it will be in b23.
 
 -- Kevin
 
 
 
 Tony Anecito wrote:
 Hi Danno,
 
 What do you mean by strips Info.plist? I am having a strange
problem using b20 and wondering if it is related to what you meant by
stripped Info.plist.
 Also, what build will this be fixed in?
 
 Thanks,
 -Tony
 
 
 
 On Monday, July 7, 2014 2:46 PM, danno.fer...@shemnon.com
danno.fer...@shemnon.com
wrote:
  
 
 
 Changeset: 7398ae52202d
 Author:    shemnon
 Date:      2014-07-07 10:51 -0600
 URL:      http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/7398ae52202d
 
 RT-37832: [packager] Mac App Store Bundler fails to strip
jfxmedia.dylib and strips Info.plist
 Summary: unit test for file verifications
 
 !
modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacAppStoreBundlerTest.java
  







hg: openjfx/8u-dev/rt: Many improvements to Modena CSS for Spinner.

2014-07-17 Thread jasper . potts
Changeset: 1de821d7599b
Author:Jasper Potts
Date:  2014-07-17 13:55 -0700
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/1de821d7599b

Many improvements to Modena CSS for Spinner.
Added Spinners to Modena sample application

! apps/samples/Modena/src/main/java/modena/SamplePage.java
! 
modules/controls/src/main/resources/com/sun/javafx/scene/control/skin/modena/modena.css



Re: Package change in jdk-8u11-windows-x64

2014-07-17 Thread Jonathan Giles

Peter,

This discussion should never have come to openjfx-dev. You should be 
posting ControlsFX questions to the controlsfx-dev list at 
http://groups.controlsfx.org

You also posted a bug report at [1] which I have just responded to.

In short, Kevin is right. ControlsFX has two branches - one targeted for 
8 and the other for 8u20. You are trying to build the 8u20 branch with 
8u11. This will not work and you need to clone the default branch, 
rather than the 8u20 branch.


Sorry on behalf of the ControlsFX project for leaking discussion over 
into openjfx-dev.


[1] 
https://bitbucket.org/controlsfx/controlsfx/issue/296/comsunjavafxscenetraversalparenttraversale


-- Jonathan

On 18/07/2014 4:30 a.m., Kevin Rushforth wrote:
What problem? ControlsFX is using classes / methods (never mind for 
the moment that they are not public APIs) from a *newer* version than 
the one you are trying to run them on. This won't work. so the fix is 
for you to use 8u20 and not 8u11.


-- Kevin


Peter Penzov wrote:

Is there any to fix the problem?


On Thu, Jul 17, 2014 at 6:18 PM, Kevin Rushforth 
kevin.rushfo...@oracle.com mailto:kevin.rushfo...@oracle.com wrote:


You probably already know this, but importing from a com.sun.*
package is not supported. These packages are internal
implementation, and the classes and methods are subject to change
or removal at any time.

Having said that, this class was introduced in 8u20 so I wouldn't
expect to see it in 8u11.

-- Kevin



Peter Penzov wrote:

HI All,
I tried to compile ControlsFX with the latest Java release
jdk-8u11-windows-x64 but I get error that these packages are
not found:


import com.sun.javafx.scene.traversal.ParentTraversalEngine;
import com.sun.javafx.scene.traversal.TraversalContext;

Can you tell me where is the new location if just the location
is changed
so I can fix the imports?

BR,
Peter






RFR: Fix for RT-37480: Incorrect paper sizes and margins

2014-07-17 Thread Phil Race

https://javafx-jira.kenai.com/browse/RT-37480