aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorRadek Doulik <rodo@helixcode.com>2000-11-15 16:44:57 +0800
committerRadek Doulik <rodo@src.gnome.org>2000-11-15 16:44:57 +0800
commit7384e82aa7369af5d6aa07afd856a5f9cf1f6841 (patch)
treece0486fa8f6a55207601d51db1ecd0db5a479a24 /camel
parentfb76cad79ae9228a426fcd0e4a39d920ec17d864 (diff)
downloadgsoc2013-evolution-7384e82aa7369af5d6aa07afd856a5f9cf1f6841.tar.gz
gsoc2013-evolution-7384e82aa7369af5d6aa07afd856a5f9cf1f6841.tar.zst
gsoc2013-evolution-7384e82aa7369af5d6aa07afd856a5f9cf1f6841.zip
mime_guess_type_from_file_name moved back to composer as it introduced
2000-11-15 Radek Doulik <rodo@helixcode.com> * camel-mime-utils.c: mime_guess_type_from_file_name moved back to composer as it introduced unwanted VFS dependency svn path=/trunk/; revision=6578
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-mime-utils.c19
-rw-r--r--camel/camel-mime-utils.h3
3 files changed, 5 insertions, 22 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 9d8c83e245..f0385898b4 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-15 Radek Doulik <rodo@helixcode.com>
+
+ * camel-mime-utils.c: mime_guess_type_from_file_name moved back to
+ composer as it introduced unwanted VFS dependency
+
2000-11-15 Not Zed <NotZed@HelixCode.com>
* providers/Makefile.am: Removed local again, not quite ready.
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 8db0e23fe4..fb3842829e 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -3113,22 +3113,3 @@ header_msgid_generate (void)
return g_strdup_printf ("%d.%d.%d.camel@%s.%s", (gint) time (NULL), getpid (), count++,
(host && *host) ? host : "unknown.host", (domain && *domain) ? domain : "unknown.domain");
}
-
-gchar *
-mime_guess_type_from_file_name (const gchar *file_name)
-{
- GnomeVFSFileInfo info;
- GnomeVFSResult result;
-
- result = gnome_vfs_get_file_info (file_name, &info,
- GNOME_VFS_FILE_INFO_GET_MIME_TYPE |
- GNOME_VFS_FILE_INFO_FOLLOW_LINKS);
- if (result == GNOME_VFS_OK) {
- gchar *type;
-
- type = g_strdup (gnome_vfs_file_info_get_mime_type (&info));
- gnome_vfs_file_info_unref (&info);
- return type;
- } else
- return NULL;
-}
diff --git a/camel/camel-mime-utils.h b/camel/camel-mime-utils.h
index c5e19e667e..6f452f1ffa 100644
--- a/camel/camel-mime-utils.h
+++ b/camel/camel-mime-utils.h
@@ -186,7 +186,4 @@ int quoted_decode_step(unsigned char *in, int len, unsigned char *out, int *save
int quoted_encode_step(unsigned char *in, int len, unsigned char *out, int *state, int *save);
int quoted_encode_close(unsigned char *in, int len, unsigned char *out, int *state, int *save);
-gchar * mime_guess_type_from_file_name (const gchar *file_name);
-
-
#endif /* ! _CAMEL_MIME_UTILS_H */
s'>-1/+8 | | | | | | (missing mnemonic in 'New Folder' dialog) svn path=/trunk/; revision=34649 * Patch from Alex Kloss <alexkloss@att.net>: Fix for bug #329578 (missing ↵Suman Manjunath2007-12-052-5/+13 | | | | | | mnemonic in Receiving options tab) svn path=/trunk/; revision=34648 * Patch from David Turner <cillian64@googlemail.com>: Fix for bug #446029 ↵Suman Manjunath2007-12-042-1/+8 | | | | | | (mnemonic conflict in 'Find in Message' feature) svn path=/trunk/; revision=34647 * Patch from Alex Kloss <alexkloss@att.net>: Fix for bug #466503 (mnemonic ↵Suman Manjunath2007-12-042-1/+8 | | | | | | conflict in Mail Preferences->Junk tab) svn path=/trunk/; revision=34646 * ** Part of fix for bug #466499David Turner2007-12-042-5/+9 | | | | | | | | | | | | 2007-12-04 David Turner <cillian64@googlemail.com> ** Part of fix for bug #466499 * em-account-editor.c: (emae_option_toggle): Added support for mnemonics in config options from camel svn path=/trunk/; revision=34645 * ** Fix for bug #466497David Turner2007-12-042-3/+10 | | | | | | | | | | | | 2007-12-04 David Turner <cillian64@googlemail.com> ** Fix for bug #466497 * mail-config.glade: Changed some mnemonics to stop l being used as a mnemonic key svn path=/trunk/; revision=34644 * ** Fix for bug #466241David Turner2007-12-042-2/+10 | | | | | | | | | | | | | | | | 2007-12-04 David Turner <cillian64@googlemail.com> ** Fix for bug #466241 * plugins/exchange-operations/exchange-account-setup.c: (org_gnome_exchange_auth_section): Added a mnemonic to the Authentication Type label/dropdown * mail/mail-config.glade: Added a mnemonic to "Authentication type" in the recieving mail section of configuration svn path=/trunk/; revision=34643 * ** Fix for bug #363644Denis Washington2007-12-042-0/+10 | | | | | | | | | | | | 2007-12-03 Denis Washington <denisw@svn.gnome.org> ** Fix for bug #363644 * mail-send-recv.c: Added a 6px padding around the scrolled window so that it's border doesn't look like a separator on the bottom. svn path=/trunk/; revision=34630 * ** Part of fix for bug #271551Milan Crha2007-11-302-0/+20 | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-11-29 Milan Crha <mcrha@redhat.com> ** Part of fix for bug #271551 * mail/evolution-mail.schemas.in: New key "/apps/evolution/mail/composer/current_folder". * composer/e-msg-composer.h: (e_msg_composer_set_attach_path), (e_msg_composer_get_attach_path): * composer/e-msg-composer.c: (e_msg_composer_set_attach_path), (e_msg_composer_get_attach_path): Functions to set/get attach path to both composer and editor. * composer/e-msg-composer.c: (prepare_engine): Set last used path right after creation of the engine. * composer/e-msg-composer-select-file.c: (get_selector), (select_file_response), (select_attach_response): Using new functions. * composer/listener.c: (impl_event): Store new file path when received event about its change. * composer/e-msg-composer.c: (set_signature_gui): Leak fix. Note: update your GtkHtml to revision 8636 and above. svn path=/trunk/; revision=34613 * Fix an implicit function declaration caused by my last commit.Matthew Barnes2007-11-282-0/+6 | | | | | | | | | | 2007-11-28 Matthew Barnes <mbarnes@redhat.com> * mail/mail-session.c: Fix an implicit function declaration caused by my last commit. svn path=/trunk/; revision=34608 * ** Fixes bug #495123Matthew Barnes2007-11-282-0/+8 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-11-27 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #495123 * composer/Makefile.am: Add a bunch of files for managing composer headers. * composer/e-msg-composer.c (build_message), (from_changed_cb), (set_editor_signature), (e_msg_composer_set_body), (e_msg_composer_get_preferred_account): * plugins/exchange-operations/exchange-mail-send-options.c (append_to_header): Use e_msg_composer_hdrs_get_from_account() to obtain the EAccount. * composer/e-msg-composer-hdrs.c: * composer/e-msg-composer-hdrs.h: Massive refactoring to use new EComposerHeader classes. * composer/e-composer-header.c: * composer/e-composer-header.h: * composer/e-composer-from-header.c: * composer/e-composer-from-header.h: * composer/e-composer-name-header.c: * composer/e-composer-name-header.h: * composer/e-composer-post-header.c: * composer/e-composer-post-header.h: * composer/e-composer-text-header.c: * composer/e-composer-text-header.h: New GObject classes manage different types of composer headers. See bug #495123 for a more detailed description of each class. * mail/mail-session.c (mail_session_init): Pass the CamelSession to the EAccountComboBox class (ugly hack). * widgets/misc/Makefile.am: Add e-account-combo-box.[ch]. * widgets/misc/e-account-combo-box.c: * widgets/misc/e-account-combo-box.h: New widget renders an EAccountList as a combo box. Also listens for changes to the EAccountList and updates itself accordingly. svn path=/trunk/; revision=34600 * ** Fix for bug #216485 Edit->Select thread menu fix and improvement.Nicholas Miell2007-11-264-24/+70 | | | | | | | | | | | | | | | | | | | | | | 2007-11-26 Nicholas Miell <nmiell@gmail.com> ** Fix for bug #216485 Edit->Select thread menu fix and improvement. * mail/em-folder-browser.c: (emfb_edit_select_subthread): new function, (emfb_enable_map, emfb_verbs) hook it up * mail/message-list.c: (select_thread): new function based on thread_select_foreach, (thread_select_foreach): remove the logic now in select_thread, (message_list_select_thread): use select_thread, (subthread_select_foreach): new function, (message_list_select_subthread): new function * mail/message-list.h: (message_list_select_subthread): add prototype * ui/evolution-mail-list.xml Add Select Message Subthread svn path=/trunk/; revision=34585 * ** Fix for bug #494414Milan Crha2007-11-232-1/+18 | | | | | | | | | | | | 2007-11-23 Milan Crha <mcrha@redhat.com> ** Fix for bug #494414 * em-folder-selection-button.c: (set_contents): If used uri points to an account, then prepend account's name to folder name. svn path=/trunk/; revision=34574 * ** Fix for bug #494425Milan Crha2007-11-232-7/+93 | | | | | | | | | | | | | 2007-11-23 Milan Crha <mcrha@redhat.com> ** Fix for bug #494425 * em-utils.c: (get_unique_file_names): New helper function to "assign" unique file name to each part. * em-utils.c: (em_utils_save_parts): Use new helper function. svn path=/trunk/; revision=34568 * ** Fix for bug #335931Milan Crha2007-11-234-10/+64 | | | | | | | | | | | | | | | | | | | | | | 2007-11-23 Milan Crha <mcrha@redhat.com> ** Fix for bug #335931 * message-list.c: (struct _regen_list_msg): New member last_row. * message-list.c: (regen_list_regen): Store last_row for later use. * message-list.c: (regen_list_regened): Restore row based on last_row when no uid was selected before. * message-list.c: (mail_regen_list): Init new last_row member. * em-folder-view.c: (emfv_select_next_message): New helper function to select messages in list. * em-folder-view.c: (emfv_popup_mark_junk), (emfv_popup_mark_nojunk), (emfv_popup_delete): Using new helper function, so get same behavior. * message-list.h: (struct _MessageList): * message-list.c: (on_cursor_activated_cmd): Removed cursor_row member. svn path=/trunk/; revision=34567 * ** Fix for bug #498551Milan Crha2007-11-222-2/+9 | | | | | | | | | | | | 2007-11-22 Milan Crha <mcrha@redhat.com> ** Fix for bug #498551 * em-folder-tree.c: (emft_get_folder_info__got): Remove placeholder node even for store if no children found. svn path=/trunk/; revision=34563 * ** Fix for bug #256899 by ChayaMilan Crha2007-11-224-52/+11 | | | | | | | | | | | | | | | | 2007-11-22 Milan Crha <mcrha@redhat.com> ** Fix for bug #256899 by Chaya * mail-config.glade: * em-account-prefs.h: (struct _EMAccountPrefs): * em-account-prefs.c: (account_delete_clicked), (account_able_clicked), (account_able_toggled), (account_cursor_change), (em_account_prefs_construct): Remove "Disable/Enable" button from Mail Accounts preferences. svn path=/trunk/; revision=34562 * ** Fix for bug #480514Milan Crha2007-11-202-4/+18 | | | | | | | | | | | | | 2007-11-20 Milan Crha <mcrha@redhat.com> ** Fix for bug #480514 * em-folder-browser.c: (get_view_query), (emfb_search_search_activated): Let work "Last 5 Days' Messages" and "Recent messages" filters in Sent folder too. svn path=/trunk/; revision=34556 * ** Fix for bug #493783Milan Crha2007-11-202-4/+12 | | | | | | | | | | | | 2007-11-20 Milan Crha <mcrha@redhat.com> ** Fix for bug #493783 * em-format-html.c: (efh_format_timeout): Do not erase old content when re-formatting same mail, so keep scroll position. svn path=/trunk/; revision=34554 * ** Fix for bug #495875Gilles Dartiguelongue2007-11-182-11/+21 | | | | | | right click menu reordering svn path=/trunk/; revision=34549 * Call camel_folder_info_new() instead of g_new0().Matthew Barnes2007-11-152-1/+6 | | | | | | | | | | | 2007-11-14 Matthew Barnes <mbarnes@redhat.com> * mail/em-folder-tree.c (em_folder_tree_get_selected_folder_info): * plugins/exchange-operations/exchange-folder.c (ex_create_folder_info): Call camel_folder_info_new() instead of g_new0(). svn path=/trunk/; revision=34538 * ** Remove trailing whitespace from source code.Matthew Barnes2007-11-1597-4220/+4220 | | | | | | | | | 2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537 * ** Fix for bug #263236Milan Crha2007-11-142-3/+9 | | | | | | | | | | | 2007-11-13 Milan Crha <mcrha@redhat.com> ** Fix for bug #263236 * mail.error.xml: Terminology cleanup. svn path=/trunk/; revision=34529 * ** Fix for bug #263236Milan Crha2007-11-124-24/+116 | | | | | | | | | | | | | | | | 2007-11-12 Milan Crha <mcrha@redhat.com> ** Fix for bug #263236 * mail.error.xml: New message "ask-delete-vfolder-msg". * em-folder-view.c: (emfv_delete_msg_response), (emfv_popup_delete): When deleting from vFolder, ask if really want to and warn about deleting in a real folder too. * evolution-mail.schemas.in: New option "/apps/evolution/mail/prompts/delete_in_vfolder" to not ask again. svn path=/trunk/; revision=34523 * Fix some typos in the GObject macros.Matthew Barnes2007-11-092-4/+9 | | | | | | | | | | 2007-11-08 Matthew Barnes <mbarnes@redhat.com> * em-folder-selector.h: Fix some typos in the GObject macros. svn path=/trunk/; revision=34517 * ** Fix for bug #492170Michael Monreal2007-11-064-11/+21 | | | | | | | | | | | | | | 2007-11-06 Michael Monreal <mmonreal@svn.gnome.org> ** Fix for bug #492170 * em-migrate.c: * evolution-mail.schemas.in: * mail-config.c: Replace the old color definitions with very similar colors from the Tango color palette. svn path=/trunk/; revision=34515 * ** Fix for bug #343011 (restore collapse state of selected folder afterMilan Crha2007-11-055-3/+132 | | | | | | | | | | | | | | | | | | | | | 2007-11-05 Milan Crha <mcrha@redhat.com> ** Fix for bug #343011 (restore collapse state of selected folder after start) * em-folder-tree.c: (emft_maybe_expand_row): Do not expand subtree of a node, only make it visible. * em-folder-tree-model.h: (em_folder_tree_model_get_expanded_uri), (em_folder_tree_model_set_expanded_uri): * em-folder-tree-model.c: (em_folder_tree_model_get_expanded_uri), (em_folder_tree_model_set_expanded_uri): Same as ..._get/_set_expanded, but using 'uri', instead of 'key'. * em-folder-tree-model.c: (emftm_uri_to_key): New helper function. * mail-component.c: (impl_createView): Restore collapsed state after selecting last selected folder, if necessary. svn path=/trunk/; revision=34503 * ** Fix for bug #488298Milan Crha2007-11-054-5/+27 | | | | | | | | | | | | | | | | 2007-11-05 Milan Crha <mcrha@redhat.com> ** Fix for bug #488298 * em-folder-view.c: (EMFolderViewEnable emfv_enable_map[]): Disable "MessageMarkAsNotJunk" if requested by context. * mail-folder-cache.c: (update_1folder): Do not count junked messages into "new" messages in drafts and out box. * em-popup.c: (em_popup_target_new_select): Disable "MarkAsJunk" and "MarnAsNotJunk" in drafts and out box. svn path=/trunk/; revision=34502 * ** Fix for bug #492102Michael Monreal2007-11-052-4/+10 | | | | | | | | | | 2007-11-05 Michael Monreal <mmonreal@svn.gnome.org> ** Fix for bug #492102 Use mail-mark-read icon. svn path=/trunk/; revision=34499 * ** Fix for bug #334675Milan Crha2007-11-052-1/+7 | | | | | | | | | | | | | | | | | | | | 2007-11-05 Milan Crha <mcrha@redhat.com> ** Fix for bug #334675 * plugins/mail-to-task/mail-to-task.c: (do_mail_to_task), (text_contains_nonwhitespace), (get_selected_text), (convert_to_task), (org_gnome_mail_to_task), (org_gnome_mail_to_task_menu): When selected only one message, then try to use selected text in preview as description, instead of whole message body. * Requires newer GthHtml (API extended, since revision 8614). * mail/em-folder-view.c: (emfv_message_reply): Leak fix. svn path=/trunk/; revision=34497 * Change enum order. LAST should be the last. Regression from #446035Sankar P2007-11-052-2/+10 | | | | | | | | | | | | | | 2007-11-05 Sankar P <psankar@novell.com> * em-folder-tree.c: Change enum order. LAST should be the last. Regression from #446035 ** Fix for bug #493646 svn path=/trunk/; revision=34492 * Fix typo in documentation. Ditto.Priit Laes2007-11-013-2/+7 | | | | | | | | | 2007-10-31 Priit Laes <plaes@svn.gnome.org> * em-format-html-display.c: Fix typo in documentation. * em-message-browser.c: Ditto. svn path=/trunk/; revision=34471 * Fix the ordering of the string components.Priit Laes2007-10-312-3/+7 | | | | | | | | | | 2007-10-31 Priit Laes <plaes@svn.gnome.org> * mail-component.c: (view_changed): Fix the ordering of the string components. svn path=/trunk/; revision=34469 * ** Fix for bug #446035Michael Monreal2007-10-312-1/+12 | | | | | | | | | | | | 2007-10-30 Michael Monreal <mmonreal@svn.gnome.org> ** Fix for bug #446035 * em-folder-tree.c: (render_pixbuf): Use the folder-saved-search icon for vfolders. svn path=/trunk/; revision=34459 * Warning fixes: - NULL vs. 0 vs FALSE - ANSIfication of functionKjartan Maraas2007-10-2931-83/+158 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-26 Kjartan Maraas <kmaraas@gnome.org> * e-searching-tokenizer.c: (build_trie), (searcher_new), (output_token), (output_match), (merge_subpending), (searcher_next_token): * em-account-editor.c: (em_account_editor_new), (emae_load_text), (emae_check_license), (emae_auto_detect), (smime_sign_key_select), (smime_encrypt_key_select), (emae_service_url_path_changed), (emae_ssl_changed), (emae_service_provider_changed), (emae_refresh_providers), (emae_refresh_authtype), (emae_setup_service), (emae_identity_page): * em-composer-utils.c: (em_utils_send_receipt), (generate_account_hash), (em_utils_camel_address_to_destination), (reply_get_composer): * em-config.c: (em_config_new): * em-event.c: (em_event_peek): * em-filter-rule.c: (get_widget): * em-folder-browser.c: (generate_viewoption_menu), (em_folder_browser_show_preview), (get_view_query), (vfolder_setup_do), (emfb_search_search_activated), (emfb_list_key_press), (emfb_list_built): * em-folder-view.c: (em_folder_view_new), (emfv_setup_view_instance), (emfv_popup_forward), (emp_uri_popup_vfolder_sender), (emp_uri_popup_vfolder_recipient), (emfv_enable_menus): * em-format-hook.c: * em-format-html-display.c: (efhd_attachment_optional): * em-format-html.c: (em_format_html_new), (em_format_html_add_pobject), (em_format_html_find_pobject), (em_format_html_find_pobject_func), (efh_text_enriched), (efh_multipart_related), (efh_format_address), (efh_format_header): * em-icon-stream.h: * em-inline-filter.c: (emif_add_part), (emif_scan): * em-junk-hook.c: (emjh_construct_group): * em-mailer-prefs.c: (junk_plugin_setup): * em-menu.c: (em_menu_new), (em_menu_target_new_select): * em-message-browser.c: (em_message_browser_new): * em-popup.c: (em_popup_new), (em_popup_target_new_select): * em-sync-stream.c: * em-utils.c: (em_utils_save_part_to_file), (tag_editor_response), (em_utils_read_messages_from_stream), (em_utils_get_proxy_uri), (em_utils_in_addressbook): * em-vfolder-rule.c: (validate): * importers/elm-importer.c: * importers/mail-importer.c: (import_mbox_import), (import_folders_rec): * importers/pine-importer.c: * mail-component.c: (setline_done): * mail-folder-cache.c: (flush_updates): * mail-mt.c: (mail_msg_new), (checkmem), (mail_msg_check_error), (mail_msg_cancel), (mail_msg_wait), (mail_msg_init), (do_op_status): * mail-send-recv.c: (receive_status), (receive_done), (refresh_folders_get): * mail-vfolder.c: (mail_vfolder_get_sources_local), (mail_vfolder_get_sources_remote), (context_rule_added), (store_folder_renamed): * message-list.c: (e_mail_address_new), (e_mail_address_compare), (get_normalised_string), (ml_search_forward), (ml_search_backward), (ml_search_path), (message_list_select_uid), (thread_select_foreach), (message_list_copy), (ml_duplicate_value), (ml_free_value), (ml_initialize_value), (ml_value_is_empty), (ml_value_to_string), (subtree_latest), (sanitize_recipients), (ml_tree_value_at), (ml_tree_sort_value_at), (message_list_init_images), (filter_date), (build_tree), (build_flat_diff), (regen_list_regen): Warning fixes: - NULL vs. 0 vs FALSE - ANSIfication of function declarations - Remove unused bits - use unsigned ints for 1-bit bitfields - invalid pointer type - mark a global var static - mixing code and declarations svn path=/trunk/; revision=34449 * ** Fix for bug #489027Milan Crha2007-10-263-10/+46 | | | | | | | | | | | | | | | 2007-10-26 Milan Crha <mcrha@redhat.com> ** Fix for bug #489027 * evolution-mail.schemas.in: New hidden option 'thread_latest' to fall back to thread sorting like before 2007-05-17 (see below). * message-list.c: (struct _MessageListPrivate), (message_list_construct): New property 'thread_latest'. * message-list.c: (ml_tree_sort_value_at): Sort based on this property. svn path=/trunk/; revision=34426 * ** Fix for bug #467364 by Christian KintnerMilan Crha2007-10-243-3/+10 | | | | | | | | | | | | 2007-10-24 Milan Crha <mcrha@redhat.com> ** Fix for bug #467364 by Christian Kintner * evolution-mail.schemas.in: * mail-config.glade: Evolution uses "Emoticon" instead of "Smiley". svn path=/trunk/; revision=34418 * ** Fix for bug #261165Andre Klapper2007-10-242-0/+140 | | | | | | | | | | | 2007-10-24 Andre Klapper <a9016009@gmx.de> ** Fix for bug #261165 * filtertypes.xml: added search on CC and BCC svn path=/trunk/; revision=34417 * ** Fix for bug #271734Milan Crha2007-10-232-2/+19 | | | | | | | | | | | | | 2007-10-23 Milan Crha <mcrha@redhat.com> ** Fix for bug #271734 * mail-mt.c: (do_op_status): Show description of operation, if available, instead of empty string and end activity properly, if operation ended before/during activity start. svn path=/trunk/; revision=34411 * Fix broken icon for View -> Zoom -> Normal Size.Matthew Barnes2007-10-162-1/+6 | | | | | | | | | | 2007-10-15 Matthew Barnes <mbarnes@redhat.com> * mail/em-folder-view.c: Fix broken icon for View -> Zoom -> Normal Size. svn path=/trunk/; revision=34389 * ** Migration of theme icons to data/icons/ (bug #479257)Michael Monreal2007-10-123-5/+12 | | | | | | | | | | | | | | | | | | | | | 2007-10-12 Michael Monreal <michael.monreal@gmail.com> ** Migration of theme icons to data/icons/ (bug #479257) * art/Makefile.am: Remove references to art/$size. * configure.in: Include new data/icons/ directory. * file e-util/e-icon-factory.c: Append a private icon directory to the search path. New inbox/outbox/sent icons. * mail/em-folder-tree.c, mail/mail-send-recv.c: Change icon references. New view-calendar icons. * calendar/gui/calendar-commands.c: Change icon references. svn path=/trunk/; revision=34383 * Miscellaneous changes related to bug #437579.Matthew Barnes2007-10-122-1/+9 | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-11 Matthew Barnes <mbarnes@redhat.com> Miscellaneous changes related to bug #437579. * configure.in: Put a blank line between the configuration summary and the final "now type make" message. * mail/em-format.c (em_format_add_puri): Use G_GSIZE_FORMAT when printing a gsize/size_t to make compilers on all arches happy. * plugins/mail-notification/mail-notification.c: Put the notification_callback() declaration inside a #ifdef HAVE_LIBNOTIFY block to avoid a potential compiler warning. * calendar/gui/alarm-notify/alarm-queue.c: Fix an implicit GTK+ function declaration on x86_64. svn path=/trunk/; revision=34378 * ** Fix for bug #323977Milan Crha2007-10-112-1/+9 | | | | | | | | | | | | | | 2007-10-11 Milan Crha <mcrha@redhat.com> ** Fix for bug #323977 * filter/filter-rule.c: (get_widget): Use "Add Filter Criteria" instead of plain "Add" for button label. * mail/em-filter-rule.c: (get_widget): Use "Add Action" instead of plain "Add" for button label. svn path=/trunk/; revision=34376 * ** Fix for bug #329823Milan Crha2007-10-115-2/+50 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-11 Milan Crha <mcrha@redhat.com> ** Fix for bug #329823 * Evolution-Shell.idl: (setButtonIcon): * e-sidebar.h: (e_sidebar_change_button_icon): * e-sidebar.c: (struct Button), (button_new), (button_free), (e_sidebar_change_button_icon): * e-shell.h: (EMainShellFunc), (e_shell_foreach_shell_window): * e-shell.c: (EMainShellFunc), (e_shell_foreach_shell_window): * e-component-view.h: (e_component_view_set_button_icon): * e-component-view.c: (e_component_view_set_button_icon): * e-shell-window.h: (e_shell_window_change_component_button_icon): * e-shell-window.c: (e_shell_window_change_component_button_icon): * e-shell-view.c: (struct change_icon_struct), (change_button_icon_func), (impl_ShellView_setButtonIcon), (e_shell_view_class_init): Added support to change component's button icon. * mail-component.h: (mail_indicate_new_mail): * mail-component.c: (mail_indicate_new_mail), (struct _MailComponentPrivate), (impl_dispose), (impl_createView): New function to indicate new mails on sidebar's button and storing component_view in priv struct for later use. * em-folder-view.c: (emfv_list_done_message_selected): * mail-folder-cache.c: (real_flush_updates): Indicate changes like for plugins for new mails. svn path=/trunk/; revision=34374 * ** Fixes bug #437579Matthew Barnes2007-10-1012-78/+66 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-09 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #437579 * addressbook/conduit/address-conduit.c: * addressbook/gui/component/addressbook-config.c: * addressbook/gui/contact-editor/e-contact-editor.c: * addressbook/gui/widgets/eab-gui-util.c: * calendar/conduits/calendar/calendar-conduit.c: * calendar/conduits/memo/memo-conduit.c: * calendar/conduits/todo/todo-conduit.c: * calendar/gui/dialogs/alarm-dialog.c: * calendar/gui/dialogs/event-page.c: * calendar/gui/dialogs/memo-page.c: * calendar/gui/dialogs/task-page.c: * calendar/gui/e-day-view-layout.c: * calendar/gui/e-day-view-layout.h: * calendar/gui/print.c: * e-util/e-pilot-map.c: * e-util/e-plugin.c: * e-util/e-profile-event.c: * e-util/e-signature.c: * filter/filter-file.c: * mail/e-searching-tokenizer.c: * mail/em-folder-browser.c: * mail/em-format-html.c: * mail/em-format-view.c: * mail/em-format.c: * mail/em-mailer-prefs.c: * mail/em-mailer-prefs.h: * mail/mail-session.c: * mail/mail-session.h: * mail/mail-vfolder.c: * mail/message-list.c: * plugins/bbdb/bbdb.c: * plugins/bbdb/gaimbuddies.c: * plugins/calendar-http/calendar-http.c: * plugins/exchange-operations/exchange-user-dialog.c: * plugins/face/face.c: * shell/e-shell-window.c: * shell/e-shell.c: * smime/lib/e-cert-db.c: * tools/killev.c: * widgets/misc/e-cursors.c: * widgets/misc/e-spinner.c: * widgets/misc/e-unicode.c: * widgets/table/e-table-field-chooser-item.c: * widgets/table/e-table-header-item.c: * widgets/table/e-table-header-item.h: * widgets/table/e-table-header-utils.c: * widgets/table/e-table.c: * widgets/text/e-text.c: Fix various compiler warnings. Patch from Milan Crha. svn path=/trunk/; revision=34368 * ** Fix for bug #482575Tobias Mueller2007-10-102-1/+8 | | | | | | | | | | | | 2007-10-09 Tobias Mueller <muelli@auftrags-killer.org> ** Fix for bug #482575 * em-folder-view.c: Don't use "insert_image" icon. Patch by Michael Monreal <infernux@web.de> svn path=/trunk/; revision=34366 * ** Fix for bug #484635Bharath Acharya2007-10-092-1/+8 | | | | | | | | | | | | | 2007-10-09 Bharath Acharya <abharath@novell.com> ** Fix for bug #484635 * em-folder-tree-model.c: (em_folder_tree_model_remove_store_info): Destroy functions in GHashTables to simplify memory management already free the store info. So do no free it again in this function. svn path=/trunk/; revision=34365 * ** Fix for bug #477045Milan Crha2007-10-092-1/+8 | | | | | | | | | | | | 2007-10-09 Milan Crha <mcrha@redhat.com> ** Fix for bug #477045 * em-popup.c: (EPopupItem emp_standard_uri_popups[]): Use 'contact-new' icon name rather than 'edit-add' for "Add to address book" item. svn path=/trunk/; revision=34363 * ** Fix for bug #468736 Srinivasa Ragavan2007-10-054-0/+44 | | | | svn path=/trunk/; revision=34355 * ** Fixes bug #477045Matthew Barnes2007-10-043-2/+9 | | | | | | | | | | | | | | | | 2007-10-04 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #477045 * addressbook/gui/component/addressbook-view.c: * calendar/gui/calendar-component.c: * calendar/gui/memos-component.c: * calendar/gui/tasks-component.c: * mail/em-folder-tree.c: Use "edit-copy" and "document-properties" icons in the pop-up menu. svn path=/trunk/; revision=34354 * 2007-10-03 mcrha Fix for bug #473903Milan Crha2007-10-034-6/+18 | | | | svn path=/trunk/; revision=34346 * ** Fixes bug #469657Matthew Barnes2007-10-0211-181/+146 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-02 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #469657 * addressbook/importers/evolution-ldif-importer.c: * calendar/gui/comp-editor-factory.c: * composer/e-msg-composer.c: * e-util/e-config-listener.c: * mail/em-composer-prefs.c: * mail/em-folder-tree-model.c: * mail/em-format.c: * mail/em-format-html.c: * mail/em-migrate.c: * mail/em-subscribe-editor.c: * mail/mail-component.c: * mail/mail-send-recv.c: * mail/message-list.c: * mail/importers/elm-importer.c: * plugins/exchange-operations/exchange-folder-size-display.c: * plugins/mono/mono-plugin.c: * shell/e-shell-settings-dialog.c: * tools/killev.c: * widgets/table/e-table-extras.c: * widgets/table/e-table-selection-model.c: Use destroy functions in GHashTables to simplify memory management. svn path=/trunk/; revision=34344 * Display Face header value if contacts doesn't have any image associatedSankar P2007-10-012-3/+13 | | | | | | | | | | | | | | 2007-10-01 Sankar P <psankar@novell.com> * em-format-html.c: (efh_format_headers): Display Face header value if contacts doesn't have any image associated with them. Fixes bug mentioned in #481235 and not the enhnacement request. svn path=/trunk/; revision=34333 * Use consistent terminology for mail messages (#480621).Matthew Barnes2007-09-284-17/+24 | | | | | | | | | | | | | | | | | 2007-09-27 Matthew Barnes <mbarnes@redhat.com> * mail/em-account-editor.c: * mail/evolution-mail.schemas.in: * mail/mail-config.glade: * plugins/bbdb/bbdb.c (bbdb_page_factory): * plugins/bogo-junk-plugin/bf-junk-filter.c: * plugins/face/org-gnome-face-eplug.xml: * plugins/new-mail-notify/org-gnome-new-mail-notify.eplug.xml: * plugins/print-message/org-gnome-print-message.eplug.xml: Use consistent terminology for mail messages (#480621). svn path=/trunk/; revision=34326 * ** Fixes part of bug #474000Matthew Barnes2007-09-283-13/+22 | | | | | | | | | | | | | | | | | 2007-09-27 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #474000 * addressbook/importers/evolution-ldif-importer.c: Remove redundant Base64 codec implementation. Use GLib's. * mail/em-format-html.c (efh_format_headers): * mail/em-migrate.c (upgrade_passwords_1_2): * plugins/face/face.c: Use GLib's Base64 API instead of Camel's. svn path=/trunk/; revision=34325 * Fix for bug #461195 from Hiroyuki Ikezoe.Matthew Barnes2007-09-282-1/+6 | | | | | | | Use GObject's marshalers whenever possible. svn path=/trunk/; revision=34324 * ** Fixes bug #477045Matthew Barnes2007-09-289-70/+87 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-09-27 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #477045 * addressbook/gui/component/addressbook-component.c: * addressbook/gui/component/addressbook-view.c: * addressbook/gui/contact-editor/e-contact-editor-address.c: * addressbook/gui/contact-editor/e-contact-editor-fullname.c: * addressbook/gui/contact-editor/e-contact-editor-im.c: * addressbook/gui/widgets/e-addressbook-view.c: * addressbook/gui/widgets/eab-contact-display.c: * calendar/gui/calendar-commands.c: * calendar/gui/calendar-component.c: * calendar/gui/dialogs/cal-attachment-select-file.c: * calendar/gui/dialogs/comp-editor.c: * calendar/gui/dialogs/event-editor.c: * calendar/gui/dialogs/task-editor.c: * calendar/gui/e-cal-popup.c: * calendar/gui/e-calendar-table.c: * calendar/gui/e-calendar-view.c: * calendar/gui/e-day-view.c: * calendar/gui/e-memo-table.c: * calendar/gui/e-week-view.c: * calendar/gui/memos-component.c: * calendar/gui/memos-control.c: * calendar/gui/tasks-component.c: * calendar/gui/tasks-control.c: * composer/e-msg-composer-select-file.c: * composer/e-msg-composer.c: * mail/em-folder-tree.c: * mail/em-folder-view.c: * mail/em-popup.c: * mail/mail-component.c: * mail/mail-mt.c: * mail/mail-send-recv.c: * mail/message-list.c: * plugins/exchange-folder-permission.c: * plugins/exchange-folder.c: * plugins/groupwise-features/share-folder-common.c: * shell/e-shell-window-commands.c: * ui/evolution-addressbook.xml: * ui/evolution-calendar.xml: * ui/evolution-composer-entries.xml: * ui/evolution-editor.xml: * ui/evolution-event-editor.xml: * ui/evolution-mail-list.xml: * ui/evolution-mail-message.xml: * ui/evolution-memos.xml: * ui/evolution-message-composer.xml: * ui/evolution-subscribe.xml: * ui/evolution-task-editor.xml: * ui/evolution-tasks.xml: * ui/evolution.xml: Use standard icon names where applicable. svn path=/trunk/; revision=34322 * Distribute README.async (#478704).Matthew Barnes2007-09-226-2447/+11 | | | | | | | | | | | | | | | 2007-09-21 Matthew Barnes <mbarnes@redhat.com> * mail/Makefile.am: Distribute README.async (#478704). * mail/importers/Makefile.am: Remove references to evolution-outlook-importer.c and netscape-importer.c; we haven't shipped them for over two years (see ChangeLog entry for 2005-07-01). svn path=/trunk/; revision=34297 * fix the glade list.Not Zed2007-09-221-344/+0 | | | | | | | | | 2004-06-18 Not Zed <NotZed@Ximian.com> * Makefile.am (glade_DATA): fix the glade list. svn path=/trunk/; revision=34296 * 2007-09-21 mcrha Fix for bug #411125Milan Crha2007-09-212-3/+11 | | | | svn path=/trunk/; revision=34289 * 2007-09-17 mcrha Fix for bug #472865Milan Crha2007-09-172-2/+13 | | | | svn path=/trunk/; revision=34277 * ** Fixes bug #476040Matthew Barnes2007-09-133-2/+10 | | | | | | | | | | | | | | | | | | | | 2007-09-12 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #476040 * calendar/gui/e-day-view.c: * calendar/gui/e-week-view.c: * calendar/gui/dialogs/comp-editor.c: * composer/e-msg-composer.c: * composer/e-msg-composer-attachment-bar.c: * mail/em-folder-browser.c: * mail/message-list.c: * widgets/misc/e-attachment-bar.c: Use "mail-attachment" icon instead of "stock_attach". Use "mail-attachment" icon for unknown attachment types. svn path=/trunk/; revision=34240 * 2007-09-12 mcrha Fix for bug #473514Milan Crha2007-09-122-2/+9 | | | | svn path=/trunk/; revision=34239 * 2007-09-12 mcrha Fix for bug #231178Milan Crha2007-09-122-0/+11 | | | | svn path=/trunk/; revision=34236 * Partial Fix for #467581. Johnny Jacob2007-09-072-8/+12 | | | | svn path=/trunk/; revision=34194 * 2007-09-07 mcrha Fix for bug #473903Milan Crha2007-09-076-22/+32 | | | | svn path=/trunk/; revision=34192 * Don't translate empty label names. Fixes bug 363645. Thanks to BastienAndre Klapper2007-09-062-1/+13 | | | | | | | | | | | 2007-09-06 Andre Klapper <a9016009@gmx.de> * mail-config.c: (config_cache_labels): Don't translate empty label names. Fixes bug 363645. Thanks to Bastien Nocera. svn path=/trunk/; revision=34186 * ** Fix for bug #304993 (Novell Bugzilla)Srinivasa Ragavan2007-09-063-1/+11 | | | | svn path=/trunk/; revision=34184 * Update FSF address in header comments (#469886). Patch from TobiasMatthew Barnes2007-09-02128-179/+179 | | | | | | | | | | 2007-09-02 Matthew Barnes <mbarnes@redhat.com> * Update FSF address in header comments (#469886). Patch from Tobias Mueller. svn path=/trunk/; revision=34151 * Use modern icon names for "Junk" and "Not Junk".Matthew Barnes2007-09-012-7/+12 | | | | | | | | | | 2007-09-01 Matthew Barnes <mbarnes@redhat.com> * em-folder-view: Use modern icon names for "Junk" and "Not Junk". svn path=/trunk/; revision=34148 * 2007-08-31 mcrha Fix for bug #377763Milan Crha2007-08-312-0/+13 | | | | svn path=/trunk/; revision=34145 * ** Move away from g_assert to g_return* calls Srinivasa Ragavan2007-08-3127-83/+157 | | | | svn path=/trunk/; revision=34143 * 2007-08-30 Gavin Scott Fixes bug #351672Milan Crha2007-08-302-19/+7 | | | | svn path=/trunk/; revision=34135 * added Polish translation of welcome emailWadim Dziedzic2007-08-294-1/+357 | | | | | | | | | 2007-08-28 Wadim Dziedzic <wadimd@svn.gnome.org> * default/Makefile.am: added Polish translation of welcome email * default/pl: svn path=/trunk/; revision=34126 * Fix a typo build breakSrinivasa Ragavan2007-08-272-1/+5 | | | | svn path=/trunk/; revision=34115 * Fix for #467635.Johnny Jacob2007-08-272-1/+7 | | | | svn path=/trunk/; revision=34114 * ** Fix for bug #431459 and #364700Srinivasa Ragavan2007-08-274-0/+23 | | | | svn path=/trunk/; revision=34113 * ** Fix for bug #256878 from Vincent UntzSrinivasa Ragavan2007-08-273-5/+15 | | | | svn path=/trunk/; revision=34110 * 2007-08-24 mcrha Fix for bug #414420 by Ed CatmurMilan Crha2007-08-242-11/+19 | | | | svn path=/trunk/; revision=34095 * 2007-08-24 mcrha Fix for bug #385414 by makuchaku (Mayank)Milan Crha2007-08-242-1/+8 | | | | svn path=/trunk/; revision=34094 * 2007-08-24 Bharath Acharya Fix for bug #464338Milan Crha2007-08-242-10/+10 | | | | svn path=/trunk/; revision=34091 * Fix for #262682. Add labelled-by relation between labels and entry.Li Yuan2007-08-242-0/+22 | | | | | | | | | | 2007-08-24 Li Yuan <li.yuan@sun.com> * mail-config.glade: Fix for #262682. Add labelled-by relation between labels and entry. svn path=/trunk/; revision=34085 * reviewed by: Andre Klapper <a9016009@gmx.de>Sankar P2007-08-232-2/+11 | | | | | | | | | | | | | | | 2007-08-23 Sankar P <psankar@novell.com> reviewed by: Andre Klapper <a9016009@gmx.de> * Fix for bug #468869 * mail-config.glade: Mark strings for Translation. svn path=/trunk/; revision=34072 * ** Fix for bug #468303Srinivasa Ragavan2007-08-222-2/+8 | | | | svn path=/trunk/; revision=34054 * ** Another fix for bug #467382Tobias Mueller2007-08-212-78/+85 | | | | | | | | | | | 2007-08-21 Tobias Mueller <tobiasmue@svn.gnome.org> ** Another fix for bug #467382 * em-folder-view.c: Changing position of emfb_enable_map to be able to compile with -pedantic svn path=/trunk/; revision=34051 * ** Fix for bug #468734Srinivasa Ragavan2007-08-212-1/+8 | | | | svn path=/trunk/; revision=34049 * Alternate fix for bug #467599 (also bug #467883).Matthew Barnes2007-08-202-20/+22 | | | | | | | | | | 2007-08-20 Matthew Barnes <mbarnes@redhat.com> * mail/mail-component.c (enable_folder_tree): Alternate fix for bug #467599 (also bug #467883). svn path=/trunk/; revision=34047 * ** Fix for bug #467382Tobias Mueller2007-08-202-17/+23 | | | | | | | | | | | | | 2007-08-20 Tobias Mueller <tobiasmue@svn.gnome.org> ** Fix for bug #467382 * em-folder-browser.c: Changing position of emfb_enable_map to be able to compile with -pedantic svn path=/trunk/; revision=34044 * 2007-08-20 mcrha Fix for bug #367760Milan Crha2007-08-202-5/+18 | | | | svn path=/trunk/; revision=34042 * Fix for bug #467599.Johnny Jacob2007-08-202-12/+24 | | | | svn path=/trunk/; revision=34039 * ** Fix for bug #467165Srinivasa Ragavan2007-08-202-1/+8 | | | | svn path=/trunk/; revision=34037 * 2007-08-16 mcrha Part of fix for bug #350539Milan Crha2007-08-165-3/+43 | | | | svn path=/trunk/; revision=34017 * ** Fix for bug #467198Srinivasa Ragavan2007-08-162-0/+10 | | | | svn path=/trunk/; revision=34016 * Fix for #364431.Johnny Jacob2007-08-162-1/+10 | | | | svn path=/trunk/; revision=34012 * 2007-08-16 mcrha Fix for bug #466548Milan Crha2007-08-162-1/+8 | | | | svn path=/trunk/; revision=34010 * 2007-08-13 mcrha Fix for bug #352346Milan Crha2007-08-134-3/+57 | | | | svn path=/trunk/; revision=33995 * Fix for #458498 from Lucky Wankhede <wlakke@novell.com>Johnny Jacob2007-08-132-1/+7 | | | | svn path=/trunk/; revision=33992 * Added a command line option to disable preview/selection for crash on select.Srinivasa Ragavan2007-08-083-0/+32 | | | | svn path=/trunk/; revision=33967 * ** Fix for bug #464312Srinivasa Ragavan2007-08-075-5/+25 | | | | svn path=/trunk/; revision=33965 * ** Fix for bug #419690Srinivasa Ragavan2007-08-072-1/+8 | | | | svn path=/trunk/; revision=33964 * ** Fix for bug #455799Hiroyuki Ikezoe2007-08-0414-68/+0 | | | | | | | | | | | | 2007-08-04 Hiroyuki Ikezoe <poincare@ikezoe.net> ** Fix for bug #455799 Remove all .cvsignore and update svn:ignore porperty in whole directories. svn path=/trunk/; revision=33945 * ** Fix for bug #463061Srinivasa Ragavan2007-08-032-4/+13 | | | | svn path=/trunk/; revision=33939 * Removed dead if statement, fixes bug #387312Tobias Mueller2007-08-032-1/+5 | | | | | | | | | 2007-08-02 Tobias Mueller <muelli@auftrags-killer.org> * message-list.c: (regen_list_regened) Removed dead if statement, fixes bug #387312 svn path=/trunk/; revision=33930 * Fix from Lucky to expand newly created folderSrinivasa Ragavan2007-08-028-35/+78 | | | | svn path=/trunk/; revision=33926 * Do not show "on-behalf-of" band for all messages, instead check forVeerapuram Varadhan2007-08-012-2/+12 | | | | | | | * Do not show "on-behalf-of" band for all messages, instead check for * X-Evolution-Mail-From-Delegate header. svn path=/trunk/; revision=33916 * Marked a string for translation.Chenthill Palanisamy2007-07-302-1/+8 | | | | | | | Marked a string for translation. svn path=/trunk/; revision=33905 * Display a information string if a from and sender are different.Chenthill Palanisamy2007-07-302-1/+65 | | | | svn path=/trunk/; revision=33903 * ** Potential fix for: #453668Rob Bradford2007-07-302-6/+16 | | | | | | | | | | | | | 2007-07-29 Rob Bradford <rob@robster.org.uk> ** Potential fix for: #453668 * mail-folder-cache.c: (folder_changed): Deal with the fact that camel_folder_get_message_info can return NULL and therefore don't try and dereference anything from that pointer. svn path=/trunk/; revision=33897 * 2007-07-30 Part of fix for bug #360461 - Avoid markup in translatable messagesMilan Crha2007-07-303-6/+14 | | | | svn path=/trunk/; revision=33894 * ** Fix for bug #459030Srinivasa Ragavan2007-07-292-9/+15 | | | | svn path=/trunk/; revision=33881 * Fix for build breakSrinivasa Ragavan2007-07-292-2/+7 | | | | svn path=/trunk/; revision=33880 * ** Fix for bug #458894Srinivasa Ragavan2007-07-292-0/+10 | | | | svn path=/trunk/; revision=33876 * ** Fix for bug #453544 from hggdhSrinivasa Ragavan2007-07-292-4/+10 | | | | svn path=/trunk/; revision=33874 * ** Fix for bug #428123 from LuckySrinivasa Ragavan2007-07-292-2/+8 | | | | svn path=/trunk/; revision=33872 * ** Fix for bug #332112 from LuckySrinivasa Ragavan2007-07-292-1/+7 | | | | svn path=/trunk/; revision=33871 * ** Fix for bug #237989Srinivasa Ragavan2007-07-294-8/+142 | | | | svn path=/trunk/; revision=33870 * ** Fix for bug #458820 from Cosimo CecchiSrinivasa Ragavan2007-07-292-2/+27 | | | | svn path=/trunk/; revision=33868 * 2007-07-27 mcrha Fix for bug #303937Milan Crha2007-07-272-1/+8 | | | | svn path=/trunk/; revision=33859