aboutsummaryrefslogtreecommitdiffstats
path: root/modules/addressbook
Commit message (Collapse)AuthorAgeFilesLines
* Remove gal_view_collection_add_factory().Matthew Barnes2013-07-062-22/+7
| | | | | | No longer needed. Instead, use g_type_ensure() to ensure the necessary GalView subclasses are registered in the GType system before loading a GalViewCollection. Best place to ensure types is from GClassInitFunc.
* GalViewFactoryEtable: Remove "specification" property.Matthew Barnes2013-07-061-18/+1
| | | | | | | | No longer needed. Removed functions: gal_view_factory_etable_get_specification()
* EShellView: Add a "view-instance" property.Matthew Barnes2013-07-061-26/+0
| | | | | | | | | | | | | | EShellView now holds a reference to the active GalViewInstance. Where applicable, the EShellView subclass is responsible for keeping this up to date when the sidebar selection changes. Holding a reference allows EShellView to implement common actions like "Save Current View" directly instead pushing it on to subclasses. New functions: e_shell_view_get_view_instance e_shell_view_set_view_instance
* ETableSpecification: Implement GInitable.Matthew Barnes2013-07-021-6/+10
| | | | | | | | | | | | | | | | e_table_specification_new() now takes a table specification filename and a GError and parses the file as part of instance creation. If a file or parse error occurs, e_table_specification_new() returns NULL. This replaces e_table_specification_load_from_file(). New functions: e_table_specification_get_filename() Removed functions: e_table_specification_load_from_file()
* Contacts view: Add 'Refresh' into books context menuMilan Crha2013-07-015-1/+91
| | | | Done as part of bug #700894
* Rename libcomposer to libevolution-mail-composer.Matthew Barnes2013-05-281-1/+1
| | | | | | To make Evolution's shared libraries more consistent. Also add an evolution-mail-composer documentation module.
* Rename libeshell to libevolution-shell.Matthew Barnes2013-05-281-1/+1
| | | | | | To make Evolution's shared libraries more consistent. Also rename the documentation module to evolution-shell.
* Rename libeutil to libevolution-util.Matthew Barnes2013-05-281-1/+1
| | | | | | To make Evolution's shared libraries more consistent. Also rename the documentation module to evolution-util.
* Make sure EAddressbookModel has a fresh EBookClient.Matthew Barnes2013-04-301-29/+9
| | | | | | | | | | | | | | | | In the event of an address book backend abort, EClientCache detects this and invalidates its cached EClient (if it has one), so a new instance is created on the next request. EAddressbookModel is only handed an EClient once, which may become stale if the backend aborts. And even if the backend is restarted the address book will remain unresponsive in Evolution. This commit changes the behavior so that every time an address book is selected in the side bar, a fresh EClient instance is obtained from the EClientCache and handed to the EAddressbookModel. If the model already has that EClient instance, nothing happens. Otherwise the model resets itself and creates a new EBookClientView.
* Restore "Automatic Contacts" plugin preferences page.Matthew Barnes2013-04-141-4/+96
| | | | | | | This accidentally got dropped during the "account-mgmt" project. As much as I loathe EConfig, the "Automatic Contacts" plugin is useless without its Preferences page in the Contacts section.
* Bug 696257 - Handle default values for "primary" selection settingsMatthew Barnes2013-03-251-1/+4
| | | | | | The default value for these GSettings keys is an empty string. The mapping function should handle empty strings by falling back to the appropriate default ESource.
* Remove EBookShellSettings.Matthew Barnes2013-03-176-107/+58
| | | | | | | | 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.
* Use EClientComboBox where appropriate.Matthew Barnes2013-03-021-6/+6
| | | | Basically any place where we use both EClient and ESourceComboBox.
* EAddressbookSelector: Inherit from EClientSelector.Matthew Barnes2013-02-191-4/+4
| | | | Use e_client_selector_get_client() to obtain an EClient.
* EBookShellView: Use EClientCache to obtain an EClient.Matthew Barnes2013-02-182-8/+44
|
* EBookShellBackend: Use EClientCache to obtain an EClient.Matthew Barnes2013-02-181-6/+14
|
* EBookShellView: Handle error signals from address book backends.Matthew Barnes2013-02-172-0/+45
|
* EBookShellView: Keep an ID for "source-removed" signal handler.Matthew Barnes2013-02-162-8/+13
|
* EBookShellView: Use g_clear_object() in dispose().Matthew Barnes2013-02-162-9/+3
|
* Fix up error handling around e_book/cal_client_connect_finish().Matthew Barnes2013-01-311-6/+2
|
* Use e_book_client_connect().Matthew Barnes2013-01-303-48/+64
| | | | Instead of e_client_utils_open_new() and e_book_client_new().
* Add a "settings" module.Matthew Barnes2013-01-214-190/+0
| | | | | | Collect all the "config" extensions from the "addressbook", "calendar", and "mail" modules into one place. These extensions typically just bind GObject properties of extensible classes to app-specific GSettings keys.
* Bump GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_2.Matthew Barnes2013-01-201-3/+3
| | | | | Clean up resulting deprecation warnings, which were all related to GtkOrientable consolidation (e.g. gtk_hbox_new() -> gtk_box_new()).
* Avoid deprecated libedataserver APIs.Matthew Barnes2013-01-151-4/+4
| | | | I forgot to include this in 3.7.4, but no matter.
* Bug #691134 - New contact lists always saved to a default bookMilan Crha2013-01-091-3/+33
|
* Move the contact map widgets to addressbook/gui/widgets.Matthew Barnes2012-12-132-2/+4
| | | | | | | | | | | | Move the supporting widgets for the contact maps feature alongside EABContactDisplay. Removing them from libeutil helps isolate our usage of libchamplain so it's not imposed on the entire application, and even 3rd party software. That libchamplain is an optional dependency only further complicates the matter. Ideally I'd like to somehow isolate this feature in an extension module, but we currently lack sufficient hooks for such an extension. So this arrangement will have to suffice for now.
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-1312-41/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Avoid using GdkEventButton directly in certain places.Matthew Barnes2012-11-301-8/+12
| | | | | | | | | | | | Prefer dealing with GdkEvent pointers and using accessor functions like gdk_event_get_button(). This is complicated by the fact that some GtkWidget method declarations still use GdkEventButton pointers, and synthesizing button events pretty much requires direct GdkEventButton access. But GDK seems to be nudging itself toward sealing the GdkEvent union. Likely to happen in GDK4. Mainly clean up signal handlers and leave method overrides alone for now.
* Coding style and whitespace cleanup.Matthew Barnes2012-11-111-2/+2
|
* EBookConfigNameSelectorEntry: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-103-44/+82
| | | | Follow the usual GObject conventions.
* Remove ldap-config.ui.Matthew Barnes2012-09-182-707/+0
| | | | Leftover file from ages past. No longer used.
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-2/+3
|
* Bug 555325 - Delete key should not delete a whole address bookMatthew Barnes2012-08-181-22/+0
|
* e-book-shell-view-actions.c: Support deleting remote resources.Matthew Barnes2012-08-031-6/+18
|
* Enable "delete" action for remote-deletable sources.Matthew Barnes2012-08-033-2/+17
|
* action_address_book_new_cb(): Fix a runtime warning.Matthew Barnes2012-07-261-1/+1
|
* Use SoupURI instead of EUri.Matthew Barnes2012-06-191-5/+9
| | | | EUri is now deprecated.
* Do not call g_object_notify() when property didn't changeMilan Crha2012-06-181-0/+9
|
* Disable 'Rename' if source is a collection member.Matthew Barnes2012-06-153-13/+34
| | | | | | For consistency with the Preferences window. We assume the display names are server-assigned and not user-assigned, at least not assigned through Evolution.
* Remove the last remaining usage of GConfMilan Crha2012-06-152-190/+0
|
* Finish incomplete change (and fix newly introduced compiler warning)Milan Crha2012-06-151-22/+9
|
* Move EBookSourceConfig to /widgets/misc.Matthew Barnes2012-06-152-2/+2
| | | | | | | | | | | EBookSourceConfig drags in no additional dependencies, and allows us to delay publishing a libevolution-addressbook.so since 3rd party packages will need to subclass EBookSourceConfig. The address book source code will need to be flattened into a single library before we could publish a libevolution-addressbook.so anyway. That would be a good thing to do regardless -- Evolution has way too many internal libraries -- but it's out of scope at the moment.
* Adapt to evolution-data-server's port from GConf to GSettingsMilan Crha2012-06-144-0/+165
|
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-047-22/+8
|
* Adapt modules/addressbook to the new ESource API.Matthew Barnes2012-06-0314-2133/+179
|
* Reduce diff noise with 'account-mgmt' branch.Matthew Barnes2012-06-033-7/+9
| | | | One last time.
* Rename Evolution module libraries.Matthew Barnes2012-05-111-5/+5
| | | | | | | Drop the "libevolution" prefix so it's not so verbose and also consistent with upcoming evolution-data-server module libraries. libevolution-module-foo.so --> module-foo.so
* Missed one.Matthew Barnes2012-04-221-4/+8
|
* Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-224-16/+31
|
* WebKit port - port formatter and mail moduleDan Vrátil2012-03-291-9/+0
|
* Move EAlert* and e-xml-utils references from other part of the code to ↵Srinivasa Ragavan2012-03-033-3/+3
| | | | libevolution-utils.
* Bug #670934 - Was saving ESourceList first, rather than lastMilan Crha2012-03-011-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-18/+52
|
* Bug #655485 - Change "cards" to "contacts" in LDAP Address Book dialogMilan Crha2012-02-161-1/+1
|
* Be able to define help target for Preferences pagesMilan Crha2012-02-151-0/+2
| | | | A follow-up for bug #670073
* Bug #636413 - Enable "Autocomplete with this addressbook" by defaultMilan Crha2012-01-301-1/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2012-01-191-2/+2
|
* Bug #665036 - Memory leaks spot in Contacts viewMilan Crha2012-01-041-0/+3
|
* Miscellaneous EShellView-related cleanups.Matthew Barnes2011-12-0810-135/+120
|
* Bug #577322 - Rename of a system ESource doesn't persistMilan Crha2011-12-072-1/+6
|
* Upstreamed patch from Meego Bugzilla: 23097Srinivasa Ragavan2011-12-011-0/+2
| | | | When the esource is created, sync it to avoid loose it.
* Use e_restore_window() and "org.gnome.evolution.window".Matthew Barnes2011-11-281-1/+0
| | | | Apply it to all windows with persistent size and/or position.
* Miscellaneous cleanups.Matthew Barnes2011-11-231-2/+2
|
* Fix compiler warnings.Matthew Barnes2011-11-231-1/+0
|
* Migrate all EABConfig* code to use GSettingsRodrigo Moya2011-11-171-4/+4
|
* Migrate EShellSettings to GSettingsRodrigo Moya2011-11-151-3/+8
|
* Merge branch 'master' into wip/gsettingsRodrigo Moya2011-11-141-3/+3
|\
| * Bug #659557 - Duplicate mnemonic in ldap address book creation dialogVibha Yadav2011-11-091-3/+3
| |
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-11-042-3/+24
|\|
| * Bug #663286 - Changing view clears Contact previewMilan Crha2011-11-032-3/+24
| |
* | Addressbook module GSettings migrationRodrigo Moya2011-11-023-26/+18
|/
* Use gtk_check_button_new_with_mnemonic() with a mnemonic stringMilan Crha2011-10-111-1/+1
|
* Fix typo in schema file in commit d2232a7Dan Vrátil2011-10-071-1/+1
|
* Bug #659876 - Make automatic contact address formatting optionalDan Vrátil2011-10-073-0/+28
| | | | | Make behavior introduced in bug #636809 optional by adding checkbox to Preferences->Contacts.
* GtkApplication has some new EShell-like features.Matthew Barnes2011-10-061-4/+4
| | | | | | | | | | | | | | | | | | I pushed a few EShell features up to GtkApplication for GTK+ 3.2, so we can now trim off the redundancies in EShell. 1) GtkApplication has a new "window-added" signal which replaces EShell's own "window-created" signal. 2) GtkApplication has a new "window-removed" signal which replaces EShell's own "window-destroyed" signal. 3) gtk_application_get_windows() now returns a list of windows sorted by most recently focused, replacing e_shell_get_watched_windows(). 4) GtkApplication now provides enough hooks to subclasses that we can remove e_shell_watch_window() and call gtk_application_add_window() directly.
* Simplify library dependency flags.Matthew Barnes2011-10-051-2/+4
| | | | | | | | | We have a confusing array of nearly-identical CFLAGS/LIBS definitions in configure.ac. Time to simplify. Instead let's just have one definition that includes all the libraries provided by Evolution-Data-Server (incl. Camel). That, in combination with GNOME_PLATFORM, gives us most of what we need for compliation and linking, and we can sprinkle definitions for additional library dependencies in Makefile.am's as needed.
* Remove Ctrl + l ( ) character from source filesPaul Menzel2011-09-301-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From ccc980da1fd84ebfca25cf8caf9a5d62333099fc Mon Sep 17 00:00:00 2001 From: Paul Menzel <paulepanter@users.sourceforge.net> Date: Wed, 28 Sep 2011 10:18:18 +0200 Subject: [PATCH] Remove Ctrl + l ( ) character from source files The following commits git show aac3f2c8 git show 1510304c git show 13cabd9e git show 350a7a33 git show 9b7cc54d git show e6972011 git show 1d3a7938 git show 934524b9 git show b2954936 git show a7f677b5 git show 4369c400 git show d509f47a git show a6d5818f git show c3876df7 git show 4583098b git show 2831ada5 git show 4e1bce59 git show 1609f699 git show 4e4c1676 git show d6fade43 among others(?) introduced several occurrences of Ctrl + l ( ). Probably this was caused by the used editor. These control characters can be searched for using the following command [1]. $ git grep ^L [1] http://unstableme.blogspot.com/2009/10/grep-and-print-control-characters-in.html
* Bug #659558 - Missing set mnemonic widgetsMilan Crha2011-09-261-0/+3
|
* Make sure GConf schemas have defined default valuesMilan Crha2011-09-141-0/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-047-76/+124
|
* Coding style and whitespace cleanup.Matthew Barnes2011-08-132-57/+87
|
* EConfig: Broadcast abort/commit events by way of signals.Matthew Barnes2011-08-112-4/+7
| | | | | Remove the clumsy abortfunc and commitfunc callback arguments from e_config_add_items().
* Bug #655492 - Move 'Automatic contacts' tab to 'Contacts' partMilan Crha2011-08-092-4/+86
|
* Coding style and whitespace cleanups.Matthew Barnes2011-07-241-183/+194
|
* Bug 652958 - Evolution Account Assistant jumps stepsMatthew Barnes2011-07-011-8/+48
| | | | | | | The GTK+ patch in bug 653705 is also required for the Account Assistant to work properly under the new GtkAssistant design in GTK+ 3.1. This commit only deals with sidebar ordering issues.
* Bug #252670 - Remember columns settings in Certificates tabDan Vrátil2011-06-141-1/+1
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-148-112/+118
|
* Coding style and whitespace cleanups.Matthew Barnes2011-06-141-16/+16
|
* Coding style and whitespace cleanups.Matthew Barnes2011-06-091-1/+2
|
* Little text typo fixMilan Crha2011-06-031-1/+1
|
* Bug #642557 - Display maps in contact previewDan Vrátil2011-06-026-3/+243
|
* Bug #640083 - Cannot configure LDAPS on port 636Milan Crha2011-06-023-5/+5
|
* Including <glib.h> directly is rarely needed.Matthew Barnes2011-05-283-3/+0
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-2713-2/+48
|
* Coding style cleanups.Matthew Barnes2011-05-092-27/+27
|
* Fix compiler warnings.Matthew Barnes2011-05-031-2/+0
| | | | Mostly dead assignments.
* Miscellaneous GtkAction-related cleanups.Matthew Barnes2011-03-281-2/+2
| | | | Prefer the newer GtkAction "set" functions over g_object_set().
* Restore lockdown integration.Matthew Barnes2011-03-282-13/+12
| | | | | | | | | | | | | With lockdown settings available through GSettings, widgets can handle lockdown integration themselves without having to use EShellSettings. Also fixed a few places where printing or save-to-disk actions were either not properly wired up or not responding to lockdown settings, but much more work needs done. Attachments, for example, are not honoring the disable-save-to-disk setting at all. This too requires the recently-added gsettings-desktop-schemas dependency.
* Bug #644107 - Local addressbooks created without relative_uri setMilan Crha2011-03-071-1/+3
|
* Coding style and whitespace cleanup.Matthew Barnes2011-03-064-4/+12
|
* Bug #643402 - Fails to build with --disable-smimeMilan Crha2011-03-031-0/+2
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-255-34/+14
|
* Coding style and whitespace cleanup.Matthew Barnes2011-02-191-1/+0
|
* Bug #639483 - Category list includes weather informationMilan Crha2011-02-182-2/+2
|
* Bug #255973 - Contact preview waste space and cosmetic correctionDan Vrátil2011-02-161-0/+11
|
* Remove NULL checks for GObject methods.Matthew Barnes2011-02-131-2/+2
| | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
* Adapt to GtkComboBox class reorg.Matthew Barnes2011-01-252-2/+3
|
* Dialogs no longer have separators.Matthew Barnes2011-01-251-1/+0
|
* Drop backward-compatibility cruft.Matthew Barnes2011-01-252-6/+0
|
* Bug 640083 - Cannot configure LDAPS on port 636Matthew Barnes2011-01-231-1/+1
|
* Use e_load_book_source_async() for all EBook loading.Matthew Barnes2011-01-221-1/+0
|
* Show common addressbook and calendar errors in an alert sinkMilan Crha2010-12-151-2/+9
|
* Free/busy meeting view doesn't work due to non-working extensionMilan Crha2010-12-061-0/+3
|
* Bug #632962 - Duplicate "On this computer" sources after updateMilan Crha2010-11-241-11/+13
|
* Bug #634088 - Uses uninitialized variable in action_contact_new_cbMilan Crha2010-11-051-1/+1
|
* Utilize the new ESourceSelector:primary-selection property.Matthew Barnes2010-11-025-4/+39
|
* Deal with GtkComboBoxEntry removal in gtk+-3.0.Matthew Barnes2010-10-211-1/+4
|
* Bug #604981 - Always bcc ignored for Contacts.Bharath Acharya2010-10-181-2/+2
| | | | Add the Bcc destinations instead of setting it.
* Bug 632171 - "New Address Book" dialog accepts whitespace for nameMatthew Barnes2010-10-151-1/+8
|
* Replace EBinding with GBinding.Matthew Barnes2010-10-144-11/+18
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Bug #629636 - Doesn't recognize local ESource-sMilan Crha2010-09-291-2/+2
|
* Use new GDK keysym names if available.Matthew Barnes2010-09-182-1/+4
| | | | | | | In GTK+ 2.21.8, the keysym names were renamed from GDK_* to GDK_KEY_*. I've added backward-compatibility macors to gtk-compat.h, which can be dumped as soon as we require GTK+ >= 2.22.0.
* Coding style and whitespace cleanup.Matthew Barnes2010-08-294-405/+407
|
* Add e_load_cal_source_async().Matthew Barnes2010-08-241-4/+3
| | | | | | | | | | | | | | | | | 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);
* Use e_load_book_source_async() in EBookShellBackend.Matthew Barnes2010-08-201-32/+46
| | | | For handling "new-contact" and "new-contact-list" actions.
* Use the new e_load_book_source_async() where possible.Matthew Barnes2010-08-192-29/+40
| | | | | | It's easier to use than addressbook_load() but requires starting with an ESource rather than an EBook, and there's a couple places left where that's not so easy. I'll spend more time on it later.
* Pass an EShell to EMsgComposer instances.Matthew Barnes2010-08-144-10/+43
| | | | Reduce the composer's dependency on e_shell_get_default().
* Defer the load / creation of configuration UI with changes toMichael Meeks2010-08-113-4/+16
| | | | | | | | | e_preferences_window to take factory callbacks and store a reference to the shell. - This makes start-up substantially faster, particularly on Atom (eg.). Remove a number of idle handlers used to create these UIs in the first instance, cleaning the code.
* fix lifecycle nasties bgo#625852Michael Meeks2010-08-032-27/+36
|
* addressbook: Port to use new _async suffix instead of _ex suffixRob Bradford2010-08-021-2/+2
|
* Bug 625624 - Customizations of contacts views forgottenMatthew Barnes2010-07-301-0/+5
| | | | Found similar bugs in EShellMemoContent and EShellTaskContent.
* Clean up "ensure_sources" backend routines.Matthew Barnes2010-07-161-89/+15
| | | | | | | | | 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.
* Coding style and whitespace cleanup.Matthew Barnes2010-07-121-9/+9
|
* Bug #623204 - Be able to report detailed errors from backendsMilan Crha2010-07-092-10/+10
|
* EShellContent: Add a focus_search_results() method.Matthew Barnes2010-06-251-0/+13
| | | | | This gives EShellSearchbar something concrete to call to direct focus away from itself instead of tabbing forward and hoping for the best.
* Coding style and whitespace cleanups.Matthew Barnes2010-06-071-2/+6
|
* Bug 613038 - Preview pane size not rememberedMatthew Barnes2010-05-291-13/+31
| | | | | | | Converted size restoration of all preview panes to be triggered by EShellWindow::shell-view-created signal. The signal is emitted when the view is fully initialized and visible. Shell views can use that as a trigger for restoring pane sizes from GConf.
* Create the source groups required to ensure local adresssbooks and calendars ↵Chenthill Palanisamy2010-05-201-0/+1
| | | | are created
* Bug #603006 - Move All Contacts To enabled for read-only address booksMilan Crha2010-05-131-0/+4
|
* Camel is now GObject-based.Matthew Barnes2010-04-241-1/+1
|
* Remove 3 leftover references to non-existing librariesFridrich Štrba2010-04-231-4/+0
|
* Giant leap towards GSEAL compliance.Matthew Barnes2010-04-081-6/+26
|
* Bug #567304 - Review strings for translationMilan Crha2010-04-072-7/+11
|
* Miscellaneous cleanup bits from WebKit branch.Matthew Barnes2010-04-021-0/+7
|
* Bug #325121 - Do not translate developer strings in g_param_spec_*Milan Crha2010-04-023-10/+10
|
* Bug #602801 - Duplicate mnemonicViswanath S2010-04-011-1/+1
|
* Drop support for migrating from Evolution < 2.0.Matthew Barnes2010-03-301-1011/+0
| | | | | | | There's too much ancient, crufty code there that we can't realistically support anymore. A workaround for those poor users still on 1.x is to upgrade to some 2.x release first, then upgrade again to 3.x. An error dialog explaining this will be shown at startup.
* Fix mismatched quotes.Matthew Barnes2010-03-291-6/+6
|
* Bug 611882 - Missing mnemonics in Date/Time format preferencesMatthew Barnes2010-03-281-1/+1
|
* Simplify the search UI for express mode.Matthew Barnes2010-03-271-1/+3
| | | | | | | | | | | | | | | For express mode: - Move the search bar up to the toolbar. - Hide the "filter" combo box and lock down the first item. - Hide the "scope" combo box and lock down the first item. (This is the combo box with "Current Folder" only in the mailer.) - EShellView owns the search bar widget now instead of EShellContent. - Insert several nasty hacks that will likely come back to bite me.
* Make the gconf schemas installation rules consistent in all Makefiles.amFridrich Strba2010-03-161-10/+12
|
* Bug 612792 - Crash when trying to delete WebDav addressbookMatthew Barnes2010-03-151-1/+1
|
* Actually respect the --disable-schemas-install configure optionFridrich Strba2010-03-151-0/+4
|
* Some more directories relocated on windowsFridrich Strba2010-03-111-0/+2
|
* Add DnD support to e-selection.c.Matthew Barnes2010-02-091-1/+1
| | | | | | Avoid listing calendar and directory targets explicitly, so that e-selection.c contains the one and only master list. Still need to figure out how to centralize "text/x-source-vcard".
* Implement account-wide search scope in mail.Matthew Barnes2010-02-071-16/+10
| | | | Also, let EShellSearchbar handle search state persistence.
* Bug 607520 - 'Add to Address Book' fails when address has spaceMatthew Barnes2010-02-031-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-01-311-131/+131
|
* Level the differences with the alternative runtime/header setFridrich Strba2010-01-281-0/+12
|
* Coding style and whitespace cleanups.Matthew Barnes2010-01-231-1/+3
|
* Give all preview panes a search bar.Matthew Barnes2010-01-185-43/+68
| | | | Use Shift+Ctrl+F as the accelerator for consistency with the mailer.
* Remove dead assignments found by clang.Matthew Barnes2010-01-162-10/+0
|
* Cleanup delete actions in shell views.Matthew Barnes2010-01-112-9/+3
|
* Compiler and linker flag cleanups.Matthew Barnes2009-12-281-20/+23
|
* Coding style and whitespace cleanup.Matthew Barnes2009-12-262-4/+10
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-265-158/+4
| | | | | | | | | | | | | | | | | | EFocusTracker tracks the input focus within a window and helps keep the sensitivity of "selectable" actions in the main menu up-to-date. Selectable actions include Cut, Copy, Paste, Select All and Delete. EFocusTracker has built-in support for widgets that implement the GtkEditable interface such as GtkEntry and GtkTextView. It also supports custom widgets that implement the ESelectable interface, which is a subset of GtkEditable and can apply to anything that displays selectable content (esp. tree views and ETables). This commit integrates EFocusTracker with EShellWindow, CompEditor, EMsgComposer, and ESignatureManager. It also bumps the GtkHTML requirement to 2.29.5 to utilize the new GtkhtmlEditor:html constructor property.
* Refactor the EShell search API.Matthew Barnes2009-12-195-34/+85
| | | | | | | | | | | | | | | | | Move the search interface to a new widget: EShellSearchbar The current search rule is now stored in EShellView, and the search context in EShellViewClass similar to GalViewCollection (since it's class-specific, not instance-specific). Also add a couple new signals to EShellView: "clear-search" and "custom-search" ("custom" refers to an advanced search or a saved search -- something more complex than a quick search). Still working out a few kinks. The search entry is clearly trying to be too many things. We need a different way of indicating that you're looking at search results. Perhaps a search results banner similar to Nautilus.
* Bug #602998 - Contacts searches are supposed to be per address bookMilan Crha2009-12-115-9/+83
|
* Bug #499322 - Use extension for "Save as" suggested file nameMilan Crha2009-12-101-2/+2
|
* Bug #591938 - Update translator's commentsMilan Crha2009-12-101-2/+2
|
* Port all error code to use GObject-ified EAlert / EAlertDialogJonathon Jongsma2009-12-082-2/+2
| | | | | | The changes are mainly including the e-alert-header.h header instead of just e-alert.h. This allows us to include e-alert.h in non-UI situations when necessary.
* Rename EError to EAlert to match general use betterJonathon Jongsma2009-12-012-10/+10
| | | | | | | | | | The EError mechanism is used both for error dialogs as well as basic alerts or user prompts, so we should give it a more general name which matches this use. This patch also cleans up a few includes of e-alert.h (formerly e-error.h) that were not actually being used. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* port modules/ to new EError API.Jonathon Jongsma2009-12-011-2/+2
| | | | | | This should be everything now. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* Bug 602803 - New Contact enabled for read-only address booksMatthew Barnes2009-11-251-0/+8
|
* Bug #579599 - Let the Advanced Search work againMilan Crha2009-11-194-57/+53
|
* Disallow renaming a non-deletable ESource.Matthew Barnes2009-11-191-1/+1
| | | | This is a partial solution to bug #600397.
* Prefer EWebView calls over direct GtkHTML calls.Matthew Barnes2009-11-181-8/+4
|
* Don't unref destinations in eab_send_as_to().Matthew Barnes2009-11-181-2/+0
| | | | | This was mistakenly finalizing EDestinations handed off to the composer, causing the composer to crash.
* Bug 360461 - Do not hardcode invisible_char in ui filesClaude Paroz2009-11-171-6/+0
|
* Bug 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-174-1575/+761
|
* Bug 600397 - Delete option enabled for undeletable ESourceMatthew Barnes2009-11-143-2/+14
|
* Bug 601769 - Print issues in address bookMatthew Barnes2009-11-143-28/+57
|
* Bug 601774 - "Send Message to Contact" is always disabledMatthew Barnes2009-11-142-7/+59
|
* EWebView popup menu enhancements.Matthew Barnes2009-11-143-20/+70
| | | | Bumps the GtkHtml dependency to 3.29.2 for gtk_html_unselect_all().
* Simplify clipboard handling in addressbook.Matthew Barnes2009-11-123-2/+12
|
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-111-4/+8
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-082-2/+119
| | | | | | | | | | This introduces e-shell-utils for miscellaneous utility functions that integrate with the shell or shell settings. First function is e_shell_run_save_dialog(), which automatically remembers the selected folder in the file chooser dialog. Also, kill some redundant save dialog functions, as well as some write-this-string-to-disk functions that block.
* Bug 600402 - Clear search is always enabled in calendar/contact/taskMatthew Barnes2009-11-041-4/+1
|
* Cleanup and rename filter classes.Matthew Barnes2009-10-272-5/+5
|
* Bug #593953 - LDAP SSL option order doesn't match with a backend'sMilan Crha2009-10-212-8/+9
|
* Bug #329100 - Choosing adress book for birthdaysMilan Crha2009-10-131-11/+43
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-011-3/+4
|
* Bug #596753 - Autocompletion addressbooks not rememberedMilan Crha2009-09-302-2/+2
| | | | And select page in Edit->Preferences based on the active view.
* Fix duplicate symbols in Glade files.Matthew Barnes2009-09-251-1/+1
|
* Bug 595119 - Crash while trying to add a new category in contactMatthew Barnes2009-09-212-2/+3
|
* Restore translation context (NC) for three stringsAndre Klapper2009-09-211-1/+1
|
* Finish killing Bonobo.Matthew Barnes2009-09-091-0/+29
|
* Bug 593940 - No options for google address book availableMatthew Barnes2009-09-031-2/+6
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-034-138/+109
| | | | | | | | | | | | This addresses bug #593896 but is also a cleaner design than before. It introduces an EShellView::execute-search signal and renames the "search-execute" action to "search-quick" to clarify that it's only meant for the "quick" search bar in the main window. Shell view subclasses should implement the execute_search() method to actually execute a search. e_shell_view_execute_search() emits the new signal.
* Relax the EBinding API to reduce GObject casting.Matthew Barnes2009-09-023-10/+10
| | | | | Also make it more fault-tolerant by warning about non-existent property names instead of just crashing.
* Disable classic/vertical options when preview is hidden.Matthew Barnes2009-09-022-0/+9
|
* Bug 593776 - Fix include of a11y/addressbook and a11y/calendarH.Habighorst2009-09-011-1/+0
|
* Bug 593627 - Tool bar > new > contact list doesn't workMatthew Barnes2009-09-011-1/+1
|
* Get EConfig and EEvent hooks working again.Matthew Barnes2009-09-013-19/+31
| | | | | | | | | | | | | There were a number of problems: - Walk the GType tree to find EPluginHook subclasses, instead of just registering the immediate children. - Some EConfig and EEvent subclasses were not being configured properly (particularly the mail and calendar subclasses). - Add preference window pages after the main loop starts to make sure all plugins and plugin hooks are installed first.
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-305-3/+106
| | | | | | | | | | | | | - 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.
* Add vertical view to Contacts.Matthew Barnes2009-08-284-31/+186
|
* Bug 567260 - Migrate from GnomeDruid to GtkAssistantMilan Crha2009-08-181-1/+1
|
* Fix compiler warnings and deprecated GTK+ API usage.Matthew Barnes2009-08-161-0/+1
|
* Add new preferences missed during the 2.27.90 merge.Matthew Barnes2009-08-135-4/+140
|
* Bug #205137 - Configurable date formats in componentsMilan Crha2009-08-121-2/+3
|
* Kill CalSearchBar.Matthew Barnes2009-07-281-3/+3
| | | | Move calendar search logic to ECalShellView.
* More whitespace cleanup.Matthew Barnes2009-07-192-50/+50
|
* Bug 579702 – Contact changes not shown until restartMatthew Barnes2009-07-182-6/+14
|
* Fix some compiler warnings.Matthew Barnes2009-07-151-4/+4
|
* Fix excessive whitespace.Matthew Barnes2009-07-143-6/+0
|
* Add a "quit-requested" signal to the shutdown protocol.Matthew Barnes2009-07-133-34/+69
| | | | | | | The contact and contact-list editors now demonstrate this part of the shutdown protocol. They listen for the "quit-requested" signal from the shell and prompt to save changes, discard changes or cancel. If the user cancels, the editor calls e_shell_cancel_quit() to do just that.
* Implement the shutdown protocol and stub in session management.Matthew Barnes2009-07-111-15/+15
| | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-011-1/+1
|
* Radically reorganize source code.Matthew Barnes2009-06-2525-0/+9907
- 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.