[Google Wave APIs] Re: loading new version of robot on wavesandbox

2010-04-14 Thread jeno
i am updating event with BLIP_SUBMITTED. still i am getting same wave
version
w:versionfff74ac4797c/w:version  and event haven't updated
with w:capabilities

please any help

cheers
jeno


On Apr 14, 3:30 pm, jeno jeno...@gmail.com wrote:
 Hi *,

 I developed simple robot using latest version of java api and deployed
 on GAE. working cool on wave sandbox.

 For the next version i removed WAVELET_PARTICIPANTS_CHANGED event and
 add onFormButtonClicked
 and also change my getRobotAvatarUrl and getRobotProfilePageUrl.
 deployed on GAE and change default apps as current version

 When i am inspecting Robot Capabilities , it is not changed . It is
 returned as previous version did

 w:robot
 w:versionfff74ac4797c/w:version
 w:protocolversion0.2/w:protocolversion
 -
 w:capabilities
 w:capability name=WAVELET_SELF_ADDED/
 w:capability name=WAVELET_PARTICIPANTS_CHANGED/
 /w:capabilities
 /w:robot

  i removed robot participant and add it again . robot added with old
 version of  avatar image and url. it is not loaded new version.

 Thanks for your time

-- 
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 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



[Google Wave APIs] Python Robot API: GadgetStateChanged and Filters

2010-04-14 Thread Martin Kreichgauer
Hello,

I tried using the filters of the Python v2 Robot API with the
GadgetStateChanged event. The code looks like this:

def on_gadget_state_changed(event, wavelet):
# ...
my_robot = robot.Robot(my_robot, profile_url='url')
my_robot.register_handler(events.GadgetStateChanged,
on_gadget_state_changed,
filter=StringThatDoesNotAppearAnywhereInTheGadgetState)
appengine_robot_runner.run(my_robot, debug=True)

I would expect that the handler never gets called because the filter
string can certainly not be found in the wave or any gadget state.
However, the event handler is called every single time the gadget
state changes. What am I doing wrong?

Thanks,
Martin Kreichgauer

-- 
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 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



[Google Wave APIs] onBlipSubmitted on gadget state update?

2010-04-14 Thread Willy Lai
Hi there,

Could it be, that the onBlipSubmittedEvent is fired, when a gadget
state is updated?

Cheers
Will

-- 
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 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



[Google Wave APIs] Update on being able to access attachments?

2010-04-14 Thread Mike
I've been looking into an issue that apparently has come up before:

http://code.google.com/p/wave-robot-python-client/issues/detail?id=10

I too am trying to access attachments from a robot (in Python) with no
success.  Is it true that no progress has been made on this issue
since the ticket was accepted in September?

I'm just looking for a status update.  Can anyone help me?

Thanks,
Mike M.

-- 
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 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



Re: [Google Wave APIs] Update on being able to access attachments?

2010-04-14 Thread pamela (Google Employee)
Ah, we actually deprecated the issue tracker there. The relevant issue to
track in google-wave-resources is here:
http://code.google.com/p/google-wave-resources/issues/detail?id=61

Managing attachments isn't as straightforward as dealing with the other
elements in the wave, so it requires more thought, design, and time. We are
making progress on this now, however.

Please star that issue.

- pamela

On Wed, Apr 14, 2010 at 12:31 PM, Mike mike...@gmail.com wrote:

 I've been looking into an issue that apparently has come up before:

 http://code.google.com/p/wave-robot-python-client/issues/detail?id=10

 I too am trying to access attachments from a robot (in Python) with no
 success.  Is it true that no progress has been made on this issue
 since the ticket was accepted in September?

 I'm just looking for a status update.  Can anyone help me?

 Thanks,
 Mike M.

 --
 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
 google-wave-api+unsubscr...@googlegroups.comgoogle-wave-api%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-wave-api?hl=en.



-- 
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 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



Re: [Google Wave APIs] Update on being able to access attachments?

2010-04-14 Thread Mike Mabey
Awesome.  Thanks Pamela.  And sorry for the double-posting... I'm still
figuring things out.


On Wed, Apr 14, 2010 at 11:15 AM, pamela (Google Employee) 
pamela...@gmail.com wrote:

 Ah, we actually deprecated the issue tracker there. The relevant issue to
 track in google-wave-resources is here:
 http://code.google.com/p/google-wave-resources/issues/detail?id=61

 Managing attachments isn't as straightforward as dealing with the other
 elements in the wave, so it requires more thought, design, and time. We are
 making progress on this now, however.

 Please star that issue.

 - pamela

 On Wed, Apr 14, 2010 at 12:31 PM, Mike mike...@gmail.com wrote:

 I've been looking into an issue that apparently has come up before:

 http://code.google.com/p/wave-robot-python-client/issues/detail?id=10

 I too am trying to access attachments from a robot (in Python) with no
 success.  Is it true that no progress has been made on this issue
 since the ticket was accepted in September?

 I'm just looking for a status update.  Can anyone help me?

 Thanks,
 Mike M.

 --
 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
 google-wave-api+unsubscr...@googlegroups.comgoogle-wave-api%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-wave-api?hl=en.


  --
 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
 google-wave-api+unsubscr...@googlegroups.comgoogle-wave-api%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-wave-api?hl=en.


-- 
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 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



[Google Wave APIs] Re: loading new version of robot on wavesandbox

2010-04-14 Thread jeno
Hi Kapil,

Thanks for your time.
the version should be automatically changed to a new hash value
whenever you add or remove an event
( http://code.google.com/apis/wave/articles/robotdebugging.html)
My issue is version hasn't changed when i add or remove an events.

If the version is not changed bot is loading with old version.

Cheers
jeno

On Apr 14, 9:27 pm, Kapil Neurgaonkar caps...@gmail.com wrote:
 Hi Jeno,
 With v2 APIs the capabilities document is automatically generated based on
 the behavior of your robot. You can check the
 documentationhttp://code.google.com/apis/wave/extensions/robots/events.html#Capabi...
 .

 Regards,
 Kapil Neurgaonkar



 On Wed, Apr 14, 2010 at 12:24 PM, jeno jeno...@gmail.com wrote:
  i am updating event with BLIP_SUBMITTED. still i am getting same wave
  version
  w:versionfff74ac4797c/w:version  and event haven't updated
  with w:capabilities

  please any help

  cheers
  jeno

  On Apr 14, 3:30 pm, jeno jeno...@gmail.com wrote:
   Hi *,

   I developed simple robot using latest version of java api and deployed
   on GAE. working cool on wave sandbox.

   For the next version i removed WAVELET_PARTICIPANTS_CHANGED event and
   add onFormButtonClicked
   and also change my getRobotAvatarUrl and getRobotProfilePageUrl.
   deployed on GAE and change default apps as current version

   When i am inspecting Robot Capabilities , it is not changed . It is
   returned as previous version did

   w:robot
   w:versionfff74ac4797c/w:version
   w:protocolversion0.2/w:protocolversion
   -
   w:capabilities
   w:capability name=WAVELET_SELF_ADDED/
   w:capability name=WAVELET_PARTICIPANTS_CHANGED/
   /w:capabilities
   /w:robot

    i removed robot participant and add it again . robot added with old
   version of  avatar image and url. it is not loaded new version.

   Thanks for your time

  --
  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
  google-wave-api+unsubscr...@googlegroups.comgoogle-wave-api%2Bunsubscribe@ 
  googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-wave-api?hl=en.

-- 
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 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.



[Google Wave APIs] Problems embed API http://wave-api.appspot.com/public/embed.js

2010-04-14 Thread hvt_kg
Hi All,

The current I try embed with instruction from 
http://code.google.com/apis/wave/embed/guide.html
site. It is OK.

SO, When I using some API from 
http://code.google.com/apis/wave/embed/reference.html
ex: addReply(..) it is not work. anyone see issue. Pls tell me

I think it is missing or not update document from GW? right?


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 this group, send email to 
google-wave-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-wave-api?hl=en.