[Google Wave APIs] Re: Adding a HTML Anchor to a Wave via the Robot Protocol.

2009-10-06 Thread Austin Chau (Google employee)
Hi, If you just append the straight URL, Wave will automatically linkify into an anchor link with the URL as its anchor text. But it seems like you would like to have customized anchor text, you would need annotation to do that. The annotation name for anchor link is link/manual, this is an

[Google Wave APIs] Re: Included OAuth code causing The class not persistable error

2009-10-07 Thread Austin Chau (Google employee)
Hi Eric and Nicolas, If you are guys are using Eclipse with GAE plugin, try running the project-clean which will force rebuilding the entire project includeing the enhance target. Austin On Wed, Oct 7, 2009 at 7:04 AM, Nicolas patry.nico...@gmail.com wrote: I am having the exact same

[Google Wave APIs] Re: Adding a HTML Anchor to a Wave via the Robot Protocol.

2009-10-07 Thread Austin Chau (Google employee)
again for your help! --- Entropyfails On Oct 7, 12:25 am, Austin Chau (Google employee) api.aus...@google.com wrote: Hi, If you just append the straight URL, Wave will automatically linkify into an anchor link with the URL as its anchor text. But it seems like you would like to have

[Google Wave APIs] Re: Adding a HTML Anchor to a Wave via the Robot Protocol.

2009-10-07 Thread Austin Chau (Google employee)
be a slightly more elegant solution: blip.getDocument().appendMarkup(a href=\http://www.google.com\;To Google /a); I haven't used appendMarkup() before, so I am making an educated guess. On Oct 7, 2:42 pm, Austin Chau (Google employee) api.aus...@google.com wrote: Glad to help :) Can you file

[Google Wave APIs] Re: Adding a HTML Anchor to a Wave via the Robot Protocol.

2009-10-08 Thread Austin Chau (Google employee)
You can try to add a trailing space at the end of the anchor text and annotate the text just before the trailing space. This should prevent the autolinking to continue on. Austin On Wed, Oct 7, 2009 at 11:43 PM, masouras masou...@gmail.com wrote: I can inject a link to the blip using

[Google Wave APIs] Re: Trouble getting String from a form.

2009-10-09 Thread Austin Chau (Google employee)
It looks fine. You can make sure it is the right button that is triggering the event by - if (e.getButtonName().equals(BUTTON_NAME)) { FormView formView = currentBlip.getDocument().getFormView(); FormElement element = formView.getFormElement(input);

[Google Wave APIs] Re: Gadgets and AuthSub requests.

2009-10-09 Thread Austin Chau (Google employee)
Hi, This page might be helpful, it contains details on how to invoke AuthSub wihtin opensocial container (Wave gadget is running on opensocial container) - http://wiki.opensocial.org/index.php?title=Leveraging_Google_Data_APIs_in_OpenSocial_Apps

[Google Wave APIs] Re: Cursor Position

2009-10-11 Thread Austin Chau (Google employee)
The annotateSelection action in the menuHook of extension installer would only trigger if something is highlighted on the wave client. And this is currently the only way to obtain the user cursor position. So whatever text that is highlighted by the user just before the extension installer is

[Google Wave APIs] Re: Trouble uploading Gadget's xml

2009-10-15 Thread Austin Chau (Google employee)
I didn't see any problem when I added your gadget spec. Austin On Thu, Oct 15, 2009 at 8:05 AM, bxgirten bxgir...@gmail.com wrote: I point to a perfectly valid URI http://demo.biogadgets.net/exist/gwave/wavegadget.xml but after clicking the Add XML button, the dialog disappears and

[Google Wave APIs] Re: Not possible to delete image element?

2009-10-16 Thread Austin Chau (Google employee)
Hi, I believe the problem is that you are trying to delete element using absolute index position. The moment you delete the first element in your loop, the absolute positions for the other elements have changed as a result. This is why the subsequent deletion would fail. If you want to delete

[Google Wave APIs] Re: Not possible to delete image element?

2009-10-16 Thread Austin Chau (Google employee)
Hi Lincoln, I wrote a quick sample and I think there might be a bug with deleting image element. I will file an bug for this. Thanks for the report :) Austin On Fri, Oct 16, 2009 at 1:00 PM, Linc ala...@online.de wrote: Ok... This could happen, true. But in my case the first elemet it

[Google Wave APIs] Re: Outgoing HTTP connections within a appengine-hosted Wave bot

2009-10-20 Thread Austin Chau (Google employee)
Hi, Since robots is hosted within Google Appengine(GAE) and GAE only allows external HTTP connection be made with java.net.URLConnection, other mechanism might not be enabled. You may want to find out if the client library you are using is using something other than URLConnection, in that case

[Google Wave APIs] Re: Outgoing HTTP connections within a appengine-hosted Wave bot

2009-10-20 Thread Austin Chau (Google employee)
20, 2009 at 7:48 PM, Austin Chau (Google employee) api.aus...@google.com wrote: Since robots is hosted within Google Appengine(GAE) and GAE only allows external HTTP connection be made with java.net.URLConnection, other mechanism might not be enabled. Okay thanks for the tip. Do you know

[Google Wave APIs] Re: Does StyledText / StyleType work in the Java API?

2009-10-22 Thread Austin Chau (Google employee)
I am seeing the same thing. This is a bug with the insertStyledText(). I have filed a bug for it - http://code.google.com/p/google-wave-resources/issues/detail?id=341 Thanks for reporting. http://code.google.com/p/google-wave-resources/issues/detail?id=341Austin On Thu, Oct 22, 2009 at 3:39

[Google Wave APIs] Re: Robot notified when it is added as participant?

2009-10-22 Thread Austin Chau (Google employee)
The event you want to catch is EventType.WAVELET_SELF_ADDED This event type does not need to be explicitly registered for, it is added by default to all robot. Austin On Thu, Oct 22, 2009 at 8:57 AM, Karan karan.bhatna...@gmail.com wrote: Hi, Out of the seven actions events listed at

[Google Wave APIs] Re: What are the rules for appendMarkup?

2009-10-23 Thread Austin Chau (Google employee)
This is the list of all the html tags that I know are being handled at the moment: p, div, b, strong, i, em. Austin On Fri, Oct 23, 2009 at 9:17 AM, Andrew andrewsqu...@gmail.com wrote: Hi again, One of the bots I'm currently writing needs to insert various hyper- links into child blips.

[Google Wave APIs] Re: Access wavelet playback from a Java Robot?

2009-10-23 Thread Austin Chau (Google employee)
Currently blip revision data is not available to any of the API. Feel free to file an feature request for it. http://code.google.com/p/google-wave-resources/issues/list Austin On Fri, Oct 23, 2009 at 9:18 AM, Leitzler leitz...@gmail.com wrote: I've been searching for a way to access the

[Google Wave APIs] Re: HowTo: Make a robot create a new Wave (Python)

2009-10-23 Thread Austin Chau (Google employee)
Yes you can do that in Java. The two client libraries mirror each other with respect to the underlying wire protocol. To create new wave in Java you use this method from Wavelet - public Wavelet createWavelet(ListString participants, StringdataDocumentWriteBack ); Austin On Fri, Oct 23, 2009

[Google Wave APIs] Re: Annotation to generate a tooltip? And XHTML whitelist?

2009-10-23 Thread Austin Chau (Google employee)
Hi, You are right, there is no such annotation for tooltip - feel free to file a feature request for that - http://code.google.com/p/google-wave-resources/issues/list As for markups, the list of acceptable markups are quite limited at the moment and they are: p, div, b, strong, i, em. Austin

[Google Wave APIs] Re: Robot stopped responding to BLIP_SUBMITTED

2009-10-23 Thread Austin Chau (Google employee)
2009/10/23 Austin Chau (Google employee) api.aus...@google.com: Hi, There is no change in the API regarding those events. I just verify that against my robots and they seem to be responding fine with BLIP_SUBMITTED. Are you still seeing this problem? Austin On Fri, Oct 23, 2009

[Google Wave APIs] Re: Wavelet.getRootBlip() -- Do I understand something wrong?

2009-10-23 Thread Austin Chau (Google employee)
if possible because my development has been stalled as a result. Smola On Oct 23, 2:55 am, Austin Chau (Google employee) api.aus...@google.com wrote: So yes, when a blip is out of context you would have no way to retrieve its document content from the event callback alone. What can you do

[Google Wave APIs] Re: Headings

2009-10-25 Thread Austin Chau (Google employee)
The wave client editor heading style is currently not exposed via the Robot API. I have reopened this issue as feature request. Austin On Sun, Oct 25, 2009 at 1:08 AM, Jonathan Hunt j...@42quarks.com wrote: Hi, I think my question relates to this bug (but it's not very clear)

[Google Wave APIs] Re: Fundamental question - what does context...um...do?

2009-10-26 Thread Austin Chau (Google employee)
Essentially you can think of event handler/context as callback (endpoint) with data (context). Imagine you have a handler for a particular type of wave event. When that event has occurred, the Wave server could trigger your endpoint with this notification. Associated with this notification, is

[Google Wave APIs] Re: Fundamental question - what does context...um...do?

2009-10-26 Thread Austin Chau (Google employee)
, Oct 26, 2009 at 3:40 PM, Austin Chau (Google employee) api.aus...@google.com wrote: Essentially you can think of event handler/context as callback (endpoint) with data (context). Imagine you have a handler for a particular type of wave event. When that event has occurred, the Wave server

[Google Wave APIs] Re: How to make a radio button selected by default?

2009-10-26 Thread Austin Chau (Google employee)
I don't believe there is a property available for that. Please feel free to file a request for this - http://code.google.com/p/google-wave-resources/issues/list?can=2q=sort=-idcolspec=Stars%20ID%20Type%20Status%20Priority%20Milestone%20Owner%20Summary%20Internal On Mon, Oct 26, 2009 at 8:05 AM,

[Google Wave APIs] Re: 2 newwavemenu hooks, 1 robot, 2 different wave kinds?

2009-10-27 Thread Austin Chau (Google employee)
I have responded in this thread - http://groups.google.com/group/google-wave-api/browse_thread/thread/29d273a4d16e324 http://groups.google.com/group/google-wave-api/browse_thread/thread/29d273a4d16e324Please only post once per each question, thanks. Austin On Tue, Oct 27, 2009 at 12:50 PM,

[Google Wave APIs] Re: Less frequent updating

2009-10-28 Thread Austin Chau (Google employee)
Cron job can recreate the blip context. Check out the sample robot Stocky. It persists wave, wavelet and blip IDs, so that the cron call can later recreate the context. http://google-wave-resources.googlecode.com/svn/trunk/samples/extensions/robots/java/stocky/src/robot/UpdateServlet.java

[Google Wave APIs] Re: Can robots tag waves?

2009-10-29 Thread Austin Chau (Google employee)
Hi, Tags are currently not exposed to the API (client libraries independent), stay tuned for future update. Austin On Thu, Oct 29, 2009 at 2:17 PM, Fabricio Zuardi fabri...@fabricio.orgwrote: Is there currently any methods in the robots API for adding, removing or listing tags? (Python

[Google Wave APIs] Re: Use of WAVELET_BLIP_CREATED with Python API

2009-10-29 Thread Austin Chau (Google employee)
Hi, Actually I think there is a bug with the WAVELET_BLIP_CREATED event. It seems that only root blip creation would trigger the event. I have filed a bug for - http://code.google.com/p/google-wave-resources/issues/detail?id=372

[Google Wave APIs] Re: php support.

2009-10-29 Thread Austin Chau (Google employee)
Hi There is a feature request for PHP and other language support - http://code.google.com/p/google-wave-resources/issues/detail?id= But once the AppEngine requirement is removed you can build robots using any languages as long as you are speaking the robot wire protocol. Austin On Thu, Oct

[Google Wave APIs] Re: cron job not executed

2009-10-29 Thread Austin Chau (Google employee)
The current set up to execute cron job on behalf of robots is somewhat shaky at times, apologize for this. But very soon we will release a new mechanism to perform cron-like functionalities. Stay tuned for updates. Austin On Thu, Oct 29, 2009 at 5:41 AM, martin sarsale

[Google Wave APIs] Re: Ordering blips?

2009-10-30 Thread Austin Chau (Google employee)
Yes that is correct it is not provided by the API since it is not supported by the Wave client itself. Austin On Fri, Oct 30, 2009 at 3:02 PM, wolfgang.wer...@gmail.com wolfgang.wer...@gmail.com wrote: Hey all, is there a possibility to (re-) order blips in a wavelet using the Robot API?

[Google Wave APIs] Re: Text appended twice in blip

2009-10-31 Thread Austin Chau (Google employee)
Hi Karan, Sorry that this bug hit you as well, we have already filed a request for it. You can track it with this bug report - http://code.google.com/p/google-wave-resources/issues/detail?id=354sort=-idcolspec=Stars%20ID%20Type%20Status%20Priority%20Milestone%20Owner%20Summary%20Internal We

[Google Wave APIs] Re: Hey is there any wave to insert new blip between 2 other blips??

2009-10-31 Thread Austin Chau (Google employee)
This is not available currently. wavelet.appendBlip() always append blip to the end. Austin On Sat, Oct 31, 2009 at 4:34 AM, shitu ankitsush...@gmail.com wrote: I want to insert the new blip between 2 other blip but not as an inline blip. I m using java..

[Google Wave APIs] Re: Add new wavelet to existing wave (Java)?

2009-11-02 Thread Austin Chau (Google employee)
By that I think you meant creating private reply with in a wave (hence a different wavelet within a wave), currently that is not available. Feel free to file a feature request for this - http://code.google.com/p/google-wave-resources/issues Thanks, Austin On Mon, Nov 2, 2009 at 5:14 AM,

[Google Wave APIs] Re: This Week's Office Hours: Nov. 4th, 3-4 PST

2009-11-04 Thread Austin Chau (Google employee)
Yes this week office hour is changed to a different time than normal because a lot of us are travelling. Sorry for the inconvenience. Austin On Wed, Nov 4, 2009 at 3:03 PM, C.K m...@ck.org.ua wrote: Is it delayed or I'm wrong in calculations? :) On 4 Лис, 17:32, Leitzler leitz...@gmail.com

[Google Wave APIs] Re: Who adds a Robot

2009-11-07 Thread Austin Chau (Google employee)
From the WAVELET_SELF_ADDED event (it is triggered when a robot is added), you can call event.getModifiedBy() which should return the participant who adds the robot. Austin On Sat, Nov 7, 2009 at 9:38 PM, Prashant antsh...@gmail.com wrote: i guess NOT

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

2009-11-08 Thread Austin Chau (Google employee)
Since I don't have the full context of your code, I am suspecting that your outputSream.toString() is returning content that is unserializable to the client library. Keep in mind that appendMarkup() can only handle i, strong, em, b. Austin On Sat, Nov 7, 2009 at 11:49 AM, Piotr Pejas

[Google Wave APIs] Re: Cron Tutorial

2009-11-08 Thread Austin Chau (Google employee)
We do not have documentation for the current cron setup for robot, due the reason you have mentioned that we are soon replacing it with a more robust mechanism. In the meanwhile, please check out the sample robot Stocky which uses the current cron setup -

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

2009-11-08 Thread Austin Chau (Google employee)
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 it. Austin On Sun, Nov 8, 2009 at 7:50 AM, Venkat Polisetti venkat.polise...@gmail.com wrote: Hi All, textView.appendElement(new

[Google Wave APIs] Re: multiple gadgets sharing state

2009-11-11 Thread Austin Chau (Google employee)
, This could be possible, use a static variable to keep the track of the state and then since there's only one copy of that variable, it can accessed at any point in the program/robot :) -- Regards, Vikram On Tue, Nov 10, 2009 at 1:37 PM, Austin Chau (Google employee

[Google Wave APIs] Re: Should BLIP_SUBMITTED be fired when a gadget changes a state?

2009-11-11 Thread Austin Chau (Google employee)
Thanks for filing this. We will look into this. Austin On Wed, Nov 11, 2009 at 7:15 AM, César Izurieta cesar.izuri...@gmail.comwrote: I'm developing a robot that sends an email every time it receives a BLIP_SUBMITTED event. It all works just fine except when there are gadgets on the page

Re: [Google Wave APIs] Re: Robot Request - text locker

2009-11-24 Thread Austin Chau (Google employee)
Hi Stephen, Did you try to change the version # of capabilities when you change the context attribute? Austin On Tue, Nov 24, 2009 at 9:44 AM, Stephen George sfgeo...@gmail.com wrote: Oreich, just fyi, I have tested cmdskip's approach and I personally did NOT have success. My capability

Re: [Google Wave APIs] Re: Getting blipID from event BLIP_DELETED

2009-11-25 Thread Austin Chau (Google employee)
There is a bug in that method that is not using the correct property name. An issue has been filed and it should be fixed with the next Java client library release - http://code.google.com/p/google-wave-resources/issues/detail?id=484

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

2009-11-29 Thread Austin Chau (Google employee)
Hi, The WAVE_SELF_REMOVED event is not currently sent to the robot, this will probably changed in the future iteration. We will keep you guys updated. Austin On Sun, Nov 29, 2009 at 2:22 PM, atarno ata...@gmail.com wrote: Hi folks, I'm trying to catch WAVELET_SELF_REMOVED event by using

Re: [Google Wave APIs] Quick text selection seems to have some problem

2009-12-02 Thread Austin Chau (Google employee)
Hi, For all non-API related issues please post them to here - http://www.google.com/support/forum/p/wave?hl=enutm_source=HCutm_medium=leftnavutm_campaign=wave http://www.google.com/support/forum/p/wave?hl=enutm_source=HCutm_medium=leftnavutm_campaign=wave Thanks, Austin On Wed, Dec 2, 2009 at

Re: [Google Wave APIs] event.getParent() returning Root Blip for every blip in the wavelet

2009-12-08 Thread Austin Chau (Google employee)
Do you see exception in the log? if so what are they ? On Tue, Dec 8, 2009 at 6:39 AM, shitu ankitsush...@gmail.com wrote: Hey all please tell me if my code is wrong or it is some issue with API...firstly it was working great but now my robot is all gone :(

Re: [Google Wave APIs] Gadget API needs a bit of help?

2009-12-08 Thread Austin Chau (Google employee)
Hi, You can probably do some of the behaviors you described by having your own scheme of in your state data. For instance, you adopt the format for your state data such that you would append the username before the actual value to indicate the data provider, ie foo=aus...@wavesandbox.com_data

Re: [Google Wave APIs] How to fire event new wave created by robot

2009-12-08 Thread Austin Chau (Google employee)
Hi, If a wavelet creates another another wavelet, you should be able to catch the WAVELET_CREATED event, given that you have registered for it. Austin On Wed, Dec 2, 2009 at 7:29 PM, hvt_kg thaihuyn...@gmail.com wrote: Hi All, How to can fire event when new Wave create by Robot?. Because I

Re: [Google Wave APIs] Re: How to fire event new wave created by robot

2009-12-08 Thread Austin Chau (Google employee)
for the patience :) Austin On Tue, Dec 8, 2009 at 6:16 PM, hvt_kg thaihuyn...@gmail.com wrote: Hi Austin Chau, thanks for your info. But I can not see any event relate WAVELET_CREATED event in EventType from API. If that is my misunderstand, pls tell me. Alex, On Dec 9, 8:07 am, Austin Chau

Re: [Google Wave APIs] Wave API Office Hours Wed Dec 15th 11am (US Pacific timezone)

2009-12-15 Thread Austin Chau (Google employee)
This week's office hours will take place at the following time: San Francisco (U.S.A. - California) - Wednesday, December 14, 2009 at 11:00:00 AM London (U.K. - England) - Wednesday, December 14, 2009 at 7:00:00 PM You can use this tool to see what time it is in your timezone

Re: [Google Wave APIs] Re: Wave API Office Hours Wed Dec 15th 11am (US Pacific timezone)

2009-12-16 Thread Austin Chau (Google employee)
, Austin Chau (Google employee) api.aus...@google.com wrote: This week's office hours will take place at the following time: San Francisco (U.S.A. - California) - Wednesday, December 14, 2009 at 11:00:00 AM London (U.K. - England) - Wednesday, December 14, 2009 at 7:00:00 PM You can use

Re: [Google Wave APIs] Child blip to last blip in a wave

2009-12-30 Thread Austin Chau (Google employee)
This is not possible with the API's current representation of parent and children blips. In order for you to iterate over the blips in the conversation order, the API needs to expose the conversation model. You can read more about the model in the Wave Protocol specification:

[Google Wave APIs] Virtual office hour this wednesday 11am 13th January 2010 PST

2010-01-13 Thread Austin Chau (Google employee)
A little friendly reminder that we will be hosting virtual office hours in Wave Sandbox on - Wednesday, 13th January 2010 at 11:00:00AM GMT-8 hours PST (San Francisco time). You can use this tool to see what time it is in your timezone

[Google Wave APIs] Office Hours starting now!

2010-01-13 Thread Austin Chau (Google employee)
Please join us for the virtual office hours for Wave API related questions in Wave sandbox. This is the public wave - https://wave.google.com/a/wavesandbox.com/#restored:search:in%253Ainbox+office+hours,restored:wave:wavesandbox.com!w%252B9gsCxgt5A.2 Austin -- You received this message

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

2010-01-22 Thread Austin Chau (Google employee)
Hi, I am seeing this too, it is a bug. I have filed a issue for this - http://code.google.com/p/google-wave-resources/issues/detail?id=636 http://code.google.com/p/google-wave-resources/issues/detail?id=636Thanks for reporting this. Austin On Fri, Jan 22, 2010 at 6:18 AM, atarno

Re: [Google Wave APIs] Managing contact list through gadget api

2010-01-22 Thread Austin Chau (Google employee)
Hi, No you cannot manipulate the contact list directly from Wave API, you need to use the Google Contacts API - http://code.google.com/apis/contacts/docs/3.0/developers_guide.html http://code.google.com/apis/contacts/docs/3.0/developers_guide.htmlAustin On Thu, Jan 21, 2010 at 10:00 AM,

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 fdezj...@gmail.com wrote: Hello! Is it possible to add a link to an Image Element that is appended to a blip? Thanks! -- You received this

[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

[Google Wave APIs] Virtual office hour - Wednesday 11am 10th Feb 2010 PST

2010-02-09 Thread Austin Chau (Google employee)
Hi Developers! A little friendly reminder that we will be hosting virtual office hours for Wave API in Wave Sandbox on - Wednesday, 10th Feb 2010 at 11:00:00AM GMT-8 hours PST (San Francisco time). You can use this tool to see what time it is in your timezone

[Google Wave APIs] Office Hours starting now!

2010-02-10 Thread Austin Chau (Google employee)
Please join us in this public wave for Wave API virtual office hours - https://wave.google.com/a/wavesandbox.com/#restored:search:in%253Ainbox+office+hours,restored:wave:wavesandbox.com!w%252BXEx2r3nWA.2 Austin -- You received this message because you are subscribed to the Google Groups

[Google Wave APIs] Office hours transcript 2010-02-10

2010-02-10 Thread Austin Chau (Google employee)
[CLOSED] Office Hours: 2010-02-10 Welcome to API office hours! *Please top post your question or comment about the robot, gadget, or embed API to make sure we see it. You can do so by replying to this blip.* *A transcript of this wave will be made publicly available. If you don't want to

[Google Wave APIs] Virtual office hour - Thursday, 4 March 2010 at 11:00:00 AM UTC+11 hours EDT

2010-03-02 Thread Austin Chau (Google employee)
Hi developers - We have just released the new Robot v2 APIhttp://googlewavedev.blogspot.com/2010/03/introducing-robots-api-v2-rise-of.html, and are excited to hear your questions. Tomorrow's office hours will be: Sydney (Australia - New South Wales) Thursday, 4 March 2010 at 11:00:00 AM UTC+11

[Google Wave APIs] Virtual office hour - Wednesday 3pm 17th March 2010 PST

2010-03-16 Thread Austin Chau (Google employee)
Hi developers - Wave API virtual office hours for this week will be held at the following time: Sydney (Australia - New South Wales) Thursday, 18 March 2010 at 09:00:00 AM UTC+11 hours EDT San Francisco (U.S.A. - California) Wednesday, 17 March 2010 at 3:00:00 PM UTC-8 hours PST You can use

[Google Wave APIs] Virtual office hour starting now!

2010-03-17 Thread Austin Chau (Google employee)
https://wave.google.com/wave/#restored:search:in%253AInbox,restored:wave:googlewave.com!w%252BJwODFWbsQ -- 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

Re: [Google Wave APIs] Office Hours

2010-03-24 Thread Austin Chau (Google employee)
Hi Eric, There was an office hours earlier today. Unfortunately we forgot to announce it in the Google Group but we did announce it with ForumBotty on Wave Preview. You can read the transcript of the office hours here - https://wave.google.com/wave/#restored:wave:googlewave.com!w%252BH0P78-uCG

Re: [Google Wave APIs] Re: Hey

2010-03-31 Thread Austin Chau (Google employee)
Yea sorry the gmail account has a weak password but all is fixed and taken care of. Please ignore and disregard the original. Do not reply to this thread anymore. Thanks. Austin On Tue, Mar 30, 2010 at 10:28 PM, alexandrojv alexandr...@yahoo.com wrote: oh my that was weird, perhaps an

[Google Wave APIs] Office hours this week

2010-04-06 Thread Austin Chau (Google employee)
Each week, we hold office hours in Wave Sandbox. This week's office hours will take place at the following time: San Francisco city.html?n=224 (U.S.A. - California) Wednesday, April 7, 2010 at 11:00:00 AM UTC-7 hours PDT/library/abbreviations/timezones/na/pdt.html Sydney city.html?n=240