diff options
author | Sankar P <psankar@novell.com> | 2007-12-11 13:32:58 +0800 |
---|---|---|
committer | Sankarasivasubramanian Pasupathilingam <psankar@src.gnome.org> | 2007-12-11 13:32:58 +0800 |
commit | 2e1605c30eab52782463a68da28e2a8a90180bf5 (patch) | |
tree | 687e950573b5e3cca440112aa5c3d48b4c575125 /calendar/gui | |
parent | 9ebabcebd1b699c0ee6be75b369efda19a55800d (diff) | |
download | gsoc2013-evolution-2e1605c30eab52782463a68da28e2a8a90180bf5.tar.gz gsoc2013-evolution-2e1605c30eab52782463a68da28e2a8a90180bf5.tar.zst gsoc2013-evolution-2e1605c30eab52782463a68da28e2a8a90180bf5.zip |
** Fix for bug #501969 Passwords should not be forgotten for all errors
2007-12-11 Sankar P <psankar@novell.com>
** Fix for bug #501969
* Passwords should not be forgotten for all errors
svn path=/trunk/; revision=34686
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/gnome-cal.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 98dc0c566d..e396b879ff 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -43,6 +43,8 @@ #include <bonobo/bonobo-exception.h> #include <libedataserver/e-categories.h> #include <libedataserver/e-url.h> +#include <libedataserverui/e-passwords.h> + #include "e-util/e-config-listener.h" #include "shell/e-user-creatable-items-handler.h" #include <libecal/e-cal-time-util.h> @@ -2651,6 +2653,17 @@ client_cal_opened_cb (ECal *ecal, ECalendarStatus status, GnomeCalendar *gcal) e_error_run (NULL, "calendar:server-version", NULL); status = E_CALENDAR_STATUS_OK; break; + case E_CALENDAR_STATUS_AUTHENTICATION_FAILED: + { + const gchar *auth_domain = e_source_get_property (source, "auth-domain"); + const gchar *component_name; + + component_name = auth_domain ? auth_domain : "Calendar"; + + /* Warn the user password is wrong */ + e_passwords_forget_password (component_name, e_cal_get_uri(ecal)); + return; + } case E_CALENDAR_STATUS_REPOSITORY_OFFLINE: if (source_type == E_CAL_SOURCE_TYPE_EVENT) e_error_run (GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (gcal))), |