[Google Wave APIs] Cursor Position

2009-10-11 Thread Spencer Chastain
I'm trying to determine the cursor position. I've seen some posts here that say I need to be looking at Annotations. I've set up my code to dump all annotations, and I have none (except for when I highlight code - and then the Annotation name is different from what I've seen reported

[Google Wave APIs] Re: BlipSubmitted not working?

2009-10-11 Thread Kyle
I can confirm BLIP_SUBMITTED not working. The following is my main file for my robot, and no debug information is being logged. http://pastie.org/650182 On Oct 10, 6:53 pm, JamesBrooks ja...@james-brooks.net wrote: I've added you on Wave. On Oct 11, 2:50 am, James Purser

[Google Wave APIs] Re: BlipSubmitted not working?

2009-10-11 Thread pamela fox (Google employee)
I was experiencing this issue, and by changing my app.yaml to point to a new application ID, I got the robot at the new address to respond. I will file a bug, but perhaps you can use that workaround in the meantime. Tip: I have a dummy App Engine ID that I use for temporary stuff like this, it's

[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] Gmail-Gwave Bot Issue

2009-10-11 Thread James Purser
I'm writing a basic gmail-gwave bridge utilising an imap proxy that I've knocked up and am hosting on my home server. I am able to ping the proxy and get a result via browser and command line, however when I try and hit it from the Robot one of two things happen. If the password contains a

[Google Wave APIs] Re: BlipSubmitted not working?

2009-10-11 Thread JamesBrooks
Thanks Pamela! I shall create a new id now. On Oct 11, 8:59 am, pamela fox (Google employee) pamela@gmail.com wrote: I was experiencing this issue, and by changing my app.yaml to point to a new application ID, I got the robot at the new address to respond. I will file a bug, but perhaps

[Google Wave APIs] Re: BlipSubmitted not working?

2009-10-11 Thread pamela (Google Employee)
Hey James- It worked for me, but perhaps there is still some other issue. What are the IDs that you have tried? - pamela On Sun, Oct 11, 2009 at 8:55 PM, JamesBrooks ja...@james-brooks.net wrote: Nope changing the application id did not work, still no BLIP_SUBMITTED request. On Oct 11,

[Google Wave APIs] Re: Gmail-Gwave Bot Issue

2009-10-11 Thread Chris Bailey
But you have got it working for the most part?? is it possible that I help you test this? I haven't started programming robots but I'm interested in being able to ping a bot to update without the wave being open. On Oct 11, 4:25 am, James Purser jamesrpur...@gmail.com wrote: I'm writing a basic

[Google Wave APIs] Inline blips

2009-10-11 Thread martin
I've been experimenting a little with my first bot, and I've hit a few questions. 1) How do I insert an inline blip, the likelt looking method (InsertInlineBlip) doesn't seem to do anything, the docs mention that it's a local blip so do I need to somehow submit it to the wave server? 2) If my

[Google Wave APIs] Robot working in sandbox not working in Preview

2009-10-11 Thread Rahul
Hi I made a robot.It is working perfectly fine in Sandbox but it is not working in preview is the any setting or approval for the same Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Wave API group.

[Google Wave APIs] Re: applying google wave to project managment model

2009-10-11 Thread Corey
Well I finally received my sandbox account late last nite. :) I'm reading the docs today so feel free to add me as a contact: coreyle...@wavesandbox.com Besides blogging my research, I would be open to working with anyone interested in project mgmt + gwave. happy sunday, Corey On Aug 31,

[Google Wave APIs] Re: multiple wavelets per wave?

2009-10-11 Thread troyeb
Let me rephrase: Why are all waveletid = googlewave.com!conv+root and all waveid always unique? Can you not have multiple wavelets per wave? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Wave API group. To

[Google Wave APIs] Re: how to detect a new blip added to a wave?

2009-10-11 Thread ThomasWrobel
Yes, as both Paul and Andy pointed out, I stupidly forgot to put the correct registrations in the cabilitys file. Its working fine now ;) Smola - Thanks, that clarifys things. My plan was just to get anything at all happening on screen, and deduce what did what from there :) On 10 okt,

[Google Wave APIs] When will it be possible for a pc-application to read/write to a wave directly?

2009-10-11 Thread twdarkflame
...if it isnt already? I'm currently playing with robots, and understand they can only be run of appengine at the moment. I hear talk they will in future be able to be run from any sever. Would this include just running localy on a client? The concept I'm working on involves waves being used to

[Google Wave APIs] Re: how to detect a new blip added to a wave?

2009-10-11 Thread ThomasWrobel
This is my xml file; http://presentcheck.appspot.com/_wave/capabilities.xml ?xml version=1.0 encoding=utf-8? w:robot xmlns:w=http://wave.google.com/extensions/robots/1.0; w:capabilities w:capability name=WAVELET_PARTICIPANTS_CHANGED content=true / w:capability name=WAVELET_SELF_ADDED

[Google Wave APIs] Re: how to detect a new blip added to a wave?

2009-10-11 Thread JamesBrooks
I know what an XML file is, but how do I edit it? I'm writing my robot in Python, and using the App Engine to upload it, but I don't see where I edit it. I just edited it using eclipse and added the WAVELET_BLIP_CREATED line. Its just a text file with a XML extension. On 11 okt, 18:14,

[Google Wave APIs] Storeing non-text information in a blip

2009-10-11 Thread twdarkflame
How would you go about storeing other sorts of data in a blip? Preferably so its not visible to the users. An example of the type of data would be this xml; Mesh ID=”DARKFLAME:1”, Obj=”http://www.darkflame.co.uk/mesh/church/chuch.kml”, Loc=”(49.5000123,-123.5000123, 123.5)”, Rot=211,0.1,

[Google Wave APIs] Re: how to detect a new blip added to a wave?

2009-10-11 Thread ThomasWrobel
You dont see a capabilities.xml file in your war directory anywhere? It should be in war/_wave I think. I'm working in java here, but I think the xml should be the same. On 11 okt, 18:22, JamesBrooks ja...@james-brooks.net wrote: I know what an XML file is, but how do I edit it? I'm writing my

[Google Wave APIs] Re: how to detect a new blip added to a wave?

2009-10-11 Thread JamesBrooks
I never even had a war directory, maybe I should install the eclipse plugin... On Oct 11, 5:25 pm, ThomasWrobel darkfl...@gmail.com wrote: You dont see a capabilities.xml file in your war directory anywhere? It should be in war/_wave I think. I'm working in java here, but I think the xml

[Google Wave APIs] Re: how to detect a new blip added to a wave?

2009-10-11 Thread Thomas Wrobel
oh, hmz...I just followed the tutorial; http://code.google.com/intl/nl-NL/apis/wave/extensions/robots/java-tutorial.html The python tutorial is here; http://code.google.com/intl/nl-NL/apis/wave/extensions/robots/python-tutorial.html I think you need a particular directory structure. The java one

[Google Wave APIs] Re: Google Wave Web

2009-10-11 Thread Smola
I visited that page and it seems a bit off. I'm not sure why but the whole idea seems a little creepy. Profiting off of GWave invites? Come on... I advise against using it. On Oct 10, 8:48 pm, Google İnvite coz...@gmail.com wrote: google waveweb page no facebook google

[Google Wave APIs] Re: When will it be possible for a pc-application to read/write to a wave directly?

2009-10-11 Thread Joe Developer
On Sun, Oct 11, 2009 at 11:14 PM, twdarkflame darkfl...@gmail.com wrote: ...if it isnt already? I'm currently playing with robots, and understand they can only be run of appengine at the moment. I hear talk they will in future be able to be run from any sever. Would this include just

[Google Wave APIs] Mystical Hidden Character

2009-10-11 Thread Smola
I am still working on appending styled text to a blip, but I'm settling on adding annotations afterwards for now since appendMarkup doesn't seem to be working properly. What I am doing is identifying questions in a blip using tags(q/q). The script detects the tags, stores the question, and then

[Google Wave APIs] Re: Mystical Hidden Character

2009-10-11 Thread Smola
Ok, I must not understand the way Annotations work with Ranges. I changed my annotation range to go from 0,2 thinking that the 0th, 1st, and 2nd characters would get annotated. In other words, the first three characters. Isn't that how you'd expect it to work? So inside my question tags i put

[Google Wave APIs] Re: When will it be possible for a pc-application to read/write to a wave directly?

2009-10-11 Thread ThomasWrobel
The verse protocol is interesting, but not as suitable as wave for our needs. Its not just the collaborative realtime aspex that makes wave so fantastic, but the idea of having potentialy many different wave severs all worldwide, which only exchange waves with eachother where neccessery.

[Google Wave APIs] Re: Robot working in sandbox not working in Preview

2009-10-11 Thread Rahul
yes i am using the same event On Oct 11, 8:09 pm, JamesBrooks ja...@james-brooks.net wrote: What features aren't working? Are you using the logging method to check events are called? I'm having a problem with BLIP_SUBMITTEDhttp://groups.google.com/group/google-wave-api/t/8ef8f1ae760a053f

[Google Wave APIs] Re: BlipSubmitted not working?

2009-10-11 Thread Rahul
I have same problem but it is working in sandbox but not in preview On Oct 11, 7:31 pm, JamesBrooks ja...@james-brooks.net wrote: I created a new one called catkincottage but alas no luck. On Oct 11, 2:58 pm, pamela (Google Employee) pamela...@gmail.com wrote: Hey James- It worked for

[Google Wave APIs] Sandbox accounts will be deleted when wave is released ?

2009-10-11 Thread Rahul
I have a ques. When wave will be fully released sandbox accounts will be deleted ??? bcoz i have some robots running on appengine.google.com/a/ wavesandbox.com/ we will be given an option to migrate them or any other workaround.?? Thanks

[Google Wave APIs] DOCUMENT_ELEMENT_DELETE and DOCUMENT_ELEMENT_REPLACE not working?

2009-10-11 Thread canopus
Hi. I've a python bot that needs to insert/delete/replace images to the blip document. I'm having problems with the actual python api (16-9-2009) and both DOCUMENT_ELEMENT_DELETE and DOCUMENT_ELEMENT_REPLACE operations. The insertion works perfectly. When I use one of them, not only the

[Google Wave APIs] Re: BlipSubmitted not working?

2009-10-11 Thread JamesBrooks
tehgdbot and catkincottage neither work On Oct 11, 10:35 pm, pamela (Google Employee) pamela...@gmail.com wrote: Can you 2 update the thread with your app IDs? It will be useful for us debugging. - pamela On Mon, Oct 12, 2009 at 4:37 AM, Roy nicholson@gmail.com wrote: I'm having

[Google Wave APIs] Setting Annotations cancels further Text changes?

2009-10-11 Thread Spencer Chastain
So, I'm making a toy robot - something that converts typed text into pig latin. And I have that working, except I thought it might be nice to revert the text into plain english if the document was edited again later on. I figured the easiest way to do this would be to annotate the text per the

[Google Wave APIs] Re: Setting Annotations cancels further Text changes?

2009-10-11 Thread Smola
This won't be helpful but, shouldn't it be ue-tray for true? I thought pig-latin splits words at the first vowel? On Oct 11, 9:35 pm, Spencer Chastain sechast...@gmail.com wrote: So, I'm making a toy robot - something that converts typed text into pig latin. And I have that working, except