aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/bbdb/bbdb.c
Commit message (Collapse)AuthorAgeFilesLines
* Bug 696175 - bbdb: Blocks main thread when obtaining an EBookClientMatthew Barnes2013-04-141-17/+17
|
* bbdb plugin cleanups.Matthew Barnes2013-04-141-85/+72
|
* Use EClientComboBox where appropriate.Matthew Barnes2013-03-021-1/+6
| | | | Basically any place where we use both EClient and ESourceComboBox.
* Use e_book_client_connect().Matthew Barnes2013-01-301-26/+4
| | | | Instead of e_client_utils_open_new() and e_book_client_new().
* Bump GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_2.Matthew Barnes2013-01-201-7/+7
| | | | | 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-3/+5
| | | | I forgot to include this in 3.7.4, but no matter.
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-131-3/+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.
* Coding style and whitespace cleanup.Matthew Barnes2012-11-111-8/+11
|
* Replace deprecated GLib symbols (as of GLib 2.34.x)Milan Crha2012-11-061-1/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-1/+1
|
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-041-4/+1
|
* Adapt bbdb plugin to new ESource API.Matthew Barnes2012-06-031-93/+55
|
* Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-221-23/+45
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-7/+21
|
* Bug #666341 - [bbdb] Invalid free in bbdb_do_itMilan Crha2011-12-161-1/+0
|
* Port autocontacts plugin to GSettingsRodrigo Moya2011-11-181-79/+62
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-141-14/+26
|
* Bug #655492 - Move 'Automatic contacts' tab to 'Contacts' partMilan Crha2011-09-141-3/+3
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-301-54/+44
|
* Coding style cleanups.Matthew Barnes2011-06-301-4/+4
|
* Giant leap towards GSEAL compliance.Matthew Barnes2010-04-081-3/+3
|
* Only #include Camel's top-level header.Matthew Barnes2010-04-031-1/+0
|
* Bug 611883 - Missing mnemonic in automatic contacts tabMatthew Barnes2010-03-281-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-01-311-3/+3
|
* Bug #603480 - [bbdb] Traverse lists in destinations properlyMilan Crha2010-01-191-5/+21
|
* Bug #603480 - [bbdb] Crash on unref of uninitialized memoryMilan Crha2010-01-191-6/+7
| | | | after address book error
* Remove dead assignments found by clang.Matthew Barnes2010-01-161-3/+2
|
* Bug #557505 - [bbdb] hangs and is unresponsiveMilan Crha2009-11-041-13/+66
| | | | Reverted some parts of bug #599199 and did the same differently
* Bug #599199 - Hangs regularly when synchro with pidgin is activatedMilan Crha2009-10-271-7/+2
| | | | | | | The sync is done only once on idle after start. The method of checking for buddy list changes is done by md5 checksum now, as the pidgin start/stop changed file time, which was the old method of detecting changes. Also not using getenv("HOME"), but g_get_home_dir() instead.
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-301-2/+2
| | | | | | | | | | | | | - 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.
* Fix excessive whitespace.Matthew Barnes2009-07-141-2/+0
|
* Fix merge issues in EMAccountEditor.Matthew Barnes2009-07-021-22/+22
|
* Whitespace cleanup.Matthew Barnes2009-05-291-3/+3
|
* Bug #583441 - bbdb plugin is getting information from composer nowMilan Crha2009-05-291-26/+30
| | | | | | | It used to ask composer for a message, a generated one, which asks for a password to the signing twice, once here and once when composer itself generates message for sending. bbdb crashed when user canceled password prompt for a key, as it didn't check for NULL returned.
* Prefer GLib basic types over C types.Matthew Barnes2009-05-271-17/+17
|
* Remove trailing whitespace, again.Matthew Barnes2009-05-271-2/+2
|
* Fix compiler warnings in plugins.Matthew Barnes2009-05-271-1/+0
|
* BUGFIX: 578540 - Create address book entries when sending mailsLucian Langa2009-05-041-40/+46
| | | | bbdb plugin, adds entry when sending any email, not only on reply.
* ** BUGFIX: 573830 - g_timeout_add_seconds should be preferred to g_timeout_addMarcel Stimberg2009-05-041-1/+1
| | | | | | According to https://wiki.ubuntu.com/SavingTheWorld (and of course according to the gtk docs) using g_timeout_add_seconds is preferred over g_timeout_add if a timeout in seconds is desired.
* ** Fix for bug #553527Milan Crha2008-10-011-13/+98
| | | | | | | | | | | | | 2008-10-01 Milan Crha <mcrha@redhat.com> ** Fix for bug #553527 * bbdb.c: (struct todo_struct), (free_todo_struct), (bbdb_do_in_thread), (bbdb_do_thread), (bbdb_handle_reply): Do the EBook work in a separate thread to have better performance on reply with slow address books. svn path=/trunk/; revision=36518
* ** Fix for bug #497928Milan Crha2008-09-291-4/+2
| | | | | | | | | | | | 2008-09-29 Milan Crha <mcrha@redhat.com> ** Fix for bug #497928 * bbdb.c: (source_changed_cb), (gaim_source_changed_cb): Set URI to empty string when user deletes previously selected source. svn path=/trunk/; revision=36469
* Change license from GPL to LGPLSankarasivasubramanian Pasupathilingam2008-09-191-25/+14
| | | | svn path=/trunk/; revision=36381
* ** Fix for bug #534762Philip Withnall2008-08-271-1/+1
| | | | | | | | | | | 2008-08-27 Philip Withnall <philip@tecnocode.co.uk> ** Fix for bug #534762 Change "addressbook" to "address book" in translatable strings. svn path=/trunk/; revision=36117
* ** Fixes bug #546785Paul Bolle2008-08-081-1/+3
| | | | | | | | | | | | | | | | | | | 2008-08-07 Paul Bolle <pebolle@tiscali.nl> ** Fixes bug #546785 * plugins/bbdb/bbdb.c: (e_plugin_lib_enable): The bbdb plugin is noisy when enabled: "BBDB spinning up..." Make this plugin just as polite as google-account-setup. * plugins/caldav/caldav-source.c: (e_plugin_lib_enable): The caldav plugin is noisy when enabled: "CalDAV Eplugin starting up ..." Make this plugin just as polite as google-account-setup. svn path=/trunk/; revision=35928
* ** See bug #504417Lucian Langa2008-07-281-2/+2
| | | | | | | | | | 2008-07-28 Lucian Langa <lucilanga@gnome.org> ** See bug #504417 * bbdb.c: - Preferences window cut off svn path=/trunk/; revision=35846
* updated novell copyright notices (left others alone)Jeffrey Stedfast2008-06-211-1/+1
| | | | svn path=/trunk/; revision=35665
* ** Fix for bug #502914Milan Crha2008-01-021-1/+1
| | | | | | | | | | | 2008-01-02 Milan Crha <mcrha@redhat.com> ** Fix for bug #502914 * bbdb.c: (enable_toggled_cb): Do not write NULL into gconf. svn path=/trunk/; revision=34747
* ** Fix for bug #391062Srinivasa Ragavan2007-12-031-1/+9
| | | | | | | | * bbdb.c: (bbdb_open_addressbook): Dont add contacts, if it is enabled to do so. svn path=/trunk/; revision=34626
* ** Remove trailing whitespace from source code.Matthew Barnes2007-11-151-14/+14
| | | | | | | | | 2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537
* Fix warnings from sparse and gccKjartan Maraas2007-10-311-1/+1
| | | | svn path=/trunk/; revision=34458
* ** Fixes part of bug #417999Matthew Barnes2007-10-231-24/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-22 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #417999 * addressbook/gui/contact-editor/contact-editor.glade: * addressbook/gui/contact-editor/e-contact-editor.c: * addressbook/gui/contact-editor/e-contact-quick-add.c: * addressbook/gui/contact-list-editor/contact-list-editor.c: * addressbook/gui/contact-list-editor/contact-list-editor.glade: * calendar/gui/dialogs/event-page.c: * calendar/gui/dialogs/event-page.glade: * calendar/gui/dialogs/memo-page.c: * calendar/gui/dialogs/memo-page.glade: * calendar/gui/dialogs/task-page.c: * calendar/gui/dialogs/task-page.glade: * calendar/gui/e-itip-control.c: * plugins/bbdb/bbdb.c: * plugins/bbdb/gaimbuddies.c: * plugins/itip-formatter/itip-view.c: * widgets/misc/e-pilot-settings.c: Use ESourceComboBox instead of ESourceOptionMenu (deprecated). svn path=/trunk/; revision=34408
* ** Fixes bug #437579Matthew Barnes2007-10-101-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-09 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #437579 * addressbook/conduit/address-conduit.c: * addressbook/gui/component/addressbook-config.c: * addressbook/gui/contact-editor/e-contact-editor.c: * addressbook/gui/widgets/eab-gui-util.c: * calendar/conduits/calendar/calendar-conduit.c: * calendar/conduits/memo/memo-conduit.c: * calendar/conduits/todo/todo-conduit.c: * calendar/gui/dialogs/alarm-dialog.c: * calendar/gui/dialogs/event-page.c: * calendar/gui/dialogs/memo-page.c: * calendar/gui/dialogs/task-page.c: * calendar/gui/e-day-view-layout.c: * calendar/gui/e-day-view-layout.h: * calendar/gui/print.c: * e-util/e-pilot-map.c: * e-util/e-plugin.c: * e-util/e-profile-event.c: * e-util/e-signature.c: * filter/filter-file.c: * mail/e-searching-tokenizer.c: * mail/em-folder-browser.c: * mail/em-format-html.c: * mail/em-format-view.c: * mail/em-format.c: * mail/em-mailer-prefs.c: * mail/em-mailer-prefs.h: * mail/mail-session.c: * mail/mail-session.h: * mail/mail-vfolder.c: * mail/message-list.c: * plugins/bbdb/bbdb.c: * plugins/bbdb/gaimbuddies.c: * plugins/calendar-http/calendar-http.c: * plugins/exchange-operations/exchange-user-dialog.c: * plugins/face/face.c: * shell/e-shell-window.c: * shell/e-shell.c: * smime/lib/e-cert-db.c: * tools/killev.c: * widgets/misc/e-cursors.c: * widgets/misc/e-spinner.c: * widgets/misc/e-unicode.c: * widgets/table/e-table-field-chooser-item.c: * widgets/table/e-table-header-item.c: * widgets/table/e-table-header-item.h: * widgets/table/e-table-header-utils.c: * widgets/table/e-table.c: * widgets/text/e-text.c: Fix various compiler warnings. Patch from Milan Crha. svn path=/trunk/; revision=34368
* Use consistent terminology for mail messages (#480621).Matthew Barnes2007-09-281-1/+1
| | | | | | | | | | | | | | | | | 2007-09-27 Matthew Barnes <mbarnes@redhat.com> * mail/em-account-editor.c: * mail/evolution-mail.schemas.in: * mail/mail-config.glade: * plugins/bbdb/bbdb.c (bbdb_page_factory): * plugins/bogo-junk-plugin/bf-junk-filter.c: * plugins/face/org-gnome-face-eplug.xml: * plugins/new-mail-notify/org-gnome-new-mail-notify.eplug.xml: * plugins/print-message/org-gnome-print-message.eplug.xml: Use consistent terminology for mail messages (#480621). svn path=/trunk/; revision=34326
* 2007-08-24 Suman Manjunath Fix for bug #440807Milan Crha2007-08-241-2/+2
| | | | svn path=/trunk/; revision=34096
* Committed on behalf of Diego Escalante Urrelo <diegoe@gnome.org>Sankar P2007-08-061-11/+3
| | | | | | | | | | | | | | | | | 2007-08-06 Sankar P <psankar@novell.com> * Committed on behalf of Diego Escalante Urrelo <diegoe@gnome.org> * bbdb.c: (bbdb_timeout), (bbdb_open_addressbook): * gaimbuddies.c: (bbdb_sync_buddy_list_check): "Synchronize now" should work even if periodic checking is not enabled. Fixes bug #377309 svn path=/trunk/; revision=33957
* ** Fix for bug #334140Srinivasa Ragavan2007-07-011-0/+12
| | | | svn path=/trunk/; revision=33733
* ** Fixes bug #419524Matthew Barnes2007-03-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | 2007-03-20 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #419524 * Include <glib/gi18n.h> instead of <libgnome/gnome-i18n.h>. * e-util/e-xml-utils.c (e_xml_get_child_by_name_by_lang_list): * mail/em-migrate.c (emm_setup_initial): * shell/e-component-registry.c (query_components): * shell/e-shell-settings-dialog.c (load_pages): * shell/e-shell-window-commands.c (command_quick_reference): * tools/killev.c (main): Use g_get_language_names() instead of gnome_i18n_get_language_list(). * e-util/e-util.c: Remove e_gettext(). * e-util/Makefile.am: Remove e-i18n.h. svn path=/trunk/; revision=33319
* Plug a couple leaks.Kjartan Maraas2006-08-171-1/+5
| | | | | | | | | 2006-08-17 Kjartan Maraas <kmaraas@gnome.org> * bbdb.c: (bbdb_open_addressbook), (create_addressbook_option_menu): Plug a couple leaks. svn path=/trunk/; revision=32560
* Fix for some bugs in gaim synchronization and automatic contacts.Devashish Sharma2006-08-031-1/+14
| | | | svn path=/trunk/; revision=32467
* Marking two strings for translation that were accidentally not marked.Andre Klapper2006-07-121-2/+2
| | | | | | | | | 2006-07-12 Andre Klapper <a9016009@gmx.de> * bbdb.c: Marking two strings for translation that were accidentally not marked. Fixes bug #347312. svn path=/trunk/; revision=32296
* Another typo fix from gfree to g_free.Andre Klapper2006-02-141-1/+1
| | | | | | | 2006-02-14 Andre Klapper <a9016009@gmx.de> * bbdb.c (bbdb_page_factory): Another typo fix from gfree to g_free. svn path=/trunk/; revision=31521
* A typo fix from gfree to g_free.Veerapuram Varadhan2006-02-141-1/+1
| | | | | | * bbdb.c (bbdb_page_factory): A typo fix from gfree to g_free. svn path=/trunk/; revision=31520
* Removing unnecessary markup in translateable string.Karsten Bräckelmann2006-02-131-2/+7
| | | | svn path=/trunk/; revision=31494
* Added an option to select a different addressbook for gaim buddies. Earlier ↵Devashish Sharma2006-01-231-12/+44
| | | | | | it used the same addressbook as that used by Automatic Contacts. svn path=/trunk/; revision=31277
* Not skipping the entries which have only e-mail id and not name.Sushma Rai2005-09-281-7/+13
| | | | | | Fixes #303286. svn path=/trunk/; revision=30387
* check for NULL before using the address. **Fixes bugs like #274544Vivek Jain2005-07-281-15/+21
| | | | | | | | | | 2005-07-28 Vivek Jain <jvivek@novell.com> * bbdb.c:(bbdb_handle_reply):check for NULL before using the address. **Fixes bugs like #274544 svn path=/trunk/; revision=29913
* Checking for the NULL query, also fixed some other minor issues. Fixes #74366Sushma Rai2005-04-111-11/+19
| | | | svn path=/trunk/; revision=29202
* noop if we can't open the book/we're disabled.Not Zed2005-04-061-0/+2
| | | | | | | | | 2005-04-05 Not Zed <NotZed@Ximian.com> * bbdb.c (bbdb_handle_reply): noop if we can't open the book/we're disabled. svn path=/trunk/; revision=29162
* initialize GError* to NULL Fixes #71512Sivaiah Nallagatla2005-02-011-1/+1
| | | | | | | | | | | | 2005-01-31 Sivaiah Nallagatla <snallagatla@novell.com> * gaimbuddies.c (bbdb_sync_buddy_list) : initialize GError* to NULL Fixes #71512 * bbdb.c (bbdb_open_addressbook) : ditto svn path=/trunk/; revision=28636
* Changes to take advantage of Siva's performance improvements to theNat Friedman2005-01-131-1/+2
| | | | | | | | | | | | | | | | | Changes to take advantage of Siva's performance improvements to the addressbook search API. 2005-01-13 Nat Friedman <nat@novell.com> * gaimbuddies.c (bbdb_sync_buddy_list_check): Remove some debug printfs. (bbdb_sync_buddy_list): Do not query for the IM name, which is slow. Instead, query by alias and only commit the contact if we have changes for it. (bbdb_merge_buddy_to_contact): Return a boolean indicating whether we dirtied the contact or not. svn path=/trunk/; revision=28392
* Use _with_mnemonic for the button.Nat Friedman2004-10-271-1/+1
| | | | | | | | | | 2004-10-27 Nat Friedman <nat@novell.com> * bbdb.c (bbdb_page_factory): Use _with_mnemonic for the button. * Makefile.am: Don't build the test program by default. svn path=/trunk/; revision=27736
* Sync the Gaim buddy list. Set a timer to check for Gaim buddy list chnagesNat Friedman2004-10-261-37/+163
| | | | | | | | | | | | | | | | | | | | | | | 2004-10-25 Nat Friedman <nat@novell.com> * bbdb.c (e_plugin_lib_enable): Sync the Gaim buddy list. Set a timer to check for Gaim buddy list chnages to sync. (bbdb_do_it): Free some memory we were leaking before. (bbdb_open_addressbook): New function for Gaim buddy list support. (bbdb_check_gaim_enabled): Likewise. (enable_gaim_toggled_cb): Likewise. (synchronize_button_clicked_cb): Likewise. (bbdb_page_factory): Added UI for Gaim buddy list sync support. * gaimbuddies.c: New file, contains routines to synchronize IM information and buddy icons from a Gaim buddy list. * bbdb.h: New file, contains shared macros and prototypes. * test-evobuddy.c (main): New function, tests a gaim buddy list sync. svn path=/trunk/; revision=27723
* Change assertions to if statements, so as not to issue warnings in theNat Friedman2004-10-231-8/+20
| | | | | | | | | | | 2004-10-23 Nat Friedman <nat@novell.com> * bbdb.c (bbdb_do_it): Change assertions to if statements, so as not to issue warnings in the case of routine failures (name is NULL). Don't add an email to a contact if the appropriate contact is ambiguous. svn path=/trunk/; revision=27703
* Added the bbdb plugin.Nat Friedman2004-10-221-0/+328
2004-10-22 Nat Friedman <nat@novell.com> * configure.in: Added the bbdb plugin. Man, hacking is fun. svn path=/trunk/; revision=27690