aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorJP Rosevear <jpr@helixcode.com>2000-09-11 10:24:38 +0800
committerJP Rosevear <jpr@src.gnome.org>2000-09-11 10:24:38 +0800
commitb647384491d353ebe68ae295000efaccd229bf11 (patch)
tree6de17429952f2ce817056143fe9a169f5b4a7b0b /calendar
parentb971ef36179be89ce8fcfda712851418fadc0035 (diff)
downloadgsoc2013-evolution-b647384491d353ebe68ae295000efaccd229bf11.tar
gsoc2013-evolution-b647384491d353ebe68ae295000efaccd229bf11.tar.gz
gsoc2013-evolution-b647384491d353ebe68ae295000efaccd229bf11.tar.bz2
gsoc2013-evolution-b647384491d353ebe68ae295000efaccd229bf11.tar.lz
gsoc2013-evolution-b647384491d353ebe68ae295000efaccd229bf11.tar.xz
gsoc2013-evolution-b647384491d353ebe68ae295000efaccd229bf11.tar.zst
gsoc2013-evolution-b647384491d353ebe68ae295000efaccd229bf11.zip
Make log output a little more sensible (comp_from_remote_record): Minor
2000-09-10 JP Rosevear <jpr@helixcode.com> * conduits/todo/todo-conduit.c (update_calendar_entry_in_repository): Make log output a little more sensible (comp_from_remote_record): Minor correction when making a CalComponent from scratch. (update_record): Use comp_from_remote_record for new items, rather than repeating the code here. svn path=/trunk/; revision=5307
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog9
-rw-r--r--calendar/conduits/todo/todo-conduit.c56
2 files changed, 26 insertions, 39 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 2074128db7..d1fa6081dc 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,14 @@
2000-09-10 JP Rosevear <jpr@helixcode.com>
+ * conduits/todo/todo-conduit.c (update_calendar_entry_in_repository):
+ Make log output a little more sensible
+ (comp_from_remote_record): Minor correction when making a CalComponent
+ from scratch.
+ (update_record): Use comp_from_remote_record for new items, rather
+ than repeating the code here.
+
+2000-09-10 JP Rosevear <jpr@helixcode.com>
+
* conduits/todo/todo-conduit.c: Remove catch_ret_val function
since its no longer useful. Fix naming of various fields from
the header changes. Use GnomePilotRecord* stuff instead of
diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c
index 61badc4785..c2e0eddfb0 100644
--- a/calendar/conduits/todo/todo-conduit.c
+++ b/calendar/conduits/todo/todo-conduit.c
@@ -341,22 +341,21 @@ find_record_in_repository(GnomePilotConduitStandardAbs *conduit,
*/
static void
update_calendar_entry_in_repository(GnomePilotConduitStandardAbs *conduit,
- CalComponent *obj,
+ CalComponent *comp,
EToDoConduitContext *ctxt)
{
gboolean success;
- g_return_if_fail (conduit!=NULL);
- g_return_if_fail (obj!=NULL);
+ g_return_if_fail (conduit != NULL);
+ g_return_if_fail (comp != NULL);
LOG (" update_calendar_entry_in_repository "
- "saving %s to desktop\n", cal_component_get_as_string (obj));
+ "saving to desktop\n%s", cal_component_get_as_string (comp));
- success = cal_client_update_object (ctxt->client, obj);
+ success = cal_client_update_object (ctxt->client, comp);
- if (!success) {
+ if (!success)
WARN (_("Error while communicating with calendar server"));
- }
}
@@ -373,25 +372,25 @@ comp_from_remote_record (GnomePilotConduitStandardAbs *conduit,
CalComponentText comment = {NULL, NULL};
CalComponentDateTime dt = {NULL, NULL};
struct icaltimetype due;
-
GSList *comment_list;
- g_return_val_if_fail(remote!=NULL,NULL);
+ g_return_val_if_fail (remote != NULL, NULL);
+
memset (&todo, 0, sizeof (struct ToDo));
unpack_ToDo (&todo, remote->record, remote->length);
- LOG (" comp_from_remote_record: "
- "merging remote %s into local %s\n",
- print_remote (remote), cal_component_get_as_string (in_comp));
-
if (in_comp == NULL) {
comp = cal_component_new ();
cal_component_set_new_vtype (comp, CAL_COMPONENT_TODO);
+ cal_component_set_created (comp, &now);
} else {
comp = cal_component_clone (in_comp);
}
- cal_component_set_created (comp, &now);
+ LOG (" comp_from_remote_record: "
+ "merging remote %s into local %s\n",
+ print_remote (remote), cal_component_get_as_string (comp));
+
cal_component_set_last_modified (comp, &now);
summary.value = todo.description;
@@ -423,6 +422,8 @@ comp_from_remote_record (GnomePilotConduitStandardAbs *conduit,
cal_component_set_pilot_id (comp, &remote->ID);
cal_component_set_pilot_status (comp, &pilot_status);
+ cal_component_commit_sequence (comp);
+
free_ToDo(&todo);
return comp;
@@ -451,10 +452,6 @@ update_record (GnomePilotConduitStandardAbs *conduit,
unsigned long pilot_status = GnomePilotRecordNothing;
char *uid;
- CalComponentText summary = {NULL, NULL};
- CalComponentText comment = {NULL, NULL};
- GSList *comment_list;
-
g_return_val_if_fail (remote!=NULL,-1);
memset (&todo, 0, sizeof (struct ToDo));
@@ -471,33 +468,14 @@ update_record (GnomePilotConduitStandardAbs *conduit,
}
if (status != CAL_CLIENT_GET_SUCCESS) {
- struct icaltimetype now = icaltime_from_timet (time (NULL), FALSE, FALSE);
-
- LOG ("failed, making a new one.\n");
-
- comp = cal_component_new ();
- cal_component_set_new_vtype (comp, CAL_COMPONENT_TODO);
-
- summary.value = todo.description;
- cal_component_set_summary (comp, &summary);
-
- comment.value = todo.note;
- comment_list = g_slist_append (NULL, &comment);
- cal_component_set_comment_list (comp, comment_list);
- g_slist_free (comment_list);
-
- cal_component_set_created (comp, &now);
- cal_component_set_last_modified (comp, &now);
- cal_component_set_priority (comp, &todo.priority);
- cal_component_set_transparency (comp, CAL_COMPONENT_TRANSP_NONE);
- cal_component_set_pilot_id (comp, &remote->ID);
- cal_component_set_pilot_status (comp, &pilot_status);
+ comp = comp_from_remote_record (conduit, remote, NULL);
} else {
CalComponent *new_comp;
LOG ("succeeded %s\n", cal_component_get_as_string (comp));
new_comp = comp_from_remote_record (conduit, remote, comp);
+ gtk_object_unref (GTK_OBJECT (comp));
comp = new_comp;
}