I've uploaded a first pass at adding support for data pipelining to Shindig
at:

http://codereview.appspot.com/8648/show
The prototype only supports <os:PeopleRequest> (easy to add more though),
doesn't cache correctly, and is missing needed tests.  Reviewers greatly
appreciated.

The below example does work in the sample container..

<?xml version="1.0" encoding="UTF-8"?>
<Module xmlns:os="http://opensocial.org/templates";>
  <ModulePrefs title="Proxied" height="500" author="Adam Winer"
author_email="[EMAIL PROTECTED]">
    <Require feature="opensocial-0.8"/>
  </ModulePrefs>
  <Content type="html" href="http://[some server here]">
    <os:PeopleRequest key="me" userId="john.doe" fields="id,name"/>
    <os:PeopleRequest key="friends" userId="john.doe" groupId="@friends"
fields="id,name"/>
  </Content>
</Module>

Reply via email to