aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/e-task-shell-backend.c
Commit message (Collapse)AuthorAgeFilesLines
* Port ETaskShellBackend to GSettingsRodrigo Moya2011-09-211-15/+25
|
* Bug #659125 - Reference counting issues in calendarMilan Crha2011-09-211-0/+3
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-141-24/+53
|
* Add a bit more error checking and do not leak icalcomponent-sMilan Crha2011-09-141-3/+7
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-301-47/+49
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-06-301-0/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2011-06-301-1/+3
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-06-301-7/+2
|
* Remove NULL checks for GObject methods.Matthew Barnes2011-06-301-2/+2
| | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
* Free/busy meeting view doesn't work due to non-working extensionMilan Crha2011-06-301-0/+3
|
* Move calendar preferences to the calendar module.Matthew Barnes2010-11-101-9/+50
| | | | | Continue replacing the use of calendar-config functions with GObject property bindings to EShellSettings properties.
* Add e_load_cal_source_async().Matthew Barnes2010-08-241-48/+51
| | | | | | | | | | | | | | | | | Similar to e_load_book_source_async() in libedataserverui (and may wind up there eventually). This replaces e_auth_new_cal_from_source(). void e_load_cal_source_async (ESource *source, ECalSourceType source_type, icaltimezone *default_zone, GtkWindow *parent, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); ECal * e_load_cal_source_finish (ESource *source, GAsyncResult *result, GError **error);
* Clean up "ensure_sources" backend routines.Matthew Barnes2010-07-161-59/+12
| | | | | | | | | Remove redundant logic (we call e_source_list_ensure_group() and then proceed to do the same thing it just did), and use "local:" as the base URI for the "On This Computer" group. This requires commit 9e0845207b39f256f7e81d388741ed30a764ea7b in Evolution-Data-Server to work properly.
* Bug #623204 - Be able to report detailed errors from backendsMilan Crha2010-07-091-6/+6
|
* Bug 614926 - Memos and Tasks accelerators switched since 2.28Matt McCutchen 22010-04-071-1/+1
|
* Bug #325121 - Do not translate developer strings in g_param_spec_*Milan Crha2010-04-021-2/+2
|
* Fix mismatched quotes.Matthew Barnes2010-03-291-1/+1
|
* Make authentication functionality availableGustavo Noronha Silva2010-01-271-3/+3
| | | | | | | 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
* Fix some potential null pointer dereferences.Matthew Barnes2010-01-161-2/+4
| | | | Caught by the Clang Static Analyzer.
* Coding style and whitespace cleanup.Matthew Barnes2010-01-041-4/+6
|
* Bug #596753 - Autocompletion addressbooks not rememberedMilan Crha2009-09-301-0/+1
| | | | And select page in Edit->Preferences based on the active view.
* Restore translation context (NC) for three stringsAndre Klapper2009-09-211-1/+1
|
* Bug #593761 - Wrong dir for calendar local sourcesMilan Crha2009-09-021-44/+22
| | | | | | | | | | | | | | - using _get_data_dir, not _get_config_dir in calendar's and similar ensure_sources functions - current executable version is stored in gconf, thus not every start is migrating done - applied changes which were using e_source_list_ensure_group calls - e_source_list_sync is called at the end of those ensure_sources, as it didn't work to me to see the Personal source after start when I had no "On this computer" group (the group was added, but the source wasn't)
* Exit if no command-line URIs are handled.Matthew Barnes2009-08-251-8/+10
|
* Handle calendar URIs from the command line.Matthew Barnes2009-08-251-1/+1
|
* Get the itip-formatter plugin working.Matthew Barnes2009-08-121-19/+59
|
* Implement the shutdown protocol and stub in session management.Matthew Barnes2009-07-111-2/+0
| | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+621
- Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets.