aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-01-16 18:16:28 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-01-16 18:16:28 +0800
commit3732aabca58ffd28487a1d7dc8c449e216a20917 (patch)
tree35111f748ebc066ef617cf668b2ade01d291163c /calendar
parenta8c524431cda84242653dfd7e8db028e5b0f58a3 (diff)
downloadgsoc2013-evolution-3732aabca58ffd28487a1d7dc8c449e216a20917.tar
gsoc2013-evolution-3732aabca58ffd28487a1d7dc8c449e216a20917.tar.gz
gsoc2013-evolution-3732aabca58ffd28487a1d7dc8c449e216a20917.tar.bz2
gsoc2013-evolution-3732aabca58ffd28487a1d7dc8c449e216a20917.tar.lz
gsoc2013-evolution-3732aabca58ffd28487a1d7dc8c449e216a20917.tar.xz
gsoc2013-evolution-3732aabca58ffd28487a1d7dc8c449e216a20917.tar.zst
gsoc2013-evolution-3732aabca58ffd28487a1d7dc8c449e216a20917.zip
changes in alarm-queue.c to fix two bugs 324889 and 324816. The code that
handles the toggle of a calendar to be (not to be) included for alarms on "Configure Alarms" (right click alarm-notify panel icon) is faulty and is modified. svn path=/trunk/; revision=31210
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog11
-rw-r--r--calendar/gui/alarm-notify/alarm-queue.c78
2 files changed, 51 insertions, 38 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index e4dbe10697..24ff9607b3 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,16 @@
2006-01-16 P S Chakravarthi <pchakravarthi@novell.com>
+ Fixes #324816 #324889
+
+ * gui/alarm-notify/alarm-queue.c : menu_item_toggle_callback :
+ revised the code to use only e_source_group_add_source and
+ e_source_group_remove_source alone to update gconf rather than
+ explicit updating of the gconf xml
+ [along with a patch in e-source-list.c]
+
+
+2006-01-16 P S Chakravarthi <pchakravarthi@novell.com>
+
Minor Feature: Reply and Reply all for calendar items of clients
that support such facility (personal, exchange).
diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c
index b2ed3ddc42..c177d8e5b1 100644
--- a/calendar/gui/alarm-notify/alarm-queue.c
+++ b/calendar/gui/alarm-notify/alarm-queue.c
@@ -1029,7 +1029,7 @@ menu_item_toggle_callback (GtkToggleButton *item, void *data)
{
gboolean state = gtk_toggle_button_get_active (item);
ESource *source = e_source_copy ((ESource *) data);
- GSList *groups, *p;
+ GSList *groups, *sel_groups, *p;
if (e_source_get_uri ((ESource *)data)) {
g_free (e_source_get_uri (source));
@@ -1040,45 +1040,58 @@ menu_item_toggle_callback (GtkToggleButton *item, void *data)
const char *uid = e_source_peek_uid (source);
ESourceList *selected_cal = alarm_notify_get_selected_calendars (an);
ESourceList *all_cal;
- ESourceGroup *sel_group = NULL;
- const char *grp_name=NULL;
- ESourceGroup *group;
- ESource *del_source;
+ ESourceGroup *group = NULL, *sel_group = NULL;
+ const char *grp_uid = NULL;
+ char * check_grp_uid = NULL;
+ ESource *source_got = NULL;
+ gboolean found_grp = FALSE;
e_cal_get_sources (&all_cal, E_CAL_SOURCE_TYPE_EVENT, NULL);
alarm_notify_add_calendar (an, E_CAL_SOURCE_TYPE_EVENT, source, FALSE);
-
- /* Browse the list of calendars for the newly added calendar*/
+
+ /* Browse the list of all calendars for the newly added calendar*/
groups = e_source_list_peek_groups (all_cal);
for (p = groups; p != NULL; p = p->next) {
- ESourceGroup *group = E_SOURCE_GROUP (p->data);
- ESource *sel_source = e_source_group_peek_source_by_uid (group, uid);
+ group = E_SOURCE_GROUP (p->data);
+ source_got = e_source_group_peek_source_by_uid (group, uid);
- if (sel_source) {
- sel_group = group;
- grp_name = e_source_group_peek_name (sel_group);
- /* You have got the group name*/
+ if (source_got) { /* You have got the group */
break;
- }
-}
+ }
+ }
- /* Add the source the the group name in the alarms calendar list*/
- group = e_source_list_peek_group_by_name (selected_cal, grp_name);
- del_source = e_source_group_peek_source_by_uid (group, uid);
-
- if (!del_source) {
- char *xml, *old_xml;
+ /* Ensure that the source is under some source group in all calendar list */
+ if (group == NULL){
+ g_warning ("Source Group selected is *NOT* in all calendar list");
+ g_object_unref (all_cal);
+ return;
+ }
- old_xml = e_source_group_to_xml (group);
- e_source_group_add_source (group, source, -1);
- xml = e_source_group_to_xml (group);
- config_data_replace_string_list ("/apps/evolution/calendar/notify/calendars", old_xml, xml);
+ /* Get the group id from the above */
+ grp_uid = e_source_group_peek_uid (group);
+
+ /* Look for the particular group in the original selected calendars list */
+ sel_groups = e_source_list_peek_groups (selected_cal);
+ for (p = sel_groups; p != NULL; p = p->next) {
+ sel_group = E_SOURCE_GROUP (p->data);
+ check_grp_uid = g_strdup ((const char *)e_source_group_peek_uid (sel_group));
+ if (!strcmp (grp_uid, check_grp_uid)) {
+ g_free (check_grp_uid);
+ found_grp = TRUE;
+ break;
+ }
+ g_free (check_grp_uid);
+ }
- g_free (xml);
- g_free (old_xml);
+ if (found_grp != TRUE) {
+ g_warning ("Did not find the source group to add the source in the selected calendars");
+ g_object_unref (all_cal);
+ return;
}
+ e_source_group_add_source (sel_group, source, -1);
+
g_object_unref (all_cal);
} else {
@@ -1094,18 +1107,7 @@ menu_item_toggle_callback (GtkToggleButton *item, void *data)
del_source = e_source_group_peek_source_by_uid (group, uid);
if (del_source) {
- char *xml, *old_xml;
-
- old_xml = e_source_group_to_xml (group);
-
e_source_group_remove_source_by_uid (group, uid);
-
- xml = e_source_group_to_xml (group);
-
- config_data_replace_string_list ("/apps/evolution/calendar/notify/calendars", old_xml, xml);
-
- g_free (xml);
- g_free (old_xml);
break;
}
}