[Google Wave APIs] Re: Wave is missing from my preview account??

2009-10-21 Thread Monika Adamczyk
I searched many ways, e.g. 'with:, using different keywords from the conversation and simply trying to locate the wave in my All folder. Nada, it's gone. Monika On Oct 19, 12:47 am, Brian May wrote: > On Sat, Oct 17, 2009 at 11:58:17AM -0700, Monika Adamczyk wrote: > > I don't think this is a

[Google Wave APIs] Re: Wave is missing from my preview account??

2009-10-21 Thread Monika Adamczyk
Granted, I wasn't creator of the wave, but my understanding it that it is not possible to completely trash the wave for all participants, only for itself. E.g if I archive a wave or move to a folder, the change is visible only to me. Same would apply to moving a wave to Trash folder, where I alrea

[Google Wave APIs] Can Robot updates the wave outside processEvents()?

2009-10-21 Thread Kriván Bálint
Hi! First let me say this: Wave is a great thing, if it's done it'll be awesome! I've got invite to the Live Google Wave preview, and I was developing a robot, but a question came up: Is is possible to update a wave (e.g.: append blip) outside processEvents() method (Java API)? Or the robot can

[Google Wave APIs] Re: What exactly are the rules for having state reflected back in the wave client

2009-10-21 Thread Venkat Polisetti
On Oct 5, 3:11 pm, "Brian Kennish (Googler)" wrote: > On Mon, Oct 5, 2009 at 10:42 AM, Dagfinn Parnas wrote: > > Any news on when this will be added to the Java API? > > Hey Dagfinn, it'll be in the next cut of the Java library. You can > subscribe to various project updates here ("Downloads"

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

2009-10-21 Thread Agustin Horischnik
Gotcha. Yeah, I can see why is better for concurrency. Thanks for your help. On Thu, Oct 22, 2009 at 3:05 AM, pamela (Google Employee) < pamela...@gmail.com> wrote: > For example, if you are storing the information about a shape that a > participant just drew: > You could do: > delta = {'pamela.f

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

2009-10-21 Thread pamela (Google Employee)
For example, if you are storing the information about a shape that a participant just drew: You could do: delta = {'pamela.fox': "{'color':'red','shape':'circle'}"} Or, you could do: delta = {'pamela.fox-color': 'red'} delta = {'pamela.fox-shape': 'circle'} It may seem less elegant, but it is bet

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

2009-10-21 Thread Agustin Horischnik
> Ah, got it. What was your experiencing with using simplejson? You should be > able to serialize that object and pass it through the delta. We don't have a > demo of that, but think it should work. I don't remember but I'll re-try simplejson and report back. > You could also consider using more

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

2009-10-21 Thread pamela (Google Employee)
Ah, got it. What was your experiencing with using simplejson? You should be able to serialize that object and pass it through the delta. We don't have a demo of that, but think it should work. You could also consider using more complex keys, like viewerName-propertyName-subPropertyName, etc. That i

[Google Wave APIs] Does StyledText / StyleType work in the Java API?

2009-10-21 Thread Chris C.
I've got a robot running, and I was considering using StyledText as a slightly more convenient means of boldfacing part of the output, since I only need boldface and I wouldn't have to mess with start and end points of an annotation. However, when using it, it seems to have no effect. Am I doing i

[Google Wave APIs] Re: Embed API

2009-10-21 Thread JonB
Receiving this in Firefox->Tools->Error Console, followed by a bunch of related _fsd errrors. I'm trying to copy/paste the code into a local file and few in Firefox, but no luck. Looks like something loads, then this JavaScript error, then a blank screen. Error: uncaught exception: [Exception..

[Google Wave APIs] Re: Internal links in Wave

2009-10-21 Thread Jack Park
See http://code.google.com/p/google-wave-resources/issues/detail?id=79 On Wed, Oct 21, 2009 at 12:48 PM, Sam Osborne wrote: > At the moment, there is no such feature (that i'm aware of) to link a single > blip.. But, in the wish-list there's starring blips so I think we're > stepping in the righ

[Google Wave APIs] Re: Issues with deleting and appending blips and inline blips

2009-10-21 Thread cretzel
Now I tried to append a simple textarea gadget and update it's contents on blip submitted events. Unfortunately I cannot update the gadget state from within the robot. http://code.google.com/p/wave-robot-java-client/issues/detail?id=5 --~--~-~--~~~---~--~~ You rece

[Google Wave APIs] Re: FYI: Password Reset Requests

2009-10-21 Thread Joel Dietz
> I initially emailed the googleinvites admin address almost a month ago now > and have also forwarded through the initial "Ready to Wave" invite and have > now also resubmitted my request via the original form as stated in your > email. Sad news is that I have yet to receive anything in reply :-(

[Google Wave APIs] Re: Internal links in Wave

2009-10-21 Thread Sam Osborne
At the moment, there is no such feature (that i'm aware of) to link a single blip.. But, in the wish-list there's starring blips so I think we're stepping in the right direction. 2009/10/21 Jack Park > > Close. > I think there is a desire to point at an individual blip in a wave, an > individual

[Google Wave APIs] Re: Internal links in Wave

2009-10-21 Thread Jack Park
Close. I think there is a desire to point at an individual blip in a wave, an individual wavelet, etc. Every thing, according to Engelbart, should be addressable. Thus, the earlier suggestion to make each wavelet or blip addressable, perhaps with the equivalent of html anchors, xpath, etc. Jack

[Google Wave APIs] Re: Internal links in Wave

2009-10-21 Thread Sam Osborne
What I am getting from your first question is that you want to link a Wave in another Wave. There are two ways to do this: 1. Drag and drop the Wave you wish to link to into the Wave you're in 2. Make the link manually (I'll explain this if the 1st isn't what you're looking for (though I

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

2009-10-21 Thread Agustin Horischnik
Hi Pamela, thanks for your answer. I did look at Row of 4 code and I just double checked it but I think it doesn't send anything more than strings or numbers as values within the delta dictionary. What I meant was something like this: controls = document.Gadget('http://MYAPP.appspot.com/public

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

2009-10-21 Thread Agustin Horischnik
Hi Pamela, thanks for your answer. I did look at Row of 4 code and I just double checked it but I think it doesn't send anything more than strings or numbers as values within the delta dictionary. What I meant was something like this: delta = {} foo = ['One', 'Two', 'Three'] delta['bar'] = foo

[Google Wave APIs] Re: Office Hours in 10 Minutes

2009-10-21 Thread Brian Kennish (Googler)
On Wed, Oct 21, 2009 at 10:53 AM, Brian Kennish (Googler) wrote: > Come chat at https://wave.google.com/a/wavesandbox.com/ by searching > for [with:public "office hours"]. The wave is here if you're having trouble finding it: https://wave.google.com/a/wavesandbox.com/#restored:wave:wavesandbox.c

[Google Wave APIs] Re: I'm sure this has been asked before but... Where is the Server Code?

2009-10-21 Thread Austin Chau (Google employee)
The Wave server code hasn't been released yet and it's still an ongoing process. You should jump into the wave protocol group to catch the latest stuff relating to Wave protocol and federation. http://groups.google.com/group/wave-protocol On Wed, Oct 21, 2009 at 7:06 AM, Penthos wrote: > > > Pl

[Google Wave APIs] Office Hours in 10 Minutes

2009-10-21 Thread Brian Kennish (Googler)
Come chat at https://wave.google.com/a/wavesandbox.com/ by searching for [with:public "office hours"]. The transcript will be posted here afterwards. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Wave API"

[Google Wave APIs] Force robot to send updates to client

2009-10-21 Thread Wookai
I have a robot that sometimes does a lot of opreations (~100), that each takes some time. The whole process takes up to a few seconds (it gets content from another website, to the main lag is from the network), which is not very user-friendly. Moreover, one new blip is added to the wave for each

[Google Wave APIs] problem with cron jobs and python

2009-10-21 Thread Wookai
I'm trying to have some updates done periodically, and to do so I'm using the cron feature. Everything works fine, my code is called at the right interval, but I'm stuck with the problem described here : http://code.google.com/p/wave-robot-python-client/issues/detail?id=11 I cannot parse the JSON

[Google Wave APIs] Re: operations reported back to the robot that did them

2009-10-21 Thread Evan Winslow
I have also experienced this behavior. On Oct 21, 2:25 am, markowl wrote: > Hello, > > I created a java robot which receives events for BLIP_SUBMITTED, which > it responds to by appending it's own child Blip. > > This results in another BLIP_SUBMITTED event being received and an > infinite loop

[Google Wave APIs] I'm sure this has been asked before but... Where is the Server Code?

2009-10-21 Thread Penthos
Please pardon my ignorance but I've done several searches in this forum and have been unable to find what I am looking for. I thought Wave Server code was available to Sandbox account holders to set up test servers for experimentation. Am I mistaken? If not, could someone please post the link? (I

[Google Wave APIs] Re: Creating a new wave using embed API or robots

2009-10-21 Thread Patrick Amaru
There seems to be a method for creating Waves in the Python Robot API, did you try that? http://wave-robot-python-client.googlecode.com/svn/trunk/pydocs/waveapi.robot_abstract-module.html I'm interested in the same functionality but haven't tried the Python API, either. If you try this, please

[Google Wave APIs] Re: Internal links in Wave

2009-10-21 Thread Jack Park
Sam, You say "enter something...". What would that *something* be, and what would I expect to happen? Thanks Jack On Wed, Oct 21, 2009 at 10:10 AM, Sam Osborne wrote: > Not sure if this is to do with what you're looking for, but it may help. > Write some text, highlight said text, click the l

[Google Wave APIs] Re: beginner trying to embed....

2009-10-21 Thread Sam Osborne
Oh really?? That's really convenient! Cheers! 2009/10/21 Craig > > Didn't work for me first time either. Figured out it doesn't work when > accessing the HTML from your file system. Whack the embed html on a > web server somewhere, that should sort it. > > Cheers > Craig > > > On Oct 2, 8:46 am,

[Google Wave APIs] Re: Internal links in Wave

2009-10-21 Thread Sam Osborne
Not sure if this is to do with what you're looking for, but it may help. Write some text, highlight said text, click the link button in the edit toolbar, enter something in the Wave ID option instead of URL. 2009/10/21 Jack Park > > I think this is similar to a request I made earlier in the issu

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

2009-10-21 Thread pamela (Google Employee)
Hi Agustin- The "Row of 4" robot does that. Have you looked at it's code? http://wave-samples-gallery.appspot.com/about_app?app_id=36022 - pamela On Thu, Oct 22, 2009 at 2:56 AM, Agustin Horischnik wrote: > > Hi, I have a python robot which updates the state of a gadget. What > would be the righ

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

2009-10-21 Thread Agustin Horischnik
Hi, I have a python robot which updates the state of a gadget. What would be the right way to pass a list/array to the gadget? I assume it's encoding it in JSON, right? But what's the right way to do that? I tried importing simplejson from Django but it didn't really work very well. Is anybody do

[Google Wave APIs] Re: applying google wave to project managment model

2009-10-21 Thread Corey
I was trying a few things with project plan files from OpenProj today to see what some of the possibilities could be. reference: http://openproj.org Dragging and dropping an openproj, .prod file works along with a project exported to and xml format. Unfortunately, editing either two were not po

[Google Wave APIs] Re: Outgoing HTTP connections within a appengine-hosted Wave bot

2009-10-21 Thread Gijsbert
You can use urllib and urllib2, they are implemented on top of urlfetch. On Oct 20, 2:46 pm, "Austin Chau (Google employee)" wrote: > The requirement is specific to the platform.  So yes, Python client library > has it own specific way to do fetch.  You would use the fetch() method > provided >

[Google Wave APIs] Re: Is it possible to import GWT gadget into wave

2009-10-21 Thread qMax
Have you see piano gadget? http://wave-samples-gallery.appspot.com/about_app?app_id=22015 It tends to play sounds somehow, but it quite buggy under firefox w/out some proper plugins. On Oct 1, 6:22 am, maxsap wrote: > Hello all, I am developing a gadget for the wave and while I was > looking fo

[Google Wave APIs] Re: Google Wave sandbox account?

2009-10-21 Thread \x00
I have also have had the same with the invite and form. I been pretty patient only ever applied ones early on and have not nagged once. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post

[Google Wave APIs] Re: Google Wave sandbox account?

2009-10-21 Thread \x00
I have also have had the same with the invite and form. I been pretty patient only ever applied onece early on and have not nagged once. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post

[Google Wave APIs] Re: beginner trying to embed....

2009-10-21 Thread Craig
Didn't work for me first time either. Figured out it doesn't work when accessing the HTML from your file system. Whack the embed html on a web server somewhere, that should sort it. Cheers Craig On Oct 2, 8:46 am, Van Riper wrote: > On Thu, Oct 1, 2009 at 5:21 PM, Graham Anderson > > wrote: >

[Google Wave APIs] operations reported back to the robot that did them

2009-10-21 Thread markowl
Hello, I created a java robot which receives events for BLIP_SUBMITTED, which it responds to by appending it's own child Blip. This results in another BLIP_SUBMITTED event being received and an infinite loop of operation/event. I'm really surprised by this behaviour as the documentation http://

[Google Wave APIs] Creating a new wave using embed API or robots

2009-10-21 Thread yariv.snapir
I have been trying to figure out a way to automatically (through the code) generate a new wave. I would like to be able to create a new wave (conversation) for each object stored in my application to enable collaboration involving this object (example: opening a wave conversation that would track

[Google Wave APIs] User Experience Question: Responding to a submitted blip

2009-10-21 Thread cretzel
I'm currently developing a robot, that recognizes BLIP_SUBMITTED events. If the blip content starts with '!groovy' it interpretes the content of the blip as Groovy (the programming language) code. I wonder, what's the best way to display the result with respect to user experience. I thought about

[Google Wave APIs] Issues with deleting and appending blips and inline blips

2009-10-21 Thread cretzel
I'm currently developing a robot, that recognizes BLIP_SUBMITTED events. To respond to these events, I tried different things. First, I wanted to delete all child blips of the blip and append a single new child, like this for (Blip child : blip.getChildren()) { child.delete(); } blip.createChil

[Google Wave APIs] Re: Internal links in Wave

2009-10-21 Thread Jack Park
I think this is similar to a request I made earlier in the issue index to make blips and wavelets web addressable. As I recall, there is interest in doing that. Jack On Wed, Oct 21, 2009 at 1:55 AM, Jonathan Hunt wrote: > > Hi all, > > Apologies if this is documented somewhere and I haven't be

[Google Wave APIs] Internal links in Wave

2009-10-21 Thread Jonathan Hunt
Hi all, Apologies if this is documented somewhere and I haven't be able to find it. Is there a method (perhaps some sort of annotation) of creating internal links within a wave (i.e as I said in my "earlier blip") where earlier blip is a link to the blip of interest, or links to a specific part o