[gwt-contrib] Missing JsInterop 1.0.0-SNAPSHOT

2016-09-05 Thread Colin Alworth
Looks like somehow the JsInterop jars are missing from the google-snapshots 
repo now, making it difficult to use the latest nightlies.

http://build.gwtproject.org/job/gwt/615/console shows creating, signing, 
and deploying:
Signing and Deploying ./poms/jsinterop/pom.xml to 
https://oss.sonatype.org/content/repositories/google-snapshots/
Uploading: 
https://oss.sonatype.org/content/repositories/google-snapshots//com/google/jsinterop/jsinterop/1.0.0-SNAPSHOT/jsinterop-1.0.0-20160905.055744-4.pom
1/1K
1K uploaded  (jsinterop-1.0.0-20160905.055744-4.pom)
Signing and Deploying 
/tmp/random-dir-2498515708877027498/gwt-2.8.0-SNAPSHOT/jsinterop-annotations.jar
 
to https://oss.sonatype.org/content/repositories/google-snapshots/
Uploading: 
https://oss.sonatype.org/content/repositories/google-snapshots//com/google/jsinterop/jsinterop-annotations/1.0.0-SNAPSHOT/jsinterop-annotations-1.0.0-20160905.055746-4.jar
3/3K
3K uploaded  (jsinterop-annotations-1.0.0-20160905.055746-4.jar)
Uploading: 
https://oss.sonatype.org/content/repositories/google-snapshots//com/google/jsinterop/jsinterop-annotations/1.0.0-SNAPSHOT/jsinterop-annotations-1.0.0-20160905.055746-4-sources.jar
4/8K
8/8K
8/8K
8K uploaded  (jsinterop-annotations-1.0.0-20160905.055746-4-sources.jar)
Uploading: 
https://oss.sonatype.org/content/repositories/google-snapshots//com/google/jsinterop/jsinterop-annotations/1.0.0-SNAPSHOT/jsinterop-annotations-1.0.0-20160905.055746-4-javadoc.jar
607/607b
607b uploaded  (jsinterop-annotations-1.0.0-20160905.055746-4-javadoc.jar)



But the jars can't be found in maven 
https://oss.sonatype.org/content/repositories/google-snapshots/com/google/jsinterop/jsinterop/,
 
and the latest bom depends on 
it 
https://oss.sonatype.org/content/repositories/google-snapshots/com/google/gwt/gwt/2.8.0-SNAPSHOT/gwt-2.8.0-20160905.055656-339.pom


  com.google.jsinterop
  jsinterop
  1.0.0-SNAPSHOT
  pom
  import




Oddly enough, there is a 1.0.0.j7-SNAPSHOT, apparently generated and 
deployed from http://build.gwtproject.org/job/gwt-java7/, but unless you 
happen to use GWT 2.8.0.j7-SNAPSHOT, this isn't terribly useful.

Any ideas how this might have disappeared (as well as all old versions), 
despite apparently being deployed fresh about 12 hrs ago?

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/a2e03a76-0b7d-444e-84e0-1ab7542f1fa0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] Re: ScriptInjector seems to be broken (2.8-SNAPSHOT)

2016-09-05 Thread Jens
Hm wondering how it ever worked for you as JsInterop usually qualifies JS 
code with $wnd but your D3.js has been injected into the GWT iframe. So 
AFAICT with JsInterop you would had to use TOP_WINDOW anyways. You can make 
it work within the GWT iframe but then you can't use JsPackage.GLOBAL but 
use a namespace that points to the iframe content window.

Also 
see: https://groups.google.com/d/msg/google-web-toolkit/GcsWUuzexvE/ApUg3sLZCQAJ

So it looks like this behavior has changed? But yes you would need to use 
"window" now to references the iframe's content window if you inject the 
code into the iframe.

-- J.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/e8cbcef6-1bd8-43e3-b63b-89a1d659e12f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] Re: ScriptInjector seems to be broken (2.8-SNAPSHOT)

2016-09-05 Thread stuckagain
It looks like this might be a side-effect of 
https://github.com/gwtproject/gwt/commit/c511029eaae4ec66ff874d7e69efd9516ccc78db
 

I am using JsInterop to interact with the D3 library, Using 
namespace=JsPackage.GLOBAL. I guess I will have to use "window" instead ? 

On Monday, September 5, 2016 at 1:40:38 PM UTC+2, stuckagain wrote:

> It looks like the ScriptInjector is no longer working properly in the 
> snapshot.
>
> I had code like this: 
>
> ScriptInjector.*fromString*(pBundle.d3JS().getText()).inject();
>
> To load D3 using a TextResource.
>
>
> Since today (just came back after 2 weeks of holidays) the D3 object is no 
> longer available in $wnd.
>
>
> I changed the code to this:
>
> ScriptInjector.*fromString*(pBundle
> .d3JS().getText()).setWindow(ScriptInjector.*TOP_WINDOW*).inject();
>
>
> and then it works.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/50ebbc42-884b-4c3d-bad9-494d1acc6f3e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[gwt-contrib] ScriptInjector seems to be broken (2.8-SNAPSHOT)

2016-09-05 Thread stuckagain
It looks like the ScriptInjector is no longer working properly in the 
snapshot.

I had code like this: 

ScriptInjector.*fromString*(pBundle.d3JS().getText()).inject();

To load D3 using a TextResource.


Since today (just came back after 2 weeks of holidays) the D3 object is no 
longer available in $wnd.


I changed the code to this:

ScriptInjector.*fromString*(pBundle
.d3JS().getText()).setWindow(ScriptInjector.*TOP_WINDOW*).inject();


and then it works.


-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/5a1fe785-79ea-4cb3-9fc6-c4f1c4258c2d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.