Add http backend lib.
2003-10-31 Hans Petter Jansson <hpj@ximian.com> * Makefile.am (evolution_wombat_LDADD): Add http backend lib. * wombat.c (setup_pcs): Register webcal method for http backend. svn path=/trunk/; revision=23154
This commit is contained in:

committed by
Hans Petter

parent
dd09d63087
commit
24557bc3bf
@ -1,3 +1,9 @@
|
||||
2003-10-31 Hans Petter Jansson <hpj@ximian.com>
|
||||
|
||||
* Makefile.am (evolution_wombat_LDADD): Add http backend lib.
|
||||
|
||||
* wombat.c (setup_pcs): Register webcal method for http backend.
|
||||
|
||||
2003-10-24 Dan Winship <danw@ximian.com>
|
||||
|
||||
* Makefile.am (evolution_wombat_LDADD): put back the conditional
|
||||
|
@ -52,6 +52,7 @@ evolution_wombat_LDADD = \
|
||||
$(top_builddir)/addressbook/backend/pas/libpasvcf.la \
|
||||
$(LDAP_BACKEND) \
|
||||
$(top_builddir)/calendar/pcs/libpcsfile.la \
|
||||
$(top_builddir)/calendar/pcs/libpcshttp.la \
|
||||
$(WOMBAT_LIBS)
|
||||
|
||||
if ENABLE_LDAP
|
||||
|
@ -37,6 +37,7 @@
|
||||
#include "calendar/pcs/cal-factory.h"
|
||||
#include "calendar/pcs/cal-backend-file-events.h"
|
||||
#include "calendar/pcs/cal-backend-file-todos.h"
|
||||
#include "calendar/pcs/cal-backend-http.h"
|
||||
|
||||
#include "wombat-interface-check.h"
|
||||
|
||||
@ -149,6 +150,7 @@ setup_pcs (void)
|
||||
|
||||
cal_factory_register_method (cal_factory, "file", ICAL_VEVENT_COMPONENT, CAL_BACKEND_FILE_EVENTS_TYPE);
|
||||
cal_factory_register_method (cal_factory, "file", ICAL_VTODO_COMPONENT, CAL_BACKEND_FILE_TODOS_TYPE);
|
||||
cal_factory_register_method (cal_factory, "webcal", ICAL_VEVENT_COMPONENT, CAL_BACKEND_HTTP_TYPE);
|
||||
|
||||
if (!cal_factory_register_storage (cal_factory, CAL_FACTORY_OAF_ID)) {
|
||||
bonobo_object_unref (BONOBO_OBJECT (cal_factory));
|
||||
|
Reference in New Issue
Block a user