diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-12-22 23:57:30 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-12-22 23:57:30 +0800 |
commit | f3aed51eeb6e6ef1eaadbc3559d2a38c996ed7da (patch) | |
tree | d59fdcd68d5a9f2a6d1d1ccecf0f3784597b9e32 /calendar/gui/calendar-offline-handler.c | |
parent | 0dfb205f6ae400c996093098102e089f6140a09e (diff) | |
download | gsoc2013-evolution-f3aed51eeb6e6ef1eaadbc3559d2a38c996ed7da.tar gsoc2013-evolution-f3aed51eeb6e6ef1eaadbc3559d2a38c996ed7da.tar.gz gsoc2013-evolution-f3aed51eeb6e6ef1eaadbc3559d2a38c996ed7da.tar.bz2 gsoc2013-evolution-f3aed51eeb6e6ef1eaadbc3559d2a38c996ed7da.tar.lz gsoc2013-evolution-f3aed51eeb6e6ef1eaadbc3559d2a38c996ed7da.tar.xz gsoc2013-evolution-f3aed51eeb6e6ef1eaadbc3559d2a38c996ed7da.tar.zst gsoc2013-evolution-f3aed51eeb6e6ef1eaadbc3559d2a38c996ed7da.zip |
new files for managing interactive authentication with backends.
2003-12-22 Rodrigo Moya <rodrigo@ximian.com>
* common/authentication.[ch]: new files for managing interactive
authentication with backends.
* common/Makefile.am: build new private library.
* gui/alarm-notify/alarm-notify.c (alarm_notify_add_calendar):
* gui/dialogs/event-page.c (source_changed_cb):
* gui/dialogs/task-page.c (source_changed_cb):
* gui/dialogs/copy-source-dialog.c (copy_source):
* gui/calendar-component.c (setup_create_ecal):
* gui/calendar-offline-handler.c (backend_go_offline,
backend_go_online, calendar_offline_handler_init):
* gui/comp-editor-factory.c (open_client):
* gui/e-itip-control.c (start_calendar_server):
* gui/e-tasks.c (e_tasks_add_todo_uri):
* gui/gnome-cal.c (gnome_calendar_construct,
gnome_calendar_add_event_uri):
* gui/tasks-component.c (setup_create_ecal):
* importers/icalendar-importer.c (load_file_fn, vcal_load_file_fn,
gnome_calendar_import_data_fn): create the ECal's via the
auth_new_cal_from* functions in the authentication module.
* gui/alarm-notify/Makefile.am:
* gui/Makefile.am:
* importers/Makefile.am: link new private library.
* Makefile.am: added new directory to the build.
svn path=/trunk/; revision=23999
Diffstat (limited to 'calendar/gui/calendar-offline-handler.c')
-rw-r--r-- | calendar/gui/calendar-offline-handler.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/calendar/gui/calendar-offline-handler.c b/calendar/gui/calendar-offline-handler.c index 4faf15bf7e..99257c3ca7 100644 --- a/calendar/gui/calendar-offline-handler.c +++ b/calendar/gui/calendar-offline-handler.c @@ -34,6 +34,7 @@ #include "e-util/e-url.h" #include <libecal/e-cal.h> #include "calendar-offline-handler.h" +#include "common/authentication.h" #define PARENT_TYPE bonobo_object_get_type () static BonoboObjectClass *parent_class = NULL; @@ -184,7 +185,7 @@ backend_go_offline (gpointer data, gpointer user_data) GError *error = NULL; /* FIXME This should not use LAST */ - client = e_cal_new_from_uri (uri, E_CAL_SOURCE_TYPE_LAST); + client = auth_new_cal_from_uri (uri, E_CAL_SOURCE_TYPE_LAST); g_signal_connect (client, "cal_opened", G_CALLBACK (backend_cal_opened_offline), offline_handler); success = e_cal_open (client, TRUE, &error); if (!success) { @@ -206,7 +207,7 @@ backend_go_online (gpointer data, gpointer user_data) GError *error = NULL; /* FIXME This should not use LAST */ - client = e_cal_new_from_uri (uri, E_CAL_SOURCE_TYPE_LAST); + client = auth_new_cal_from_uri (uri, E_CAL_SOURCE_TYPE_LAST); g_signal_connect (G_OBJECT (client), "cal_opened", G_CALLBACK (backend_cal_opened_online), offline_handler); success = e_cal_open (client, TRUE, &error); @@ -330,7 +331,7 @@ calendar_offline_handler_init (CalendarOfflineHandler *offline_handler) /* FIXME This should not use LAST */ /* FIXME: what URI to use? */ - priv->client = e_cal_new_from_uri ("", E_CAL_SOURCE_TYPE_LAST); + priv->client = auth_new_cal_from_uri ("", E_CAL_SOURCE_TYPE_LAST); priv->listener_interface = CORBA_OBJECT_NIL; priv->is_offline = FALSE; } |