aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/e-cal-attachment-handler.c
Commit message (Collapse)AuthorAgeFilesLines
* Make EAttachment a little more thread-safe.Matthew Barnes2013-05-241-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | EAttachment is now used from worker threads by EMailFormatterAttachment, so add some thread-safe accessor functions to eliminate potential races. Added thread-safe functions: e_attachment_dup_disposition() e_attachment_ref_file() e_attachment_ref_file_info() e_attachment_ref_icon() e_attachment_ref_mime_part() e_attachment_dup_description() e_attachment_dup_thumbnail_path() Renamed functions: e_attachment_get_mime_type() -> e_attachment_dup_mime_type() Removed non-thread-safe functions: e_attachment_get_file() e_attachment_get_file_info() e_attachment_get_icon() e_attachment_get_mime_part() e_attachment_get_description() e_attachment_get_thumbnail_path()
* Attachment-related cleanups.Matthew Barnes2013-05-241-1/+1
|
* Fix up error handling around e_book/cal_client_connect_finish().Matthew Barnes2013-01-311-10/+2
|
* Use e_cal_client_connect().Matthew Barnes2013-01-301-16/+20
| | | | Instead of e_client_utils_open_new() or e_cal_client_new().
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-131-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start.
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-041-4/+2
|
* Adapt modules/calendar to the new ESource API.Matthew Barnes2012-06-031-20/+24
|
* Reduce diff noise with 'account-mgmt' branch.Matthew Barnes2012-06-031-2/+4
| | | | One last time.
* Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-221-5/+9
|
* Bug #600860 - Opening IMAP message with large attachment blocks UIMilan Crha2012-04-131-0/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-3/+5
|
* Coding style and whitespace cleanup.Matthew Barnes2011-08-131-15/+41
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-141-42/+57
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-0/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2011-03-061-1/+3
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-251-5/+1
|
* Bug #608804 - Some attachments make evolution crash in libicalMilan Crha2011-02-221-1/+13
|
* Drop backward-compatibility cruft.Matthew Barnes2011-01-251-3/+0
|
* Utilize the new ESourceSelector:primary-selection property.Matthew Barnes2010-11-021-1/+1
|
* Adapt to Camel API changes.Matthew Barnes2010-09-281-1/+1
|
* Re-work my GtkDialog:has-separator workaround.Matthew Barnes2010-09-111-2/+2
| | | | | | | If we're using GTK+ 2.21.8 (where gtk_dialog_set_has_separator() is deprecated but the property is still present and defaults to TRUE), we still need to set the property to FALSE. So instead use g_object_set() up through GTK+ 2.90.6, after which the property itself is gone.
* Work around deprecation of gtk_dialog_set_has_separator()Matthew Barnes2010-09-111-0/+2
| | | | | | Unfortunately the default value for this property is TRUE (bzzt, WRONG!) so we can't just remove the function outright until we require GTK+ 2.22. It was deprecated in GTK+ 2.21.8.
* Bug #623204 - Be able to report detailed errors from backendsMilan Crha2010-07-091-5/+5
|
* Migrate from CamelException to GError.Matthew Barnes2010-07-091-1/+1
|
* Camel is now GObject-based.Matthew Barnes2010-04-241-1/+1
|
* Adapt to Camel API changes.Matthew Barnes2010-04-041-1/+1
|
* Only #include Camel's top-level header.Matthew Barnes2010-04-031-1/+1
|
* Make authentication functionality availableGustavo Noronha Silva2010-01-271-1/+1
| | | | | | | This involves renaming the calendar auth-related functions to have a prefix, and shipping the headers. Part of https://bugzilla.gnome.org/show_bug.cgi?id=608175
* BugĀ 606250 - Remove usage of deprecated GTK+ symbolsMatthew Barnes2010-01-081-2/+2
| | | | Several GtkWidget macros were recently deprecated.
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-301-0/+512
- Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.