diff options
author | Vivek Jain <jvivek@novell.com> | 2005-02-03 21:28:11 +0800 |
---|---|---|
committer | Jain Vivek <jvivek@src.gnome.org> | 2005-02-03 21:28:11 +0800 |
commit | 52b2d594c959af9a0e276b01148d7282951dc02f (patch) | |
tree | 5478232cadb72f6595ca2c8d4992ebd634c213a3 /calendar | |
parent | 9e0c55571c469803870d5265e8a300e691114123 (diff) | |
download | gsoc2013-evolution-52b2d594c959af9a0e276b01148d7282951dc02f.tar.gz gsoc2013-evolution-52b2d594c959af9a0e276b01148d7282951dc02f.tar.zst gsoc2013-evolution-52b2d594c959af9a0e276b01148d7282951dc02f.zip |
added a warning message for invalid server version added a case to check
2005-02-03 Vivek Jain <jvivek@novell.com>
* calendar-errors.xml : added a warning message for invalid server
version
* gui/gnome-cal.c (default_client_cal_opened_cb)
(client_cal_opened_cb): added a case to check the
call status and display warning
svn path=/trunk/; revision=28686
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/calendar-errors.xml | 6 | ||||
-rw-r--r-- | calendar/gui/gnome-cal.c | 10 |
3 files changed, 24 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 02b1cff878..b412920284 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2005-02-03 Vivek Jain <jvivek@novell.com> + + * calendar-errors.xml : added a warning message for invalid server + version + * gui/gnome-cal.c (default_client_cal_opened_cb) + (client_cal_opened_cb): added a case to check the + call status and display warning + 2005-02-02 Rodney Dawes <dobey@novell.com> * gui/dialogs/alarm-dialog.c (alarm_dialog_run): Set the border width diff --git a/calendar/calendar-errors.xml b/calendar/calendar-errors.xml index 9104b3a794..5b5076d450 100644 --- a/calendar/calendar-errors.xml +++ b/calendar/calendar-errors.xml @@ -191,4 +191,10 @@ <button label="_Send" response="GTK_RESPONSE_YES"/> </error> + <error id="server-version" type="warning"> + <title>Server Version</title> + <primary>Your server needs to be updated</primary> + <secondary> Some features may not work properly with the current server version</secondary> + </error> + </error-list> diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index c618ea143a..a01e26b6a2 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -2184,6 +2184,11 @@ client_cal_opened_cb (ECal *ecal, ECalendarStatus status, GnomeCalendar *gcal) if (status == E_CALENDAR_STATUS_BUSY) return; + + if (status == E_CALENDAR_STATUS_INVALID_SERVER_VERSION) { + e_error_run (NULL, "calendar:server-version", NULL); + status = E_CALENDAR_STATUS_OK; + } if (status != E_CALENDAR_STATUS_OK) { /* Make sure the source doesn't disappear on us */ g_object_ref (source); @@ -2265,6 +2270,11 @@ default_client_cal_opened_cb (ECal *ecal, ECalendarStatus status, GnomeCalendar if (status == E_CALENDAR_STATUS_BUSY) return; + if (status == E_CALENDAR_STATUS_INVALID_SERVER_VERSION) { + e_error_run (NULL, "calendar:server-version", NULL); + status = E_CALENDAR_STATUS_OK; + } + if (status != E_CALENDAR_STATUS_OK) { /* Make sure the source doesn't disappear on us */ g_object_ref (source); |