diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2007-12-17 04:19:53 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-12-17 04:19:53 +0800 |
commit | 5b89cbe4f598387a56d22627558b5308da6044bc (patch) | |
tree | 620d37062cec0df7cbfa107d8317b62fb28ce9ee /ui | |
parent | 9bf01a179e346a25967a0898c900c863ed7b95db (diff) | |
download | gsoc2013-evolution-5b89cbe4f598387a56d22627558b5308da6044bc.tar.gz gsoc2013-evolution-5b89cbe4f598387a56d22627558b5308da6044bc.tar.zst gsoc2013-evolution-5b89cbe4f598387a56d22627558b5308da6044bc.zip |
** Non-intrusive errror reporting and basic logging support.
2007-12-17 Srinivasa Ragavan <sragavan@novell.com>
** Non-intrusive errror reporting and basic logging support.
* em-folder-browser.c: (emfb_help_debug): Invoke the debug menu.
* evolution-mail.schemas.in: Schema for error timeout and level.
* mail-component.c: (mail_component_init), (render_pixbuf),
(render_level), (render_date), (append_logs), (spin_value_changed),
(mail_component_show_logger): Handle the lifecycle of the logger.
* mail-component.h: Api to show the logger.
* mail-config.c: (gconf_error_time_changed),
(gconf_error_level_changed), (mail_config_init),
(mail_config_get_error_timeout), (mail_config_get_error_level): Load
and get the error time and level.
* mail-config.h:
* mail-mt.c: (mail_msg_set_cancelable), (mail_msg_new),
(end_event_callback), (mail_msg_free), (mail_msg_check_error),
(operation_cancel), (do_op_status): Revamp the error handling.
* mail-mt.h:
* mail-ops.c: (send_queue_send), (mail_send_queue): Handle the send/receive
case of error reporting separately.
* mail-send-recv.c: (free_send_info), (mail_send):
2007-12-17 Srinivasa Ragavan <sragavan@novell.com>
** Revamped Activity handler and task bar/widget for non-intrusive
error reporting
* e-activity-handler.c: (activity_info_new), (activity_info_free),
(task_widget_new_from_activity_info), (setup_task_bar),
(e_activity_handler_init),
(e_activity_handler_set_error_flush_time),
(e_activity_handler_set_logger), (cancel_wrapper),
(e_activity_handler_cancelable_operation_started),
(e_activity_handler_operation_started), (handle_error),
(error_cleanup), (e_activity_handler_make_error),
(e_activity_handler_operation_set_error),
(e_activity_handler_operation_progressing),
(e_activity_handler_operation_finished):
* e-activity-handler.h:
* e-task-bar.c: (e_task_bar_prepend_task),
(e_task_bar_remove_task_from_id), (e_task_bar_remove_task),
(e_task_bar_get_task_widget_from_id):
* e-task-bar.h:
* e-task-widget.c: (e_task_widget_init), (button_press_event_cb),
(prepare_popup), (e_task_widget_construct),
(e_task_widget_new_with_cancel), (e_task_widget_new),
(e_task_widget_update_image):
* e-task-widget.h:
2007-12-17 Srinivasa Ragavan <sragavan@novell.com>
* Makefile.am: Add e-logger.[ch] to compilation
* e-error.c: (e_error_newv): Add primary/secondary text to the error
dialog to the gobject as data.
* e-logger.[ch]: A new logger provision Evolution.
2007-12-17 Srinivasa Ragavan <sragavan@novell.com>
* evolution-mail-global.xml: Add Debug Log menu item for mailer.
* evolution.xml: Add place holder for Debug menu item.
svn path=/trunk/; revision=34712
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ChangeLog | 5 | ||||
-rw-r--r-- | ui/evolution-mail-global.xml | 8 | ||||
-rw-r--r-- | ui/evolution.xml | 1 |
3 files changed, 13 insertions, 1 deletions
diff --git a/ui/ChangeLog b/ui/ChangeLog index ffd5e04441..5cb22f0872 100644 --- a/ui/ChangeLog +++ b/ui/ChangeLog @@ -1,3 +1,8 @@ +2007-12-17 Srinivasa Ragavan <sragavan@novell.com> + + * evolution-mail-global.xml: Add Debug Log menu item for mailer. + * evolution.xml: Add place holder for Debug menu item. + 2007-12-15 Matthew Barnes <mbarnes@redhat.com> * evolution.xml: diff --git a/ui/evolution-mail-global.xml b/ui/evolution-mail-global.xml index a2c00fae50..4da50367cd 100644 --- a/ui/evolution-mail-global.xml +++ b/ui/evolution-mail-global.xml @@ -42,6 +42,8 @@ type="radio" group="preview_display" _tip="Show message preview side-by-side with the message list"/> <cmd name="PrepareForOffline" _label="_Download Messages for Offline Usage" _tip="Download messages of accounts/folders marked for offline"/> + <cmd name="HelpDebug" _tip="View the debug console for log messages"/> + </commands> <keybindings> @@ -124,7 +126,11 @@ </submenu> </placeholder> - + <submenu name="Help" _label="_Help"> + <placeholder name="PlaceHolderDebug"> + <menuitem name="HelpDebug" verb="" _label="_Debug Logs"/> + </placeholder> + </submenu> </menu> <dockitem name="Toolbar"> diff --git a/ui/evolution.xml b/ui/evolution.xml index b232097a31..b17f6050ce 100644 --- a/ui/evolution.xml +++ b/ui/evolution.xml @@ -161,6 +161,7 @@ _label="_Quick Reference"/> <separator f="" name="eshell2"/> + <placeholder name="PlaceHolderDebug"/> <menuitem name="HelpOpenFAQ" verb="" _label="Evolution _FAQ"/> |