Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove EMailShellSettings. | Matthew Barnes | 2013-03-17 | 1 | -3/+4 |
| | | | | | | | | EShellSettings predates GSettings and is no longer necessary. GSettings allows binding GObject properties to GSettings keys, with optional mapping functions. That fulfills the purpose of EShellSettings. | ||||
* | EHTTPRequest: Use e_mail_ui_session_check_known_address_sync(). | Matthew Barnes | 2013-02-27 | 1 | -6/+25 |
| | | | | | Use e_mail_ui_session_check_known_address_sync() to help determine whether to automatically display images in a text/html MIME part. | ||||
* | Make EMailPartList thread-safe. | Matthew Barnes | 2012-12-08 | 1 | -2/+4 |
| | | | | | | Exposing data members in the public struct is unwise, especially when EMailPartList is used from multiple threads. Instead keep the members private and provide a set of thread-safe functions to manipulate them. | ||||
* | Relative URI can crash Evolution in http_request_send_async() | Milan Crha | 2012-11-13 | 1 | -2/+6 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2012-11-11 | 1 | -9/+9 |
| | |||||
* | Replace deprecated soup_message_headers_get() with ↵ | Milan Crha | 2012-11-06 | 1 | -1/+1 |
| | | | | soup_message_headers_get_list() | ||||
* | Bug #682295 - Fix deadlock in EHttpRequest | Dan Vrátil | 2012-09-14 | 1 | -77/+89 |
| | | | | | | | | | | Fix deadlock in EHttpRequest by running each libsoup operation in it's own GMainContext. The patch also replaces use of features from libsoup>=2.39, because we can't change dependency. The code is based on code from CalDAV, which uses synchronous libsoup API as well and works with libsoup<2.39 | ||||
* | Bug #683866 - Leaks of EMailFormatter object | Milan Crha | 2012-09-13 | 1 | -7/+4 |
| | |||||
* | Fix all 'may be used uninitialized' compiler warnings | Dan Vrátil | 2012-08-20 | 1 | -0/+1 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2012-08-20 | 1 | -20/+23 |
| | |||||
* | Bug #680702 - Freeze/crash when loading remote images | Dan Vrátil | 2012-08-18 | 1 | -183/+106 |
| | | | | | | | | Simplify the EHttpRequest by using synchronous libsoup API instead of spawning another async operation within already asynchronous handler. This avoids nested event loop, complex locking and makes to code much simpler. | ||||
* | Bug #681783 - Critical warning and freeze with libsoup-2.39 and webkitgtk-1.9.2 | Dan Vrátil | 2012-08-17 | 1 | -0/+1 |
| | |||||
* | Preset timeout on SoupSession-s to 90 seconds | Milan Crha | 2012-07-11 | 1 | -1/+3 |
| | |||||
* | Adapt to CamelDataCache API change. | Matthew Barnes | 2012-06-19 | 1 | -1/+1 |
| | | | | camel_data_cache_get_filename() dropped its unused GError parameter. | ||||
* | Bug #678293 - Already downloaded images are not shown | Dan Vrátil | 2012-06-19 | 1 | -2/+10 |
| | |||||
* | Bug #431497 - Offline mode should disable loading of images from the internet | Dan Vrátil | 2012-06-18 | 1 | -0/+8 |
| | |||||
* | Bug #677608 - Fails to open message which is not yet downloaded | Dan Vrátil | 2012-06-18 | 1 | -15/+9 |
| | |||||
* | Make em_utils_in_addressbook() cancellable | Dan Vrátil | 2012-06-14 | 1 | -1/+1 |
| | |||||
* | Mail formatter rewrite | Dan Vrátil | 2012-06-06 | 1 | -12/+55 |
| | | | | | | | | 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. | ||||
* | Adapt to single-include E-D-S libraries. | Matthew Barnes | 2012-06-04 | 1 | -1/+0 |
| | |||||
* | Don't unref GAsyncResult in "finish" functions. | Matthew Barnes | 2012-05-14 | 1 | -1/+0 |
| | |||||
* | Fix some GSimpleAsyncResult reference leaks. | Matthew Barnes | 2012-05-13 | 1 | -0/+2 |
| | |||||
* | Use g_simple_async_result_set_check_cancellable(). | Matthew Barnes | 2012-05-13 | 1 | -5/+10 |
| | | | | Always call it immediately after g_simple_async_result_new(). | ||||
* | Whitespace cleanups. | Matthew Barnes | 2012-05-13 | 1 | -5/+4 |
| | |||||
* | Bug #674340 - Evolution hangs on startup | Dan Vrátil | 2012-04-26 | 1 | -2/+29 |
| | |||||
* | Bug #674272 - Contacts preview differs with mailer running and not | Dan Vrátil | 2012-04-23 | 1 | -0/+515 |
This splits the giant EMailRequest to individual EFileRequest, EStockRequest, EHTTPRequest and EMailRequest, making the first two available globally from e-utils, the othe two are loaded only with mailer, since no other component uses them. |