<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="generator" content="Osso Notes">
<title></title></head>
<body>
<p>The source code for the qt mobility contacts backend for the n900 may also be a good reference. I am pretty sure it is all in one file and it is pretty straigh forward. Just an idea....
<br>
<br>----- Original message -----
<br>> Thanks Andrew, this seems to be roughly what I'm looking for. In
<br>> particular, it seems an OssoABookContact is asubclass of an EContact,
<br>> so I can just use this stuff directly.
<br>>
<br>> However, I've looked at the associated code in hermes:
<br>> <a href="https://garage.maemo.org/plugins/ggit/browse.php/?p=hermes;a=blob;f=package/src/org/maemo/hermes/engine/contact.py;h=a309b290ee506ca6de7f46108adb1541ea4fbb58;hb=HEAD">https://garage.maemo.org/plugins/ggit/browse.php/?p=hermes;a=blob;f=package/src/org/maemo/hermes/engine/contact.py;h=a309b290ee506ca6de7f46108adb1541ea4fbb58;hb=HEAD</a>
<br>> and I can't find where you get the "GList" and "EVCardAttribute"
<br>> types. I've got my own implementation of a glist (stolen from
<br>> somewhere online) but I'd prefer to not have to write the
<br>> EVCardAttribute myself (wrapping the evolution code).
<br>>
<br>> My best guess is that it's coming through some long line of imports
<br>> (maybe evolution?) or the pygobject library, but neither of these seem
<br>> to have this type for the libraries I have access to. Any suggestions?
<br>>
<br>> Thanks!
<br>>
<br>> On Tue, Aug 24, 2010 at 11:40 PM, Andrew Flegg <<a href="mailto:andrew@bleb.org">andrew@bleb.org</a>> wrote:
<br>> > Here's some code from Hermes'[1] org/maemo/hermes/engine/contact.py:
<br>> >
<br>> > --------8<---------
<br>> > # Constants from
<br>> > <a href="http://library.gnome.org/devel/libebook/stable/EContact.html#EContactField">http://library.gnome.org/devel/libebook/stable/EContact.html#EContactField</a>
<br>> > ebook = CDLL('libebook-1.2.so.5') E_CONTACT_PHONE_OTHER = 30
<br>> >
<br>> > def get_phones(self):
<br>> > """Return a list of phone numbers associated with this
<br>> > contact."""
<br>> >
<br>> > nums = []
<br>> > ai =
<br>> > GList.new(ebook.e_contact_get_attributes(hash(self._contact),
<br>> > E_CONTACT_PHONE_OTHER)) while ai.has_next(): attr =
<br>> > ai.next(as_a = EVCardAttribute) types = set()
<br>> > if attr.params:
<br>> > params =
<br>> > GList.new(ebook.e_vcard_attribute_param_get_values(attr.params.contents.next()))
<br>> > while params.has_next():
<br>> > types.add(string_at(params.next()))
<br>> >
<br>> > device = 'VOICE' in types and 'landline' \
<br>> > or 'CELL' in types and 'mobile' \
<br>> > or None
<br>> > type = 'HOME' in types and 'home' \
<br>> > or 'WORK' in types and 'work' \
<br>> > or None
<br>> > number = string_at(attr.value().next())
<br>> > nums.append(PhoneNumber(number, type = type, device =
<br>> > device))
<br>> >
<br>> > return nums
<br>> > ------->8--------
<br>> >
<br>> > If you don't speak Python, what is basically does is (dealing with an
<br>> > EContact, but you can get that from an OssoABookContact IIRC:
<br>> >
<br>> > 1) Get all attributes of type 30 - this returns all
<br>> > phone numbers, I've found.
<br>> > 2) Loop over each attribute, the value of which is
<br>> > the phone number.
<br>> > 3) The parameters of the attribute will tell you the different
<br>> > types flagged against this number.
<br>> >
<br>> > HTH,
<br>> >
<br>> > Andrew
<br>> >
<br>> > [1] <a href="http://hermes.garage.maemo.org/">http://hermes.garage.maemo.org/</a>
<br>> >
<br>> > --
<br>> > Andrew Flegg -- <a href="mailto:andrew@bleb.org">mailto:andrew@bleb.org</a> | <a href="http://www.bleb.org/">http://www.bleb.org/</a>
<br>> > Maemo Community Council chair
<br>> > ----- Original message -----
<br>> > > Hello maemo-developers!
<br>> > >
<br>> > > Does anyone know how to get a phone number (any number) out of an
<br>> > > OssoABookContact instance? I'm at my wit's end; all of the online
<br>> > > hits i've found have been doing the opposite and I can't figure this
<br>> > > out. My guess was using the osso_abook_contact_get_value function,
<br>> > > but I have no idea what the appropriate attribute would be. I've
<br>> > > tried a great many (Cell, for instance) and gotten nothing.
<br>> > >
<br>> > > Ideas?
<br>> > >
<br>> > > Thanks!
<br>> > > _______________________________________________
<br>> > > maemo-developers mailing list
<br>> > > <a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a>
<br>> > > <a href="https://lists.maemo.org/mailman/listinfo/maemo-developers">https://lists.maemo.org/mailman/listinfo/maemo-developers</a>
<br>> >
<br>> >
<br>> _______________________________________________
<br>> maemo-developers mailing list
<br>> <a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a>
<br>> <a href="https://lists.maemo.org/mailman/listinfo/maemo-developers">https://lists.maemo.org/mailman/listinfo/maemo-developers</a>
<br><br></p>
</body>
</html>