aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mail-to-task
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-06-19 00:01:10 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-06-19 00:01:10 +0800
commita908563be0c1b07d978955d533bf4dd2a3521bef (patch)
tree486e711d63be1413906cbc37afda859d199de24a /plugins/mail-to-task
parent3464311737dbe8756a05ea08082a59a28c0722cb (diff)
downloadgsoc2013-evolution-a908563be0c1b07d978955d533bf4dd2a3521bef.tar
gsoc2013-evolution-a908563be0c1b07d978955d533bf4dd2a3521bef.tar.gz
gsoc2013-evolution-a908563be0c1b07d978955d533bf4dd2a3521bef.tar.bz2
gsoc2013-evolution-a908563be0c1b07d978955d533bf4dd2a3521bef.tar.lz
gsoc2013-evolution-a908563be0c1b07d978955d533bf4dd2a3521bef.tar.xz
gsoc2013-evolution-a908563be0c1b07d978955d533bf4dd2a3521bef.tar.zst
gsoc2013-evolution-a908563be0c1b07d978955d533bf4dd2a3521bef.zip
** Fix for bug #318089
2008-06-18 Milan Crha <mcrha@redhat.com> ** Fix for bug #318089 * mail-to-task.c: (convert_to_task): Ask for destination source only when have more than one writable source defined. svn path=/trunk/; revision=35646
Diffstat (limited to 'plugins/mail-to-task')
-rw-r--r--plugins/mail-to-task/ChangeLog7
-rw-r--r--plugins/mail-to-task/mail-to-task.c102
2 files changed, 70 insertions, 39 deletions
diff --git a/plugins/mail-to-task/ChangeLog b/plugins/mail-to-task/ChangeLog
index 2b108b08dd..8f6ec7a35e 100644
--- a/plugins/mail-to-task/ChangeLog
+++ b/plugins/mail-to-task/ChangeLog
@@ -1,3 +1,10 @@
+2008-06-18 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #318089
+
+ * mail-to-task.c: (convert_to_task): Ask for destination source only
+ when have more than one writable source defined.
+
2007-11-23 Milan Crha <mcrha@redhat.com>
** Fix for bug #353807
diff --git a/plugins/mail-to-task/mail-to-task.c b/plugins/mail-to-task/mail-to-task.c
index 73ddc3d815..5789cd001b 100644
--- a/plugins/mail-to-task/mail-to-task.c
+++ b/plugins/mail-to-task/mail-to-task.c
@@ -407,64 +407,88 @@ get_selected_text (EMFolderView *emfv)
static void
convert_to_task (GPtrArray *uid_array, struct _CamelFolder *folder, EMFolderView *emfv)
{
- GtkWidget *dialog;
GConfClient *conf_client;
+ GtkWidget *dialog = NULL;
+ gboolean done = FALSE;
ESourceList *source_list;
+ GSList *groups, *p;
+ ESource *source = NULL;
- /* ask the user which tasks list to save to */
conf_client = gconf_client_get_default ();
source_list = e_source_list_new_for_gconf (conf_client, "/apps/evolution/tasks/sources");
- dialog = e_source_selector_dialog_new (NULL, source_list);
+ groups = e_source_list_peek_groups (source_list);
+ for (p = groups; p != NULL && !done; p = p->next) {
+ ESourceGroup *group = E_SOURCE_GROUP (p->data);
+ GSList *sources, *q;
- if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK) {
- ESource *source;
+ sources = e_source_group_peek_sources (group);
+ for (q = sources; q != NULL; q = q->next) {
+ ESource *s = E_SOURCE (q->data);
- /* if a source has been selected, perform the mail2task operation */
- source = e_source_selector_dialog_peek_primary_selection (E_SOURCE_SELECTOR_DIALOG (dialog));
- if (source) {
- ECal *client = NULL;
- AsyncData *data = NULL;
- GThread *thread = NULL;
- GError *error = NULL;
+ if (s && !e_source_get_readonly (s)) {
+ if (source) {
+ source = NULL;
+ done = TRUE;
+ break;
+ }
- client = auth_new_cal_from_source (source, E_CAL_SOURCE_TYPE_TODO);
- if (!client) {
- char *uri = e_source_get_uri (source);
+ source = s;
+ }
+ }
+ }
+
+ if (!source) {
+ /* ask the user which tasks list to save to */
+ dialog = e_source_selector_dialog_new (NULL, source_list);
+
+ if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK)
+ source = e_source_selector_dialog_peek_primary_selection (E_SOURCE_SELECTOR_DIALOG (dialog));
+ }
+
+ /* if a source has been selected, perform the mail2task operation */
+ if (source) {
+ ECal *client = NULL;
+ AsyncData *data = NULL;
+ GThread *thread = NULL;
+ GError *error = NULL;
+
+ client = auth_new_cal_from_source (source, E_CAL_SOURCE_TYPE_TODO);
+ if (!client) {
+ char *uri = e_source_get_uri (source);
- g_warning ("Could not create the client: %s \n", uri);
+ g_warning ("Could not create the client: %s\n", uri);
- g_free (uri);
- g_object_unref (conf_client);
- g_object_unref (source_list);
+ g_free (uri);
+ g_object_unref (source_list);
+ g_object_unref (conf_client);
+ if (dialog)
gtk_widget_destroy (dialog);
- return;
- }
+ return;
+ }
- /* Fill the elements in AsynData */
- data = g_new0 (AsyncData, 1);
- data->client = client;
- data->folder = folder;
- data->uids = uid_array;
-
- if (uid_array->len == 1)
- data->selected_text = get_selected_text (emfv);
- else
- data->selected_text = NULL;
-
- thread = g_thread_create ((GThreadFunc) do_mail_to_task, data, FALSE, &error);
- if (!thread) {
- g_warning (G_STRLOC ": %s", error->message);
- g_error_free (error);
- }
+ /* Fill the elements in AsynData */
+ data = g_new0 (AsyncData, 1);
+ data->client = client;
+ data->folder = folder;
+ data->uids = uid_array;
+ if (uid_array->len == 1)
+ data->selected_text = get_selected_text (emfv);
+ else
+ data->selected_text = NULL;
+
+ thread = g_thread_create ((GThreadFunc) do_mail_to_task, data, FALSE, &error);
+ if (!thread) {
+ g_warning (G_STRLOC ": %s", error->message);
+ g_error_free (error);
}
}
g_object_unref (conf_client);
g_object_unref (source_list);
- gtk_widget_destroy (dialog);
-
+ if (dialog)
+ gtk_widget_destroy (dialog);
}
void