|
2010-05-28
, 21:07
|
|
Posts: 385 |
Thanked: 344 times |
Joined on Jan 2010
@ Israel
|
#312
|
hi,
wen i install call notify it says some app. packages req. for installation...
can u help me plzz ..tell me how to install it on pr1.2
|
2010-05-29
, 09:28
|
Posts: 20 |
Thanked: 16 times |
Joined on Jan 2010
@ Norway
|
#313
|
# ldd /usr/lib/hildon-control-panel/libcallnotify.so|grep found librtcom-eventlogger.so.0 => not found
ln -s /usr/lib/librtcom-eventlogger.so.1 s/usr/lib/librtcom-eventlogger.so.0
def getMissedCallsCount(self, isSms): self.dbg('getMissedCallsCount started. agrs: ' + str(isSms)) conn = sqlite3.connect(self.path) cur = conn.cursor() if isSms: #Nokia changed the event number from 7 to 11 and also combined the incomming and outgoing sms's cur.execute("select count(id) from Events where event_type_id = 11 and outgoing = 0") else: #Nokia changed the event from 3 to 2 cur.execute("select count(id) from Events where event_type_id = 2")
The Following User Says Thank You to rcastberg For This Useful Post: | ||
|
2010-05-29
, 19:06
|
Posts: 15 |
Thanked: 0 times |
Joined on May 2010
|
#314
|
Hi,
Seems that nokia updated the librtcom-eventlogger.so library, as evident from:
I managed to get settings to work by creating a link to the new version, this a tempory hack, but a recompile of the library should sort that out.Code:# ldd /usr/lib/hildon-control-panel/libcallnotify.so|grep found librtcom-eventlogger.so.0 => not found
They also changed the database format and i had to change the getMissedCalls function:Code:ln -s /usr/lib/librtcom-eventlogger.so.1 s/usr/lib/librtcom-eventlogger.so.0
Seems to work well now.Code:def getMissedCallsCount(self, isSms): self.dbg('getMissedCallsCount started. agrs: ' + str(isSms)) conn = sqlite3.connect(self.path) cur = conn.cursor() if isSms: #Nokia changed the event number from 7 to 11 and also combined the incomming and outgoing sms's cur.execute("select count(id) from Events where event_type_id = 11 and outgoing = 0") else: #Nokia changed the event from 3 to 2 cur.execute("select count(id) from Events where event_type_id = 2")
Rene
|
2010-05-30
, 17:59
|
Posts: 20 |
Thanked: 16 times |
Joined on Jan 2010
@ Norway
|
#315
|
where do i go to change these areas?
|
2010-05-30
, 18:07
|
|
Posts: 623 |
Thanked: 289 times |
Joined on Jan 2010
@ UK
|
#316
|
|
2010-05-31
, 01:31
|
|
Posts: 37 |
Thanked: 5 times |
Joined on Apr 2010
|
#317
|
|
2010-05-31
, 13:23
|
Posts: 16 |
Thanked: 8 times |
Joined on May 2010
|
#318
|
|
2010-05-31
, 14:12
|
|
Posts: 327 |
Thanked: 249 times |
Joined on Sep 2009
@ Λεμεσιανός, ρε!
|
#319
|
|
2010-05-31
, 14:48
|
|
Posts: 861 |
Thanked: 936 times |
Joined on Feb 2010
@ Bulgaria
|
#320
|
wen i install call notify it says some app. packages req. for installation...
can u help me plzz ..tell me how to install it on pr1.2