summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChristophe Guiraud <christophe.guiraud@intel.com>2013-03-11 11:58:00 +0100
committerChristophe Guiraud <christophe.guiraud@intel.com>2013-03-19 14:24:22 +0100
commit0fd7efcb8f397c202103fd862e908c0e7f90d147 (patch)
tree8cb2fcd111110acded2892ab8c5ce476418f89ed /test
parent1ee9e07cc0824f5291d1bf4adf1749f56b232361 (diff)
downloaddleyna-renderer-0fd7efcb8f397c202103fd862e908c0e7f90d147.tar.gz
[Device] Add OpenUriEx player method
- Add a new player interface method OpenUriEx, which is the same as the existing OpenUri one, with an additional metadata parameter to pass the URI description information in DIDL-Lite XML format. - Documentation updated. - Renderer Console python test application updated. - Fix issue: https://github.com/01org/dleyna-renderer/issues/25 Signed-off-by: Christophe Guiraud <christophe.guiraud@intel.com>
Diffstat (limited to 'test')
-rw-r--r--test/dbus/rendererconsole.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/dbus/rendererconsole.py b/test/dbus/rendererconsole.py
index d9bc708..705837c 100644
--- a/test/dbus/rendererconsole.py
+++ b/test/dbus/rendererconsole.py
@@ -104,6 +104,9 @@ class Renderer(object):
def open_uri(self, uri):
self.__playerIF.OpenUri(uri)
+ def open_uri_ex(self, uri, metadata):
+ self.__playerIF.OpenUriEx(uri, metadata)
+
def previous(self):
self.__playerIF.Previous()