dcorking / google-wave-resources

Automatically exported from code.google.com/p/google-wave-resources
0 stars 0 forks source link

Can't Create a Hierarchy of Blips Using Active API #741

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I'm trying to create a hierarchy of blips from a reporting program using the 
Active API by using

Blip childBlip = blip.insertInlineBlip(blip.length() - 1);

I can only create sibling blips currently. A few weeks ago I was able to 
create child blips of the top level blips, but not children of the children. 
However now I can no longer even create the child blips any more.

Original issue reported on code.google.com by eric.kol...@gmail.com on 21 Apr 2010 at 6:54

GoogleCodeExporter commented 9 years ago
We determined this is now resolved, correct?

Original comment by pamela.fox on 21 Apr 2010 at 8:19

GoogleCodeExporter commented 9 years ago
We, in the case of

Blip childBlip = blip.insertInlineBlip(blip.length() - 1);

things work, but it separates that last character in the blip from the rest of 
the 
blip. What you should be able to do is:

Blip childBlip = blip.insertInlineBlip(blip.length());

but this causes an error. The current work-around is to append a " " at the end 
of 
the blip before calling

Blip childBlip = blip.insertInlineBlip(blip.length() - 1);

but this is really just a hack.

Original comment by eric.kol...@gmail.com on 22 Apr 2010 at 2:33