Monotone-Parent: ac622b559d25436734cff876b9bf87744694f3da

Monotone-Revision: 6ff7f1f265054d35bee90648f1c1b1ae73749a9e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-02-02T20:47:21
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-02-02 20:47:21 +00:00
parent bfebec125f
commit e43ac3de78
3 changed files with 16 additions and 0 deletions
+10
View File
@@ -1,3 +1,13 @@
2007-02-02 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Contacts/SOGoContactLDAPFolder.m
([SOGoContactLDAPFolder -_searchAttributes]): retrieve "calFBURL"
from the server.
* SoObjects/Contacts/SOGoContactLDAPEntry.m ([SOGoContactLDAPEntry
-vCard]): put the LDAP "calFBURL" field in the vCard's "FBURL"
entry.
2007-01-31 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoCalendarComponent.m
@@ -182,6 +182,11 @@
[element setValue: 3 to: location];
if (streetAddress || location)
[vcard addChild: element];
info = [ldapEntry singleAttributeWithName: @"calFBURL"];
if (info)
[vcard addChildWithTag: @"FBURL"
types: nil
singleValue: info];
}
return vcard;
@@ -233,6 +233,7 @@
@"locality",
@"birthyear",
@"serialNumber",
@"calFBURL",
nil];
}