diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2008-06-10 14:02:03 +0000 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2008-08-29 11:04:08 +0200 |
commit | 0a2c646feb2d7676f94c885804d93ca4cdcdf87a (patch) | |
tree | 06ec5a598d937a427dc21898721392fbf6e78b9c /extensions | |
parent | 41b3e90840502ad2b514ba440e22f7eb5ee52386 (diff) |
change View spec to return the ID and the room of activities instead of just the handle
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/OLPC_View.xml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/extensions/OLPC_View.xml b/extensions/OLPC_View.xml index 3d894251f..7bc33decd 100644 --- a/extensions/OLPC_View.xml +++ b/extensions/OLPC_View.xml @@ -19,10 +19,14 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA</p> <interface name="org.laptop.Telepathy.View"> <method name="GetActivities"> - <arg direction="out" name="activities" type="au"> - <tp:docstring> - An array of room handles - </tp:docstring> + <arg direction="out" name="activities" type="a(su)" tp:type="Activity[]"> + <tp:docstring xmlns="http://www.w3.org/1999/xhtml"> + An array of structs containing: + <ul> + <li>the identifier of the activity</li> + <li>the room handle of the activity channel</li> + </ul> + </tp:docstring> </arg> <tp:docstring xmlns="http://www.w3.org/1999/xhtml"> <p>Return all the activities of this view</p> @@ -56,12 +60,12 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA</p> </method> <signal name="ActivitiesChanged"> - <arg name="added" type="au"> + <arg name="added" type="a(su)" tp:type="Activity[]"> <tp:docstring> Room handles of the added activities </tp:docstring> </arg> - <arg name="removed" type="au"> + <arg name="removed" type="a(su)" tp:type="Activity[]"> <tp:docstring> Room handles of the removed activities </tp:docstring> |