[Google Wave APIs] Re: Getting a BlipId after a Blip is created

2010-04-07 Thread atarno
take a look here: https://wave.google.com/wave/#restored:wave:googlewave.com!w%252B-KvGZghcC.2 On Apr 8, 4:01 am, Joel Dietz wrote: > This feels like a dumb question but since I can't find the answer I am going > to go ahead and ask it anyways. > > If my robot generates a blip how can I figure ou

[Google Wave APIs] api2: getting value of textarea

2010-03-31 Thread atarno
folks, i need to get textarea's value in api2 and i don't really find a way to do it. in api1 i was doing the following: FormElement textarea = blip.getDocument().getFormView().getFormElement(TEXT_AREA_NAME); String data = textarea.getValue(); in api2 i was about to do something like: blip.all(

[Google Wave APIs] Re: Jan 28th Wave Preview Release: API Changes

2010-01-29 Thread atarno
there is a regression bug that makes onFormSubmit events always return null instead of pressed buttonId. this actually kills the functionality of all robots activating any logics after a form is submitted. the bug was existing only in sandbox and it seems that after this release it successfully mig

[Google Wave APIs] Re: sandbox: event.getButtonName() always returns null

2010-01-23 Thread atarno
com/p/google-wave-resources/issues/detail?id=636>Thanks > for reporting this. > > Austin > > On Fri, Jan 22, 2010 at 6:18 AM, atarno wrote: > > since the last sandbox update (jan 21st) > > event.getButtonName() called on FORM_BUTTON_CLICKED event always > > ret

[Google Wave APIs] sandbox: event.getButtonName() always returns null

2010-01-22 Thread atarno
since the last sandbox update (jan 21st) event.getButtonName() called on FORM_BUTTON_CLICKED event always returns null. in the wave preview this still works ok. has anyone noticed the same behavior? -- You received this message because you are subscribed to the Google Groups "Google Wave API" gr

[Google Wave APIs] Re: BLIP_DELETED event is not send to robot

2010-01-22 Thread atarno
yes, i've posted about this issue a couple of days ago: http://groups.google.com/group/google-wave-api/browse_frm/thread/5049edfdd926a6c1# On Jan 22, 12:48 pm, Evgeniy Beschastnov wrote: > Hi! > My robot does not receive BLIP_DELETED event anymore. This event is > correctly registered in capab

[Google Wave APIs] Re: BLIP_DELETED is not dispatched to robot

2010-01-21 Thread atarno
ne in both environments. thanks On Jan 21, 1:02 pm, atarno wrote: > hey pamela, > > thanks for a prompt response. > actually i was wrong, this doesn't work in the sandbox too. > just no more BLIP_DELETED notifications for my bot :( > > i see in the transactions data i st

[Google Wave APIs] Re: BLIP_DELETED is not dispatched to robot

2010-01-21 Thread atarno
en changed after that date? do your bots continue to receive BLIP_DELETED events as expected? thanks a lot atarno http://code.google.com/p/wavorizer/source/browse On Jan 21, 1:46 am, "pamela (Google Employee)" wrote: > As Wave Preview and Wave Sandbox are currently running the sam

[Google Wave APIs] Re: BLIP_DELETED is not dispatched to robot

2010-01-20 Thread atarno
everything seems to work in the sandbox. is there a chance BLIP_DELETED is not propagated only in wave preview environment? -- 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.

[Google Wave APIs] BLIP_DELETED is not dispatched to robot

2010-01-20 Thread atarno
hi, i'd like my robot to catch BLIP_DELETED events. my robots capabilities.xml looks like this: ?xml version="1.0" encoding="utf-8"?> http://wave.google.com/extensions/robots/1.0";> 1.1.5 in the java code i try to catch the blip_deleted event as follows: public void

[Google Wave APIs] Re: wavelet.appendBlip("ID") doesn't set DataDocument

2009-12-30 Thread atarno
: the newly created blip. there is a chance i'm the one missing something here :) thanks again, and happy new year. On Dec 31, 1:13 am, "pamela (Google employee)" wrote: > Hi Atarno - > > In the first bit of code, you never set the data document, so I would > expect

[Google Wave APIs] wavelet.appendBlip("ID") doesn't set DataDocument

2009-12-16 Thread atarno
hey all, i've noticed that when i run the following: wavelet.appendBlip("ID") ; String id = wavelet.getDataDocument("ID"); id is null. but when i do this: Blip initBlip = wavelet.appendBlip(); wavelet.setDataDocument("ID", initBlip.getBlipId()); String id = wavelet.getDataDocument("ID"); id g

[Google Wave APIs] Re: self_added event not dispatched

2009-12-14 Thread atarno
lem doesn't always exist, but at least it seems i don't get this nasty error in logs anymore. still have to track this issue... On Dec 14, 1:01 pm, Kartik Bansal wrote: > I face the same issue number of times with my robot too. > > > > On Mon, Dec 14, 2009 at 4:22 PM, atarno

[Google Wave APIs] self_added event not dispatched

2009-12-14 Thread atarno
folks, sometimes i see a problem with self_added event not called in the following scenario: 1. i create a new wave without adding participants 2. i type some text in the root blip and push done button 3. the frame with contacts is displayed 4. i add participants to a wave, including my robot 5.

[Google Wave APIs] Re: WaveSandbox.com: 10 Minutes Downtime Coming Now

2009-12-07 Thread atarno
hey, i have an issue with images too. no images are displayed, neither in old blips and in newly created ones. the logs @ ae have no errors. also all avatars in the users list have a default gray image now. thanks. On Dec 7, 12:11 pm, "pamela (Google Employee)" wrote: > Possibly; particularly i

[Google Wave APIs] Re: who added the bot?

2009-12-02 Thread atarno
thanks, i'll give it a try. this might work if the bot is added while the wave already exists, but actually i wasn't sure getAddedParticipants() returns anything when the new wave is just created and the bot is added by wave creator. On Dec 2, 4:56 am, Stephen George wrote: > atarn

[Google Wave APIs] who added the bot?

2009-12-01 Thread atarno
folks, is there any way to know who of the wave participants has added the robot to the wave? thanks! -- 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 t

[Google Wave APIs] Re: wasSelfRemoved() is not propagated to robot

2009-11-30 Thread atarno
t; On Sun, Nov 29, 2009 at 2:22 PM, atarno wrote: > > Hi folks, > > > I'm trying to catch WAVELET_SELF_REMOVED event by using > > RobotMessageBundle.wasSelfRemoved(). > > I remove my robot from the wave, but RobotMessageBundle.wasSelfRemoved > > () doesn't s

[Google Wave APIs] wasSelfRemoved() is not propagated to robot

2009-11-29 Thread atarno
Hi folks, I'm trying to catch WAVELET_SELF_REMOVED event by using RobotMessageBundle.wasSelfRemoved(). I remove my robot from the wave, but RobotMessageBundle.wasSelfRemoved () doesn't seem to be called. Did this ever work for anyone? The Java code that should implement this looks like this: ...