All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] test: shows the id of the modem beeing enabled/disabled
@ 2010-02-24 19:14 =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
  2010-02-24 19:14 ` [PATCH] doc: Add 'Name' property under 'Modem' interface =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
  2010-02-24 20:20 ` [PATCH] test: shows the id of the modem beeing enabled/disabled Denis Kenzior
  0 siblings, 2 replies; 6+ messages in thread
From: =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita @ 2010-02-24 19:14 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 871 bytes --]

---
 test/disable-modem |    1 +
 test/enable-modem  |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/test/disable-modem b/test/disable-modem
index 47b8531..a1611ec 100755
--- a/test/disable-modem
+++ b/test/disable-modem
@@ -13,6 +13,7 @@ else:
 	properties = manager.GetProperties()
 	path = properties["Modems"][0]
 
+print "Disconnecting modem %s..." % path
 modem = dbus.Interface(bus.get_object('org.ofono', path),
 						'org.ofono.Modem')
 
diff --git a/test/enable-modem b/test/enable-modem
index 86362af..02dc150 100755
--- a/test/enable-modem
+++ b/test/enable-modem
@@ -13,6 +13,7 @@ else:
 	properties = manager.GetProperties()
 	path = properties["Modems"][0]
 
+print "Connecting modem %s..." % path
 modem = dbus.Interface(bus.get_object('org.ofono', path),
 						'org.ofono.Modem')
 
-- 
1.6.3.3


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH] doc: Add 'Name' property under 'Modem' interface.
  2010-02-24 19:14 [PATCH] test: shows the id of the modem beeing enabled/disabled =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
@ 2010-02-24 19:14 ` =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
  2010-02-24 19:14   ` [PATCH] test: show number beeing dialed =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
  2010-02-24 20:19   ` [PATCH] doc: Add 'Name' property under 'Modem' interface Denis Kenzior
  2010-02-24 20:20 ` [PATCH] test: shows the id of the modem beeing enabled/disabled Denis Kenzior
  1 sibling, 2 replies; 6+ messages in thread
From: =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita @ 2010-02-24 19:14 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 555 bytes --]

---
 doc/modem-api.txt |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/doc/modem-api.txt b/doc/modem-api.txt
index 06a4ada..7cccd57 100644
--- a/doc/modem-api.txt
+++ b/doc/modem-api.txt
@@ -32,6 +32,10 @@ Properties	boolean Powered [readwrite]
 			Boolean representing the power state of the modem
 			device.
 
+		string Name [readonly, optional]
+
+			Friendly name of the modem device.
+
 		string Manufacturer [readonly, optional]
 
 			String representing the manufacturer of the modem
-- 
1.6.3.3


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH] test: show number beeing dialed.
  2010-02-24 19:14 ` [PATCH] doc: Add 'Name' property under 'Modem' interface =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
@ 2010-02-24 19:14   ` =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
  2010-02-24 20:19     ` Denis Kenzior
  2010-02-24 20:19   ` [PATCH] doc: Add 'Name' property under 'Modem' interface Denis Kenzior
  1 sibling, 1 reply; 6+ messages in thread
From: =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita @ 2010-02-24 19:14 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 508 bytes --]

---
 test/test-voicecall |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/test/test-voicecall b/test/test-voicecall
index 2da7703..e7d0dc0 100755
--- a/test/test-voicecall
+++ b/test/test-voicecall
@@ -72,7 +72,7 @@ if __name__ == "__main__":
 
 	voicecalls_property_changed('Calls', properties['Calls'])
 
-	print "Dialing...."
+	print "Dialing %s..." % number
 	obj = vcmanager.Dial(number, "")
 	print "Dialing in progress, got obj: %s" % (obj)
 
-- 
1.6.3.3


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] test: show number beeing dialed.
  2010-02-24 19:14   ` [PATCH] test: show number beeing dialed =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
@ 2010-02-24 20:19     ` Denis Kenzior
  0 siblings, 0 replies; 6+ messages in thread
From: Denis Kenzior @ 2010-02-24 20:19 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 167 bytes --]

Hi João,

> ---
>  test/test-voicecall |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 

Patch has been applied.  Thanks.

Regards,
-Denis

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] doc: Add 'Name' property under 'Modem' interface.
  2010-02-24 19:14 ` [PATCH] doc: Add 'Name' property under 'Modem' interface =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
  2010-02-24 19:14   ` [PATCH] test: show number beeing dialed =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
@ 2010-02-24 20:19   ` Denis Kenzior
  1 sibling, 0 replies; 6+ messages in thread
From: Denis Kenzior @ 2010-02-24 20:19 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 166 bytes --]

Hi João,

> ---
>  doc/modem-api.txt |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)
> 

Patch has been applied, thanks.

Regards,
-Denis

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] test: shows the id of the modem beeing enabled/disabled
  2010-02-24 19:14 [PATCH] test: shows the id of the modem beeing enabled/disabled =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
  2010-02-24 19:14 ` [PATCH] doc: Add 'Name' property under 'Modem' interface =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
@ 2010-02-24 20:20 ` Denis Kenzior
  1 sibling, 0 replies; 6+ messages in thread
From: Denis Kenzior @ 2010-02-24 20:20 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 192 bytes --]

Hi João,

> ---
>  test/disable-modem |    1 +
>  test/enable-modem  |    1 +
>  2 files changed, 2 insertions(+), 0 deletions(-)

Patch has been applied, thanks.

Regards,
-Denis

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-02-24 20:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-24 19:14 [PATCH] test: shows the id of the modem beeing enabled/disabled =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
2010-02-24 19:14 ` [PATCH] doc: Add 'Name' property under 'Modem' interface =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
2010-02-24 19:14   ` [PATCH] test: show number beeing dialed =?unknown-8bit?q?Jo=C3=A3o?= Paulo Rechi Vita
2010-02-24 20:19     ` Denis Kenzior
2010-02-24 20:19   ` [PATCH] doc: Add 'Name' property under 'Modem' interface Denis Kenzior
2010-02-24 20:20 ` [PATCH] test: shows the id of the modem beeing enabled/disabled Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.