Re: [Google Wave APIs] Several questions regarding robot modification of gadget states

2009-11-22 Thread Ayal Gelles
Hello All, Have anyone experienced any similar behavior? Is there any robot black-listing mechanism active in Wave? Do any of our thoughts make any sense? We are not sure what's going on. Maybe it has anything to do with this bug report: http://code.google.com/p/google-wave-resources/issues/detai

Re: [Google Wave APIs] Robot Access Robot

2009-11-22 Thread Avital Oliver
I don't think you can do that but Spelly works by inserting special annotations into the wave. Your robot should be able to see these annotations and modify them to contain your new words. -- http://blog.thewe.net http://twitter.com/theWE_ On Sat, Nov 21, 2009 at 2:36 AM, Eyal wrote: > Hi, I

[Google Wave APIs] Presenting HyperLinky, a bot that simplifies linking to common sites

2009-11-22 Thread Tommy
Hello everyone, This bot is designed to make linking to common sites very simple. Want to link to a Google search? type g_(your search). Dictionary? type d_reallylongword. HyperLinky links to over 10 common sites (and growing) such as Wikipedia, Twitter (user or search), LMGTFY, Flickr, and Amaz

[Google Wave APIs] Re: Embed API: Preview vs Sandbox

2009-11-22 Thread Sathish
Hi Matt, I am trying the same example from the Google Embed Doc. I get cross-domain scripting errors.The script in the Wave (panel) frame tries to access something in my page. I got the same error in one of the wave samples http://wavedemo.in-entwicklung.net/ . Am i missing anything? Could you he

[Google Wave APIs] Robot Access Robot

2009-11-22 Thread Eyal
Hi, I want to develop a robot that adds a few spelling options that Spelly doesn't have, but I wondered if accessing another robot is even possible -- 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-wa

[Google Wave APIs] Re: how to access sibling of root blip

2009-11-22 Thread Stephen George
By the way, I too am having difficulty trying to traverse every blip of a wave in Java. My current approach of recursively searching through every blip with blip.getDocument().getInlineBlips() and blip.getChildren() is not completely successful. I seem to get only the first 2 out of 7 sequential

Re: [Google Wave APIs] Re: i18n in gadgets

2009-11-22 Thread pamela (Google Employee)
Hi qMax- It is not yet supported. We do plan to support it in the future. Feel free to file it as a feature request if you would like to easily track its progress. (And thanks for the reminder!) - pamela On Sun, Nov 22, 2009 at 5:05 PM, qMax wrote: > with wave stuff removed, this gadged works

Re: [Google Wave APIs] Re: How to delete all the blips in a wave except the root blip??

2009-11-22 Thread Vikram Dhillon
The visual really helped, I wasn't thinking properly so I apologize for that and thanks for your clarification on the subject. So from what I understand now, how about this: if we can export the whole conversation, to a file or something, then the robot can stri[p off everything besides the root

[Google Wave APIs] Re: how to access sibling of root blip

2009-11-22 Thread Stephen George
Hi Vivek, give this a try: RobotMessageBundle.getBlip(String waveId, String waveletId, String blipId) On Nov 14, 5:16 am, Viv

[Google Wave APIs] Pop menu windows with template & boilerplate choices for document building

2009-11-22 Thread keith9
My task is to provide a choice of document templates followed by choices of boilerplate for inserting into docs being built collaboratively in a Wave. How to insert the google popup window gadget in a Wave? http://www.google.com/ig/directory?type=gadgets&url=hosting.gmodules.com/ig/gadgets/file

[Google Wave APIs] Re: How to delete all the blips in a wave except the root blip??

2009-11-22 Thread qMax
Java reference says: void com.google.wave.api.Blip.delete() Deletes the current blip and all of its descendants. does it work only when applied to event-affected blip ? On 22 ноя, 23:57, Olreich wrote: > Deleting the child of the rootBlip will not delete it's > "children" (the rest of the conver

[Google Wave APIs] Re: How to delete all the blips in a wave except the root blip??

2009-11-22 Thread Olreich
GetChildren on the root blip will get the first blip. Unfortunately, because the root blip has to be the blip submitted to have that function work, it's limited. In fact, it's even more limited because of the fact that the root blips child's child is null in the current version of the API. (an anno

Re: [Google Wave APIs] Re: How to delete all the blips in a wave except the root blip??

2009-11-22 Thread Vikram Dhillon
One thing that you could do is this: - Make a bot - Count the number of blips - Then you can subtract 1 from it, this will be the root blip - Do a for loop but go in the opposite direction like this (for int i = 0; i < blip.getChildren(); i--) - Here you can enter another command like the

Re: [Google Wave APIs] Introducing Annoty, the annotation (and replacement) generic bot

2009-11-22 Thread Vikram Dhillon
Worth looking into, this is great thanks for your work -- Regards, Vikram Dhillon On Saturday 21 November 2009 04:20:48 pm Raphaël Pinson wrote: > Hi guys, > > This is to announce a new bot: Annoty, the annotation (and > replacement) generic bot. > > There are more and more bots for Google Wa

[Google Wave APIs] Re: i18n in gadgets

2009-11-22 Thread qMax
with wave stuff removed, this gadged works well in iGoogle http://qmax.academ.org/wave/i18n/gadget3.xml Thus, it is wave issue. -- 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

[Google Wave APIs] i18n in gadgets

2009-11-22 Thread qMax
Is it supported, or do i miss something? gadget url: http://qmax.academ.org/wave/i18n/test.xml test wave: https://wave.google.com/a/wavesandbox.com/#restored:wave:wavesandbox.com!w%252BgC_edUXEA messages are loaded (the message "Hi" is from default.xml) but pref.getLang() returns 'all' my system

[Google Wave APIs] Re: How to delete all the blips in a wave except the root blip??

2009-11-22 Thread Olreich
Deleting the child of the rootBlip will not delete it's "children" (the rest of the conversation). This may be a bug. Of course, I'm guessing that his application wants that update to be immediate, so that he can post other data in the blip and then allow people to respond to it. He could lock the

RE: [Google Wave APIs] Re: announcing the QR code robot "QRcody"

2009-11-22 Thread Hans Nouwens
Hi QRcody fans, The issue > - strangely the replace does not work if the closing bracket is the very > last character in the blip. Please add any character such as a space. Is fixed. Hans Nouwens. -Original Message- From: tachoknight [mailto:tachokni...@gmail.com] Sent: zaterdag 21 nov

Re: [Google Wave APIs] Introducing Annoty, the annotation (and replacement) generic bot

2009-11-22 Thread Horacio Bertorello
this is great! i'll take a look! 2009/11/21 Raphaël Pinson > Hi guys, > > This is to announce a new bot: Annoty, the annotation (and > replacement) generic bot. > > There are more and more bots for Google Wave. Each of them has their > specialty: some place emoticons, some graphs, some fix your