[Google Wave APIs] Waves vs Blips vs Wavelets?

2009-10-26 Thread Henson
I know this is a total newb question, but I'm having a lot of trouble understanding. What's the difference between a wave, a wavelet, and a blip? Further more, what does a Robot that I add have rewritable access to? I don't have any problem getting a list of blips, but when I go to re- write

[Google Wave APIs] How to make wave robot in Java log on INFO and DEBUG levels?

2009-10-26 Thread Tymur Porkuian
I'm creating a robot and I'd like it to log some debugging info. Unfortunately, in AppEngine logs I see only WARNING and ERROR level messages (event when filter is set to DEBUG). My war/WEB-INF/logging.properties file is this: # Set the default logging level for all loggers to WARNING

[Google Wave APIs] Re: JSON from robot (python) to gadget the right way

2009-10-26 Thread Agustin Horischnik
Reporting back on serializing objects and submitting them as delta. I tried again using simplejson and the result is what I described earlier without explicitly encoding them: the gadget breaks (i.e. in this case it doesn't get appended to the blip) and yet I see no errors in the log. Let me

[Google Wave APIs] Re: Weird problems with Python

2009-10-26 Thread Amoss
(Can anyone confirm that the issue, possibly capabilities.xml related, has truely been fixed or not regarding the app ID workaround. Cheers) I'm pretty sure that something is still broken. The app ID amoss- test...@appspot.com is an example that is still broken. The capabilities.xml is being

[Google Wave APIs] Re: Waves vs Blips vs Wavelets?

2009-10-26 Thread Adrian
http://www.waveprotocol.org/draft-protocol-specs/draft-protocol-spec#arch this should clear things up on your first question... On Oct 26, 8:11 am, Henson henson.d.sturg...@gmail.com wrote: I know this is a total newb question, but I'm having a lot of trouble understanding. What's the

[Google Wave APIs] Re: Waves vs Blips vs Wavelets?

2009-10-26 Thread Henson
Thanks! What I've been trying to do is traverse a set of blips. In my example post, I created a wave, and replied to it twice. example: - Wave - Reply 1 - Reply 2 Getting all the blips from the context class (or by pulling the root_wavelet, then root_wave, then cycling through all wavelets

[Google Wave APIs] Re: What are the rules for appendMarkup?

2009-10-26 Thread Andrew
Awesome! Thanks - I will try this. On that subject, does anyone have a list of the supported annotations? I pulled this thread out but saw no conclusion: http://groups.google.com/group/google-wave-api/browse_thread/thread/ba08146d448658a6 Thanks, A On Oct 25, 7:41 am, voidref

[Google Wave APIs] Re: Suggestions: Wave (private) Groups, integration

2009-10-26 Thread Olemis Lang
On Fri, Oct 23, 2009 at 3:17 PM, Olemis Lang ole...@gmail.com wrote: On Fri, Oct 23, 2009 at 3:09 PM, Silicon Dragon sdr...@gmail.com wrote: On Fri, Oct 23, 2009 at 4:09 PM, olemis ole...@gmail.com wrote: On Oct 9, 6:50 am, Silicon Dragon sdr...@gmail.com wrote: Dear Timofonic, Your

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

2009-10-26 Thread dLux
Just an idea to try, I'm not sure it works: add your robot to the wavelet, and then you'll get back a SELF_ADDED event. Then you'll have the ID. You can relay information with data documents of the main blip. Let me know if it works. (I'll probably need it soon also :) ). On Oct 25, 4:29 pm,

[Google Wave APIs] Re: JSON from robot (python) to gadget the right way

2009-10-26 Thread Teddy Jasin
Hi Agustin, I think I'm also facing same issue with you. in my case I'm sending data from the robot to the gadget also using json, however my json data is arabic texts which is converted unicode... so it become longer json strings. the gadget will not show if the passed data is too long. so I

[Google Wave APIs] Re: Sandbox Accounts Here

2009-10-26 Thread demzzy
hey! mine is dem...@wavesandbox.com --~--~-~--~~~---~--~~ 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

[Google Wave APIs] Re: What are the rules for appendMarkup?

2009-10-26 Thread pamela (Google Employee)
Hi Andrew- This is what I wrote in another thread: We haven't published an authoritative list of those annotations as we aren't confident in their stability. Feel free to use them for now, but keep in mind that they may change. Most likely, they will be documented as part of the wave-protocol,

[Google Wave APIs] Re: JSON from robot (python) to gadget the right way

2009-10-26 Thread Agustin Horischnik
Hi Teddy, can you paste a few lines from your outgoing json containing the strings you think could be causing the problem and maybe the bit of code you're using to submit the delta and encode it? I ended up using Pamela's suggestion but I'll be happy to try your code and see if I find something.

[Google Wave APIs] Fundamental question - what does context...um...do?

2009-10-26 Thread Chris C.
Okay, I've written a robot that parses new blips for particular strings (in this case, strings representing dice rolls), and inserts the result of a particular dice roll in the blip. It works fine, exactly as I expect and desire. I see in the tutorial that there is something called CONTEXT in

[Google Wave APIs] Re: Fundamental question - what does context...um...do?

2009-10-26 Thread Austin Chau (Google employee)
Essentially you can think of event handler/context as callback (endpoint) with data (context). Imagine you have a handler for a particular type of wave event. When that event has occurred, the Wave server could trigger your endpoint with this notification. Associated with this notification, is

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

2009-10-26 Thread Peter Svedberg
Hi all, Yes you will get the ids with a self added event, but you don't get a self added event when you create a wavelet(wave) with a robot. Here's how to create a wave with a robot in java (assuming you have a handle on the current wavelet): Wavelet newWave =

[Google Wave APIs] Re: Fundamental question - what does context...um...do?

2009-10-26 Thread Chris C.
Aha! The light dawns. On Oct 26, 4:40 pm, Austin Chau (Google employee) api.aus...@google.com wrote: Essentially you can think of event handler/context as callback (endpoint) with data (context).  Imagine you have a handler for a particular type of wave event.  When that event has occurred,

[Google Wave APIs] Re: Fundamental question - what does context...um...do?

2009-10-26 Thread Olemis Lang
On Mon, Oct 26, 2009 at 1:31 PM, Chris C. yclept.ch...@gmail.com wrote: Okay, I've written a robot that parses new blips for particular strings (in this case, strings representing dice rolls), and inserts the result of a particular dice roll in the blip. It works fine, exactly as I expect

[Google Wave APIs] Re: Fundamental question - what does context...um...do?

2009-10-26 Thread Austin Chau (Google employee)
No you have no control context. Context is managed sent by the server. If you need to maintain states, you need your own datastore or you can use the DataDocument from Wavelet.

[Google Wave APIs] Extensions To Google Wave Question

2009-10-26 Thread Eric Dorman
Hey guys, I was wondering if there is a way to add our extensions to Google Wave and have all the Google Wave users see the extension in there own waves without having to add them manually to their wave. Is there a way to do this? Thanks God Bless, Eric

[Google Wave APIs] Re: How to make a radio button selected by default?

2009-10-26 Thread Austin Chau (Google employee)
I don't believe there is a property available for that. Please feel free to file a request for this - http://code.google.com/p/google-wave-resources/issues/list?can=2q=sort=-idcolspec=Stars%20ID%20Type%20Status%20Priority%20Milestone%20Owner%20Summary%20Internal On Mon, Oct 26, 2009 at 8:05 AM,

[Google Wave APIs] Re: Google Wave Inbox Notification tool for the Windows Desktop

2009-10-26 Thread Tobias
Nice one. A desktop notifier is essential for any messaging system. Some small sugestions of further development: Highlighting of the deskbar icon when there're new waves would be really nice. A possibility to force a recheck of the wave account. An other thing: How do one opens a google wave

[Google Wave APIs] Re: awaiting sandbox account

2009-10-26 Thread Yun4
I've contacted them twice and with no reply. Has anyone successfully contacted them through this email? It's been 12 days for me now. On Sep 5, 12:50 pm, macmac marrickli...@gmail.com wrote: Try contacting googlewaveinvi...@googlegroups.com.

[Google Wave APIs] Can You Retrieve Waves Using The Embed API?

2009-10-26 Thread Eric Dorman
Hey guys, I was wondering if you can retrieve waves using the Embed API? I have not found any information on this on the Google Wave Documentation Site,but I just had to ask. Thanks God Bless, Eric --~--~-~--~~~---~--~~ You received this message because you

[Google Wave APIs] Re: awaiting sandbox account

2009-10-26 Thread pamela (Google Employee)
Hi Cyrai- Sorry for not being transparent enough. We transitioned the system over late last week. We are currently processing the backlog of developers who filled out the second form (where you specify desired account names). We have a few thousand of those developers left. Then we will process