[Google Wave APIs] Re: Using popups in gadgets

2009-12-08 Thread \x00
You are confined by the iframe. -- 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.

Re: [Google Wave APIs] Re: Using popups in gadgets

2009-12-08 Thread Raphaël Pinson
On Tue, Dec 8, 2009 at 1:40 PM, \x00 dt01pqt...@yahoo.com wrote: You are confined by the iframe. You mean the iframe where the gadget is inserted? Or the wavelet ? -- You received this message because you are subscribed to the Google Groups Google Wave API group. To post to this group,

Re: [Google Wave APIs] Re: Using popups in gadgets

2009-12-08 Thread Raphaël Pinson
On Tue, Dec 8, 2009 at 1:44 AM, Stephen George sfgeo...@gmail.com wrote: Hi , This may not be exactly what you're looking for, but MiniMessages have a UI consistent with some soft pop-ups in wave (they closely resemble the yellow So 'n gave everyone access messages that you see on public

[Google Wave APIs] Profile Servlet not triggered?

2009-12-08 Thread Dominic Lovell
Hey, I have been on Wave in a fornight, and have notice that the robot profile servlets are being triggered in the sandbox instance, or the preview instance. Dev preview used to work though? Is this still switched off, or has something changed? -- You received this message because you are

[Google Wave APIs] event.getParent() returning Root Blip for every blip in the wavelet

2009-12-08 Thread shitu
Hey all please tell me if my code is wrong or it is some issue with API...firstly it was working great but now my robot is all gone :( Blip eblip=e.getBlip();; log(eblip.getParent().getBlipId());

[Google Wave APIs] Re: WeatherBug Robot

2009-12-08 Thread Kris
I assume you are creating a new wave and adding Weatherbuggy as a participant? When that happens it should announce itself automatically. Have you tried this again recently? I just tested it myself using Chrome and it seems to be working properly. What browser are you using? On Dec 1, 9:21 pm,

[Google Wave APIs] HTML in blips (python)

2009-12-08 Thread da burger
A robot I am developing is requires to get large numbers of unicode strings from an external source. Some of these strings contain HTML formatting. When I use root_wavelet.CreateBlip().GetDocument().SetText(x) (x being the string in this case) it prints the actual HTML tags and dosn't format. Is

[Google Wave APIs] Re: HowTo: Make a robot create a new Wave (Python)

2009-12-08 Thread Shawn Smith
Attempting to use this code and I don't seem to be receiving the unsolicited call back? Is this still working for others? On Oct 27, 1:28 am, yariv.snapir yariv.sna...@gmail.com wrote: Indeed it helped! Do you know of a way I can pass these IDs from the robot's code to the embed JS API

[Google Wave APIs] Re: HowTo: Make a robot create a new Wave (Python)

2009-12-08 Thread Shawn Smith
The DOCUMENT_CHANGED event now appears to require setup in the capabilities.xml file. I added it and that fixed up my issues. S. On Oct 26, 12:42 pm, Peter Svedberg peter.o.s.svedb...@gmail.com wrote: Hi all, Yes you will get the ids with a self added event, but you don't get a self added

[Google Wave APIs] Google Wave Gadget persistence layer

2009-12-08 Thread Jiang, Guoqian, Ph.D.
Hello, I am new to Google Wave API and would like to ask a question about Google Wave persistence layer, My use case is that I want to reprensent a tree structure in a google wave gadget and a group will work collaboratively on curating the tree structure e.g. editing a node, adding a sub node

[Google Wave APIs] Re: Profile Servlet not triggered?

2009-12-08 Thread Boh
So this is the reason for my robot profile photo not showing, right? I was afraid that I had messed something up when I uploaded a new version, but everything seems to be working, except the profile bit. Another question: the capabilities.xml for my robot only shows it's version, but otherwise my

Re: [Google Wave APIs] HTML in blips (python)

2009-12-08 Thread Raphaël Pinson
Hi, I have the same problem with Flammard. I couldn't find a way to do it, so I'm parsing the HTML and adding annotations to my text to format it properly. Raphaël On Tue, Dec 8, 2009 at 9:16 PM, da burger angusthebur...@googlemail.com wrote: A robot I am developing is requires to get large

[Google Wave APIs] Re: Delete a wave

2009-12-08 Thread Charlie Collins
I don't know the current implementation details, but I do know first hand that the Wave team is working on this but, as they put it, it's much more complicated than you might think. Even though this is very nuanced and I am just spitballing here (without really knowing all angles), here are some

[Google Wave APIs] Icons and names for bots no longer displayed

2009-12-08 Thread Jay Deiman
I just noticed, as I was trying out the new Chrome Beta for linux that my bot's icon was showing up as the generic silhouette. On top of that, when you mouse over it, it shows it's @appspot.com address instead of it's name. I forced a full page reload in my firefox tab I had open and sure

Re: [Google Wave APIs] Re: Profile Servlet not triggered?

2009-12-08 Thread pamela (Google Employee)
Yes, that is likely why it isn't appearing. Do you mean it only shows the version in the browser? Maybe you're viewing it in Chrome, which doesn't render XML properly? (If so, just view source on it). On Wed, Dec 9, 2009 at 7:00 AM, Boh fujii@gmail.com wrote: So this is the reason for my

Re: [Google Wave APIs] Google Wave Gadget persistence layer

2009-12-08 Thread pamela (Google Employee)
You can serialize it into JSON. The Sudoku sample demonstrates doing that: http://wave-samples-gallery.appspot.com/about_app?app_id=3 There are several related gadgets: http://wave-samples-gallery.appspot.com/about_app?app_id=34038 http://wave-samples-gallery.appspot.com/about_app?app_id=64007 -

Re: [Google Wave APIs] event.getParent() returning Root Blip for every blip in the wavelet

2009-12-08 Thread Austin Chau (Google employee)
Do you see exception in the log? if so what are they ? On Tue, Dec 8, 2009 at 6:39 AM, shitu ankitsush...@gmail.com wrote: Hey all please tell me if my code is wrong or it is some issue with API...firstly it was working great but now my robot is all gone :(

Re: [Google Wave APIs] Gadget API needs a bit of help?

2009-12-08 Thread Austin Chau (Google employee)
Hi, You can probably do some of the behaviors you described by having your own scheme of in your state data. For instance, you adopt the format for your state data such that you would append the username before the actual value to indicate the data provider, ie foo=aus...@wavesandbox.com_data

Re: [Google Wave APIs] How to fire event new wave created by robot

2009-12-08 Thread Austin Chau (Google employee)
Hi, If a wavelet creates another another wavelet, you should be able to catch the WAVELET_CREATED event, given that you have registered for it. Austin On Wed, Dec 2, 2009 at 7:29 PM, hvt_kg thaihuyn...@gmail.com wrote: Hi All, How to can fire event when new Wave create by Robot?. Because I

[Google Wave APIs] Re: How to fire event new wave created by robot

2009-12-08 Thread hvt_kg
Hi Austin Chau, thanks for your info. But I can not see any event relate WAVELET_CREATED event in EventType from API. If that is my misunderstand, pls tell me. Alex, On Dec 9, 8:07 am, Austin Chau (Google employee) api.aus...@google.com wrote: Hi, If a wavelet creates another another

Re: [Google Wave APIs] Re: How to fire event new wave created by robot

2009-12-08 Thread Austin Chau (Google employee)
ah, this event might not be able available in the current release of the client library that is using the old wire protocol. It is available under the new wire protocol and we are still refining the client libraries to support the new stuff, it should be ready shortly to come. Thank you for the

[Google Wave APIs] Re: How to fire event new wave created by robot

2009-12-08 Thread hvt_kg
by the way, I have other question about WaveId. can you help me ASAP. So,.. I cant get correct wave id just created by robot ex: processEvents(RobotMessageBundle bundle){ Wavelet wavelet = bundle.getWavelet(); Wavelet newWavelet = bundle.createWavelet(wavelet.getParticipants ());

Re: [Google Wave APIs] Re: State change

2009-12-08 Thread Avital Oliver
You're right - you can't do any regular AJAX calls. All AJAX calls must respect the same-domain restriction. Instead, use a JSONP-like mechanism (a hack involving embedding a script tag by the DOM to load a server-side generated script with the information needed) -- http://wave.theWE.net

[Google Wave APIs] Dec 8 googlewave.com release (noticed changes)

2009-12-08 Thread qMax
Hi developers - They released new version of wave preview server and client today (or yesturday). Noticed changes: - group contacts no longer filtered out from list, all previously added @googlegroup.com adresses now appear in contacts window (with proper group avatar, btw). - new button for