Re: [all] getting missed call information out of dbus

2009-09-05 Thread Matthias Huber
jeremy jozwik schrieb:

 The databases for the calls in the newer versions is now in
 /etc/freesmartphone/opim/sqlite-calls.db
 

 that file however does exist. illegible in nano, but there

   
it is a sqlite3 - database. you can install sqlite3 and show in it:
# sqlite3 /etc/freesmartphone/opim/sqlite-calls.db
.s
select * from calls;
select * from call_values;
.quit

@developers: By the way: where is the view gone whicht spreaded over
both tables ?

anyway: if you have there some values, its ok from the database.


 might i ask what version you are running and if it has a working
 phonelog. im wondering if its my freerunner, 20090808, or what that is
 the issue.
 [also i would like to limit the amount of re-flashing for obvious reasons.]
   
i did same as you without any hacks and modifications.

did you look into your settings - other - domains - calls ?

-- 


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [all] getting missed call information out of dbus

2009-09-04 Thread Matthias Huber
jeremy jozwik schrieb:
 hello list. im interested in getting placed / missed / received call
 information directly from dbus without the use of phonelog.
 pyphonelog has been busted on my phone for some time now. long ago i
 ran opkg upgrade and lost the use of phonelog.
 new images of shr dont seem to work for me either.
 so im interested to see if i can get around this problem rather then
 wait for a working version.
   
there was an issue with phonelog (or its db): did you try to delete
/var/db/*.db and restart ?

-- 
Mit freundlichen GrĂ¼ssen
Matthias Huber 
Kohlstattstr. 14
86459 Wollishausen
Tel: 08238-7998
LPI000181125


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [all] getting missed call information out of dbus

2009-09-04 Thread jeremy jozwik
On Fri, Sep 4, 2009 at 1:20 AM, Matthias
Hubermatthias.hu...@wollishausen.de wrote:
 there was an issue with phonelog (or its db): did you try to delete
 /var/db/*.db and restart ?

do you have a file name? or is it *.db? i ask because that folder is empty.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [all] getting missed call information out of dbus

2009-09-04 Thread Matthias Huber
jeremy jozwik schrieb:
 do you have a file name? or is it *.db? i ask because that folder is empty.
   
ok, i assume that you are using shr unstable. for that i can say this:

it was /var/db/phonelog.db, but if you do'nt have this, it is probably
another problem.

The databases for the calls in the newer versions is now in
/etc/freesmartphone/opim/sqlite-calls.db

did you already start your pyphonelog on the commandline?
/usr/bin/phonelog
... maybe the output can say something about the error.
or if you arent able to do this, you have a log in /tmp/x.log

and one more time :-)) the suggestion to upgrade:

# opkg update ; opkg upgrade

-- 
Matzehuber


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [all] getting missed call information out of dbus

2009-09-04 Thread jeremy jozwik
On Fri, Sep 4, 2009 at 8:56 AM, Matthias
Hubermatthias.hu...@wollishausen.de wrote:
 ok, i assume that you are using shr unstable. for that i can say this:
 it was /var/db/phonelog.db, but if you do'nt have this, it is probably
 another problem.

such as i gathered. no phonelog.db showing.

 The databases for the calls in the newer versions is now in
 /etc/freesmartphone/opim/sqlite-calls.db

that file however does exist. illegible in nano, but there

 did you already start your pyphonelog on the commandline?
 /usr/bin/phonelog
 ... maybe the output can say something about the error.
 or if you arent able to do this, you have a log in /tmp/x.log

yes, the only warning / messages i get are dbus connection warnings
and list population notifications. nothing about any errors

 and one more time :-)) the suggestion to upgrade:

ive been runing opkg update upgrade consistently since flashing to
20090808 mid way through august. no such luck for getting a working
phonelog as of yet.

might i ask what version you are running and if it has a working
phonelog. im wondering if its my freerunner, 20090808, or what that is
the issue.
[also i would like to limit the amount of re-flashing for obvious reasons.]

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [all] getting missed call information out of dbus

2009-09-03 Thread c_c

Hi,

jeremy jozwik wrote:
 
 hello list. im interested in getting placed / missed / received call
 information directly from dbus without the use of phonelog.
 
  Well, you could try launcher. It has built in phonelog, sms and contacts.
Of these, contacts and phonelog work (more or less ;-) whle sms has a few
issues. It uses opim and is quite fast if I may say so myself.
  Just a suggestion.
  Or you could use dbus calls. use 
1. mdbus -s org.freesmartphone.opimd /org/freesmartphone/PIM/Calls/Query
org.freesmartphone.PIM.Calls.Query {} 
  This will return something like /org/freesmartphone/PIM/Calls/Queries/1
2. mdbus -s org.freesmartphone.opimd /org/freesmartphone/PIM/Calls/Queries/1
org.freesmartphone.PIM.CallQuery.GetMultipleResults 10 
to get 10 calls.
HTH.

-- 
View this message in context: 
http://n2.nabble.com/all-getting-missed-call-information-out-of-dbus-tp3576419p3577264.html
Sent from the Openmoko Community mailing list archive at Nabble.com.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [all] getting missed call information out of dbus

2009-09-03 Thread jeremy jozwik
On Thu, Sep 3, 2009 at 6:45 PM, c_ccchan...@yahoo.com wrote:
  Well, you could try launcher. It has built in phonelog, sms and contacts.
 Of these, contacts and phonelog work (more or less ;-) whle sms has a few
 issues. It uses opim and is quite fast if I may say so myself.

maybe. ill look more into it tonight

 1. mdbus -s org.freesmartphone.opimd /org/freesmartphone/PIM/Calls/Query
 org.freesmartphone.PIM.Calls.Query {}

service name not found. but this could be because i typed it it wrong.
i have quadruple checked it. will try again when i have ssh available.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: [all] getting missed call information out of dbus

2009-09-03 Thread jeremy jozwik
yep. so launcher dose not list missed calls either.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community