RE: STK DisplayText changes proposal

2010-11-24 Thread Lucas, GuillaumeX
Hi Andrew, On 23 November 2010 18:08, Denis Kenzior denk...@gmail.com wrote: On 11/23/2010 10:55 AM, Andrzej Zaborowski wrote: As for the clear after delay flag, there's a check for it in display_text_cb (line 1248).  As far as I can make out the only difference is the response sent to

Re: [PATCH 0/3] Long dial string support (2nd)

2010-11-24 Thread Andras Domokos
Hi Denis, On 11/24/2010 12:04 AM, ext Denis Kenzior wrote: Hi Andras, Even if we don't support FDN at this point, there is still a remaining related issue, who we are going to dial numbers like: 12345456p1234# I think the the dial string could still be passed to the voicecall driver

Re: [PATCH 0/3] Long dial string support (2nd)

2010-11-24 Thread Andras Domokos
Hi Rajesh, On 11/22/2010 10:58 PM, ext rajesh.naga...@elektrobit.com wrote: Hi Andras, Dial strings can now be as long as 120 digits (not counting '+'). This feature is going to be needed by the FDN feature. An FDN may consist of a phone number plus a DTMF string. In order to have the

[PATCH] call-forwarding: skip property change data and fax

2010-11-24 Thread Jeevaka Badrappan
--- src/call-forwarding.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/call-forwarding.c b/src/call-forwarding.c index 715ce02..ce03c40 100644 --- a/src/call-forwarding.c +++ b/src/call-forwarding.c @@ -285,6 +285,13 @@ static void set_new_cond_list(struct

Fix issue in call forwarding erase response handling

2010-11-24 Thread Jeevaka Badrappan
Hi, Issue observed in call forwarding feature information list parsing. Due to this, isimodem reports Erase failure to the core even when the Erase request is successfully handled by the network. Considering the current logic, this is the fix that can be provided without changes to other parts

Re: [RFC PATCH 2/4] modem: add EmergencyMode property

2010-11-24 Thread Andras Domokos
Hi Denis, On 11/23/2010 10:46 AM, ext Denis Kenzior wrote: Hi Andras, On 11/15/2010 10:57 AM, Andras Domokos wrote: From: Andras Domokosandras.domo...@nokia.com --- src/modem.c | 134 +++ src/ofono.h |4 ++ 2 files changed,

Re: [PATCH v2 4/7] text-telephony: implement interface/atom

2010-11-24 Thread Denis Kenzior
Hi Lucas, On 11/23/2010 12:04 PM, Lucas De Marchi wrote: --- Makefile.am |2 +- src/ofono.h |2 + src/text-telephony.c | 341 ++ 3 files changed, 344 insertions(+), 1 deletions(-) create mode 100644

Re: [RFC PATCH 4/4] voicecall: add emergency call handling

2010-11-24 Thread Andras Domokos
Hi Denis, On 11/23/2010 11:00 AM, ext Denis Kenzior wrote: Hi Andras, On 11/15/2010 10:58 AM, Andras Domokos wrote: --- src/voicecall.c | 111 ++- 1 files changed, 110 insertions(+), 1 deletions(-) diff --git a/src/voicecall.c

[RFC PATCH 2/4] modem: add EmergencyMode property

2010-11-24 Thread Andras Domokos
--- src/dbus.c |7 +++ src/modem.c | 137 +++ src/ofono.h |5 ++ 3 files changed, 149 insertions(+), 0 deletions(-) diff --git a/src/dbus.c b/src/dbus.c index ad29241..0b4fc06 100644 --- a/src/dbus.c +++ b/src/dbus.c @@ -348,6

Re: [PATCH v2 4/7] text-telephony: implement interface/atom

2010-11-24 Thread Lucas De Marchi
Hi Denis, On Wed, Nov 24, 2010 at 1:58 PM, Denis Kenzior denk...@gmail.com wrote: Hi Lucas, On 11/23/2010 12:04 PM, Lucas De Marchi wrote: ---  Makefile.am          |    2 +-  src/ofono.h          |    2 +  src/text-telephony.c |  341 ++  

Re: [PATCH v2 4/7] text-telephony: implement interface/atom

2010-11-24 Thread Denis Kenzior
Hi Lucas, + tt_set_powered(tt, enable); + tt_send_properties_reply(tt); The oFono convention is to reply to the pending D-Bus method call and then signal the property changed signals. The examples I found for query methods use exactly the opposite. See, cw_ss_query_callback() in

Re: [PATCH] Doc Update voicecallmanager-api.txt

2010-11-24 Thread Denis Kenzior
Hi Arun, On 11/24/2010 08:56 AM, ext-arun.1.ravind...@nokia.com wrote: From: Arun Ravindran ext-arun.1.ravind...@nokia.com --- doc/voicecallmanager-api.txt |9 - 1 files changed, 8 insertions(+), 1 deletions(-) Patch has been applied, thanks. Regards, -Denis

Re: [PATCH] call-forwarding: skip property change data and fax

2010-11-24 Thread Denis Kenzior
Hi Jeevaka, On 11/24/2010 03:57 AM, Jeevaka Badrappan wrote: --- src/call-forwarding.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) Good catch, patch has been applied. Thanks. Regards, -Denis ___ ofono mailing list

[PATCH 0/3] Persist TX SMS messages

2010-11-24 Thread Kristen Carlson Accardi
This patch series implements a method of persisting pending outgoing sms messages on disk. Once an sms message has been submitted to the transmit queue, each pdu in the message is stored on disk until the driver indicates that it has been sent. Each tx_queue_entry is given an id number that

[PATCH 1/3] sms: store pending tx pdus on disk

2010-11-24 Thread Kristen Carlson Accardi
--- src/sms.c | 17 + src/smsutil.c | 26 ++ src/smsutil.h |3 +++ 3 files changed, 46 insertions(+), 0 deletions(-) diff --git a/src/sms.c b/src/sms.c index 12988c8..6eab0fa 100644 --- a/src/sms.c +++ b/src/sms.c @@ -52,6 +52,8 @@ static

[PATCH 2/3] sms: delete sent sms messages from backup

2010-11-24 Thread Kristen Carlson Accardi
--- src/sms.c |9 + src/smsutil.c | 38 ++ src/smsutil.h |4 3 files changed, 51 insertions(+), 0 deletions(-) diff --git a/src/sms.c b/src/sms.c index 6eab0fa..f987946 100644 --- a/src/sms.c +++ b/src/sms.c @@ -769,6 +769,10 @@

[PATCH 3/3] sms: restore pending tx messages from backup

2010-11-24 Thread Kristen Carlson Accardi
--- src/ofono.h |1 + src/sms.c | 38 +++ src/smsutil.c | 116 + src/smsutil.h |6 +++ 4 files changed, 161 insertions(+), 0 deletions(-) diff --git a/src/ofono.h b/src/ofono.h index d1a4bdc..4777f70 100644

How to get the OMA DRM right object file coming from WAP Push?

2010-11-24 Thread Lin, Mengdong
OMA DRM 1.0 use WAP Push to send a right object file to the device. The Push Application ID is - URN: x-wap-application:drm.ua - Number: 0x08 How can I get the right object file from oFono? Many thanks! Amanda ___ ofono mailing list ofono@ofono.org

RE: How to get the OMA DRM right object file coming from WAP Push?

2010-11-24 Thread Lin, Mengdong
I found two methods: Methods void RegisterAgent(object path) Registers an agent which will be called whenever a new Smart Messaging based SMS arrives. Methods void ReceiveNotification(array{byte} notification, dict

Re: [PATCH] Add voice call boolean property for MO/MT distinction

2010-11-24 Thread Rémi Denis-Courmont
On Wednesday 24 November 2010 23:31:43 ext Denis Kenzior, you wrote: Hi Rémi, + boolean Originated [readonly] + + Indicates whether the call was mobile-originated + (true) or mobile-terminated (false). + What use case are you trying to