aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/conduits
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-04-23 03:40:07 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-04-23 03:40:07 +0800
commitc5ea7774a804a615079bb7b0d1cacebb4e2c0182 (patch)
treeb4eede590fa55e6ae8d334db1a9735bfdf6fdec4 /calendar/conduits
parent90d533c1a3f7e6e24eb308b355aaabf95bb3c4c3 (diff)
downloadgsoc2013-evolution-c5ea7774a804a615079bb7b0d1cacebb4e2c0182.tar
gsoc2013-evolution-c5ea7774a804a615079bb7b0d1cacebb4e2c0182.tar.gz
gsoc2013-evolution-c5ea7774a804a615079bb7b0d1cacebb4e2c0182.tar.bz2
gsoc2013-evolution-c5ea7774a804a615079bb7b0d1cacebb4e2c0182.tar.lz
gsoc2013-evolution-c5ea7774a804a615079bb7b0d1cacebb4e2c0182.tar.xz
gsoc2013-evolution-c5ea7774a804a615079bb7b0d1cacebb4e2c0182.tar.zst
gsoc2013-evolution-c5ea7774a804a615079bb7b0d1cacebb4e2c0182.zip
Use e_cal_open_default() instead of e_cal_open(). (map_name): Changed the
2004-04-22 Jeffrey Stedfast <fejj@ximian.com> * conduits/todo/todo-conduit.c (start_calendar_server): Use e_cal_open_default() instead of e_cal_open(). (map_name): Changed the path for the pilot map filename. (pre_sync): Changed the query to "#t" instead of "(#t)" and removed a duplicate block of code (seems to have been a paste-o?). svn path=/trunk/; revision=25585
Diffstat (limited to 'calendar/conduits')
-rw-r--r--calendar/conduits/todo/todo-conduit.c44
1 files changed, 14 insertions, 30 deletions
diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c
index a8a7e35671..ca254a90e8 100644
--- a/calendar/conduits/todo/todo-conduit.c
+++ b/calendar/conduits/todo/todo-conduit.c
@@ -395,22 +395,14 @@ static char *print_remote (GnomePilotRecord *remote)
static int
start_calendar_server (EToDoConduitContext *ctxt)
{
- char *uri;
-
g_return_val_if_fail (ctxt != NULL, -2);
-
+
/* FIXME Need a mechanism for the user to select uri's */
/* FIXME Can we use the cal model? */
- uri = g_strdup_printf ("file://%s/local/Tasks/", g_get_home_dir ());
- ctxt->client = e_cal_new (uri, E_CAL_SOURCE_TYPE_TODO);
- g_free (uri);
- if (!ctxt->client)
- return -1;
-
- if (!e_cal_open (ctxt->client, FALSE, NULL))
+ if (!e_cal_open_default (&ctxt->client, E_CAL_SOURCE_TYPE_TODO, NULL, NULL, NULL))
return -1;
-
+
return 0;
}
@@ -456,8 +448,8 @@ map_name (EToDoConduitContext *ctxt)
{
char *filename;
- filename = g_strdup_printf ("%s/evolution/local/Tasks/pilot-map-todo-%d.xml", g_get_home_dir (), ctxt->cfg->pilot_id);
-
+ filename = g_strdup_printf ("%s/.evolution/tasks/local/system/pilot-map-todo-%d.xml", g_get_home_dir (), ctxt->cfg->pilot_id);
+
return filename;
}
@@ -866,42 +858,34 @@ pre_sync (GnomePilotConduit *conduit,
LOG (g_message ( " Using timezone: %s", icaltimezone_get_tzid (ctxt->timezone) ));
/* Set the default timezone on the backend. */
- if (ctxt->timezone) {
- if (!e_cal_set_default_timezone (ctxt->client, ctxt->timezone, NULL))
- return -1;
- }
-
+ if (ctxt->timezone && !e_cal_set_default_timezone (ctxt->client, ctxt->timezone, NULL))
+ return -1;
+
/* Get the default component */
if (!e_cal_get_default_object (ctxt->client, &icalcomp, NULL))
return -1;
-
- ctxt->default_comp = e_cal_component_new ();
- if (!e_cal_component_set_icalcomponent (ctxt->default_comp, icalcomp)) {
- g_object_unref (ctxt->default_comp);
- icalcomponent_free (icalcomp);
- return -1;
- }
-
+
ctxt->default_comp = e_cal_component_new ();
if (!e_cal_component_set_icalcomponent (ctxt->default_comp, icalcomp)) {
g_object_unref (ctxt->default_comp);
icalcomponent_free (icalcomp);
return -1;
}
-
+
/* Load the uid <--> pilot id map */
filename = map_name (ctxt);
e_pilot_map_read (filename, &ctxt->map);
g_free (filename);
/* Get the local database */
- if (!e_cal_get_object_list_as_comp (ctxt->client, "(#t)", &ctxt->comps, NULL))
+ if (!e_cal_get_object_list_as_comp (ctxt->client, "#t", &ctxt->comps, NULL))
return -1;
-
+
/* Count and hash the changes */
change_id = g_strdup_printf ("pilot-sync-evolution-todo-%d", ctxt->cfg->pilot_id);
if (!e_cal_get_changes (ctxt->client, change_id, &ctxt->changed, NULL))
return -1;
+
ctxt->changed_hash = g_hash_table_new (g_str_hash, g_str_equal);
g_free (change_id);
@@ -1367,7 +1351,7 @@ conduit_get_gpilot_conduit (guint32 pilot_id)
retval = gnome_pilot_conduit_sync_abs_new ("ToDoDB", 0x746F646F);
g_assert (retval != NULL);
-
+
ctxt = e_todo_context_new (pilot_id);
gtk_object_set_data (GTK_OBJECT (retval), "todoconduit_context", ctxt);