aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Convert unmaintained translations to UTF-8Kwok-Koon Cheung2003-07-195-13661/+14078
| | | | svn path=/trunk/; revision=21872
* ** For bug #46013Maxx Cao2003-07-182-1/+8
| | | | | | | | | | | 2003-07-17 Maxx Cao <maxx.cao@sun.com> ** For bug #46013 * e-msg-composer-hdrs.c (header_new_recipient): To/cc/bcc buttons made focusable. svn path=/trunk/; revision=21868
* moved duplicated code to...Rodrigo Moya2003-07-1812-138/+191
| | | | | | | | | | | | | | | 2003-07-18 Rodrigo Moya <rodrigo@ximian.com> * gui/e-day-view.[ch]: * gui/e-week-view.[ch]: moved duplicated code to... * gui/e-cal-view.[ch]: ...here. (e_cal_view_get_calendar, e_cal_view_set_calendar): new functions. * gui/e-week-view-event-item.c (e_week_event_item_double_click): * gui/gnome-cal.c (setup_widgets): adapted to changes in views. svn path=/trunk/; revision=21865
* Updated to convert to/from the correct charset (since content is no longerJeffrey Stedfast2003-07-182-30/+33
| | | | | | | | | | | 2003-07-17 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-message.c (find_best_encoding): Updated to convert to/from the correct charset (since content is no longer necessarily in UTF-8). (best_encoding): Free the charset string when we're done with it. svn path=/trunk/; revision=21863
* Increment the seekable stream position by the number of bytes read. Oops.Jeffrey Stedfast2003-07-182-1/+6
| | | | | | | | | | 2003-07-17 Jeffrey Stedfast <fejj@ximian.com> * camel-stream-fs.c (stream_read): Increment the seekable stream position by the number of bytes read. Oops. (stream_write): Same here. svn path=/trunk/; revision=21862
* Increment the seekable stream position by the number of bytes read. Oops.Jeffrey Stedfast2003-07-182-1/+8
| | | | | | | | | 2003-07-17 Jeffrey Stedfast <fejj@ximian.com> * camel-stream-fs.c (stream_read): Increment the seekable stream position by the number of bytes read. Oops. svn path=/trunk/; revision=21861
* fix the date on my last commit to keep things in orderDan Winship2003-07-181-1/+1
| | | | svn path=/trunk/; revision=21860
* free the folder_typeDan Winship2003-07-184-1/+16
| | | | | | | | | | | | | * e-shell-user-creatable-items-handler.c (free_menu_items): free the folder_type * e-splash.c (e_splash_new): Unref the pixbuf. * evolution-shell-component.c (impl_finalize): Add some missing frees. (user_creatable_item_type_free): free the tooltip svn path=/trunk/; revision=21859
* disconnect from model signals to prevent a race condition at shutdownDan Winship2003-07-186-6/+53
| | | | | | | | | | | | | | | | | | | | | | * gui/widgets/e-addressbook-view.c (e_addressbook_view_dispose): disconnect from model signals to prevent a race condition at shutdown where the view gets destroyed and then the model notices the backend dying before being destroyed itself. * gui/widgets/e-addressbook-reflow-adapter.c (addressbook_finalize): add, to free priv. (e_addressbook_reflow_adapter_class_init): set it up * gui/component/e-address-popup.c (e_address_popup_set_free_form): Don't leak strings * gui/component/addressbook-storage.c (load_source_data): don't leak xml data. * gui/component/addressbook-component.c (new_item_cb): don't leak the new card. svn path=/trunk/; revision=21858
* encode the text (e_xml_from_hash): pass xmlDoc to foreach methodJP Rosevear2003-07-172-9/+31
| | | | | | | | | | | 2003-07-03 JP Rosevear <jpr@ximian.com> * e-xml-hash-utils.c (foreach_save_func): encode the text (e_xml_from_hash): pass xmlDoc to foreach method (e_xmlhash_new): check for file existence (e_xmlhash_destroy): only destroy the hash if it exists svn path=/trunk/; revision=21856
* new base class for calendar views.Rodrigo Moya2003-07-179-7/+269
| | | | | | | | | | | | | 2003-07-17 Rodrigo Moya <rodrigo@ximian.com> * gui/e-cal-view.[ch]: new base class for calendar views. * gui/e-day-view.[ch]: * gui/e-week-view.[ch]: base these classes on ECalView. * gui/Makefile.am: added new files. svn path=/trunk/; revision=21854
* s/expunge/purge.Rodrigo Moya2003-07-173-20/+25
| | | | | | | | | 2003-07-17 Rodrigo Moya <rodrigo@ximian.com> * gui/calendar-config.[ch]: * gui/tasks-control.c: s/expunge/purge. svn path=/trunk/; revision=21853
* s/Expunge/Purge.Rodrigo Moya2003-07-173-3/+9
| | | | | | | | | | 2003-07-17 Rodrigo Moya <rodrigo@ximian.com> * evolution-tasks.xml: s/Expunge/Purge. * evolution-calendar.xml: fixed menmonic for Purge. svn path=/trunk/; revision=21852
* ** See bug #42573Timo Sirainen2003-07-172-11/+21
| | | | | | | | | | | | 2003-07-17 Timo Sirainen <tss@iki.fi> ** See bug #42573 * providers/imap/camel-imap-folder.c (do_append): Only free the response after we have finished the literal request, otherwise we could try processing folder updates incorrectly. svn path=/trunk/; revision=21851
* new function, which uses a CalQuery to retrieve the objects older than aRodrigo Moya2003-07-174-1/+219
| | | | | | | | | | | | | | | | | | 2003-07-16 Rodrigo Moya <rodrigo@ximian.com> * gui/gnome-cal.[ch] (gnome_calendar_purge): new function, which uses a CalQuery to retrieve the objects older than a given date. (check_instance_cb): callback for cal_recur_generate_instances. (purging_obj_updated_cb): call check_instance_cb on each recurrence to double-check the event can be deleted. (purging_query_done_cb, purging_eval_error_cb): needed callbacks to finish the query. (gnome_calendar_destroy): free new members. * gui/calendar-commands.c (purge_cmd): added implementation for the 'Purge' menu item. svn path=/trunk/; revision=21846
* added 'Purge' menu item.Rodrigo Moya2003-07-173-0/+10
| | | | | | | | | | 2003-07-15 Rodrigo Moya <rodrigo@ximian.com> * evolution-calendar.xml: added 'Purge' menu item. * evolution-tasks.xml: added separator after 'Send/Receive'. svn path=/trunk/; revision=21845
* We don't have camel_pgp_mime_is_rfc2015_encrypted() anymore so just lookJeffrey Stedfast2003-07-172-48/+24
| | | | | | | | | | | | 2003-07-16 Jeffrey Stedfast <fejj@ximian.com> * mail-format.c (handle_multipart_encrypted): We don't have camel_pgp_mime_is_rfc2015_encrypted() anymore so just look at the protocol for now. (mail_format_data_wrapper_write_to_stream): Updated for the new way camel handles content objects. svn path=/trunk/; revision=21844
* don't set the rawtext bit anymore.Jeffrey Stedfast2003-07-173-49/+68
| | | | | | | | | | | | | | | | | 2003-07-16 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer-attachment-bar.c (attach_to_multipart): don't set the rawtext bit anymore. * e-msg-composer.c (build_message): Convert the plain part's content stream from UTF-8 to whatever charset we want. 2003-07-16 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer-attachment-bar.c (popup_menu_event): Fix warnings and other breakage introduced by Maxx. svn path=/trunk/; revision=21843
* Add the CamelMimePartEncodingType definition here.Jeffrey Stedfast2003-07-179-499/+198
| | | | | | | | | | | | | | | | | | | | | | | 2003-07-14 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-utils.h: Add the CamelMimePartEncodingType definition here. * camel-mime-part.h: Remove the CamelMimePartEncodingType definition. * camel-mime-part-utils.c (simple_data_wrapper_construct_from_parser): Don't do any of the auto-detection we used to do here anymore. Just read the content into a memory buffer and record the encoding type. (camel_mime_part_construct_content_from_parser): Don't mangle the Content-Type struct here anymore. * camel-data-wrapper.c (camel_data_wrapper_init): Init encoding to DEFAULT. (write_to_stream): If the stream needs to be decoded, decode it. svn path=/trunk/; revision=21842
* We don't have camel_pgp_mime_is_rfc2015_encrypted() anymore so just lookJeffrey Stedfast2003-07-172-1/+9
| | | | | | | | | | 2003-07-16 Jeffrey Stedfast <fejj@ximian.com> * mail-format.c (handle_multipart_encrypted): We don't have camel_pgp_mime_is_rfc2015_encrypted() anymore so just look at the protocol for now. svn path=/trunk/; revision=21841
* Fixes #45774Andrew Wu2003-07-162-0/+76
| | | | | | | | | | | | | 2003-07-16 Andrew Wu <Yang.Wu@sun.com> Fixes #45774 * gui/e-day-view.c (e_day_view_goto_start_of_work_day): implemented select the time that begins a work day. (e_day_view_goto_end_of_work_day): implemented select the time that ends a work day. svn path=/trunk/; revision=21839
* Fixes #45772Andrew Wu2003-07-163-0/+47
| | | | | | | | | | | | 2003-07-16 Andrew Wu <Yang.Wu@sun.com> Fixes #45772 * gui/gnome-cal.c(gnome_calendar_goto_date): implemented Alt+Left/Right to go to the same day of the previous/next week. * gui/gnome-cal.h:add two element in GnomeCalendarGotoDateType. svn path=/trunk/; revision=21836
* If we read 0 bytes, then set eos to TRUE.Jeffrey Stedfast2003-07-162-3/+12
| | | | | | | | | 2003-07-15 Jeffrey Stedfast <fejj@ximian.com> * camel-stream-fs.c (stream_read): If we read 0 bytes, then set eos to TRUE. svn path=/trunk/; revision=21820
* Handle invalid URIs, or more likely, the last empty element in a URI listFederico Mena Quintero2003-07-163-0/+16
| | | | | | | | | | | | 2003-07-15 Federico Mena Quintero <federico@ximian.com> * folder-browser.c (message_list_drag_data_received): Handle invalid URIs, or more likely, the last empty element in a URI list --- g_strsplit() will yield { "uri1", "", NULL }. Fixes #46398. * component-factory.c (destination_folder_handle_drop): Likewise. svn path=/trunk/; revision=21818
* remove the use of caret mode widget style. use new gtkhtml api to setYuedong Du2003-07-153-6/+10
| | | | | | | | | | | 2003-07-15 Yuedong Du <yuedong.du@sun.com> * mail-config.c: (config_write_style), (mail_config_init): remove the use of caret mode widget style. * mail-display.c: (display_notify), (mail_display_new): use new gtkhtml api to set caret mode. svn path=/trunk/; revision=21816
* ** For bug #45826Maxx Cao2003-07-152-0/+61
| | | | | | | | | | | | | | | 2002-07-14 Maxx Cao <maxx.cao@sun.com> ** For bug #45826 * e-msg-composer-attachment-bar.c (class_init): connect the "popup_menu" signal, so that S-F10 keybinding will work. (popup_menu_event): funcion added to handle "popup_menu" (S-F10 key). (popup_menu_placement_callback): function added to place the popup menu to the center of attachment icon, in case it is activated by keyboard. svn path=/trunk/; revision=21812
* Fixes #41676Rodrigo Moya2003-07-152-3/+70
| | | | | | | | | | | | | | | | 2003-07-14 Rodrigo Moya <rodrigo@ximian.com> Fixes #41676 * gui/dialogs/alarm-options.c (palarm_options_changed_cb, repeat_spin_button_changed_cb, repeat_unit_changed_cb): new callbacks for managing modifications in the 'Run a program' alarm case. (repeat_toggle_toggled_cb): if the alarm being edited has a procedure action, call palarm_options_changed_cb. (init_widgets): connect new callbacks. (alarm_to_dialog): disable 'OK' button if a procedure alarm. svn path=/trunk/; revision=21810
* fix typo in encryption section.Aaron Weber2003-07-152-17/+120
| | | | | | | | | | 2003-07-14 Aaron Weber <aaron@ximian.com> * C/usage-mail.xml: fix typo in encryption section. * C/menuref.xml: add command line reference. svn path=/trunk/; revision=21808
* Changed the "URL:" label to "_Web Page:". Added a widget name to the URLFederico Mena Quintero2003-07-145-12/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-07-11 Federico Mena Quintero <federico@ximian.com> * gui/dialogs/task-details-page.glade: Changed the "URL:" label to "_Web Page:". Added a widget name to the URL label so that we can hook up its mnemonic by hand. Added underlines to the "% Complete:" and "Date Completed:" labels. Added a widget name to the date completed label, also so that we can hook up its mnemonic. * gui/dialogs/task-details-page.c (get_widgets): Get the url_label and date_completed_label as well. (init_widgets): Set the mnemonic widgets of the url_label and the date_completed_label by hand, as their respective widgets are not created by libglade. * gui/e-calendar-table.c (tasks_popup_menu): Added an item for "Open Web Page". (e_calendar_table_show_popup_menu): Disable the aforementioned menu item if the selected task doesn't have the URL property set. (open_url_cb): New callback. * gui/e-tasks.c (write_html): Make the HTML say "Web Page:" instead of "URL:". svn path=/trunk/; revision=21805
* Added a handler for GtkWidget::mnemonic_activate().Federico Mena Quintero2003-07-143-0/+37
| | | | | | | | | | | 2003-07-11 Federico Mena Quintero <federico@ximian.com> * e-dateedit.c (e_date_edit_mnemonic_activate): Added a handler for GtkWidget::mnemonic_activate(). * e-url-entry.c (mnemonic_activate): Likewise. svn path=/trunk/; revision=21804
* Change the EditPaste mask to IS_0MESSAGE so that it is always activatable.Antonio Xu2003-07-122-1/+6
| | | | | | | | | 2003-07-11 Antonio Xu <antonio.xu@sun.com> * folder-browser-ui.c: Change the EditPaste mask to IS_0MESSAGE so that it is always activatable. Fixes bug #46018. svn path=/trunk/; revision=21801
* camel-smime-utils.h doesn't exist anymoreJeffrey Stedfast2003-07-111-1/+0
| | | | svn path=/trunk/; revision=21795
* Updated Spanish translation by Francisco Javier F. SerradorPablo Gonzalo del Campo2003-07-102-2/+7
| | | | | | | | | 2003-07-10 Pablo Gonzalo del Campo <pablodc@bigfoot.com> * es.po: Updated Spanish translation by Francisco Javier F. Serrador <serrador@arrakis.es>. svn path=/trunk/; revision=21792
* Change version to 1.4.99 since HEAD is not the stable 1.4 branch, asRodney Dawes2003-07-102-1/+6
| | | | | | | | | 2003-07-10 Rodney Dawes <dobey@ximian.com> * configure.in: Change version to 1.4.99 since HEAD is not the stable 1.4 branch, as evolution-1-4-branch was created post-1.4.1 svn path=/trunk/; revision=21790
* ** For bug #41839Maxx Cao2003-07-102-26/+76
| | | | | | | | | | | | | | | | | | 2003-07-04 Maxx Cao <maxx.cao@sun.com> ** For bug #41839 * mail-display.c (do_attachment_header): Attachment buttons made accessable with keyboard (focusable). "Inline" button is disabled when attachment can't be viewed inline. (do_signature): Signature button made accessable with keyboard (focusable). (button_press): Function changed to an event callback (originally gtkbutton signal callback). (popup_menu_placement_callback): Function added to place popup menu (of attachment) beside button when activated by keyboard. svn path=/trunk/; revision=21788
* removed camel-pkcs7-context.[c,h] - no longer usefulJeffrey Stedfast2003-07-102-764/+0
| | | | svn path=/trunk/; revision=21785
* removed camel-smime-utils.[c,h] which are no longer usefulJeffrey Stedfast2003-07-104-178/+0
| | | | svn path=/trunk/; revision=21784
* (e_shell_command_rename_folder): DoEttore Perazzoli2003-07-102-33/+36
| | | | | | | not overwrite an existing folder. Also, cleaned up the code a bit. [#45982] svn path=/trunk/; revision=21783
* Chain to the parent handler. Fixes #45236.Federico Mena Quintero2003-07-102-0/+6
| | | | | | | | 2003-07-09 Federico Mena Quintero <federico@ximian.com> * e-url-entry.c (destroy): Chain to the parent handler. Fixes #45236. svn path=/trunk/; revision=21782
* removed #ifndef ENABLE_THREADSJeffrey Stedfast2003-07-102-26/+2
| | | | svn path=/trunk/; revision=21780
* removed #ifdef ENABLE_THREADSJeffrey Stedfast2003-07-101-16/+4
| | | | svn path=/trunk/; revision=21779
* Get rid of the #ifdef ENABLE_THREADS since we no longer plan toJeffrey Stedfast2003-07-107-117/+102
| | | | | | | | | | | | | | | | | 2003-07-09 Jeffrey Stedfast <fejj@ximian.com> Get rid of the #ifdef ENABLE_THREADS since we no longer plan to support/maintain this. * providers/nntp/camel-nntp-store.c: Here. * providers/nntp/camel-nntp-newsrc.c: And here. * providers/nntp/camel-nntp-folder.c: Same. * providers/local/camel-local-folder.c: And here. svn path=/trunk/; revision=21778
* Get rid of the #ifdef ENABLE_THREADS since we no longer plan toJeffrey Stedfast2003-07-1028-596/+353
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-07-09 Jeffrey Stedfast <fejj@ximian.com> * camel-block-file.c: Get rid of the #ifdef ENABLE_THREADS since we no longer plan to support/maintain this. * camel.c: Same. * camel-certdb.c: Here too. * camel-charset-map.c: And here. * camel-cipher-context.c: " * camel-data-wrapper.c: " * camel-digest-folder.c: " * camel-exception.c: " * camel-folder.c: " * camel-folder-summary.c: " * camel-lock-client.c: " * camel-mime-utils.c: " * camel-object.c: " * camel-operation.c: " * camel-partition-table.c: " * camel-sasl-popb4smtp.c: " * camel-service.c: " * camel-session.c: " * camel-store.c: " * camel-store-summary.c: " * camel-text-index.c: " * camel-transport.c: " * camel-vee-folder.c: " * camel-tcp-stream-openssl.c: Removed pthread.h, it isn't needed. svn path=/trunk/; revision=21777
* add a gconf key corresponding to newly introduced caret mode of gtkhtmlYuedong Du2003-07-106-0/+83
| | | | | | | | | | | | | | | | | | | | | | 2003-07-10 Yuedong Du <yuedong.du@sun.com> * evolution-mail.schemas: add a gconf key corresponding to newly introduced caret mode of gtkhtml widget. * folder-browser-ui.c: new verb handling, corresponding the new menu entry for the caret mode flag. * folder-browser.h: declaration of new verb handler to the menu entry that turn caret mode on/off. The function just set the new introduced gconf key. * folder-browser.c: ditto * mail-config.c: lstione to the new gconf key, and when caret mode flag is set/unset,change the style of gtkhtml widget. see bug #44607. svn path=/trunk/; revision=21776
* Removed camel-pgp-mime.h, it no longer exists.Jeffrey Stedfast2003-07-103-2/+6
| | | | | | | | | | 2003-07-09 Jeffrey Stedfast <fejj@ximian.com> * mail-crypto.h: Removed camel-pgp-mime.h, it no longer exists. * mail-format.c: Remove camel-pgp-mime.h svn path=/trunk/; revision=21775
* add a menu entry corresponding to new introduced caret mode, see bugYuedong Du2003-07-102-0/+10
| | | | | | | | | 2003-07-10 Yuedong Du <yuedong.du@sun.com> * evolution-mail-message.xml: add a menu entry corresponding to new introduced caret mode, see bug #44607 svn path=/trunk/; revision=21773
* Change the accelerator for "Mark All Read" to be "R". Fixes bug #45811.Anna Marie Dirks2003-07-102-1/+6
| | | | | | | | | 2003-07-09 Anna Marie Dirks <anna@ximian.com> * evolution-mail-list.xml: Change the accelerator for "Mark All Read" to be "R". Fixes bug #45811. svn path=/trunk/; revision=21772
* check null after conversions. (e_utf8_strftime_fix_am_pm): ditto. fixesMike Kestner2003-07-091-8/+38
| | | | | | | | | 2003-07-09 Mike Kestner <mkestner@ximian.com> * gal/util/e-util.c (e_utf8_strftime): check null after conversions. (e_utf8_strftime_fix_am_pm): ditto. fixes [44904]. svn path=/trunk/; revision=21771
* remove reference to camel-pgp-mime.hLarry Ewing2003-07-092-1/+5
| | | | | | | | 2003-07-09 Larry Ewing <lewing@ximian.com> * camel.h: remove reference to camel-pgp-mime.h svn path=/trunk/; revision=21770
* Fixes #46075.Harry Lu2003-07-092-2/+19
| | | | | | | | | | | | | 2003-07-10 Harry Lu <harry.lu@sun.com> Fixes #46075. * gui/e-date-time-list.c (compare_datetime): new function to compare two CalComponentDateTime instances. (e_date_time_list_append): check whether the date already exists before adding it to the list. svn path=/trunk/; revision=21767
* Removed.Jeffrey Stedfast2003-07-094-200/+2
| | | | | | | | 2003-07-08 Jeffrey Stedfast <fejj@ximian.com> * camel-pgp-mime.[c,h]: Removed. svn path=/trunk/; revision=21760
* Updated (new copy/paste from e-iconv).Jeffrey Stedfast2003-07-094-92/+189
| | | | | | | | | | | | | | | | | 2003-07-08 Jeffrey Stedfast <fejj@ximian.com> * camel-iconv.c: Updated (new copy/paste from e-iconv). * camel-block-file.c (camel_block_file_get_block): Use camel_read() rather than libc read. * camel-tcp-stream-raw.c (stream_read): Use camel_read(). (stream_write): Use camel_write(). * camel-stream-fs.c (stream_read): Use camel_read(). (stream_write): Use camel_write(). svn path=/trunk/; revision=21759
* Use camel_read(). (stream_write): Use camel_write().Jeffrey Stedfast2003-07-093-241/+18
| | | | | | | | | | | | 2003-07-08 Jeffrey Stedfast <fejj@ximian.com> * camel-tcp-stream-raw.c (stream_read): Use camel_read(). (stream_write): Use camel_write(). * camel-stream-fs.c (stream_read): Use camel_read(). (stream_write): Use camel_write(). svn path=/trunk/; revision=21758
* Use camel_strcase_hash/equal.Jeffrey Stedfast2003-07-082-3/+6
| | | | | | | | | 2003-07-07 Jeffrey Stedfast <fejj@ximian.com> * mail-callbacks.c (mail_generate_reply): Use camel_strcase_hash/equal. svn path=/trunk/; revision=21756
* Updated to use camel_strcase_hash/equal.Jeffrey Stedfast2003-07-082-3/+8
| | | | | | | | | 2003-07-07 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (e_msg_composer_new_with_message): Updated to use camel_strcase_hash/equal. svn path=/trunk/; revision=21755
* Updated to use the camel-file-utils version of mkdir.Jeffrey Stedfast2003-07-082-4/+8
| | | | | | | | | 2003-07-07 Jeffrey Stedfast <fejj@ximian.com> * upgrade-mailer.c: Updated to use the camel-file-utils version of mkdir. svn path=/trunk/; revision=21754
* Use camel_mkdir().Jeffrey Stedfast2003-07-0815-277/+252
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-07-07 Jeffrey Stedfast <fejj@ximian.com> * providers/nntp/camel-nntp-folder.c (camel_nntp_folder_new): Use camel_mkdir(). * providers/imap/camel-imap-folder.c (camel_imap_folder_new): Use camel_mkdir(). * camel-session.c (get_storage_path): Use camel_mkdir(). * camel-store.c (camel_mkdir_hier): Removed. * camel-data-cache.c (camel_data_cache_new): Updated to use camel_mkdir(). (data_cache_path): Same. * camel-file-utils.c (camel_mkdir): Renamed and documented. (camel_file_util_safe_filename): Documented. (camel_read): Moved here from camel-io.c (camel_write): Same. * camel-io.[c,h]: Removed. * camel-uid-cache.c (camel_uid_cache_new): Use the camel-file-utils.c version of mkdir. svn path=/trunk/; revision=21753
* removed debug printfsJeffrey Stedfast2003-07-081-18/+0
| | | | svn path=/trunk/; revision=21752
* Updated for string-utils namespace changes.Jeffrey Stedfast2003-07-0828-62/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-07-07 Jeffrey Stedfast <fejj@ximian.com> * camel-session.c (camel_session_init): Updated for string-utils namespace changes. * camel-provider.c: Updated for string-utils namespace changes. * camel-mime-part.c (init_header_name_table): Updated for string-utils namespace changes. * camel-mime-message.c (camel_mime_message_class_init): Updated for string-utils namespace changes. (camel_mime_message_init): Same. * camel-mime-filter-enriched.c (camel_mime_filter_enriched_class_init): Updated for string-utils namespace changes. * camel-folder-summary.c (camel_folder_summary_init): Updated for string-utils namespace changes. * camel-string-utils.[c,h]: Renamed from string-utils.[c,h] and also namespaced all functions. svn path=/trunk/; revision=21751
* fixed the changelogJeffrey Stedfast2003-07-081-0/+8
| | | | svn path=/trunk/; revision=21750
* Apply a From-filter when dragging as a test/uri-list and message/rfc822.Jeffrey Stedfast2003-07-082-9/+5
| | | | | | | | | | | 2003-07-02 Jeffrey Stedfast <fejj@ximian.com> * folder-browser.c (message_list_drag_data_get): Apply a From-filter when dragging as a test/uri-list and message/rfc822. Fixes bug #45617. Also free the uids ptrarray for the text/uri-list case. svn path=/trunk/; revision=21749
* Updated Spanish translation by Francisco Javier F. SerradorPablo Gonzalo del Campo2003-07-072-268/+227
| | | | | | | | | 2003-07-07 Pablo Gonzalo del Campo <pablodc@bigfoot.com> * es.po: Updated Spanish translation by Francisco Javier F. Serrador <serrador@arrakis.es>. svn path=/trunk/; revision=21745
* Fixes #45910Rodrigo Moya2003-07-073-0/+33
| | | | | | | | | | | | | | | | | 2003-07-07 Rodrigo Moya <rodrigo@ximian.com> Fixes #45910 * gui/dialogs/task-editor.c (task_editor_class_init): set up the handler for the set_cal_client virtual method. (task_editor_set_cal_client): added missing virtual method. 2003-07-07 Jack Jia <jack.jia@sun.com> * cal-client/cal-client.c (cal_client_get_static_capability): add g_return_val_if_fail to check the input param. svn path=/trunk/; revision=21743
* make sure we don't unref the sorter more than once.Chris Toshok2003-07-051-1/+4
| | | | | | | | | 2003-07-04 Chris Toshok <toshok@ximian.com> * gal/widgets/e-reflow.c (e_reflow_dispose): make sure we don't unref the sorter more than once. svn path=/trunk/; revision=21741
* added a paned widget to contain the task list and a HTML widget forRodrigo Moya2003-07-045-4/+396
| | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-07-03 Rodrigo Moya <rodrigo@ximian.com> * gui/e-tasks.c (setup_widgets): added a paned widget to contain the task list and a HTML widget for displaying the task's details. Connect to "cursor_change" signal on the ETable. (table_cursor_change_cb): update the HTML view every time the selected task changes. (timet_to_str_with_zone): new function copied from alarm daemon. (url_requested_cb): callback for "url_requested" signal on the GtkHTML widget. (on_link_clicked_cb): respond to clicks linked on the HTML widget. (vpaned_resized_cb): set the configuration entry for the task vpane position. (e_tasks_destroy): free new member. (e_tasks_construct): connect to "obj_removed" signal on the CalClient. (client_obj_removed_cb): if the updated object is the one being displayed in the HTML widget, update it. * gui/calendar-config.[ch] (calendar_config_get_task_vpane_pos): (calendar_config_gset_task_vpane_pos): new functions. * gui/apps_evolution_calendar.schemas: added task vpane position. svn path=/trunk/; revision=21740
* Strip the signature from the body text. Fixes bug #45523. While we'reJeffrey Stedfast2003-07-043-25/+86
| | | | | | | | | | | | | | | | | | | 2003-07-02 Jeffrey Stedfast <fejj@ximian.com> * mail-tools.c (mail_tool_forward_message): Strip the signature from the body text. Fixes bug #45523. While we're here, also fix the code to quote exactly the same way as the mail_tool_quote_message() function. (mail_tool_quote_message): The last arg should not be 'want_plain', because that arg is for whether or not the body should be quoted. * folder-browser.c (message_list_drag_data_get): Apply a From-filter when dragging as a test/uri-list and message/rfc822. Fixes bug #45617. Also free the uids ptrarray for the text/uri-list case. svn path=/trunk/; revision=21739
* Gone (pixbuf_gen_idle): Use e_icon_for_mime_type instead.Dan Winship2003-07-032-58/+7
| | | | | | | * mail-display.c (pixbuf_for_mime_type): Gone (pixbuf_gen_idle): Use e_icon_for_mime_type instead. svn path=/trunk/; revision=21736
* Gone. (update): Use e_icon_for_mime_type instead.Dan Winship2003-07-033-62/+9
| | | | | | | | | * e-msg-composer-attachment-bar.c (pixbuf_for_mime_type): Gone. (update): Use e_icon_for_mime_type instead. * Makefile.am (INCLUDES): remove EVOLUTION_IMAGESDIR define svn path=/trunk/; revision=21735
* Check for gnome-icon-lookup.h (which could mean either plain GNOME 2.2 orDan Winship2003-07-032-2/+12
| | | | | | | * configure.in: Check for gnome-icon-lookup.h (which could mean either plain GNOME 2.2 or Sun GNOME 2.0) svn path=/trunk/; revision=21734
* New function to return an icon for a MIME type, using GnomeIconTheme ifDan Winship2003-07-033-0/+99
| | | | | | | | * e-gui-utils.c (e_icon_for_mime_type): New function to return an icon for a MIME type, using GnomeIconTheme if available or gnome-vfs and gnome-mime-data if not. svn path=/trunk/; revision=21733
* Fixes #45767Antonio Xu2003-07-032-1/+6
| | | | | | | | | | 2003-07-03 Antonio Xu <antonio.xu@sun.com> Fixes #45767 * conduits/todo/Makefile.am: removed libwombat from the build. svn path=/trunk/; revision=21732
* Don't quote the charset value, the qop value, nor the response value.Jeffrey Stedfast2003-07-032-6/+12
| | | | | | | | | | 2003-07-01 Jeffrey Stedfast <fejj@ximian.com> * camel-sasl-digest-md5.c (digest_response): Don't quote the charset value, the qop value, nor the response value. Fixes bug #45712. svn path=/trunk/; revision=21730
* Fixes #44485Harry Lu2003-07-032-1/+14
| | | | | | | | | | | | 2003-07-02 Harry Lu <harry.lu@sun.com> Fixes #44485 * gui/e-timezone-entry.c (e_timezone_entry_set_entry): pass a new allocated string to gtk_entry_set_text instead of the one that might come from gettext. svn path=/trunk/; revision=21728
* Change file url to absolute path. Fixes bug #44065.Antonio Xu2003-07-032-1/+16
| | | | | | | | | 2003-06-25 Antonio Xu <antonio.xu@sun.com> * e-msg-composer.c (handle_mailto): Change file url to absolute path. Fixes bug #44065. svn path=/trunk/; revision=21726
* Use gmtime_r() instead of using gmtime() and memcpy() to try and beJeffrey Stedfast2003-07-032-3/+8
| | | | | | | | | 2003-07-01 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-utils.c (header_format_date): Use gmtime_r() instead of using gmtime() and memcpy() to try and be "atomic". svn path=/trunk/; revision=21725
* Connect to the save-draft signal too. Fixes bug #45531.Jeffrey Stedfast2003-07-032-1/+9
| | | | | | | | | 2003-07-01 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (autosave_load_draft): Connect to the save-draft signal too. Fixes bug #45531. svn path=/trunk/; revision=21724
* Don't leak exceptions (load_static_capabilities): free the capabilityDan Winship2003-07-024-17/+34
| | | | | | | | | | | | | | * cal-client/cal-client.c (real_open_calendar): Don't leak exceptions (load_static_capabilities): free the capability string * gui/dialogs/task-page.c (task_page_fill_component): Free the description text if it *was* set, rather than if it wasn't. * gui/dialogs/task-editor.c (task_editor_finalize): Free the priv struct. svn path=/trunk/; revision=21722
* fix a misuse of g_return_if_failBolian Yin2003-07-021-1/+1
| | | | svn path=/trunk/; revision=21720
* correct the dateBolian Yin2003-07-021-1/+1
| | | | svn path=/trunk/; revision=21719
* Fixes #45328, #45329Bolian Yin2003-07-024-3/+184
| | | | | | | | | | | | | | | | | 2003-06-30 Bolian Yin <bolian.yin@sun.com> Fixes #45328, #45329 * gui/e-day-view.c (e_day_view_do_key_press): Do not process PageUp/PageDown, .. when the Alt key is pressed (give key binding set the chance). * gui/gnome-cal.h : define new enum type, GNOME_CAL_GOTO_DATE_TYPE. * gui/gnome-cal.c (gnome_calendar_class_init): define new signal "goto_date". Add key bindings for "Alt+PageUp/PageDown", "Alt+Home/End". (gnome_calendar_goto_date): Impl. signal handler for "goto_date". svn path=/trunk/; revision=21717
* Fixes #45524Rodrigo Moya2003-07-023-32/+10
| | | | | | | | | | | | | | 2003-07-01 Rodrigo Moya <rodrigo@ximian.com> Fixes #45524 * gui/calendar-commands.c: use stock icons where approppriate. * gui/tasks-control.c: removed EPixmaps structure, since we only use stock icons now. (tasks_control_activate): no need to call e_pixmaps_update. svn path=/trunk/; revision=21715
* Fixes #45524Rodrigo Moya2003-07-023-50/+54
| | | | | | | | | | | 2003-07-01 Rodrigo Moya <rodrigo@ximian.com> Fixes #45524 * evolution-tasks.xml: * evolution-calendar.xml: use stock icons where appropriate. svn path=/trunk/; revision=21714
* free the summary hashDan Winship2003-07-022-0/+7
| | | | | | | * camel-folder-search.c (camel_folder_search_finalize): free the summary hash svn path=/trunk/; revision=21713
* Use the newer utf8 versions of the e_strftime*() functions since ourJeffrey Stedfast2003-07-024-7/+19
| | | | | | | | | | | | | | | | 2003-06-27 Jeffrey Stedfast <fejj@ximian.com> * message-list.c (filter_date): Use the newer utf8 versions of the e_strftime*() functions since our format strings are all now in UTF-8. * mail-display.c (mail_display_render): Use the newer e_utf8_strftime_fix_am_pm(). * mail-callbacks.c (mail_generate_reply): Use e_utf8_strftime(), otherwise we can end up with invalid utf-8. svn path=/trunk/; revision=21712
* Put day of week into outgoing email.David Woodhouse2003-07-022-1/+11
| | | | | | | | | 2003-06-24 David Woodhouse <dwmw2@infradead.org> * camel-mime-utils.c (header_format_date): Put day of week into outgoing email. svn path=/trunk/; revision=21710
* unref the sorterDan Winship2003-07-011-1/+3
| | | | | | * gal/widgets/e-reflow.c (e_reflow_dispose): unref the sorter svn path=/trunk/; revision=21707
* Initialize some missing fields. Fixes "no handler with id" warnings at evoDan Winship2003-07-012-10/+7
| | | | | | | | | | | | * e-tree.c (e_tree_init): Initialize some missing fields. Fixes "no handler with id" warnings at evo shutdown (ETreePriv): remove unused table_rows_{inserted,deleted}_id (et_disconnect_from_etta): remove refs to them * e-table.c (e_table_drag_source_unset): free site->target_list if it's set. svn path=/trunk/; revision=21705
* *** empty log message ***Rodrigo Moya2003-07-011-18/+0
| | | | svn path=/trunk/; revision=21704
* Fixes #45274Bolian Yin2003-07-013-4/+99
| | | | | | | | | | 2003-07-01 Bolian Yin <bolian.yin@sun.com> Fixes #45274 * gui/e-week-view.c: implemented tabbing though events in week view. svn path=/trunk/; revision=21703
* Set the rawtext bits for the 'plain' and 'html' data wrappers to FALSE.Jeffrey Stedfast2003-06-302-0/+10
| | | | | | | | | 2003-06-27 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (build_message): Set the rawtext bits for the 'plain' and 'html' data wrappers to FALSE. svn path=/trunk/; revision=21695
* removed WombatClient interface.Rodrigo Moya2003-06-303-6/+6
| | | | | | | | | | 2003-06-26 Rodrigo Moya <rodrigo@ximian.com> * Evolution-Wombat.idl: removed WombatClient interface. * Makefile.am: don't link libwombat in. svn path=/trunk/; revision=21694
* removed usage of WombatClient. (client_get_password_cb,Rodrigo Moya2003-06-306-161/+17
| | | | | | | | | | | | | | | | | | | | 2003-06-30 Rodrigo Moya <rodrigo@ximian.com> * cal-client/cal-client.c: removed usage of WombatClient. (client_get_password_cb, client_forget_password_cb): removed. (real_open_calendar): don't create the WombatClient object. (cal_client_init, cal_client_finalize): removed WombatClient related code. (cal_client_finalize): re-enabled call to destroy_factories. * pcs/cal.c: removed usage of WombatClient interface. (cal_construct): don't get a reference to the WombatClient. (cal_get_password, cal_forget_password): removed unused functions. * conduits/calendar/Makefile.am: * cal-client/Makefile.am: removed references to libwombat. svn path=/trunk/; revision=21693
* removed libwombat from the build.Rodrigo Moya2003-06-3010-340/+10
| | | | | | | | | | | | | 2003-06-30 Rodrigo Moya <rodrigo@ximian.com> * configure.in: * Makefile.am: removed libwombat from the build. * evolution-calendar.pc.in: removed -lwombat. * libwombat/*: removed unused directory. svn path=/trunk/; revision=21692
* Updated NEWSRodrigo Moya2003-06-301-0/+6
| | | | svn path=/trunk/; revision=21685
* added a GtkWindow argument for callers to specify the parent window.Rodrigo Moya2003-06-3015-42/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-06-27 Rodrigo Moya <rodrigo@ximian.com> * gui/dialogs/send-comp.[ch] (send_component_dialog): * gui/dialogs/cancel-comp.[ch] (cancel_component_dialog): added a GtkWindow argument for callers to specify the parent window. * gui/dialogs/changed-comp.[ch] (changed_component_dialog): added 'parent' argument and use GtkMessageDialog instead of gnome_question_dialog. * gui/e-calendar-table.c (e_calendar_table_delete_selected): * gui/e-day-view.c (e_day_view_delete_event_internal, e_day_view_on_cut, e_day_view_finish_long_event_resize, e_day_view_finish_resize, e_day_view_on_editting_stopped, e_day_view_on_top_canvas_drag_data_received, selection_received): * gui/e-week-view.c (e_week_view_delete_event_internal, e_week_view_on_cut, e_week_view_on_editing_stopped, selection_received): * gui/dialogs/event-editor.c (cancel_meeting_cmd): * gui/dialogs/task-editor.c (cancel_task_cmd): * gui/dialogs/comp-editor.c (delete_cmd, obj_removed_cb): pass the parent window to the *_component_dialog() functions. * gui/dialogs/delete-comp.c (delete_component_dialog): use the 'widget' argument to get the parent window for the dialog. svn path=/trunk/; revision=21684
* Updated NEWSRodrigo Moya2003-06-301-0/+12
| | | | svn path=/trunk/; revision=21683
* Fixes #45276Bolian Yin2003-06-303-0/+13
| | | | | | | | | | | | | 2003-06-26 Bolian Yin <bolian.yin@sun.com> Fixes #45276 * gui/e-day-view.c (e_day_view_on_text_item_event): set focus to dayview when editing is canceled. * gui/e-week-view.c (e_week_view_on_text_item_event): set focus to weekview when editing is canceled svn path=/trunk/; revision=21682
* Add third argument to AC_DEFINE.Sebastian Rittau2003-06-292-1/+5
| | | | svn path=/trunk/; revision=21564
* Fixes #44723Rodrigo Moya2003-06-272-0/+53
| | | | | | | | | | | | | | | 2003-06-25 Rodrigo Moya <rodrigo@ximian.com> Fixes #44723 * gui/dialogs/alarm-page.c: added a new field to the private structure to keep track of the old summary. (alarm_page_init): initialize new field. (alarm_page_finalize): free new field. (alarm_page_set_summary): iterate over the list of alarms to change their description if it was the same as the event's summary. svn path=/trunk/; revision=21561
* Fixes #44719Rodrigo Moya2003-06-271-5/+2
| | | | | | | | | | | | 2003-06-25 Rodrigo Moya <rodrigo@ximian.com> Fixes #44719 * gui/alarm-notify/alarm-notify-dialog.c (alarm_notify_dialog): use gtk_window_set_icon_from_file to set the window's icon and implemented the code to make the window sticky with GTK 2.x API. svn path=/trunk/; revision=21559
* Fixes #44719Rodrigo Moya2003-06-271-0/+8
| | | | | | | | | | | | 2003-06-25 Rodrigo Moya <rodrigo@ximian.com> Fixes #44719 * gui/alarm-notify/alarm-notify-dialog.c (alarm_notify_dialog): use gtk_window_set_icon_from_file to set the window's icon and implemented the code to make the window sticky with GTK 2.x API. svn path=/trunk/; revision=21557
* Updated the Greek translationKostas Papadimas2003-06-272-1323/+1444
| | | | svn path=/trunk/; revision=21556
* 1.4.1 release.Ettore Perazzoli2003-06-2645-19518/+20038
| | | | svn path=/trunk/; revision=21550
* oops, move the addressbook NEWS to the right versionChris Toshok2003-06-261-7/+7
| | | | svn path=/trunk/; revision=21549
* add addressbook NEWSChris Toshok2003-06-261-0/+7
| | | | svn path=/trunk/; revision=21548
* new function, override the event handler for focus_in_event, set the firstGilbert Fang2003-06-262-0/+32
| | | | | | | | | | | 2003-06-25 Gilbert Fang <gilbert.fang@sun.com> * gui/widgets/e-minicard-view-widget.c (e_minicard_view_widget_real_focus_in_event): new function, override the event handler for focus_in_event, set the first item be focused if no focused item at all. Fixes bug 41826. svn path=/trunk/; revision=21547
* Update.Ettore Perazzoli2003-06-261-22/+49
| | | | svn path=/trunk/; revision=21546
* applied simpler spell error color fixRadek Doulik2003-06-262-5/+15
| | | | svn path=/trunk/; revision=21545
* add general_map and a reference to it in gconf_remap_list. Should fixChris Toshok2003-06-262-0/+12
| | | | | | | | | 2003-06-25 Chris Toshok <toshok@ximian.com> * e-config-upgrade.c: add general_map and a reference to it in gconf_remap_list. Should fix 44477. svn path=/trunk/; revision=21544
* updatedJeffrey Stedfast2003-06-261-0/+5
| | | | svn path=/trunk/; revision=21543
* reverted spell error color fixRadek Doulik2003-06-264-110/+30
| | | | svn path=/trunk/; revision=21542
* Forgot this fileRodrigo Moya2003-06-261-0/+5
| | | | svn path=/trunk/; revision=21541
* More NEWSRodrigo Moya2003-06-261-0/+3
| | | | svn path=/trunk/; revision=21540
* Fixes #45423Bolian Yin2003-06-262-2/+10
| | | | | | | | | | | 2003-06-25 Bolian Yin <bolian.yin@sun.com> Fixes #45423 * evolution-calendar.xml: added keyboard shortcuts for "Go to today" and "Go to date" menu/toolbar items. svn path=/trunk/; revision=21539
* updatedJeffrey Stedfast2003-06-261-0/+2
| | | | svn path=/trunk/; revision=21538
* Fixes #45275Bolian Yin2003-06-262-9/+47
| | | | | | | | | | | | | 2003-06-25 Bolian Yin <bolian.yin@sun.com> Fixes #45275 * gui/e-calendar-table.c (e_calendar_table_show_popup_menu): new function. (e_calendar_table_on_right_click_menu): call e_calendar_table_show_popup_menu. (e_calendar_table_on_popup_menu): callback for "popup_menu" signal. (e_calendar_table_init): connect to ETable's "popup_menu" signal. svn path=/trunk/; revision=21537
* Might fix bug #45368 but I wouldn't bet on it.Jeffrey Stedfast2003-06-254-10/+38
| | | | | | | | | | | | | | | | | 2003-06-24 Jeffrey Stedfast <fejj@ximian.com> Might fix bug #45368 but I wouldn't bet on it. * message-browser.c (message_browser_new): Record the signal id for folder_loaded. (message_browser_folder_loaded): disconnect by id rather than searching for the handler. Save the id of the message_list_built signal handler. (message_browser_message_list_built): Disconnect the handler by id. (message_browser_destroy): Disconnect the signal handlers by id. svn path=/trunk/; revision=21536
* 2003-06-25 Bolian Yin <bolian.yin@sun.comRodrigo Moya2003-06-252-4/+238
| | | | | | | | Fixes #45273 * gui/e-day-view.c: implemented tabbing though events in day view. svn path=/trunk/; revision=21535
* Added prototype for camel_folder_summary_remove_range().Jeffrey Stedfast2003-06-253-17/+38
| | | | | | | | | | | | | | | | 2003-06-25 Jeffrey Stedfast <fejj@ximian.com> * camel-folder-summary.h: Added prototype for camel_folder_summary_remove_range(). 2003-06-25 Not Zed <NotZed@Ximian.com> ** See bug #45386 * camel-service.c (camel_gethostbyname, camel_gethostbyaddr): Make sure we have an exception that we test against. svn path=/trunk/; revision=21534
* Don't call setup_calendar from here, since e_summary_calendar_init willDan Winship2003-06-252-2/+7
| | | | | | | | | * e-summary-calendar.c (setup_gconf_client): Don't call setup_calendar from here, since e_summary_calendar_init will call it immediately after setup_gconf_client, which will result in a calendar being quickly created and destroyed. svn path=/trunk/; revision=21533
* Updated Macedonian translationIvan Stojmirov2003-06-251-2/+0
| | | | svn path=/trunk/; revision=21532
* Updated Macedonian translationIvan Stojmirov2003-06-251-1/+0
| | | | svn path=/trunk/; revision=21531
* Updated Macedonian translationIvan Stojmirov2003-06-252-5/+11
| | | | svn path=/trunk/; revision=21530
* ** See bug #43887Not Zed2003-06-253-0/+27
| | | | | | | | | | | 2003-06-20 Not Zed <NotZed@Ximian.com> ** See bug #43887 * camel-mime-filter-enriched.c (camel_enriched_to_html): simple wrapper to convert enriched to html in one go. svn path=/trunk/; revision=21529
* ** See bug #43887Not Zed2003-06-252-5/+17
| | | | | | | | | | | 2003-06-20 Not Zed <NotZed@Ximian.com> ** See bug #43887 * mail-format.c (mail_get_message_body): handle text/enriched and text/richtext explictly, and dont treat them as text/plain. svn path=/trunk/; revision=21528
* add EvolutionMailPrintHTMLWidget style assignmentRadek Doulik2003-06-253-2/+10
| | | | | | | | | | | 2003-06-23 Radek Doulik <rodo@ximian.com> * mail-config.c (config_write_style): add EvolutionMailPrintHTMLWidget style assignment * mail-callbacks.c (do_mail_print): set printing widget name svn path=/trunk/; revision=21527
* use spell preferences at new locationRadek Doulik2003-06-254-29/+110
| | | | | | | | | | | | | 2003-06-24 Radek Doulik <rodo@ximian.com> * mail-composer-prefs.c: use spell preferences at new location * mail-config.c: copy old spell settings from /GNOME/Spell * evolution-mail.schemas: added spell color default + migration flag svn path=/trunk/; revision=21526
* ko.po updatedKang Jeong-Hee2003-06-252-4080/+3635
| | | | svn path=/trunk/; revision=21525
* Updated NEWSRodrigo Moya2003-06-241-0/+5
| | | | svn path=/trunk/; revision=21524
* new functions. (page_summary_changed_cb): change the window title when theRodrigo Moya2003-06-242-0/+57
| | | | | | | | | | | 2003-06-23 Rodrigo Moya <rodrigo@ximian.com> * gui/dialogs/comp-editor.c (make_title_from_string, set_title_from_string): new functions. (page_summary_changed_cb): change the window title when the object's summary changes. svn path=/trunk/; revision=21523
* don't use a static GList, since the value returned is freed inRodrigo Moya2003-06-242-4/+7
| | | | | | | | | | 2003-06-22 Rodrigo Moya <rodrigo@ximian.com> * cal-client/cal-client.c (get_factories): don't use a static GList, since the value returned is freed in destroy_factories, making several clients use a buggy GList if one of them happen to be destroyed. svn path=/trunk/; revision=21522
* Add #43585.Hans Petter2003-06-241-1/+3
| | | | svn path=/trunk/; revision=21521
* Implement. (ect_print): Use same font heuristics as evo calendar, pick aHans Petter Jansson2003-06-241-2/+25
| | | | | | | | | | 2003-06-22 Hans Petter Jansson <hpj@ximian.com> * e-cell-text.c (get_font_for_size): Implement. (ect_print): Use same font heuristics as evo calendar, pick a font that fits. Correct baseline calculation. svn path=/trunk/; revision=21519
* Remove debug output.Hans Petter Jansson2003-06-243-2/+17
| | | | | | | | | | | 2003-06-22 Hans Petter Jansson <hpj@ximian.com> * gui/print.c (get_font_for_size): Remove debug output. * gui/tasks-control.c (print_tasks): Ref and sink the printable. Use fixed (5%) margins instead of what gnome-print gives us. svn path=/trunk/; revision=21518
* Save the idle_idDan Winship2003-06-242-1/+5
| | | | | | * message-list.c (on_selection_changed_cmd): Save the idle_id svn path=/trunk/; revision=21517
* fix string duplication and refcounting problems.Larry Ewing2003-06-242-5/+7
| | | | | | | | | | | | | | 2003-06-23 Larry Ewing <lewing@ximian.com> * gal-define-views-dialog.c (gdvd_button_new_dialog_callback): fix string duplication and refcounting problems. 2003-06-20 Larry Ewing <lewing@ximian.com> * gal-view-etable.c (config_changed): unref after g_object_get adds a ref. svn path=/trunk/; revision=21516
* Update Czech translationMiloslav Trmac2003-06-242-115/+125
| | | | svn path=/trunk/; revision=21515
* in the EUrlEntry case just reassign widget. it'll be handled by theChris Toshok2003-06-242-1/+8
| | | | | | | | | | 2003-06-18 Chris Toshok <toshok@ximian.com> * gui/contact-editor/e-contact-editor.c (fill_in_field): in the EUrlEntry case just reassign widget. it'll be handled by the GtkEditable code below. Fixes #43841. svn path=/trunk/; revision=21514
* make sure not to strcmp a possibly NULL string.Larry Ewing2003-06-242-1/+9
| | | | | | | | | 2003-06-23 Larry Ewing <lewing@ximian.com> * folder-browser.c (do_message_selected): make sure not to strcmp a possibly NULL string. svn path=/trunk/; revision=21513
* UpdatedFatih Demir2003-06-242-263/+200
| | | | svn path=/trunk/; revision=21512
* Updated Spanish translation by Francisco Javier F. SerradorPablo Gonzalo del Campo2003-06-242-66/+77
| | | | | | | | | 2003-06-23 Pablo Gonzalo del Campo <pablodc@bigfoot.com> * es.po: Updated Spanish translation by Francisco Javier F. Serrador <serrador@arrakis.es>. svn path=/trunk/; revision=21511
* Updated italian translation.Marco Ciampa2003-06-242-5/+8
| | | | svn path=/trunk/; revision=21510
* Add missing file.Ettore Perazzoli2003-06-231-0/+12
| | | | svn path=/trunk/; revision=21508
* Added implicity rule to subst @BASE_VERSION@Ettore Perazzoli2003-06-233-9/+23
| | | | | | | | | | | | | | in evolution.desktop.in.in to generate evolution.desktop.in. (desktop_in_file): Removed. (desktop_in_in_file): New. (kdedesktop_file): Update substitution to use $(desktop_in_in_file) instead of $(desktop_in_file). (noinst_DATA): Add $(desktop_file). (install-data-local): Depend on $(mime_file) and $(keys_file). (EXTRA_DIST): Remove $(desktop_file), replace $(desktop_in_file) with $(desktop_in_in_file). svn path=/trunk/; revision=21507
* (set_menu): Translate the text. [#45112]Ettore Perazzoli2003-06-232-1/+5
| | | | svn path=/trunk/; revision=21506
* update Copyright infoJakub Steiner2003-06-233-0/+4
| | | | | | | | | 2003-06-23 Jakub Steiner <jimmac@ximian.com> * splash.png: * about-box.png: update Copyright info svn path=/trunk/; revision=21505
* Updated the Greek translationKostas Papadimas2003-06-222-1192/+566
| | | | svn path=/trunk/; revision=21504
* Updated Serbian translation by Serbian team (Prevod.org).Danilo Å egan2003-06-223-5785/+5572
| | | | | | | | | 2003-06-22 Danilo Å egan <dsegan@gmx.net> * sr.po, sr@Latn.po: Updated Serbian translation by Serbian team (Prevod.org). svn path=/trunk/; revision=21503
* Dutch translation updated.Vincent van Adrighem2003-06-212-1/+5
| | | | | | | | 2003-06-21 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu> * nl.po: Dutch translation updated. svn path=/trunk/; revision=21502
* Dutch translation updated.Vincent van Adrighem2003-06-212-114/+124
| | | | | | | | 2003-06-21 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu> * nl.po: Dutch translation updated. svn path=/trunk/; revision=21501
* Updated Swedish translation.Christian Rose2003-06-212-12/+21
| | | | | | | | 2003-06-20 Christian Rose <menthos@menthos.com> * sv.po: Updated Swedish translation. svn path=/trunk/; revision=21500
* clean this up a little and make it deal with "evolution" vsDan Winship2003-06-202-18/+24
| | | | | | | * tools/killev.c (kill_component): clean this up a little and make it deal with "evolution" vs "evolution-1.4" svn path=/trunk/; revision=21499
* Don't leak parent_path, even on errorDan Winship2003-06-202-2/+7
| | | | | | | * e-folder-tree.c (e_folder_tree_add): Don't leak parent_path, even on error svn path=/trunk/; revision=21498
* don't leak an extra copy of the valuesDan Winship2003-06-202-0/+6
| | | | | | | * e-xml-hash-utils.c (e_xml_to_hash): don't leak an extra copy of the values svn path=/trunk/; revision=21497
* don't leak the CalBackendPrivate.Dan Winship2003-06-202-0/+7
| | | | | | | * pcs/cal-backend.c (cal_backend_finalize): don't leak the CalBackendPrivate. svn path=/trunk/; revision=21496
* Plug in the defaults from the schemas file here, so that even if somethingDan Winship2003-06-202-4/+14
| | | | | | | | | | | | * gui/calendar-config.c (calendar_config_get_hpane_pos) (calendar_config_get_vpane_pos) (calendar_config_get_month_hpane_pos) (calendar_config_get_month_vpane_pos): Plug in the defaults from the schemas file here, so that even if something goes wrong with the schemas, people will still get reasonable defaults instead of "I click on the calendar and it shows me tasks". svn path=/trunk/; revision=21495
* removed unused variable.Rodrigo Moya2003-06-202-1/+6
| | | | | | | | | 2003-06-16 Rodrigo Moya <rodrigo@ximian.com> * gui/dialogs/comp-editor.c (make_title_from_comp): removed unused variable. svn path=/trunk/; revision=21494
* Proofreading: 100%Andras Timar2003-06-202-92/+125
| | | | | | | | 2003-06-18 Andras Timar <timar@gnome.hu> * hu.po: Proofreading: 100% svn path=/trunk/; revision=21493
* Some more mail updatesMichael Zucci2003-06-201-1/+9
| | | | svn path=/trunk/; revision=21492
* ** See bug #31745Not Zed2003-06-201-6/+9
| | | | | | | | | | | | 2003-06-16 Not Zed <NotZed@Ximian.com> ** See bug #31745 * providers/imap/camel-imap-store-summary.c (camel_imap_store_summary_namespace_new): Workaround a shell bug - if the namespace has '#' in it, then strip it. svn path=/trunk/; revision=21491
* ** See bug #45063Not Zed2003-06-202-4/+16
| | | | | | | | | | | | 2003-06-19 Not Zed <NotZed@Ximian.com> ** See bug #45063 * folder-browser.c (do_message_selected): dont re-load if the same message gets selected again as one we've already shown. Etree sends out selection changed events even when when it hasn't. svn path=/trunk/; revision=21490
* if we got cancelled, the message is floating, so free it. (structNot Zed2003-06-202-61/+105
| | | | | | | | | | | | | | 2003-06-18 Not Zed <NotZed@Ximian.com> * camel-service.c (get_hostbyaddr, get_hostbyname): if we got cancelled, the message is floating, so free it. (struct _lookup_msg): Add a cancelled tag. (camel_gethostbyname, camel_gethostbyaddr): if we get a failure/cancel, cancel the lookup thread and detach, so we dont have to wait for it to return. cleanup changed to handle the case where we didn't get a reply message. svn path=/trunk/; revision=21489
* Updated Swedish translation.Christian Rose2003-06-202-432/+441
| | | | | | | | 2003-06-20 Christian Rose <menthos@menthos.com> * sv.po: Updated Swedish translation. svn path=/trunk/; revision=21488
* (do_summary_print): Do not destroy preview_widgetEttore Perazzoli2003-06-202-2/+6
| | | | | | | when returning from gtk_dialog_run() since it's unset at that point. [#44798] svn path=/trunk/; revision=21487
* Fixed typo in BIG5HKSCSSuresh Chandrasekharan2003-06-201-2/+2
| | | | | | | | 2003-06-18 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com> * e-iconv.c: Fixed typo in BIG5HKSCS svn path=/trunk/; revision=21486
* set iso-2022-cn string to SimplifiedJeffrey Stedfast2003-06-201-1/+1
| | | | svn path=/trunk/; revision=21485
* Fix for #45082: GB18030 BIG5HKSCS and EUC-TW charsets not supported inSuresh Chandrasekharan2003-06-202-29/+30
| | | | | | | | | | | | | | | | | | | | 2003-06-18 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com> * e-charset-picker.c: Fix for #45082: GB18030 BIG5HKSCS and EUC-TW charsets not supported in evolution mail 2003-06-17 Jeffrey Stedfast <fejj@ximian.com> * e-charset-picker.c (e_charset_picker_bonobo_ui_populate): Don't use the charset class in the menu label if it is 'Unknown'. (e_charset_picker_bonobo_ui_populate): For user-defined charsets, just use the name of the charset rather than "Unknown". (add_charset): Don't escape _'s anymore, this seems to not be needed int gtk2. (add_other_charset): g_strdup() the charset name. Fixes bug #43917. svn path=/trunk/; revision=21484
* Added "sr" and "sr@Latn" to ALL_LINGUAS.Danilo Å egan2003-06-205-1/+56096
| | | | | | | | | | | 2003-06-19 Danilo Å egan <dsegan@gmx.net> * configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS. * po/sr.po, po/sr@Latn.po: Added Serbian translation by Serbian team (Prevod.org). svn path=/trunk/; revision=21483
* updatedJeffrey Stedfast2003-06-201-0/+1
| | | | svn path=/trunk/; revision=21482
* free the return value. (impl_event): free the return value.Larry Ewing2003-06-202-0/+8
| | | | | | | | | 2003-06-19 Larry Ewing <lewing@ximian.com> * listener.c (insert_paragraph_after): free the return value. (impl_event): free the return value. svn path=/trunk/; revision=21481
* Translation: 100% reached, Proofreading: 37%Andras Timar2003-06-192-214/+237
| | | | | | | | 2003-06-18 Andras Timar <timar@gnome.hu> * hu.po: Translation: 100% reached, Proofreading: 37% svn path=/trunk/; revision=21480
* remove extra ref, the count starts at one.Larry Ewing2003-06-193-3/+3
| | | | | | | | | | | | | | | 2003-06-19 Larry Ewing <lewing@ximian.com> * e-table-specification.c (e_table_specification_load_from_node): remove extra ref, the count starts at one. * e-table-utils.c (e_table_spec_to_full_header): add_column adds a reference, so drop the intial reference. * e-table.c (et_real_construct):remove extra ref, count starts at one. svn path=/trunk/; revision=21479
* switch the "view_only" arg to be an int. (init): ditto.Jack Jia2003-06-195-9/+27
| | | | | | | | | | | | | | | | | | | | | | 2003-06-12 Jack Jia <jack.jia@sun.com> * gui/e-itip-control.c (struct _EItipControlPrivate): switch the "view_only" arg to be an int. (init): ditto. (e_itip_control_set_view_only): ditto. (e_itip_control_get_view_only): ditto. * gui/itip-bonobo-control.c (get_prop): switch BONOBO_ARG_SET_BOOLEAN to BONOBO_ARG_SET_INT. (set_prop): switch BONOBO_ARG_GET_BOOLEAN to BONOBO_ARG_GET_INT. (itip_bonobo_control_new): switch BONOBO_ARG_BOOLEAN to BONOBO_ARG_INT. Function "bonobo_property_bag_client_set_value_gboolean" can not work on solaris. svn path=/trunk/; revision=21478
* *** empty log message ***Wang Jian2003-06-192-386/+388
| | | | svn path=/trunk/; revision=21477
* Updated italian translation.Marco Ciampa2003-06-192-220/+223
| | | | svn path=/trunk/; revision=21476
* Updated Brazilian Portuguese translation done by Gustavo Maciel DiasGustavo Maciel Dias Vieira2003-06-192-383/+392
| | | | | | | | | 2003-06-19 Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br> * pt_BR.po: Updated Brazilian Portuguese translation done by Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>. svn path=/trunk/; revision=21475
* Updated italian translation.Marco Ciampa2003-06-192-25/+31
| | | | svn path=/trunk/; revision=21474
* Fixes #44682, Shift+F10 to active popup menu on day/week viewBolian Yin2003-06-193-16/+92
| | | | | | | | | | | | | | | | | | 2003-06-10 Bolian Yin <bolian.yin@sun.com> Fixes #44682, Shift+F10 to active popup menu on day/week view * gui/e-day-view.c (e_day_view_key_press, e_day_view_do_key_press): When the key press is not handled, give keybindings the chance. (e_day_view_popup_menu, e_day_view_show_popup_menu, e_day_view_on_event_right_click ): popup menu will be activated from both keyboard and mouse. * gui/e-week-view.c (e_week_view_key_press, e_week_view_do_key_press): When the key press is not handled, give keybindings the chance. (e_week_view_popup_menu): popup menu can be activated from keyboard svn path=/trunk/; revision=21473
* accept event arg to be NULL.Bolian Yin2003-06-191-8/+14
| | | | | | | | 2003-06-19 Bolian Yin <bolian.yin@sun.com> * e-gui-utils.c (e_popup_menu): accept event arg to be NULL. svn path=/trunk/; revision=21472
* Updated tr.poFatih Demir2003-06-192-72/+60
| | | | svn path=/trunk/; revision=21471
* Only save state if we have a folder reference. Fixes some warnings aboutJeffrey Stedfast2003-06-192-1/+10
| | | | | | | | | | 2003-06-18 Jeffrey Stedfast <fejj@ximian.com> * message-list.c (hide_save_state): Only save state if we have a folder reference. Fixes some warnings about casting a NULL object to a CamelFolder. svn path=/trunk/; revision=21470
* Use e_iconv_open/close so that we get charset aliasing for free. Fixes bugJeffrey Stedfast2003-06-192-3/+8
| | | | | | | | | 2003-06-17 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (best_encoding): Use e_iconv_open/close so that we get charset aliasing for free. Fixes bug #44991. svn path=/trunk/; revision=21469
* Made static (to match the prototype).Jeffrey Stedfast2003-06-192-2/+7
| | | | | | | | | 2003-06-13 Jeffrey Stedfast <fejj@ximian.com> * providers/pop3/camel-pop3-folder.c (pop3_finalize): Made static (to match the prototype). svn path=/trunk/; revision=21468
* Updated Spanish translation by Francisco Javier F. SerradorPablo Gonzalo del Campo2003-06-192-368/+377
| | | | | | | | | 2003-06-18 Pablo Gonzalo del Campo <pablodc@bigfoot.com> * es.po: Updated Spanish translation by Francisco Javier F. Serrador <serrador@arrakis.es>. svn path=/trunk/; revision=21467
* *** empty log message ***Rodrigo Moya2003-06-181-0/+4
| | | | svn path=/trunk/; revision=21466
* don't leak the summary when reloading it. Fixes a very large leak.Larry Ewing2003-06-182-1/+11
| | | | | | | | | | 2003-06-13 Larry Ewing <lewing@ximian.com> * camel-folder-thread.c (camel_folder_thread_messages_apply): don't leak the summary when reloading it. Fixes a very large leak. svn path=/trunk/; revision=21465
* Updated Hungarian translation.Andras Timar2003-06-182-383/+283
| | | | | | | | 2003-06-18 Andras Timar <timar@gnome.hu> * hu.po: Updated Hungarian translation. svn path=/trunk/; revision=21464
* added Macedonian translationIvan Stojmirov2003-06-181-0/+28229
| | | | svn path=/trunk/; revision=21463
* Calculate ranges to remove folder info's more efficiently. affectsNot Zed2003-06-183-8/+96
| | | | | | | | | | | | | | | 2003-06-17 Not Zed <NotZed@Ximian.com> * camel-vee-folder.c (vee_folder_remove_folder): Calculate ranges to remove folder info's more efficiently. affects shutdown performance on big vfolders signifinantly. (vee_folder_build_folder): do the same here, when rebuilding a folder's definition. * camel-folder-summary.c (camel_folder_summary_remove_index): new function to drop a range of index entries in one hit. svn path=/trunk/; revision=21462
* updatedJeffrey Stedfast2003-06-181-0/+1
| | | | svn path=/trunk/; revision=21461
* Fixes bug #44139.Jeffrey Stedfast2003-06-183-12/+19
| | | | | | | | | | | | | | | | 2003-06-16 Jeffrey Stedfast <fejj@ximian.com> Fixes bug #44139. * e-msg-composer-hdrs.c (attach_couple): Set the vertical and horizontal padding to 3 always. (create_from_optionmenu): Change the hbox spacing to 6 pixels. * e-msg-composer.c (create_composer): Set the border width around the composer's vbox to HIG specification and make the box_spacing 6 pixels as well. svn path=/trunk/; revision=21460
* Updated Spanish translation by Francisco Javier F. SerradorPablo Gonzalo del Campo2003-06-182-110/+112
| | | | | | | | | 2003-06-17 Pablo Gonzalo del Campo <pablodc@bigfoot.com> * es.po: Updated Spanish translation by Francisco Javier F. Serrador <serrador@arrakis.es>. svn path=/trunk/; revision=21459
* updatedJeffrey Stedfast2003-06-181-0/+1
| | | | svn path=/trunk/; revision=21458
* Don't display an unread icon for a parent message status if it has unreadJeffrey Stedfast2003-06-182-13/+9
| | | | | | | | | | | | 2003-06-16 Jeffrey Stedfast <fejj@ximian.com> * message-list.c (ml_tree_value_at): Don't display an unread icon for a parent message status if it has unread children but has been read itself. Instead, show that we have unread children by just making the message test bold (which it was already doing, so yay... this was easy). Fixes bug #42630. svn path=/trunk/; revision=21457
* Updated for current mail stuff.Not Zed2003-06-172-0/+44
| | | | | | | | 2003-06-17 Not Zed <NotZed@Ximian.com> * NEWS: Updated for current mail stuff. svn path=/trunk/; revision=21455
* ** See bug #44322Not Zed2003-06-173-7/+23
| | | | | | | | | | | | | | | | | 2003-06-16 Not Zed <NotZed@Ximian.com> ** See bug #44322 * providers/imap/camel-imap-command.c (imap_command_strdup_vprintf): If we are outputting a folder name, make sure we calculate buffer size based on the raw/utf7 version ** See bug #44121 * camel-multipart-signed.c (signed_get_part): If we can't parse the content, but we have a stream, just use that as the content. svn path=/trunk/; revision=21454
* ** See bug #44609Not Zed2003-06-175-8/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | 2003-06-16 Not Zed <NotZed@Ximian.com> ** See bug #44609 * mail-vfolder.c (vfolder_edit_rule): put the ok/cancel buttons in the stupid gnome 2 order. ** See bug #33593 * message-list.c (on_selection_changed_cmd): also listedn to selection changed events, since the etable api has changed. (get_selected_cb): helper for above. (message_list_construct): hook to selection change signal. * mail-callbacks.c (composer_send_queued_cb): Unref the composer to match the ref composer_send_cb(); ** See bug #44519 * message-browser.c (message_browser_message_list_built): We want to disconnect from the messagelist, not folderbrowser signal. svn path=/trunk/; revision=21452
* Add missing stub/skel to BUILD_SOURCES (bug 44717)Frédéric Crozat2003-06-176-2/+22
| | | | svn path=/trunk/; revision=21450
* Updated tr.po by GorkemFatih Demir2003-06-162-671/+521
| | | | svn path=/trunk/; revision=21449
* Updated Hungarian translation.Andras Timar2003-06-162-741/+584
| | | | | | | | 2003-06-16 Andras Timar <timar@gnome.hu> * hu.po: Updated Hungarian translation. svn path=/trunk/; revision=21448
* Dutch translation updated.Vincent van Adrighem2003-06-152-355/+353
| | | | | | | | 2003-06-15 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu> * nl.po: Dutch translation updated. svn path=/trunk/; revision=21447
* free word before breaking out of the loop.Larry Ewing2003-06-152-1/+8
| | | | | | | | | 2003-06-14 Larry Ewing <lewing@ximian.com> * e-name-western.c (e_name_western_get_suffix_at_str_end): free word before breaking out of the loop. svn path=/trunk/; revision=21446
* Update Czech translation, minor fixesMiloslav Trmac2003-06-152-363/+366
| | | | svn path=/trunk/; revision=21445
* Fix lots of leaks, update for correct use of g_object_get. Some cleanups.Larry Ewing2003-06-148-8/+64
| | | | | | | | | | | | | | | 2003-06-14 Larry Ewing <lewing@ximian.com> * gui/backend/ebook/e-card-simple.c: * gui/backend/ebook/e-card.c: * gui/backend/ebook/evolution-ldif-importer.c: * gui/backend/ebook/load-pine-addressbook.c: * gui/backend/ebook/test-card.c: * gui/backend/pas/pas-backend-card-sexp.c: * gui/backend/pas/pas-backend-ldap.c: Fix lots of leaks, update for correct use of g_object_get. Some cleanups. svn path=/trunk/; revision=21443
* Fix lots of leaks, update for correct use of g_object_get. Some miscLarry Ewing2003-06-1412-35/+106
| | | | | | | | | | | | | | | | | | | 2003-06-13 Larry Ewing <lewing@ximian.com> * gui/component/addressbook.c: * gui/component/e-cardlist-model.c: * gui/component/select-names/e-select-names-text-model.c: * gui/contact-editor/e-contact-editor.c: * gui/contact-editor/e-contact-save-as.c: * gui/contact-list-editor/e-contact-list-editor.c: * gui/widgets/e-addressbook-table-adapter.c: * gui/widgets/e-addressbook-util.c: * gui/widgets/e-addressbook-view.c: * gui/widgets/e-minicard-view.c: * gui/widgets/e-minicard.c: Fix lots of leaks, update for correct use of g_object_get. Some misc cleanups. svn path=/trunk/; revision=21442
* update for correct used of g_object_get.Larry Ewing2003-06-142-11/+25
| | | | | | | | | 2003-06-13 Larry Ewing <lewing@ximian.com> * printing/e-contact-print.c: update for correct used of g_object_get. svn path=/trunk/; revision=21441
* don't do the CURSOR_FIRST checks if cursor is NULL [43523]Mike Kestner2003-06-142-3/+3
| | | | | | | | | | | | | | 2003-06-13 Mike Kestner <mkestner@ximian.com> * e-tree.c (et_search_search): don't do the CURSOR_FIRST checks if cursor is NULL [43523] 2003-06-13 Mike Kestner <mkestner@ximian.com> * e-table-item.c (eti_get_cell_background_color): update to an alt row color more consistent with gtktreeview. [44610] svn path=/trunk/; revision=21440
* Remove evolution-launch-composer since it'sEttore Perazzoli2003-06-142-10/+6
| | | | | | no longer needed. svn path=/trunk/; revision=21439
* Fix for bug #40788.Jeffrey Stedfast2003-06-145-21/+56
| | | | | | | | | | | | | | | | | | | | | | 2003-06-05 Jeffrey Stedfast <fejj@ximian.com> Fix for bug #40788. * providers/pop3/camel-pop3-engine.c (camel_pop3_engine_new): Now takes a flags argument. Currently there is only 1 flag which can be used to disable Pop3 server extensions. (get_capabilities): Don't check for Pop3 server extensions if the DISABLE_EXTENSIONS flag is set on the engine. (camel_pop3_engine_iterate): If we get a response that is neither +OK nor -ERR, default to treating it like a -ERR. * providers/pop3/camel-pop3-store.c (connect_to_server): Check for the disable_extensions param. * providers/pop3/camel-pop3-provider.c: Define a checkbox to disable all POP3 extension support. svn path=/trunk/; revision=21438
* Revert to 1.4.0 version.Ettore Perazzoli2003-06-141-0/+1
| | | | svn path=/trunk/; revision=21437
* free the filename.Larry Ewing2003-06-143-4/+10
| | | | | | | | 2003-06-13 Larry Ewing <lewing@ximian.com> * e-summary.c (e_summary_url_requested): free the filename. svn path=/trunk/; revision=21436
* free current_url.Larry Ewing2003-06-142-1/+6
| | | | | | | | 2003-06-13 Larry Ewing <lewing@ximian.com> * filter-source.c (filter_source_finalize): free current_url. svn path=/trunk/; revision=21435
* free the result only if there isn't an exception.Larry Ewing2003-06-141-1/+1
| | | | | | | | | 2003-06-13 Larry Ewing <lewing@ximian.com> * listener.c (insert_paragraph_before): free the result only if there isn't an exception. svn path=/trunk/; revision=21434
* Ooops, remove files that were not supposed to be there.Ettore Perazzoli2003-06-131-2/+0
| | | | svn path=/trunk/; revision=21433
* missed the changelog entry last time.Larry Ewing2003-06-131-1/+2
| | | | svn path=/trunk/; revision=21432
* use GCONF_CLIENT_PRELOAD_RECURSIVE when adding watched directories toRodrigo Moya2003-06-132-1/+6
| | | | | | | | | 2003-06-12 Rodrigo Moya <rodrigo@ximian.com> * e-config-listener.c (add_key): use GCONF_CLIENT_PRELOAD_RECURSIVE when adding watched directories to avoid GConfd round-trips. svn path=/trunk/; revision=21431
* i2003-06-13 Larry Ewing <lewing@ximian.com>Larry Ewing2003-06-131-0/+5
| | | | | | * gal/widgets/e-canvas.c (e_canvas_dispose): unref the im_context. svn path=/trunk/; revision=21430
* Free the fail_states array.Jeffrey Stedfast2003-06-132-0/+5
| | | | | | | | 2003-06-12 Jeffrey Stedfast <fejj@ximian.com> * e-trie.c (e_trie_free): Free the fail_states array. svn path=/trunk/; revision=21429
* Put the ChangeLog.pre-1-4 in the Makefiles.Ettore Perazzoli2003-06-132-2/+6
| | | | svn path=/trunk/; revision=21427
* Put the ChangeLog.pre-1-4 in the Makefiles.Ettore Perazzoli2003-06-1322-12/+55
| | | | svn path=/trunk/; revision=21426
* fixes a typo in german translationSven Herzberg2003-06-131-3/+3
| | | | svn path=/trunk/; revision=21425
* guard against NULL strings don't add disabled column titles to the store.Mike Kestner2003-06-124-23/+9
| | | | | | | | | | | | | | 2003-06-12 Mike Kestner <mkestner@ximian.com> * e-cell-text.c (generate_layout): guard against NULL strings * e-table-config.c (create_global_store): don't add disabled column titles to the store. [44258] * e-tree-table-adapter.c (e_t_t_a_node_set_expanded): don't warn if we're trying to collapse a node that's not visible. * e-tree.c (et_connect_to_etta): don't connect to row_inserted and row_deleted. [43893] svn path=/trunk/; revision=21424
* Fixes #41582Rodrigo Moya2003-06-122-4/+24
| | | | | | | | | | | | | 2003-06-10 Rodrigo Moya <rodrigo@ximian.com> Fixes #41582 * gui/gnome-cal.c (gnome_calendar_hpane_resized): killed warnings and added code to resize the EDayView's time column on the hpane's resizing. (gnome_calendar_vpane_resized): killed warnings. svn path=/trunk/; revision=21421
* Partial fix for bug #44457.Jeffrey Stedfast2003-06-123-2/+17
| | | | | | | | | | | | | | | | | 2003-06-11 Jeffrey Stedfast <fejj@ximian.com> Partial fix for bug #44457. * camel-mime-part-utils.c (simple_data_wrapper_construct_from_parser): Make sure to set rawtext to FALSE if we successfully convert the text to UTF-8. * camel-data-wrapper.c (camel_data_wrapper_init): Default the value of rawtext to TRUE instead of FALSE. This way if the mailer decides to try displaying a non-textual part as text, it knows that it needs to convert the content to UTF-8. svn path=/trunk/; revision=21420
* We only really want to use mail_identify_mime_part() if the content-typeJeffrey Stedfast2003-06-122-5/+21
| | | | | | | | | | | | | | | | 2003-06-11 Jeffrey Stedfast <fejj@ximian.com> * mail-format.c (format_mime_part): We only really want to use mail_identify_mime_part() if the content-type is application/octet-stream - any other type (if it doesn't have a handler) should just force the user to save to disk. (handle_text_plain): Only pay attention to format=flowed if the mime-type is text/plain (handle_text_plain is the generic text handler, so we might be processing parts that are not really text/plain, thus the format param may have different meaning for those other textual types). svn path=/trunk/; revision=21419
* free the info structure as well.Larry Ewing2003-06-122-0/+6
| | | | | | | | | 2003-06-11 Larry Ewing <lewing@ximian.com> * mail-send-recv.c (free_folder_info): free the info structure as well. svn path=/trunk/; revision=21418
* take ownership of the duplicate string.Larry Ewing2003-06-122-1/+5
| | | | | | | | | 2003-06-11 Larry Ewing <lewing@ximian.com> * e-search-bar.c (impl_get_property): take ownership of the duplicate string. svn path=/trunk/; revision=21417
* some days you just wish you had that subatomic 100 megaton kill-o-zap bomb.Jeffrey Stedfast2003-06-125-54/+155
| | | | | | | | | | | | | | | | | | | | | | | | 2003-06-04 Jeffrey Stedfast <fejj@ximian.com> * camel-uid-cache.c (camel_uid_cache_new): Create the directory with mode 0777 and the cache file itself with mode 0666. Let the user's umask filter the permissions. Instead of saving the fd on the Cache object, instead save the filename. Use camel_read() instead of expecting read() to just always work without getting an EINTR/etc. (maybe_write_uid): Don't do anything if cache->fd == -1, this means an error has occured in a previous callback. Replace the 2 calls to write() with camel_write() and check their return values. If either of them fails, set cache->fd to -1 (GHashTable doesn't give us a way to abort foreach'ing thru the table). (camel_uid_cache_save): Save to a temp file instead of overwriting the original. Do proper error checking, etc. Also added some smarts about whether to try and overwrite the old cache even if we haven't successfully saved all the uids in the cache. (camel_uid_cache_destroy): Free the cache->filename, no longer need to close (cache->fd). svn path=/trunk/; revision=21416
* use g_utf8_strdown properly.Larry Ewing2003-06-122-2/+6
| | | | | | | | 2003-06-11 Larry Ewing <lewing@ximian.com> * camel-text-index.c (text_index_normalise): use g_utf8_strdown properly. svn path=/trunk/; revision=21415
* Use mail-config's gconf client. (target_date_new): Same.Jeffrey Stedfast2003-06-1216-84/+178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-06-06 Jeffrey Stedfast <fejj@ximian.com> * message-tag-followup.c (get_week_start_day): Use mail-config's gconf client. (target_date_new): Same. * message-list.c (message_list_set_folder): Use mail-config's gconf client. (mail_regen_list): Same. * mail-tools.c (mail_tool_quote_message): Use mail-config's gconf client. (mail_tool_forward_message): Same. * mail-session.c (main_get_filter_driver): Use mail-config's gconf client. * mail-preferences.c (mail_preferences_init): Use mail-config's gconf client. (mail_preferences_finalise): Don't unref the gconf client. * mail-format.c (write_headers): Use mail-config's gconf client. (mail_format_data_wrapper_write_to_stream): Same. (handle_text_plain): And here. * mail-display.c (save_data_cb): Use mail-config's gconf client. (save_part): Same. (on_url_requested): Here too. (mail_text_write): And here. (mail_display_init): And here. (mail_display_destroy): Here too. (mail_display_new): Again here. * mail-composer-prefs.c (sig_add_cb): Use mail-config's gconf client. (mail_composer_prefs_construct): Same. * mail-callbacks.c (ask_confirm_for_unwanted_html_mail): Use mail-config's gconf client. (ask_confirm_for_empty_subject): Same. (ask_confirm_for_only_bcc): Here too. (composer_get_message): And here. (create_msg_composer): Again here. (mail_generate_reply): Same. (forward): And here. (transfer_msg_done): " (delete_msg): " (confirm_expunge): " * component-factory.c (owner_unset_cb): Use mail-config's gconf client. * folder-browser-ui.c (folder_browser_ui_add_message): Use the mailer's gconf client. (folder_browser_ui_add_list): Same. (folder_browser_ui_add_global): Here too. * folder-browser.c (save_cursor_pos): Use the mailer's gconf client. (folder_browser_set_message_preview): Same. (folder_browser_toggle_preview): Here too. (folder_browser_toggle_threads): And here. (folder_browser_toggle_hide_deleted): Here as well. (folder_browser_set_message_display_style): And here. (fb_resize_cb): Here. (paned_realised): And here. (done_message_selected): And everywhere... * mail-account-gui.c (sig_add_new_signature): Use the mailer gconf client. * mail-config.c (mail_config_get_gconf_client): New function to return the global GConfClient used by the mailer. (mail_config_write_on_exit): On exit, free our objects and such. (mail_config_signature_run_script): Use config->gconf. 2003-06-04 Jeffrey Stedfast <fejj@ximian.com> * mail-callbacks.c (invert_selection): Get rid of the if-focused code, that will always prevent the etree from getting the selection inverted because the menu item will always have focus at this time. Fix for bug #43972. it takes more than good relations to some of the major spirits in this branch of the multiverse to write apps that don't leak gconf-client refs, good coding is important, too. that... or a 100-megaton-kill-o-zap bomb svn path=/trunk/; revision=21410
* Add the CAMEL_BESTENC_TEXT bit to enctype if the part is a text part.Jeffrey Stedfast2003-06-114-7/+26
| | | | | | | | | | | | | | 2003-06-09 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-message.c (find_best_encoding): Add the CAMEL_BESTENC_TEXT bit to enctype if the part is a text part. * camel-mime-filter-bestenc.c (camel_mime_filter_bestenc_get_best_encoding): If we have any nul-bytes or if the content is non-text and contains any 8bit octets, we need to use base64. Fixes bug #44344. svn path=/trunk/; revision=21409
* stat the user file before parsing.Mike Kestner2003-06-112-1/+8
| | | | | | | | 2003-06-11 Mike Kestner <mkestner@ximian.com> * rule-context.c (load): stat the user file before parsing. svn path=/trunk/; revision=21408
* ** See bug #22542Not Zed2003-06-116-37/+86
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-06-11 Not Zed <NotZed@Ximian.com> ** See bug #22542 * component-factory.c (storage_create_folder): If we're creating a folder on a vstore, popup a vFolder editor rather than failing. 2003-06-05 Not Zed <NotZed@Ximian.com> ** Part of #42691. * importers/Makefile.am (BUILT_SOURCES): added server_DATA. * Makefile.am (%.server.in): create a proper implicit rule for temporary .in file. 2003-06-04 Not Zed <NotZed@Ximian.com> ** See bug #43974 * mail-tools.c (mail_tool_do_movemail): use a proper CamelURL to decode the uri, not hacky strcmp stuff. * mail-account-gui.c (extract_values): if we have an conf_entry, ignore username, hostname, and path ones, as these are handled implicitly in the url itself. Came about because of the fix for #42838. svn path=/trunk/; revision=21407
* ** For #42691.Not Zed2003-06-113-4/+16
| | | | | | | | | | | | | | | | 2003-06-05 Not Zed <NotZed@Ximian.com> ** For #42691. * Makefile.am (%.server.in): use implicit rule. (BUILT_SOURCES): added server_DATA. 2003-05-22 Not Zed <NotZed@Ximian.com> * e-config-upgrade.c (CONF_MAJOR, CONF_MINOR, CONF_REVISION): Set to 1.4.0 for release. svn path=/trunk/; revision=21406
* ** For #42691.Not Zed2003-06-112-2/+9
| | | | | | | | | | | 2003-06-05 Not Zed <NotZed@Ximian.com> ** For #42691. * Makefile.am (%.server.in): use implicit rule. (BUILT_SOURCES): added server_DATA svn path=/trunk/; revision=21405
* ** For #42691.Not Zed2003-06-113-4/+15
| | | | | | | | | | | | | | | 2003-06-05 Not Zed <NotZed@Ximian.com> ** For #42691. * gui/Makefile.am (%.server.in): implicit rule for .in file. (BUILT_SOURCES): added server_DATA. * gui/alarm-notify/Makefile.am (%.server.in): added implicit rule for .in file. (BUILT_SOURCES): added server_DATA. svn path=/trunk/; revision=21403
* ** For #42691.Not Zed2003-06-114-7/+27
| | | | | | | | | | | | | | | | | | | 2003-06-05 Not Zed <NotZed@Ximian.com> ** For #42691. * gui/component/select-names/Makefile.am (%.server.in): implicit rule for .in file. (BUILT_SOURCES): added server_DATA. * gui/component/Makefile.am (%.server.in): use implicit rule for .in file. (BUILT_SOURCES): added, just server_DATA. (CLEANFILES): added * backend/ebook/Makefile.am (BUILT_SOURCES): add server_DATA. svn path=/trunk/; revision=21400
* don't leak nr.name.Larry Ewing2003-06-112-0/+5
| | | | | | | | 2003-06-10 Larry Ewing <lewing@ximian.com> * e-corba-storage-registry.c (listener_notify): don't leak nr.name. svn path=/trunk/; revision=21399
* free the structure as well.Larry Ewing2003-06-112-0/+6
| | | | | | | | | 2003-06-10 Larry Ewing <lewing@ximian.com> * e-msg-composer-hdrs.c (e_msg_composer_hdrs_and_string_free): free the structure as well. svn path=/trunk/; revision=21396
* Updated Brazilian Portuguese translation done by Gustavo Maciel DiasGustavo Maciel Dias Vieira2003-06-112-148/+70
| | | | | | | | | 2003-06-10 Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br> * pt_BR.po: Updated Brazilian Portuguese translation done by Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>. svn path=/trunk/; revision=21395
* Stat the file to make sure it exists before trying to parse it usingJeffrey Stedfast2003-06-112-5/+9
| | | | | | | | | 2003-05-30 Jeffrey Stedfast <fejj@ximian.com> * e-meta.c (meta_load): Stat the file to make sure it exists before trying to parse it using xmlParseFile(). svn path=/trunk/; revision=21394
* free the return values.Larry Ewing2003-06-112-0/+6
| | | | | | | | 2003-06-09 Larry Ewing <lewing@ximian.com> * listener.c (insert_paragraph_before): free the return values. svn path=/trunk/; revision=21393
* Same as the rest. (setup_ui): We didn't even seem to be using the gconfJeffrey Stedfast2003-06-104-7/+37
| | | | | | | | | | | | | | | | | | | | | | | | | 2003-05-21 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (composer_get_default_charset_setting): Same as the rest. (setup_ui): We didn't even seem to be using the gconf client here. Removed. (e_msg_composer_load_config): Unref the gconf client after we're finished. (e_msg_composer_new): Same. (e_msg_composer_new_post): Here too. (e_msg_composer_set_view_from): And here. (e_msg_composer_set_view_replyto): And here. (e_msg_composer_set_view_cc): Here too. (e_msg_composer_set_view_bcc): Again here. * e-msg-composer-hdrs.c (create_from_optionmenu): Same as below. (e_msg_composer_hdrs_set_from_account): Here too. * e-msg-composer-attachment-bar.c (get_default_charset): Unref the gconf client. svn path=/trunk/; revision=21391
* Fixes some leaks from bug #43883.Jeffrey Stedfast2003-06-104-6/+28
| | | | | | | | | | | | | | | | | | | | 2003-06-06 Jeffrey Stedfast <fejj@ximian.com> Fixes some leaks from bug #43883. * filter-file.c (xml_decode): Free file->path and set it to NULL before entering the loop to decode it. This way if the value is already set we don't leak it. Set file->path = g_strdup (str ? str : ""); and then xmlFree the str. 2003-05-21 Jeffrey Stedfast <fejj@ximian.com> * filter-source.c (filter_source_get_sources): Same as below. * filter-label.c (xml_create): Unref the gconf client when we're finished with it. svn path=/trunk/; revision=21390
* (e_summary_mail_get_info): Protect againstEttore Perazzoli2003-06-103-2570/+2578
| | | | | | | | folder_store being NULL. [#44111] Also, roll over ChangeLog. svn path=/trunk/; revision=21389
* Roll over ChangeLogs.Ettore Perazzoli2003-06-1046-133617/+133614
| | | | svn path=/trunk/; revision=21387
* Updated Spanish translation from Francisco Javier FernandezPablo Gonzalo del Campo2003-06-092-134/+99
| | | | | | | | | 2003-06-09 Pablo Gonzalo del Campo <pablodc@bigfoot.com> * es.po: Updated Spanish translation from Francisco Javier Fernandez <serrador@arrakis.es>. svn path=/trunk/; revision=21386
* Just a space missing.Marco Ciampa2003-06-091-7/+7
| | | | svn path=/trunk/; revision=21385
* adapted to changes in EComponentListener API. (query_construct): ditto.Rodrigo Moya2003-06-043-4/+12
| | | | | | | | | | | | 2003-06-04 Rodrigo Moya <rodrigo@ximian.com> * pcs/query.c (start_cached_query_cb): adapted to changes in EComponentListener API. (query_construct): ditto. * cal-client/cal-client.c (cal_opened_cb): ditto. svn path=/trunk/; revision=21384
* adapted to changes in EComponentListener API.Rodrigo Moya2003-06-042-1/+6
| | | | | | | | | 2003-06-04 Rodrigo Moya <rodrigo@ximian.com> * backend/ebook/ebook.c (e_book_do_response_open): adapted to changes in EComponentListener API. svn path=/trunk/; revision=21383