aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2012-03-02 18:46:51 +0800
committerMilan Crha <mcrha@redhat.com>2012-03-02 18:47:34 +0800
commit123c91f2412a0937ce1f55c4c7dda96fb0de5f5a (patch)
tree0d16eac9697452a211a1a03f383e2f0a53dd05cd
parent89f5daa12878d33fecfd059c384a8b8ed6b08826 (diff)
downloadgsoc2013-evolution-123c91f2412a0937ce1f55c4c7dda96fb0de5f5a.tar
gsoc2013-evolution-123c91f2412a0937ce1f55c4c7dda96fb0de5f5a.tar.gz
gsoc2013-evolution-123c91f2412a0937ce1f55c4c7dda96fb0de5f5a.tar.bz2
gsoc2013-evolution-123c91f2412a0937ce1f55c4c7dda96fb0de5f5a.tar.lz
gsoc2013-evolution-123c91f2412a0937ce1f55c4c7dda96fb0de5f5a.tar.xz
gsoc2013-evolution-123c91f2412a0937ce1f55c4c7dda96fb0de5f5a.tar.zst
gsoc2013-evolution-123c91f2412a0937ce1f55c4c7dda96fb0de5f5a.zip
Bug #663745 - Option to create Google Calendar not available
-rw-r--r--plugins/caldav/Makefile.am1
-rw-r--r--plugins/caldav/caldav-source.c27
-rw-r--r--plugins/google-account-setup/Makefile.am1
-rw-r--r--plugins/google-account-setup/google-contacts-source.c16
-rw-r--r--plugins/google-account-setup/google-source.c23
-rw-r--r--plugins/webdav-account-setup/Makefile.am1
-rw-r--r--plugins/webdav-account-setup/webdav-contacts-source.c13
7 files changed, 41 insertions, 41 deletions
diff --git a/plugins/caldav/Makefile.am b/plugins/caldav/Makefile.am
index 432cafd08e..437f574850 100644
--- a/plugins/caldav/Makefile.am
+++ b/plugins/caldav/Makefile.am
@@ -18,6 +18,7 @@ liborg_gnome_evolution_caldav_la_SOURCES = \
liborg_gnome_evolution_caldav_la_LIBADD = \
$(top_builddir)/e-util/libeutil.la \
+ $(top_builddir)/shell/libeshell.la \
$(top_builddir)/widgets/misc/libemiscwidgets.la \
$(top_builddir)/libemail-utils/libemail-utils.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
diff --git a/plugins/caldav/caldav-source.c b/plugins/caldav/caldav-source.c
index 9b318bca2f..b56b4b2c5f 100644
--- a/plugins/caldav/caldav-source.c
+++ b/plugins/caldav/caldav-source.c
@@ -31,6 +31,7 @@
#include <e-util/e-config.h>
#include <e-util/e-plugin.h>
#include <e-util/e-plugin-util.h>
+#include <shell/e-shell.h>
#include <calendar/gui/e-cal-config.h>
#include <libedataserver/e-account-list.h>
#include <libecal/e-cal-client.h>
@@ -53,19 +54,19 @@ GtkWidget * oge_caldav (EPlugin *epl,
/* plugin intialization */
static void
-ensure_caldav_source_group (ECalClientSourceType source_type)
+ensure_caldav_source_group (const gchar *backend_name)
{
- ESourceList *slist;
- GError *error = NULL;
+ EShellBackend *backend;
+ ESourceList *source_list = NULL;
- if (!e_cal_client_get_sources (&slist, source_type, &error)) {
- g_warning ("Could not get calendar sources: %s", error->message);
- g_error_free (error);
- return;
- }
+ backend = e_shell_get_backend_by_name (e_shell_get_default (), backend_name);
+ g_return_if_fail (backend != NULL);
+
+ g_object_get (G_OBJECT (backend), "source-list", &source_list, NULL);
+ g_return_if_fail (source_list != NULL);
- e_source_list_ensure_group (slist, _("CalDAV"), "caldav://", FALSE);
- g_object_unref (slist);
+ e_source_list_ensure_group (source_list, _("CalDAV"), "caldav://", FALSE);
+ g_object_unref (source_list);
}
gint
@@ -75,9 +76,9 @@ e_plugin_lib_enable (EPlugin *ep,
if (enable) {
d(g_print ("CalDAV Eplugin starting up ...\n"));
- ensure_caldav_source_group (E_CAL_CLIENT_SOURCE_TYPE_EVENTS);
- ensure_caldav_source_group (E_CAL_CLIENT_SOURCE_TYPE_TASKS);
- ensure_caldav_source_group (E_CAL_CLIENT_SOURCE_TYPE_MEMOS);
+ ensure_caldav_source_group ("calendar");
+ ensure_caldav_source_group ("tasks");
+ ensure_caldav_source_group ("memos");
}
return 0;
diff --git a/plugins/google-account-setup/Makefile.am b/plugins/google-account-setup/Makefile.am
index 7380912a40..9842673302 100644
--- a/plugins/google-account-setup/Makefile.am
+++ b/plugins/google-account-setup/Makefile.am
@@ -22,6 +22,7 @@ liborg_gnome_evolution_google_la_SOURCES = \
liborg_gnome_evolution_google_la_LIBADD = \
$(top_builddir)/calendar/gui/libevolution-calendar.la \
$(top_builddir)/e-util/libeutil.la \
+ $(top_builddir)/shell/libeshell.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS) \
$(GDATA_LIBS)
diff --git a/plugins/google-account-setup/google-contacts-source.c b/plugins/google-account-setup/google-contacts-source.c
index 5653881899..9345deba57 100644
--- a/plugins/google-account-setup/google-contacts-source.c
+++ b/plugins/google-account-setup/google-contacts-source.c
@@ -30,6 +30,7 @@
#include <e-util/e-config.h>
#include <e-util/e-plugin.h>
+#include <shell/e-shell.h>
#include <addressbook/gui/widgets/eab-config.h>
#include <libedataserver/e-source.h>
@@ -42,17 +43,16 @@
void
ensure_google_contacts_source_group (void)
{
- ESourceList *source_list;
- const gchar *key;
+ EShellBackend *backend;
+ ESourceList *source_list = NULL;
- key = "/apps/evolution/addressbook/sources";
- source_list = e_source_list_new_for_gconf_default (key);
+ backend = e_shell_get_backend_by_name (e_shell_get_default (), "contacts");
+ g_return_if_fail (backend != NULL);
- if (source_list == NULL)
- return;
+ g_object_get (G_OBJECT (backend), "source-list", &source_list, NULL);
+ g_return_if_fail (source_list != NULL);
- e_source_list_ensure_group (
- source_list, _("Google"), "google://", FALSE);
+ e_source_list_ensure_group (source_list, _("Google"), "google://", FALSE);
g_object_unref (source_list);
}
diff --git a/plugins/google-account-setup/google-source.c b/plugins/google-account-setup/google-source.c
index 76dd8ae2c4..b6dde02bd5 100644
--- a/plugins/google-account-setup/google-source.c
+++ b/plugins/google-account-setup/google-source.c
@@ -35,6 +35,7 @@
#include <e-util/e-config.h>
#include <e-util/e-plugin.h>
#include <e-util/e-plugin-util.h>
+#include <shell/e-shell.h>
#include <calendar/gui/e-cal-config.h>
#include <calendar/gui/e-cal-event.h>
@@ -70,29 +71,23 @@ void e_calendar_google_migrate (EPlugin *epl, ECalEventTargetBackend *data);
static void
ensure_google_source_group (void)
{
- ESourceList *slist;
- GError *error = NULL;
+ EShellBackend *backend;
+ ESourceList *source_list = NULL;
- e_cal_client_get_sources (
- &slist, E_CAL_CLIENT_SOURCE_TYPE_EVENTS, &error);
+ backend = e_shell_get_backend_by_name (e_shell_get_default (), "calendar");
+ g_return_if_fail (backend != NULL);
- if (error != NULL) {
- g_warning (
- "%s: Could not get calendar source list: %s",
- G_STRFUNC, error->message);
- g_error_free (error);
- return;
- }
+ g_object_get (G_OBJECT (backend), "source-list", &source_list, NULL);
+ g_return_if_fail (source_list != NULL);
- e_source_list_ensure_group (slist, _("Google"), GOOGLE_BASE_URI, FALSE);
- g_object_unref (slist);
+ e_source_list_ensure_group (source_list, _("Google"), GOOGLE_BASE_URI, FALSE);
+ g_object_unref (source_list);
}
gint
e_plugin_lib_enable (EPlugin *ep,
gint enable)
{
-
if (enable) {
d(printf ("\n Google Eplugin starting up ...\n"));
ensure_google_source_group ();
diff --git a/plugins/webdav-account-setup/Makefile.am b/plugins/webdav-account-setup/Makefile.am
index d4d9d006aa..58c9b91d7e 100644
--- a/plugins/webdav-account-setup/Makefile.am
+++ b/plugins/webdav-account-setup/Makefile.am
@@ -16,6 +16,7 @@ liborg_gnome_evolution_webdav_la_SOURCES = \
liborg_gnome_evolution_webdav_la_LIBADD = \
$(top_builddir)/e-util/libeutil.la \
+ $(top_builddir)/shell/libeshell.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS)
diff --git a/plugins/webdav-account-setup/webdav-contacts-source.c b/plugins/webdav-account-setup/webdav-contacts-source.c
index b611852db3..f81abe3e24 100644
--- a/plugins/webdav-account-setup/webdav-contacts-source.c
+++ b/plugins/webdav-account-setup/webdav-contacts-source.c
@@ -31,6 +31,7 @@
#include <e-util/e-config.h>
#include <e-util/e-plugin.h>
#include <e-util/e-plugin-util.h>
+#include <shell/e-shell.h>
#include <addressbook/gui/widgets/eab-config.h>
#include <libedataserver/e-source.h>
@@ -57,14 +58,14 @@ e_plugin_lib_enable (EPlugin *ep,
static void
ensure_webdav_contacts_source_group (void)
{
- ESourceList *source_list;
+ EShellBackend *backend;
+ ESourceList *source_list = NULL;
- source_list = e_source_list_new_for_gconf_default (
- "/apps/evolution/addressbook/sources");
+ backend = e_shell_get_backend_by_name (e_shell_get_default (), "contacts");
+ g_return_if_fail (backend != NULL);
- if (source_list == NULL) {
- return;
- }
+ g_object_get (G_OBJECT (backend), "source-list", &source_list, NULL);
+ g_return_if_fail (source_list != NULL);
e_source_list_ensure_group (source_list, _("WebDAV"), BASE_URI, FALSE);
g_object_unref (source_list);