diff options
author | nobody <nobody@localhost> | 2004-08-12 13:10:42 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2004-08-12 13:10:42 +0800 |
commit | b12af433cab28560e6bf9fdda0eb745fb6917640 (patch) | |
tree | 67be2f627a3519738f6079227076e80f861966a7 /calendar/common | |
parent | 89203ea5f65fa3a8a309dcde8dbeceb37f91b6cc (diff) | |
download | gsoc2013-evolution-GAL_2_1_14.tar.gz gsoc2013-evolution-GAL_2_1_14.tar.zst gsoc2013-evolution-GAL_2_1_14.zip |
This commit was manufactured by cvs2svn to create tag 'GAL_2_1_14'.GAL_2_1_14
svn path=/tags/GAL_2_1_14/; revision=26874
Diffstat (limited to 'calendar/common')
-rw-r--r-- | calendar/common/.cvsignore | 2 | ||||
-rw-r--r-- | calendar/common/Makefile.am | 28 | ||||
-rw-r--r-- | calendar/common/authentication.c | 102 | ||||
-rw-r--r-- | calendar/common/authentication.h | 34 |
4 files changed, 0 insertions, 166 deletions
diff --git a/calendar/common/.cvsignore b/calendar/common/.cvsignore deleted file mode 100644 index 282522db03..0000000000 --- a/calendar/common/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -Makefile -Makefile.in diff --git a/calendar/common/Makefile.am b/calendar/common/Makefile.am deleted file mode 100644 index 8b0dbdb9e5..0000000000 --- a/calendar/common/Makefile.am +++ /dev/null @@ -1,28 +0,0 @@ -noinst_LTLIBRARIES = libevolution-calendarprivate.la - -INCLUDES = \ - -DG_LOG_DOMAIN=\"calendar-gui\" \ - -I$(top_builddir)/shell \ - -I$(top_srcdir)/shell \ - -I$(top_srcdir) \ - -I$(top_srcdir)/calendar \ - -I$(top_srcdir)/widgets \ - -I$(top_srcdir)/a11y/calendar \ - -DEVOLUTION_DATADIR=\""$(datadir)"\" \ - -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ - -DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \ - -DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" \ - -DEVOLUTION_GALVIEWSDIR=\""$(viewsdir)"\" \ - -DEVOLUTION_UIDIR=\""$(evolutionuidir)"\" \ - -DPREFIX=\""$(prefix)"\" \ - $(EVOLUTION_CALENDAR_CFLAGS) - -libevolution_calendarprivate_la_SOURCES = \ - authentication.c \ - authentication.h - -libevolution_calendarprivate_la_LIBADD = \ - $(top_builddir)/e-util/libeutil.la \ - $(EVOLUTION_CALENDAR_LIBS) - -libevolution_calendarprivate_la_LDFLAGS = -avoid-version -module diff --git a/calendar/common/authentication.c b/calendar/common/authentication.c deleted file mode 100644 index 663b17dc61..0000000000 --- a/calendar/common/authentication.c +++ /dev/null @@ -1,102 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ - -/* - * Authors : - * Rodrigo Moya <rodrigo@ximian.com> - * - * Copyright 2003, Novell, Inc. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * License as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA - */ - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include <string.h> -#include <bonobo/bonobo-i18n.h> -#include "e-util/e-passwords.h" -#include "authentication.h" - -static char * -auth_func_cb (ECal *ecal, const char *prompt, const char *key, gpointer user_data) -{ - gboolean remember; - char *password; - ESource *source; - gchar *auth_domain; - gchar *component_name; - - source = e_cal_get_source (ecal); - auth_domain = e_source_get_property (source, "auth-domain"); - component_name = auth_domain ? auth_domain : "Calendar"; - password = e_passwords_get_password (component_name, key); - - if (!password) - password = e_passwords_ask_password (_("Enter password"), component_name, key, prompt, TRUE, - E_PASSWORDS_REMEMBER_FOREVER, &remember, - NULL); - - return password; -} - -ECal * -auth_new_cal_from_default (ECalSourceType type) -{ - ECal *ecal = NULL; - - if (!e_cal_open_default (&ecal, type, auth_func_cb, NULL, NULL)) - return NULL; - - - return ecal; -} - -ECal * -auth_new_cal_from_source (ESource *source, ECalSourceType type) -{ - ECal *cal; - - cal = e_cal_new (source, type); - if (cal) - e_cal_set_auth_func (cal, (ECalAuthFunc) auth_func_cb, NULL); - - return cal; -} - -ECal * -auth_new_cal_from_uri (const char *uri, ECalSourceType type) -{ - ESourceGroup *group; - ESource *source; - ECal *cal; - - group = e_source_group_new ("", uri); - source = e_source_new ("", ""); - e_source_set_group (source, group); - - /* we explicitly check for groupwise:// uris, to force authentication on them */ - if (!strncmp (uri, "groupwise://", strlen ("groupwise://"))) { - e_source_set_property (source, "auth", "yes"); - /* FIXME: need to retrieve the username */ - } - - cal = auth_new_cal_from_source (source, type); - - g_object_unref (source); - g_object_unref (group); - - return cal; -} diff --git a/calendar/common/authentication.h b/calendar/common/authentication.h deleted file mode 100644 index 2f8af70ace..0000000000 --- a/calendar/common/authentication.h +++ /dev/null @@ -1,34 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ - -/* - * Authors : - * Rodrigo Moya <rodrigo@ximian.com> - * - * Copyright 2003, Novell, Inc. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * License as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA - */ - -#ifndef _AUTHENTICATION_H_ -#define _AUTHENTICATION_H_ - -#include <libedataserver/e-source.h> -#include <libecal/e-cal.h> - -ECal *auth_new_cal_from_default (ECalSourceType type); -ECal *auth_new_cal_from_source (ESource *source, ECalSourceType type); -ECal *auth_new_cal_from_uri (const char *uri, ECalSourceType type); - -#endif |