Well, it is possible in Python using blip.CreateChild() :)
If you have:
---
| blip A
---
| blip B
---
and want:
---
| blip A
---
| blip C
---
| blip B
---
All you need is blip A ID's.
It would be something along the lines of:
blip = context.GetBlipById(THE_BLIP_ID_OF_A_GOES_HERE)
html = '<b>hello</b> world'
new_blip = blip.CreateChild()
new_blip_document = new_blip.GetDocument()
new_blip_document.SetText(" ")
builder = OpBuilder(context)
builder.DocumentAppendMarkup(new_blip.waveId, new_blip.waveletId,
new_blip_id, html)
Hope this helps :)
[]s
Fabricio
On Nov 1, 2009, at 3:49 AM, Austin Chau (Google employee) wrote:
> This is not available currently. wavelet.appendBlip() always append
> blip to the end.
>
> Austin
>
> On Sat, Oct 31, 2009 at 4:34 AM, shitu <[email protected]> wrote:
>
> I want to insert the new blip between 2 other blip but not as an
> inline blip.
> I m using java..
>
>
>
>
> >
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Wave API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-wave-api?hl=en
-~----------~----~----~----~------~----~------~--~---