[evolution-patches] patch for #69624 (groupwise)
- From: Sivaiah Nallagatla <snallagatla novell com>
- To: evolution-patches lists ximian com
- Subject: [evolution-patches] patch for #69624 (groupwise)
- Date: Thu, 18 Nov 2004 16:17:18 -0800
it is for both HEAD and gnome-2-8. Details are in the bug report.
Siva
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution-data-server/servers/groupwise/ChangeLog,v
retrieving revision 1.76
diff -u -p -r1.76 ChangeLog
--- ChangeLog 27 Oct 2004 22:18:32 -0000 1.76
+++ ChangeLog 18 Nov 2004 21:02:34 -0000
@@ -1,3 +1,10 @@
+2004-11-18 Sivaiah Nallagatla <snallagatla novell com>
+
+ * e-gw-connection.c (e_gw_connection_new) : change
+ the "UserInfo" element to "userinfo"
+ part of the fix for #69624
+
+
2004-10-26 Sivaiah Nallagatla <snallagatla novell com>
* e-gw-message.c (e_gw_message_new_with_header) :
Index: e-gw-connection.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/servers/groupwise/e-gw-connection.c,v
retrieving revision 1.87
diff -u -p -r1.87 e-gw-connection.c
--- e-gw-connection.c 13 Oct 2004 11:46:39 -0000 1.87
+++ e-gw-connection.c 18 Nov 2004 21:02:34 -0000
@@ -410,7 +410,7 @@ e_gw_connection_new (const char *uri, co
cnc->priv->session_id = soup_soap_parameter_get_string_value (param);
/* retrieve user information */
- param = soup_soap_response_get_first_parameter_by_name (response, "UserInfo");
+ param = soup_soap_response_get_first_parameter_by_name (response, "userinfo");
if (param) {
SoupSoapParameter *subparam;
const char *param_value;
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/ChangeLog,v
retrieving revision 1.350
diff -u -r1.350 ChangeLog
--- ChangeLog 29 Oct 2004 16:16:18 -0000 1.350
+++ ChangeLog 18 Nov 2004 21:03:24 -0000
@@ -1,3 +1,11 @@
+2004-11-18 Sivaiah Nallagatla <snallagatla novell com>
+
+ * backends/groupwise/e-cal-backend-groupwise.c
+ (populate_cache) (get_deltas) : added "default" to
+ the view wherever we want to get complete item along
+ with iCalId
+ part of fix for #69624
+
2004-10-29 Sivaiah Nallagatla <snallagatla novell com>
* backends/groupwise/e-ca-backend-groupwise.c
Index: backends/groupwise/e-cal-backend-groupwise.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/backends/groupwise/e-cal-backend-groupwise.c,v
retrieving revision 1.104
diff -u -r1.104 e-cal-backend-groupwise.c
--- backends/groupwise/e-cal-backend-groupwise.c 29 Oct 2004 16:16:18 -0000 1.104
+++ backends/groupwise/e-cal-backend-groupwise.c 18 Nov 2004 21:03:24 -0000
@@ -132,7 +132,7 @@
g_mutex_unlock (mutex);
return status;
}
- status = e_gw_connection_create_cursor (priv->cnc, priv->container_id, "recipients message recipientStatus", NULL, &cursor);
+ status = e_gw_connection_create_cursor (priv->cnc, priv->container_id, "recipients message recipientStatus default", NULL, &cursor);
if (status != E_GW_CONNECTION_STATUS_OK) {
e_cal_backend_groupwise_notify_error_code (cbgw, status);
g_mutex_unlock (mutex);
@@ -220,7 +220,7 @@
tm = gmtime (&mod_time);
strftime (time_string, 100, "%Y-%m-%dT%H:%M:%SZ", tm);
- status = e_gw_connection_get_quick_messages (cnc, cbgw->priv->container_id, "recipients message recipientStatus", time_string, "New", "CalendarItem", NULL, -1, &item_list);
+ status = e_gw_connection_get_quick_messages (cnc, cbgw->priv->container_id, "recipients message recipientStatus default", time_string, "New", "CalendarItem", NULL, -1, &item_list);
if (status != E_GW_CONNECTION_STATUS_OK) {
e_cal_backend_groupwise_notify_error_code (cbgw, status);
return TRUE;
@@ -250,7 +250,7 @@
g_slist_free (item_list);
item_list = NULL;
}
- status = e_gw_connection_get_quick_messages (cnc, cbgw->priv->container_id,"recipients message recipientStatus iCalId", time_string, "Modified", "CalendarItem", NULL, -1, &item_list);
+ status = e_gw_connection_get_quick_messages (cnc, cbgw->priv->container_id,"recipients message recipientStatus default", time_string, "Modified", "CalendarItem", NULL, -1, &item_list);
if (status != E_GW_CONNECTION_STATUS_OK) {
e_cal_backend_groupwise_notify_error_code (cbgw, status);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]