From af8947c7c413379f6eca5fe81b930a5e0014bc8c Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Tue, 4 Mar 2003 22:02:01 +0000 Subject: implement 2003-03-04 JP Rosevear * pcs/cal.c (impl_Cal_get_ldap_attribute): implement * pcs/cal-backend.h: add virtual method * pcs/cal-backend.c (cal_backend_get_ldap_attribute): call get_ldap_attribute_method * pcs/cal-backend-file.c (cal_backend_file_class_init): overrid get_ldap_attribute method * idl/evolution-calendar.idl: add getLdapAttribute method * gui/e-meeting-model.c (process_section): take simple card list as arg and try to use the ldap attribute (if any) as the attendee, else use the email address (select_names_ok_cb): get the simple card list * cal-client/cal-client.h: add proto * cal-client/cal-client.c (cal_client_init): init ldap_attribute to NULL (cal_client_destroy): free ldap_attribute svn path=/trunk/; revision=20154 --- calendar/idl/evolution-calendar.idl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'calendar/idl/evolution-calendar.idl') diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl index 5feb0082ec..20fd822d93 100644 --- a/calendar/idl/evolution-calendar.idl +++ b/calendar/idl/evolution-calendar.idl @@ -158,6 +158,9 @@ module Calendar { string getAlarmEmailAddress () raises (NotFound); + /* Returns the LDAP attribute to get attendees from */ + string getLdapAttribute (); + /* For going online/offline */ void setMode (in CalMode mode); -- cgit