[Google Wave APIs] Re: State callback function is called multiple times when there is more than one key-value pair in the delta object

2009-11-09 Thread Vikram
Here is the documentation of all the APIs: http://code.google.com/apis/wave/extensions/gadgets/reference.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post to this group, send email

[Google Wave APIs] Re: State callback function is called multiple times when there is more than one key-value pair in the delta object

2009-11-09 Thread Vikram Dhillon
I apologize for being a little vague here, can you give me a link to this function in the API, I might have to dig in a little more on this topic -- Regards, Vikram On Tue, Nov 10, 2009 at 12:08 AM, Vikram wrote: Thanks for the reply Vikram :) My doubt is when i supply multiple key-value

[Google Wave APIs] Re: State callback function is called multiple times when there is more than one key-value pair in the delta object

2009-11-09 Thread Vikram
Thanks for the reply Vikram :) My doubt is when i supply multiple key-value pairs as a part of single delta object, why is it the state callback function called as many times as the number of key-value pairs. When the key-value pairs are a part of the single delta object I feel that the state cal

[Google Wave APIs] Re: State callback function is called multiple times when there is more than one key-value pair in the delta object

2009-11-09 Thread Vikram Dhillon
You have a nice name :) The method call seems to be fine, please elaborate on number of key value pairs, I think it makes sense that if you have more than 1 key pairs then it should make more than 1 object. -- Regards, Vikram Dhillon On Sat, Nov 7, 2009 at 7:29 AM, Vikram wrote: Hi fellow

[Google Wave APIs] Re: Google Wave Data API

2009-11-09 Thread pamela (Google Employee)
This is the nature of forums. Once the whole world of communication is on Wave, you can collapse/delete replies that don't interest you. One day... :) - pamela On Tue, Nov 10, 2009 at 12:44 PM, Oliver Baker wrote: > > Yes, > > I have so many times posted questions on groups and forums etc... an

[Google Wave APIs] Re: Google Wave Data API

2009-11-09 Thread Oliver Baker
Yes, I have so many times posted questions on groups and forums etc... and had my question been answered half way down the page. because people post their opinion or side, whatever, which is not an answer. And you my friend, have made my point, congrats. (I have to now I have replied to you tho)

[Google Wave APIs] Re: google wave protocol and regular xmpp server compatibility

2009-11-09 Thread pamela (Google Employee)
Hi maxsap- I'd suggest posting in the protocol forum for a better chance of a good response: http://groups.google.com/group/wave-protocol - pamela On Tue, Nov 10, 2009 at 10:18 AM, maxsap wrote: > > Hello all, I am developing robot and currently I am using an xmpp > server my question is if th

[Google Wave APIs] google wave protocol and regular xmpp server compatibility

2009-11-09 Thread maxsap
Hello all, I am developing robot and currently I am using an xmpp server my question is if the wave protocol is 100% compatible with a regular xmpp server (e.g. openfire,or a xmpp RA)? if yes can I also use all the xmpp extensions (jingle...)? I have read the draft specification but don't quite un

[Google Wave APIs] Re: Embedding Waves in Blogs and Search Engines

2009-11-09 Thread Christopher Baker
I apologize if I made it look like you were attacking the idea. I haven't yet had time to get into wave development. I know nothing at all about OAuth. I guess it would make sense to create the post (collaboratively or otherwise) before adding the robot. Perhaps the gadget could be inserted in a

[Google Wave APIs] Re: Google Wave Data API

2009-11-09 Thread David Nesting
On Mon, Nov 9, 2009 at 2:04 PM, Oliver Baker wrote: > PLEASE DO NOT POST THE FIRST REPLY IF IT IS NOT AN ANSWER, I DON'T > WANT TO ANSWER TO BE 20 REPLIES DOWN! > > P.S: The FIRST REPLY must be an Answer, not an opinion (e.g: "Yeah > when will it come out" (Not that)) > Seriously? --~--~-

[Google Wave APIs] Re: Embedding Waves in Blogs and Search Engines

2009-11-09 Thread David Nesting
I'm not attacking the idea at all. Like I said, I'm working on the same thing, so I'd love to hear your ideas on some of these. On Mon, Nov 9, 2009 at 11:05 AM, Christopher Baker wrote: > 2. Use a gadget that goes with the robot (can the robot add it?) that you > can fill in information (maybe e

[Google Wave APIs] Re: how to determine if gadget viewer is gadget installer ?

2009-11-09 Thread Sol Wu
hi qMax, you can use wave.getHost() to get the person who added the gadget. Then check if wave.getViewer() is same as wave.getHost(). Hope it helps, Sung, On Nov 8, 9:05 pm, qMax wrote: > Hi. > I want to provide different controls in depend on who is controlling > gadget. > Is there a way to det

[Google Wave APIs] Re: Google Wave Data API

2009-11-09 Thread pamela (Google Employee)
Hi Oliver- It is not on our immediate roadmap, so I would not expect any version of it to be within the next month. Our current focus is on improving the extensions APIs so that developers can create and share more user-friendly extensions. When we have something that we are ready to share with d

[Google Wave APIs] Google Wave Data API

2009-11-09 Thread Oliver Baker
Hi, This is specifically a question for the Google API staff, but anybody can post an answer. PLEASE DO NOT POST THE FIRST REPLY IF IT IS NOT AN ANSWER, I DON'T WANT TO ANSWER TO BE 20 REPLIES DOWN! Can we have some idea about when the Google Wave Data API will be released for use. And if possi

[Google Wave APIs] Re: Just can't get FORM_BUTTON_ADDED work (Python)

2009-11-09 Thread Daniel Faust
Oh, and in the example link, don't let yourself get irritated because of the def OnFormButtonClicked(__event__, context): [...] button = __event__.properties['button'] just replace it so that it says: def OnFormButtonClicked(properties, context): [...] button = properties['button'] O

[Google Wave APIs] Re: Just can't get FORM_BUTTON_ADDED work (Python)

2009-11-09 Thread Daniel Faust
Take this one as a tutorial http://code.google.com/p/wave-projects/source/browse/robots/wave-xmpp/main.py#274 On Nov 9, 6:28 am, Bernardo Amorim wrote: > I just cant get it work, here's my code: > > Main class: > if __name__ == '__main__': >   myRobot = robot.Robot('APP-NAME', >       image_url=

[Google Wave APIs] Re: Maybe Not-so-Typical Python http 404 Error

2009-11-09 Thread pamela (Google Employee)
Right, that's correct. You could try using the third-party PyDev plugin for eclipse. It has an App Engine project template as well. I downloaded it, but haven't yet tried it out myself. (So addicted to vim). - pamela On Fri, Nov 6, 2009 at 3:58 PM, goatus wrote: > > Figured it out... in the Pyt

[Google Wave APIs] Re: Unable to register event handlers for all events except WaveletSelfAdded

2009-11-09 Thread pamela (Google Employee)
Hi Sri- Did you try deploying your app to a new app identifier? Did you try incrementing the version of your Robot? What is the URL of the robot? - pamela On Fri, Nov 6, 2009 at 3:12 AM, Sri wrote: > > Hi, > > For some reason, I am unable to set handlers for all events except the > Waveletself

[Google Wave APIs] Re: Cron Tutorial

2009-11-09 Thread Austin Chau (Google employee)
The are instabilities around the current cron setup, which is the reason why we w are upgrading to a new mechanism. I personally have had trouble running crons (I haven't tried it in the last few weeks, I wrote Stocky BTW). Sorry if this is an inconvenience to you guys, we are trying to push the

[Google Wave APIs] Re: Embedding Waves in Blogs and Search Engines

2009-11-09 Thread Christopher Baker
1. I haven't look closely enough to solve this bit just yet. 2. Use a gadget that goes with the robot (can the robot add it?) that you can fill in information (maybe even store a cookie for next time). 3. 2 would contain this information (URL, user, pass, title=subject). My thoughts would be

[Google Wave APIs] Re: Cron Tutorial

2009-11-09 Thread Richard Korff
Austin, The reference to Stocky, is for education/documentation only, correct ? I have read other messages which says that cron does not work at the moment. I have tried to do the same as Stocky, but it seems the cron does not fire. Also, any idea when the new cron environment is going to be ro

[Google Wave APIs] Re: No enum const class com.google.wave.api.EventType.OPERATION_ERROR

2009-11-09 Thread Piotr Pejas
Thank you for clarification in javadoc there is no info which tags are supported, and exception also wasn't very helpful. I've built dynamic widget to work this around. Best Regards Piotr Pejas On Mon, Nov 9, 2009 at 3:09 AM, Austin Chau (Google employee) wrote: > Since I don't have the full co

[Google Wave APIs] Re: Embedding Waves in Blogs and Search Engines

2009-11-09 Thread David Nesting
On Sun, Nov 8, 2009 at 11:52 PM, Christopher Baker wrote: > Personally, I think that the blogs with waves embedded in them look rather > funny, even with matching colors. I would think that the best option would > be to create a robot that updates the blog based on the wave content. I plan > on fi

[Google Wave APIs] Re: Serving a dynamic gadget from the robot app

2009-11-09 Thread hcvst
Hi Flavio, let your bot add the gadget and include some query-string parameters such as the wave-id when it does, so that you can correlate in subsequent requests on that id. I've used that approach for my wavedirectory.net. Source available at github. http://example.com/gadget.xml?waveid=id Re

[Google Wave APIs] Re: Cron Tutorial

2009-11-09 Thread hcvst
Hi Austin, so cron works again? Last time I checked, my bot was never notified and all threads here spoke of cron not working for now (possibly until the new mechanism is rolled out). HC On Nov 9, 4:14 am, "Austin Chau (Google employee)" wrote: > We do not have documentation for the current cr

[Google Wave APIs] Re: How to display an image button...

2009-11-09 Thread Venkat Polisetti
Feature request is here: http://code.google.com/p/google-wave-resources/issues/detail?id=426 On Nov 8, 9:16 pm, "Austin Chau (Google employee)" wrote: > Image button is not available, you can only have the typical gray button for > it to be clickable.  Feel free to file a feature request for

[Google Wave APIs] Re: Google Calendar?

2009-11-09 Thread Matias Molinas
I am developing a robot and a gadget to integrate the calendar, see www.bubaproject.com , but is still in an early stage. In a week will be available a version with minimal functionality. Greetings 2009/11/8 OneRyt : > > http://s77.photobucket.com/albums/j46/OneRyt/? > action=view¤t=Calendar-Su

[Google Wave APIs] Re: Embedding Waves in Blogs and Search Engines

2009-11-09 Thread Christopher Baker
Personally, I think that the blogs with waves embedded in them look rather funny, even with matching colors. I would think that the best option would be to create a robot that updates the blog based on the wave content. I plan on finding out if anybody has done this, or doing it myself, although I

[Google Wave APIs] Wave robot develop problem

2009-11-09 Thread terry
Hi all. Recently i write wave robot for special use, i find it difficulty to pass some settings parameter to different people when added the robot. and i find the robot it very useful to add an menu on a wavelet blip pop menu, or drop down menu, is there a way to do that? and is possible to show

[Google Wave APIs] Re: Google Calendar?

2009-11-09 Thread OneRyt
http://s77.photobucket.com/albums/j46/OneRyt/? action=view¤t=Calendar-Suggestion.png" target="_blank">http://i77.photobucket.com/albums/j46/OneRyt/Calendar- Suggestion.png" border="0" alt="Photobucket"> On Nov 7, 4:20 pm, OneRyt wrote: > It seems almost a no brainer to add a google calendar ap