[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: Serving a dynamic gadget from the robot app

2009-11-08 Thread pamela (Google Employee)
I believe the IMDBotty sample does something like that, using the Python SDK and Django templates: http://wave-samples-gallery.appspot.com/about_app?app_id=48018 - pamela On Sun, Nov 8, 2009 at 6:05 PM, David Nesting wrote: > This seems pretty straightforward to do within appengine. Rather tha

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

2009-11-07 Thread David Nesting
This seems pretty straightforward to do within appengine. Rather than serve a static XML document from a static_dir or static_files handler, serve it from a script. The script could accept query or path parameters to customize the XML it emits. If you need details, what language are you working