diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-12 11:34:33 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-12 11:34:33 +0800 |
commit | 97926d706a599a789b8d7b03a9e41a20513659d1 (patch) | |
tree | 89f1c9d163e295ebb436a53de2dcd506c81ba3e4 /mail/mail-component.c | |
parent | 2cf63ca4bace1165d5f0385f4d0dbcce83269775 (diff) | |
download | gsoc2013-evolution-97926d706a599a789b8d7b03a9e41a20513659d1.tar.gz gsoc2013-evolution-97926d706a599a789b8d7b03a9e41a20513659d1.tar.zst gsoc2013-evolution-97926d706a599a789b8d7b03a9e41a20513659d1.zip |
add for translators.
2004-05-12 Not Zed <NotZed@Ximian.com>
* mail-errors.xml.h: add for translators.
* Makefile.am (%.xml.h): fix for xml i18n stuff.
* mail-errors.xml: moved from the .xml.in file.
2004-05-11 Not Zed <NotZed@Ximian.com>
* em-utils.c (em_uri_from_camel): pass an exception to
provider_get, it relies on one.
* em-migrate.c (em_migrate_1_4): fix some error messages, and fail
with fatal errors properly.
(em_migrate_local_folders_1_4): EEP! Who cares if this fails!
Well I do. Setup exceptions and return codes.
(em_migrate_dir): and here too. Sloppy!
(em_migrate_dir): change the code slightly, 1.4 would recurse all
folders, even if the parent folder doesn't have a
folder-metadata.xml. Make sure we copy that mode.
(get_local_store_uri): Make it copy the 1.4 behaviour properly.
Any error -> use defaults.
(em_migrate_dir): lots of changes.
(mbox_build_filename): take the output string as an arg.
(cp): add an argument to overwrite/append or require a unique
empty file.
(cp_r): add mode arg here too.
(em_migrate_folder): split the folder copy stuff from em_migrate
dir entirely. blah.
(em_upgrade_accounts_1_4): can't fail, remove return code, etc.
(em_upgrade_xml_1_4): removed this rather redundant odd api.
(upgrade_xml_uris): this can't fail, remove return codes etc.
(em_upgrade_xml_1_0): another oddly redundant function.
(em_migrate_pop_uid_caches_1_4): error messages, blah blah.
(em_migrate_folder_expand_state_1_4): no fatal states here.
(em_migrate_folder_view_settings_1_4): nor here.
(emm_setup_initial): do i18n 'better', using
gnome_i18n_get_language_list, rather than hacky code.
2004-05-10 Not Zed <NotZed@Ximian.com>
* mail-tools.c: remove e-meta.h, not used anymore.
svn path=/trunk/; revision=25870
Diffstat (limited to 'mail/mail-component.c')
-rw-r--r-- | mail/mail-component.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/mail/mail-component.c b/mail/mail-component.c index 71b82f89fd..f4296fb9a4 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -742,22 +742,25 @@ impl_sendAndReceive (PortableServer_Servant servant, CORBA_Environment *ev) mail_send_receive (); } -static CORBA_boolean +static void impl_upgradeFromVersion (PortableServer_Servant servant, const short major, const short minor, const short revision, CORBA_Environment *ev) { MailComponent *component; CamelException ex; - int ok; component = mail_component_peek (); camel_exception_init (&ex); - ok = em_migrate (component->priv->base_directory, major, minor, revision, &ex) != -1; + if (em_migrate (component->priv->base_directory, major, minor, revision, &ex) == -1) { + GNOME_Evolution_Component_UpgradeFailed *failedex; - /* FIXME: report errors? */ - camel_exception_clear (&ex); + failedex = GNOME_Evolution_Component_UpgradeFailed__alloc(); + failedex->what = CORBA_string_dup(_("Failed upgrading Mail settings or folders.")); + failedex->why = CORBA_string_dup(ex.desc); + CORBA_exception_set(ev, CORBA_USER_EXCEPTION, ex_GNOME_Evolution_Component_UpgradeFailed, failedex); + } - return ok; + camel_exception_clear (&ex); } /* Initialization. */ |