aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/em-format.c
Commit message (Collapse)AuthorAgeFilesLines
* Mail formatter rewriteDan Vrátil2012-06-061-2676/+0
| | | | | | | | All mail-parsing and formatting code has been moved to em-format. Parsing is handeled by EMailParser class, formatting by EMailFormatter. Both classes have registry which hold extensions - simple classes that do actual parsing and formatting. Each supported mime-type has it's own parser and formatter extension class.
* Fix some GSimpleAsyncResult reference leaks.Matthew Barnes2012-05-131-0/+2
|
* Use g_simple_async_result_set_check_cancellable().Matthew Barnes2012-05-131-5/+10
| | | | Always call it immediately after g_simple_async_result_new().
* Bug #669111 - Lost charset in replies to encrypted mailsMilan Crha2012-05-041-1/+7
|
* EMFormat: Cleanups.Matthew Barnes2012-04-291-39/+39
|
* Bug #674249 - Crash when showing message with large text/plainDan Vrátil2012-04-191-33/+5
|
* Bug #673430 - Can't read messages in virtual Junk/Trash foldersDan Vrátil2012-04-031-3/+9
|
* Whitespace cleanup.Matthew Barnes2012-04-021-15/+15
| | | | | Replace 8-space indentation with tab characters, and various other automated cleanups.
* EMFormat: Add "session" as a constructor property.Matthew Barnes2012-04-011-91/+139
| | | | Pass it in instead of digging it out of EShellSettings.
* WebKit port - port formatter and mail moduleDan Vrátil2012-03-291-1850/+1990
|
* Fix typosPiotr Drąg2012-03-281-5/+5
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-15/+23
|
* Adapt to Camel API changes.Matthew Barnes2012-01-301-1/+1
|
* Fix compiler warnings.Matthew Barnes2011-11-231-2/+0
|
* Migrate em-format* to GSettingsRodrigo Moya2011-10-191-6/+5
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-141-19/+27
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-141-1/+3
|
* Prefer g_seekable_seek() over camel_stream_reset().Matthew Barnes2011-09-141-1/+2
| | | | | | | | | When a stream is obviously a file or memory stream (both of which implement the GSeekable interface), use g_seekable_seek() instead of camel_stream_reset(). This is helping me discover if it's safe to remove camel_stream_reset(). We want to eventually move to GIO streams, which have no reset method.
* Bug #637402 - No quoted mail when replying to html emailMilan Crha2011-06-301-27/+60
|
* Coding style and whitespace cleanups.Matthew Barnes2011-06-301-9/+16
|
* Coding style and whitespace cleanup.Matthew Barnes2011-06-301-1/+2
|
* Coding style cleanups.Matthew Barnes2011-06-301-32/+32
|
* Whitespace and coding style cleanups.Matthew Barnes2011-06-301-10/+25
|
* Fix a memory leakMilan Crha2011-06-301-0/+1
|
* Use message subject for attachment description if no filename providedMilan Crha2011-06-301-0/+7
|
* Coding style and whitespace cleanup.Matthew Barnes2011-06-301-1/+2
|
* Do not leak attachments in a mail viewMilan Crha2011-06-301-0/+10
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-06-301-5/+1
|
* Bug 641756 - Fix warnings from GCC 4.6Kjartan Maraas2011-06-301-4/+1
| | | | GCC learned how to find dead assignments.
* Coding style and whitespace cleanup.Matthew Barnes2011-06-301-6/+18
|
* Adapt to Camel API changes.Matthew Barnes2011-06-301-2/+1
|
* Bug #630518 - Hides calendar parts from multipart/alternativeMilan Crha2010-10-181-0/+2
|
* Bug #630375 - Character encoding of GPG encrypted message not honoredMilan Crha2010-10-131-0/+19
|
* Adapt to Camel API changes.Matthew Barnes2010-09-281-51/+66
|
* Pass GCancellable to Camel.Matthew Barnes2010-09-281-50/+115
|
* Coding style cleanups.Matthew Barnes2010-09-131-164/+164
|
* Bug #629046 - Empty reply quotation for HTML messagesMilan Crha2010-09-091-2/+3
|
* Various memory leaksMilan Crha2010-09-081-3/+0
|
* Bug 628660 - em_format_part_as() memory leakMatthew Barnes2010-09-031-0/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-4/+11
|
* Bug 628154 - Ignore paths in MIME part filenamesMatthew Barnes2010-08-281-6/+13
|
* Bug 627852 - Memory leak in em_format_push_level()Matthew Barnes2010-08-271-21/+33
|
* Bug 627598 - Memory leak in emf_format_clone()David Woodhouse2010-08-241-0/+1
|
* Whitespace and coding style cleanup.Matthew Barnes2010-08-141-25/+52
|
* More EMFormat cleanups.Matthew Barnes2010-08-111-9/+11
|
* Change em_format_redraw() to em_format_queue_redraw().Matthew Barnes2010-08-111-7/+39
| | | | | | This changes the behavior of the function: instead of redrawing immediately it schedules the redraw from an idle callback. This allows us to make multiple changes to EMFormat before redrawing.
* EMFormat cleanups.Matthew Barnes2010-08-101-180/+235
|
* Bug 626453 - Show attachments inline when printingMatthew Barnes2010-08-101-18/+42
|
* em-format: Guard entry point to em_format_set_mode with g_return_if_failRob Bradford2010-08-021-0/+2
|
* Fix two memory leaks when replyingDavid Woodhouse2010-07-151-0/+3
| | | | | | | | | | | | 1: em_utils_reply_to_message() can be passed a newly-created message (from a current selection. It needs to unref it. Which means that when we pass it a message which *isn't* newly-created, we have to obtain a ref of our own. It was that or add a boolean parameter to tell it whether to unref or not. 2: emf_finalize() wasn't unreferencing emf->message -- so when we clone the EMFormat in em_utils_message_to_html() and immediately unreference the clone, a refcount on the message got leaked. Fix emf_finalize() to unref emf->message as presumably it should.
* Bug 623947 - Error handling issues in em-format.cMatthew Barnes2010-07-101-4/+10
|
* Migrate from CamelException to GError.Matthew Barnes2010-07-091-53/+72
|
* Camel is now GObject-based.Matthew Barnes2010-04-241-39/+39
|
* Adapt to Camel API changes.Matthew Barnes2010-04-131-8/+17
|
* Adapt to Camel API changes.Matthew Barnes2010-04-041-26/+32
|
* Only #include Camel's top-level header.Matthew Barnes2010-04-031-17/+0
|
* Bug #613261 - application/mbox not shown properlyMilan Crha2010-04-011-1/+1
|
* Stop relying on CamelObject meta-data.Matthew Barnes2010-04-011-19/+52
|
* Remove dead assignments found by clang.Matthew Barnes2010-01-161-3/+2
|
* Replace alloca() with g_alloca().Matthew Barnes2009-12-281-1/+1
|
* Bug #601229 - Crashes when replying a mail.Chenthill Palanisamy2009-11-091-1/+1
|
* Prefer G_N_ELEMENTS over sizeof calculations.Matthew Barnes2009-10-271-2/+2
|
* Prefer GQueue (or GNode) over EDList.Matthew Barnes2009-10-271-94/+111
|
* Bug #585715 - Skip empty parts in multipart/alternative formattingMilan Crha2009-10-241-1/+1
|
* Bug #468736 - Prevent recursion in em-formatMilan Crha2009-10-161-1/+8
|
* Bug #314333 - Decrypt body in reply to an inline-PGP encrypted mailMilan Crha2009-10-151-3/+37
|
* Fix excessive whitespace.Matthew Barnes2009-07-141-1/+0
|
* Merge branch 'master' into kill-bonoboMatthew Barnes2009-07-011-0/+68
|
* Bug #540269 - Do not crash in em_format_is_attachmentMilan Crha2009-06-021-0/+3
| | | | Check if part contains data wrapper before accessing its members.
* More code cleanup.Matthew Barnes2009-06-021-4/+4
|
* Whitespace cleanup.Matthew Barnes2009-05-291-2/+2
|
* Prefer GLib basic types over C types.Matthew Barnes2009-05-271-55/+55
|
* Merge branch 'master' into kill-bonoboMatthew Barnes2009-05-271-19/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: a11y/widgets/ea-combo-button.c a11y/widgets/ea-combo-button.h addressbook/gui/component/addressbook-component.c addressbook/gui/component/addressbook-component.h addressbook/gui/component/addressbook-view.c addressbook/gui/component/addressbook-view.h addressbook/gui/component/component-factory.c addressbook/gui/widgets/e-addressbook-view.c addressbook/gui/widgets/eab-contact-display.c addressbook/gui/widgets/eab-gui-util.h addressbook/gui/widgets/eab-menu.c addressbook/gui/widgets/eab-menu.h addressbook/gui/widgets/eab-popup-control.c addressbook/gui/widgets/eab-popup-control.h addressbook/gui/widgets/eab-popup.c addressbook/gui/widgets/eab-popup.h calendar/gui/cal-search-bar.c calendar/gui/calendar-commands.c calendar/gui/calendar-component.c calendar/gui/comp-editor-factory.c calendar/gui/comp-editor-factory.h calendar/gui/control-factory.c calendar/gui/dialogs/comp-editor.c calendar/gui/e-cal-component-memo-preview.c calendar/gui/e-cal-component-memo-preview.h calendar/gui/e-calendar-table.c calendar/gui/e-memo-table.c calendar/gui/e-memos.c calendar/gui/e-tasks.c calendar/gui/gnome-cal.c calendar/gui/gnome-cal.h calendar/gui/itip-bonobo-control.c calendar/gui/itip-bonobo-control.h calendar/gui/main.c calendar/gui/memos-component.c calendar/gui/memos-control.c calendar/gui/memos-control.h calendar/gui/migration.c calendar/gui/migration.h calendar/gui/tasks-component.c calendar/gui/tasks-control.c calendar/importers/main.c composer/Makefile.am composer/e-composer-header-table.c composer/e-composer-header.c composer/e-composer-header.h composer/e-composer-name-header.c composer/e-composer-private.c composer/e-composer-text-header.c composer/e-msg-composer.c composer/e-msg-composer.h e-util/e-corba-utils.h e-util/e-logger.c e-util/e-logger.h e-util/e-util-labels.c e-util/e-util-labels.h em-format/em-format.c mail/Makefile.am mail/e-mail-shell-migrate.c mail/em-account-editor.c mail/em-account-editor.h mail/em-composer-prefs.c mail/em-composer-utils.c mail/em-composer-utils.h mail/em-folder-browser.c mail/em-folder-tree-model.c mail/em-folder-tree.c mail/em-folder-tree.h mail/em-folder-utils.c mail/em-folder-utils.h mail/em-folder-view.c mail/em-format-html-display.c mail/em-format-html.c mail/em-mailer-prefs.c mail/em-mailer-prefs.h mail/em-message-browser.c mail/em-message-browser.h mail/em-network-prefs.h mail/em-popup.c mail/em-utils.c mail/importers/Makefile.am mail/mail-component-factory.c mail/mail-component.c mail/mail-config-factory.c mail/mail-config-factory.h mail/mail-config.c mail/mail-dialogs.glade mail/mail-types.h plugins/calendar-weather/calendar-weather.c plugins/mail-account-disable/mail-account-disable.c plugins/select-one-source/select-one-source.c po/POTFILES.in shell/e-component-registry.c shell/e-component-registry.h shell/e-component-view.c shell/e-component-view.h shell/e-corba-config-page.c shell/e-corba-config-page.h shell/e-shell-constants.h shell/e-shell-settings-dialog.c shell/e-shell-settings-dialog.h shell/e-shell-window-commands.c shell/e-shell-window.c shell/e-shell.h shell/e-sidebar.c shell/e-sidebar.h shell/e-user-creatable-items-handler.c shell/e-user-creatable-items-handler.h shell/es-menu.c shell/es-menu.h shell/evolution-component.h shell/evolution-config-control.c shell/evolution-config-control.h shell/evolution-listener.c shell/evolution-listener.h shell/evolution-shell-component-utils.c shell/evolution-shell-component-utils.h shell/importer/evolution-importer-client.c shell/importer/evolution-importer-client.h shell/importer/evolution-importer-listener.c shell/importer/evolution-importer-listener.h shell/importer/evolution-importer.c shell/importer/evolution-importer.h shell/importer/evolution-intelligent-importer.c shell/importer/evolution-intelligent-importer.h shell/importer/intelligent.c shell/main.c shell/test/evolution-test-component.c shell/test/evolution-test-component.h widgets/menus/gal-view-instance.c widgets/menus/gal-view-menus.c widgets/menus/gal-view-menus.h widgets/misc/Makefile.am widgets/misc/e-activity-handler.c widgets/misc/e-activity-handler.h widgets/misc/e-charset-picker.c widgets/misc/e-combo-button.c widgets/misc/e-combo-button.h widgets/misc/e-config-page.h widgets/misc/e-dropdown-button.c widgets/misc/e-dropdown-button.h widgets/misc/e-filter-bar.c widgets/misc/e-info-label.c widgets/misc/e-info-label.h widgets/misc/e-multi-config-dialog.c widgets/misc/e-multi-config-dialog.h widgets/misc/e-search-bar.c widgets/misc/e-search-bar.h widgets/misc/e-task-bar.c widgets/misc/e-task-bar.h widgets/misc/e-task-widget.c widgets/misc/e-task-widget.h widgets/misc/test-dropdown-button.c widgets/misc/test-error.c widgets/misc/test-info-label.c widgets/table/e-table-example-1.c
* Fix several types of pedantic compiler warnings.Matthew Barnes2009-05-211-2/+2
|
* Use -no-undefined on Linux tooMilan Crha2009-05-201-0/+1945
There still left two things opened, search for KILL-BONOBO to find them. One is in calendar's Makefile.am, one in composer.