[Google Wave APIs] Re: Schema for capabilities.xml?

2009-11-07 Thread Austin McGowan
Thanks a lot for the prompt reply. I looked at that I copied it pretty much, what am I doing wrong? package simlerbot; import com.google.wave.api.ProfileServlet; public class SimlerbotProfileServlet extends ProfileServlet { @Override public String getRobotAvatarUrl() { return

[Google Wave APIs] Can't delete / trash / spam / mute a specific wave.

2009-11-07 Thread Daniel Faust
I have two waves in my inbox which I can't remove. Testing Seekdroid existance wavesandbox.com!w+wRdtWWdW%D Kommentare wavesandbox.com!w+Yfjm91-uF Both of them show an unread count of 1 after logging out and then logging in again, even though the content has not changed.

[Google Wave APIs] Re: import json error with python-written robot

2009-11-07 Thread Niall
I realised my code was fine so that it was probably a problem with globals, and found out that you can't use them here, or at least that they can't be modified. So I used the datastore, and it works now, which is nice. Working solution can be found on the links I provided above. On Nov 7, 2:15 

[Google Wave APIs] Re: [python]Value form in gadget to robot

2009-11-07 Thread Michał Gołębiowski
My robot post login and password to another server... like tweety. Can you write more about connecting robot with gadget in wave? I listen only about HTTP connection (some samples...?) Michał 2009/11/7 David Nesting da...@fastolfe.net On Fri, Nov 6, 2009 at 8:53 AM, Golabek

[Google Wave APIs] Re: Is it possible to know who added who in a wave?

2009-11-07 Thread MyWebs
As far as I know there is no way to know who added who to a wave. For now Wave doesn't have any kind of access control system built into it. It is basically still the Wild Wild West of Wave until Google adds some sort of ACL, Access Control List to Wave. I know I have read before that Google is

[Google Wave APIs] State callback function is called multiple times when there is more than one key-value pair in the delta object

2009-11-07 Thread Vikram
Hi fellow wave developers, I have found that the when there are multiple key-value pairs in the delta, the call to submitDelta method of state object triggers the state change callback function as many times as the number of key value pairs. Why is this happening? Am I missing something? This

[Google Wave APIs] Re: newbee: trying python robots tutorial

2009-11-07 Thread Nicolas
Hi Everyone ! I'm facing the same problem(s ?). Here's my log error, from the Admin Page : 1. 11-07 07:23AM 52.460 /_wave/capabilities.xml 500 72ms 82cpu_ms 0kb Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9.1.4) Gecko/20091028 Ubuntu/9.10 (karmic) Firefox/3.5.4,gzip(gfe) See details

[Google Wave APIs] Re: [simple?] connect my googlegroups to googlewave

2009-11-07 Thread Caco
Hi David I've read this post and I was wondering how to add a Google Group to a wave? I'm a new Google Wave Developer, so all the help are welcome! Tks Caco On 7 nov, 15:24, David Nesting da...@fastolfe.net wrote: On Fri, Nov 6, 2009 at 11:00 AM, Nil nil...@gmail.com wrote: I was just

[Google Wave APIs] No enum const class com.google.wave.api.EventType.OPERATION_ERROR

2009-11-07 Thread Piotr Pejas
Hi everybody, I am new to group and wave. I wrote simple robot which listen to blip changes and append some html if blip text match my regular expression and I get an exception when I call appendMarkup on TextView, append method works but escapes html and it's not what I need. Am I doing

[Google Wave APIs] Re: [simple?] connect my googlegroups to googlewave

2009-11-07 Thread Prashant
just add your grp address (your-...@googlegroups.com) to the wave but presently that works for sanbox accounts only. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Wave API group. To post to this group, send

[Google Wave APIs] Who adds a Robot

2009-11-07 Thread jhb
Is there a way for a root to determine the participant who added it to a wave? --~--~-~--~~~---~--~~ 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 APIs] Re: Who adds a Robot

2009-11-07 Thread Prashant
i guess NOT --~--~-~--~~~---~--~~ 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-api@googlegroups.com To unsubscribe from this group, send email to

[Google Wave APIs] Embedding Waves in Blogs and Search Engines

2009-11-07 Thread Danny Tuppeny
Apologies if this has been asked before, but I can't find any info on it... Embedding waves in a blog looked pretty cool, but my impression (based on nothing but the video of the I/O demo) is that it's all Javascript- based. This makes me wonder whether Search Engines would be able to read any

[Google Wave APIs] Re: Who adds a Robot

2009-11-07 Thread Austin Chau (Google employee)
From the WAVELET_SELF_ADDED event (it is triggered when a robot is added), you can call event.getModifiedBy() which should return the participant who adds the robot. Austin On Sat, Nov 7, 2009 at 9:38 PM, Prashant antsh...@gmail.com wrote: i guess NOT

[Google Wave APIs] Re: [python]Value form in gadget to robot

2009-11-07 Thread David Nesting
The Row of Four sample has an example of a gadget submitting deltas to a blip, which then get sent as an event to a robot. David 2009/11/7 Michał Gołębiowski michal.golabe...@gmail.com I can use OAuth, I want to know How to get value of textboxes FROM Gadget TO Robot. the gadget is in first

[Google Wave APIs] Re: Google Session Access

2009-11-07 Thread David Nesting
On Sat, Nov 7, 2009 at 2:54 AM, karthik k karthikmostwan...@gmail.comwrote: Can i access the google session ID of the current user or can i get the auth token of the google account from wave? I wanted to use some google's service with the wave which needs an authentication. Is there any

[Google Wave APIs] Re: Serving a dynamic gadget from the robot app

2009-11-07 Thread David Nesting
This seems pretty straightforward to do within appengine. Rather than serve a static XML document from a static_dir or static_files handler, serve it from a script. The script could accept query or path parameters to customize the XML it emits. If you need details, what language are you working

[Google Wave APIs] Re: Incrementally add text to a blip

2009-11-07 Thread David Nesting
On Sat, Nov 7, 2009 at 7:14 PM, Daniel Rothenberg counterstry...@gmail.comwrote: adding text to the document it's working in, but I've noticed that it doesn't look like Wave is updating the document until after OnBlipSubmitted() completely finishes. Robot events are simply HTTP requests.