aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-01-31 02:48:06 +0800
committerIain Holmes <iain@src.gnome.org>2001-01-31 02:48:06 +0800
commit5a13e823f2ea32d9a559bbb65d2fbb5b81442cad (patch)
tree21166356eeccbe6e36667eaeea1f7c6bc4a92864 /shell
parente1a7d7737020e19514e869d421bf4736b57f943d (diff)
downloadgsoc2013-evolution-5a13e823f2ea32d9a559bbb65d2fbb5b81442cad.tar
gsoc2013-evolution-5a13e823f2ea32d9a559bbb65d2fbb5b81442cad.tar.gz
gsoc2013-evolution-5a13e823f2ea32d9a559bbb65d2fbb5b81442cad.tar.bz2
gsoc2013-evolution-5a13e823f2ea32d9a559bbb65d2fbb5b81442cad.tar.lz
gsoc2013-evolution-5a13e823f2ea32d9a559bbb65d2fbb5b81442cad.tar.xz
gsoc2013-evolution-5a13e823f2ea32d9a559bbb65d2fbb5b81442cad.tar.zst
gsoc2013-evolution-5a13e823f2ea32d9a559bbb65d2fbb5b81442cad.zip
Inform people when they can't import a file.
svn path=/trunk/; revision=7916
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog8
-rw-r--r--shell/importer/importer.c23
2 files changed, 22 insertions, 9 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 5bd6d6c32b..7a7e07e090 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,13 @@
2001-01-30 Iain Holmes <iain@ximian.com>
+ * importer/importer.c: (start_import): Added a notice if there is no
+ importer that can handle the file.
+ (get_iid_for_filetype): Free the list of multiple items before returning.
+ (importer_timeout_fn): Removed notice.
+ (import_cb): Removed notice.
+
+2001-01-30 Iain Holmes <iain@ximian.com>
+
* importer/importer.c: Added a nasty hack to change the druids Finish
button to be Import.
diff --git a/shell/importer/importer.c b/shell/importer/importer.c
index a59ef54a4f..9dac21c524 100644
--- a/shell/importer/importer.c
+++ b/shell/importer/importer.c
@@ -147,9 +147,6 @@ import_cb (EvolutionImporterListener *listener,
ImporterComponentData *icd = (ImporterComponentData *) data;
char *label;
- g_warning ("Recieved callback. Result: %d\tmore_items: %s", result,
- more_items ? "TRUE" : "FALSE");
-
if (icd->stop != TRUE) {
if (result == EVOLUTION_IMPORTER_NOT_READY) {
/* Importer isn't ready yet.
@@ -173,7 +170,6 @@ import_cb (EvolutionImporterListener *listener,
}
if (more_items) {
- g_warning ("Processing...\n");
label = g_strdup_printf (_("Importing %s\nImporting item %d."),
icd->filename, ++(icd->item));
gtk_label_set_text (GTK_LABEL (icd->contents), label);
@@ -201,7 +197,6 @@ importer_timeout_fn (gpointer data)
ImporterComponentData *icd = (ImporterComponentData *) data;
char *label;
- g_warning ("Idle called");
label = g_strdup_printf (_("Importing %s\nImporting item %d."),
icd->filename, icd->item);
gtk_label_set_text (GTK_LABEL (icd->contents), label);
@@ -237,7 +232,7 @@ get_iid_for_filetype (const char *filename)
{
OAF_ServerInfoList *info_list;
CORBA_Environment ev;
- GList *can_handle = NULL;
+ GList *can_handle = NULL, *l;
char *ret_iid;
int i, len = 0;
@@ -277,8 +272,11 @@ get_iid_for_filetype (const char *filename)
} else if (len > 1) {
/* FIXME: Some way to choose between multiple iids */
/* FIXME: Free stuff */
- g_warning ("Multiple iids can support");
- ret_iid = can_handle->data;
+ g_warning ("Multiple iids can support %s", filename);
+ ret_iid = g_strdup (can_handle->data);
+
+ for (l = can_handle; l; l = l->next)
+ g_free (l->data);
g_list_free (can_handle);
return ret_iid;
} else {
@@ -303,8 +301,15 @@ start_import (const char *filename,
g_print ("Importing with: %s\n", real_iid);
- if (real_iid == NULL)
+ if (real_iid == NULL) {
+ char *message;
+
+ message = g_strdup_printf (_("There is no importer that is able to handle\n%s"), filename);
+ e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, message);
+ g_free (message);
+
return;
+ }
icd = g_new (ImporterComponentData, 1);
icd->stop = FALSE;