[Google Wave APIs] Embed not working?

2010-02-18 Thread Thomas Beverley
Anyone else experiencing the You've reached a page that contains
content from Google Wave. page instead of your wave? I am logged in.
You can see an example (not mine) at...
http://www.buildcontext.com/blog/2009/06/03/embedding-my-first-google-wave-into-wordpress/

Unfortunately I can't provide my example as it's embedded within a
wave with a whole load of other dependencies.

Thanks
Tom

-- 
You received this message because you are subscribed to the Google Groups 
Google Wave API group.
To post to this group, send email to google-wave-...@googlegroups.com.
To unsubscribe from this group, send email to 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



Re: [Google Wave APIs] Embed not working?

2010-02-18 Thread pamela (Google Employee)
Hey Tom-

It's working for me. (Chrome/Linux).

- pamela

On Fri, Feb 19, 2010 at 1:26 AM, Thomas Beverley 
tom.beverley...@googlemail.com wrote:

 Anyone else experiencing the You've reached a page that contains
 content from Google Wave. page instead of your wave? I am logged in.
 You can see an example (not mine) at...

 http://www.buildcontext.com/blog/2009/06/03/embedding-my-first-google-wave-into-wordpress/

 Unfortunately I can't provide my example as it's embedded within a
 wave with a whole load of other dependencies.

 Thanks
 Tom

 --
 You received this message because you are subscribed to the Google Groups
 Google Wave API group.
 To post to this group, send email to google-wave-...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-wave-api+unsubscr...@googlegroups.comgoogle-wave-api%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-wave-api?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google Wave API group.
To post to this group, send email to google-wave-...@googlegroups.com.
To unsubscribe from this group, send email to 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



Re: [Google Wave APIs] Embed not working?

2010-02-18 Thread Harrison Conlin
On Fri, Feb 19, 2010 at 1:26 AM, Thomas Beverley
tom.beverley...@googlemail.com wrote:
 Anyone else experiencing the You've reached a page that contains
 content from Google Wave. page instead of your wave? I am logged in.
 You can see an example (not mine) at...
 http://www.buildcontext.com/blog/2009/06/03/embedding-my-first-google-wave-into-wordpress/

 Unfortunately I can't provide my example as it's embedded within a
 wave with a whole load of other dependencies.

 Thanks
 Tom

 --
 You received this message because you are subscribed to the Google Groups 
 Google Wave API group.
 To post to this group, send email to google-wave-...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-wave-api+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-wave-api?hl=en.



On looking at the source code for the page
pscript src=http://wave-api.appspot.com/public/embed.js;
type=text/javascript/scriptbr /
script type=text/javascript
function initialize() {
  var wavePanel = new
WavePanel('http://wave.google.com/a/wavesandbox.com/');
  wavePanel.loadWave('wavesandbox.com!w+6y87_2WQ%1');
  wavePanel.init(document.getElementById('waveframe'));
}
/script/p

I wasn't logged into wavesandbox and was getting that error, after
logging in it works

-- 
Harrison Conlin

-- 
You received this message because you are subscribed to the Google Groups 
Google Wave API group.
To post to this group, send email to google-wave-...@googlegroups.com.
To unsubscribe from this group, send email to 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



Re: [Google Wave APIs] Navigate in a wave by code

2010-02-18 Thread Chris
@Pamela: I recall someone reporting that their bot could inject JavaScript
into the page to communicate across a gadget's iframe.  Would the same
injection technique not work in this case?

In ALL things, strive for ,
Chris


On Wed, Feb 17, 2010 at 6:14 PM, pamela (Google Employee) 
pamela...@gmail.com wrote:

 I'm not sure that it'd be easy to do that, given there's no explicit access
 to the Wave client's DOM. There would presumably have to be a gadget inside
 the page that was able to reach into the parent frame, find the wave div,
 and scroll that down. I don't think that an iframe can manipulate that much
 of the outside.

 Alternatively, a wave could me embedded, and that might make it easier to
 manipulate the embedded wave.

 Either way, its hacky.

 I would recommend making sure the blip-to-be-focused is unread, as then
 atleast people can easily spacebar to it. (And maybe one day the client will
 notify them of it).

 - pamela

 On Wed, Feb 17, 2010 at 2:13 AM, Chris jesdisci...@gmail.com wrote:

 Oops, that would be 50 pixels five times.  *blush*


 In ALL things, strive for ,
 Chris


 On Tue, Feb 16, 2010 at 9:11 AM, Chris jesdisci...@gmail.com wrote:

 You'll probably have to insert some JavaScript into the page and run it,
 as I doubt Google's API offers anything to do this directly.  See these
 pages:
 http://javascript.wikia.com/wiki/Window#scroll
 http://www.quirksmode.org/js/findpos.html

 So you use the script at the second link to find the element's position
 and the function at the first link to send the browser there.  If you want
 the wave to scroll smoothly, you can scrollBy a certain increment until you
 reach the element.  That increment could simply be a fraction of the
 distance to the element, or a constant speed.  For example, if the element
 is 280 pixels down the screen you could scrollBy 50 pixels every half a
 second, three times, and then 30 pixels (the modulus - 280 % 50).  The
 function to separate the calls to scrollBy would be window.setInterval:
 http://javascript.wikia.com/wiki/Window#setInterval

 In ALL things, strive for ,
 Chris



 On Mon, Feb 15, 2010 at 8:23 AM, vincent donzé 
 vincent.do...@gmail.comwrote:

 Hello everybody,

 I'm making a task manager robot for Google Wave but I encounter a
 difficulty. I would like to navigate into the wave with java code. I
 mean, I want to focus the view on a special blip. If the blip is at
 the bottom of the page, I want the wave to scrol down until it reach
 the blip. Is it possible ?

 Thank you

 --
 You received this message because you are subscribed to the Google
 Groups Google Wave API group.
 To post to this group, send email to google-wave-...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-wave-api+unsubscr...@googlegroups.comgoogle-wave-api%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-wave-api?hl=en.



  --
 You received this message because you are subscribed to the Google Groups
 Google Wave API group.
 To post to this group, send email to google-wave-...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-wave-api+unsubscr...@googlegroups.comgoogle-wave-api%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-wave-api?hl=en.


  --
 You received this message because you are subscribed to the Google Groups
 Google Wave API group.
 To post to this group, send email to google-wave-...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-wave-api+unsubscr...@googlegroups.comgoogle-wave-api%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-wave-api?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google Wave API group.
To post to this group, send email to google-wave-...@googlegroups.com.
To unsubscribe from this group, send email to 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.