[Google Wave APIs] Re: Database sharing

2010-01-27 Thread RAVINDER MAAN
Thanks Simon Rawet I think this is good workaround for my problem.:)...I will try it and see if it works for me.. With Best Regards Ravinder Singh Maan On Jan 28, 9:17 am, Simon Rawet wrote: > Appengen alows multipel versons of an application and in this case   > wave robots. So what you can

[Google Wave APIs] Wave Embeding

2010-01-27 Thread RAVINDER MAAN
Hi everyone I am embeding a wave on website but the problem is that to view that wave user must be logged in to wavesandbox.Is there any plan in future that when user open page containing wave it will show sign in page and than after logging in user is redirected back to the website where

Re: [Google Wave APIs] Database sharing

2010-01-27 Thread Simon Rawet
Appengen alows multipel versons of an application and in this case wave robots. So what you can do is give one bot verson 1 and the other 2 and then there wave addres are something like 1.verson.appn...@appspot.com The wersoning is done in your app file and if you login to your appengen acc

Re: [Google Wave APIs] Uniqueness of BlipId

2010-01-27 Thread Christopher Harvey
Given "Every document within a wavelet has an identifier unique within the wavelet", I take that to mean that a BlipID need only be unique within that *particular* wavelet, hence one, or more, 'duplicate' BlipIDs could exist in other wavelets. (The same being the case with WaveletIDs within WaveIDs

Re: [Google Wave APIs] Adding a link to an Image Element (Java)

2010-01-27 Thread Christopher Harvey
My interpretation of the spec would say 'yes': given that a link is an annotation and that an image is an element that is part of a blip's line element, and that the line may be annotated. In our implementation, we have included the attachment ID within the annotation data, and thus do not (curren

[Google Wave APIs] Virtual office hour starting now!

2010-01-27 Thread Austin Chau (Google employee)
Please join us for Wave API office hours in this public wave on Wave Sandbox - https://wave.google.com/a/wavesandbox.com/#restored:search:in%253Ainbox+office+hours,restored:wave:wavesandbox.com!w%252BI-UyKsJ_A.1 -- You received this message because you are subscribed to the Google Groups "Googl

Re: [Google Wave APIs] Adding a link to an Image Element (Java)

2010-01-27 Thread Austin Chau (Google employee)
Hi, Unfortunately this is not available right now, we are planning to add that in the future. Austin On Tue, Jan 26, 2010 at 12:18 PM, fdezjose wrote: > Hello! > > Is it possible to add a link to an Image Element that is appended to a > blip? > > Thanks! > > -- > You received this message beca

Re: [Google Wave APIs] Hosting a local gadget

2010-01-27 Thread pamela fox
Hi Daniel - Gadgets must be hosted on a public server, as they are sent through a proxy on the gadgets container server to get rendered. I thought we put that restriction in the docs, but perhaps it needs to be made more prominent. You may want to try hosting the XML publicly, and referring to you

[Google Wave APIs] Re: No container specified Problem

2010-01-27 Thread FX-VISION
I have another problem: How to do it, that the searchform only shows if you edit the post? -- 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,

[Google Wave APIs] Re: No container specified Problem

2010-01-27 Thread FX-VISION
Thank You! It worked! (I had to remove some breaks,GoogleGroups maked) -- 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 goog

[Google Wave APIs] Hosting a local gadget

2010-01-27 Thread Daniel França
Hi, I'm trying to host a local gadget running Apache, when I try to access that via browaer it works fine (and even work inside my company network), but in Google Wave the gadget appears broken, and I don't have any tip about why it's happening (Or I don't know where to see that). The same gadget

Re: [Google Wave APIs] Freeze a wavelet

2010-01-27 Thread Daniel França
https://wave.google.com/a/wavesandbox.com/?ll=debug#restored:wave:wavesandbox.com!w%252BIJlbhVeiA In this wave I'm using only one of the gadgets I said, and I wanna a scrollbar at the side of this, b

[Google Wave APIs] Re: Problem with wave creation from JAVA robot

2010-01-27 Thread Evgeniy Beschastnov
In my case robot just creates wave and adds there itself and another person. I can't find any problem with events in logs. It looks like robot receives all the events even just after deployment. But first time after deloyment wave is not created. With Best Regards, Evgeniy On Jan 26, 4:16 pm, RAVI

[Google Wave APIs] Re: Problem with wave creation from JAVA robot

2010-01-27 Thread Evgeniy Beschastnov
In my case robot just creates wave and adds there itself and another person. I can't find any problem with events in logs. It looks like robot receives all the events even just after deployment. But first time after deloyment wave is not created. With Best Regards, Evgeniy On Jan 26, 4:16 pm, RAVI

[Google Wave APIs] Re: Problem with wave creation from JAVA robot

2010-01-27 Thread Evgeniy Beschastnov
In my case robot just creates wave and adds there itself and another person. I can't find any problem with events in logs. It looks like robot receives all the events even just after deployment. But first time after deloyment wave is not created. With Best Regards, Evgeniy On Jan 26, 4:16 pm, RAVI

[Google Wave APIs] Re: No container specified Problem

2010-01-27 Thread Dan
D'oh, in my "correction" I went and repeated the error. Should read: Track: Artist: On Jan 27, 11:54 am, Dan wrote: > The specific problem which is causing that error is that you are > submitting the form with no action. > > Change the input type of the button to "button

[Google Wave APIs] Re: No container specified Problem

2010-01-27 Thread Dan
The specific problem which is causing that error is that you are submitting the form with no action. Change the input type of the button to "button" instead of "submit", and move "onsubmit='serch();'" from the form tag to the button (as onclick). i.e.: Track: Artist: There a