[evolution-ews] Skeleton for a function that converts an ical vevent component to a string that can be placed in a m



commit 9bb991430fa6caa0537f3e944d2f8dc57f1d7868
Author: Or Goshen <orx goshen intel com>
Date:   Mon Jul 11 13:27:46 2011 +0300

    Skeleton for a function that converts an ical vevent component to a string that can be placed in a mime content soap element

 src/calendar/e-cal-backend-ews.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)
---
diff --git a/src/calendar/e-cal-backend-ews.c b/src/calendar/e-cal-backend-ews.c
index 6e91c8b..1ea22d6 100644
--- a/src/calendar/e-cal-backend-ews.c
+++ b/src/calendar/e-cal-backend-ews.c
@@ -1870,6 +1870,12 @@ typedef struct {
 	const char *change_key;
 } EwsAcceptData;
 
+static gchar *
+e_ews_get_icalcomponent_as_mime_content (icalcomponent *vevent)
+{
+	return NULL;
+}
+
 static const char*
 e_ews_get_current_user_meeting_reponse (icalcomponent *icalcomp, const char *current_user_mail)
 {
@@ -1904,6 +1910,8 @@ prepare_accept_item_request (ESoapMessage *msg, gpointer user_data)
 	 * need to find current user as attendee and make a desision what to do.
 	 * Prepare AcceptItem node in the SOAP message */
 
+	e_ews_get_icalcomponent_as_mime_content (NULL);
+	
 	if (!g_ascii_strcasecmp (response_type, "ACCEPTED"))
 		e_soap_message_start_element (msg, "AcceptItem", NULL, NULL);
 	else if (!g_ascii_strcasecmp (response_type, "DECLINED"))



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]