aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/pst-import
Commit message (Collapse)AuthorAgeFilesLines
* 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-2/+2
| | | | | | To make Evolution's shared libraries more consistent. Also rename the documentation module to evolution-util.
* Use EClientComboBox where appropriate.Matthew Barnes2013-03-021-15/+22
| | | | Basically any place where we use both EClient and ESourceComboBox.
* Fix up error handling around e_book/cal_client_connect_finish().Matthew Barnes2013-01-311-1/+1
|
* pst-importer: Avoid EClientSourceType enum.Matthew Barnes2013-01-301-55/+32
| | | | Use ESource extension names instead.
* Use e_book_client_connect().Matthew Barnes2013-01-301-9/+11
| | | | 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-2/+2
| | | | | Clean up resulting deprecation warnings, which were all related to GtkOrientable consolidation (e.g. gtk_hbox_new() -> gtk_box_new()).
* Move the contact map widgets to addressbook/gui/widgets.Matthew Barnes2012-12-131-2/+0
| | | | | | | | | | | | 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-132-11/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Address couple issues found by a Coverity scanMilan Crha2012-11-301-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2012-11-111-13/+17
|
* Replace deprecated GLib symbols (as of GLib 2.34.x)Milan Crha2012-11-061-7/+7
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-5/+5
|
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-041-14/+3
|
* Adapt pst-importer plugin to the new ESource API.Matthew Barnes2012-06-031-21/+44
|
* Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-221-1/+3
|
* WebKit port - port pluginsDan Vrátil2012-03-291-2/+0
|
* Add missing linker flags.Matthew Barnes2012-03-041-0/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-4/+12
|
* Bug 669433 - Add missing linker flags to pst-importDominique Leuenberger2012-02-111-8/+9
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-191-2/+3
| | | | | | | These libraries are bound for E-D-S so they live at the lowest layer of Evolution for now -- even libeutil can link to them (but please don't). This is the first step toward moving mail handing to a D-Bus service.
* Bug #667346 - Fix build with libpst 0.6.54 and require this versionVincent Untz2012-01-101-1/+1
|
* Avoid passing EMailBackend as much as possible.Matthew Barnes2011-12-161-2/+6
| | | | | | | | | | | | | | | More mail API churn... reversing some previous API decisions. I've made some key API changes to EMailSession on the account-mgmt branch which should allow for this, and will hopefully also benefit the "email-factory" branch. EMailBackend barely needs to exist anymore, except as the owner of EMailSession. For several low-level functions, we replace its EMailBackend parameter with EMailSession and EAlertSink parameters; the latter so it can still pass user alerts up the chain.
* Reorder accounts by drag-and-drop.Matthew Barnes2011-12-111-3/+7
| | | | | | | | | | | | | | | | | | | | | This implements https://bugzilla.gnome.org/show_bug.cgi?id=663527#c3. Account reordering is now done by drag-and-drop instead of up/down buttons. Turned out to be a wee bit more complicated than I initially thought. This scraps EAccountManager and EAccountTreeView and replaces them with new classes centered around EMailAccountStore, which EMailSession owns. EMailAccountStore is the model behind the account list in Preferences. The folder tree model now uses it to sort its own top-level rows using gtk_tree_path_compare(). It also broadcasts account operations through signals so we don't have to rely so heavily on EAccountList signals, since EAccountList is going away soon. Also as part of this work, the e-mail-local.h and e-mail-store.h APIs have been merged into EMailSession and MailFolderCache.
* Miscellaneous cleanups.Matthew Barnes2011-11-231-3/+6
|
* Adapt to CamelOperation API changes.Matthew Barnes2011-11-071-2/+1
|
* Bug #660782 - [pst-import] Missing 'To' on message repliesMilan Crha2011-10-281-5/+62
|
* Bug #660782 - [pst-import] Missing tasks after importMilan Crha2011-10-111-16/+105
|
* Simplify library dependency flags.Matthew Barnes2011-10-051-9/+6
| | | | | | | | | 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.
* Miscellaneous cleanups from the account-mgmt branch.Matthew Barnes2011-09-271-6/+21
| | | | | Reducing diff noise so I can see important changes easier when comparing branches. A few API changes, but nothing that affects functionality.
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-45/+111
|
* Coding style and whitespace cleanup.Matthew Barnes2011-08-131-3/+5
|
* Bug #655944 - Import dialog is not showing operation progressMilan Crha2011-08-101-29/+50
|
* EMFolderSelectionButton: Add a "folder-uri" property.Matthew Barnes2011-08-101-2/+2
| | | | And rename a couple get/set functions to match the property name.
* Bug #655872 - [pst-import] Fails to properly open remote clientMilan Crha2011-08-091-125/+184
|
* Bug #655943 - Meeting request mails are not imported properlyMilan Crha2011-08-051-4/+107
|
* Bug #655870 - Uses incorrect pointer as string in error messageMilan Crha2011-08-041-1/+1
|
* Bug #655893 - Crash on pst folder hierarchy importMilan Crha2011-08-031-45/+96
|
* Bug #646646 - Incomplete and folder-incorrect import of pst fileMilan Crha2011-08-031-26/+36
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-141-28/+58
|
* EMFolderTree: Store an EMailBackend instead of an EMailSession.Matthew Barnes2011-05-241-3/+4
| | | | | | | | All this so EMFolderTree can submit EActivity instances for async ops. You can obtain an EMailSession from an EMailBackend, but not vice versa. Creates lots of pretty ripples in the mail code, but ultimately reduces complexity. So it's a code cleanup of sorts.
* Coding style cleanups.Matthew Barnes2011-05-091-12/+12
|
* Fix translations being boken by removing calls to bindtextdomain() from plugins.Kjartan Maraas2011-04-022-10/+0
| | | | | It shouldn't be needed for plugins that live in the evolution source tree anyway since they should just use the translation domain they inherit from main().
* Fix Gtk-Doc comment notation.Matthew Barnes2011-03-021-22/+43
| | | | Seeing lots of what I assume to be doxygen syntax in comment blocks.
* Bug #641456 - Crash in pst_process_appointment at pst-importer.cMilan Crha2011-02-281-67/+16
|
* Bug #641701 - Issues with pst-import pluginMilan Crha2011-02-101-12/+23
|
* Bug #641451 - Crash in folder_selection_button_newBharath Acharya2011-02-071-5/+9
| | | | Crash when importing any pst file.
* Add missing libeshell.la to LIBADD in pst-import pluginMilan Crha2010-11-041-1/+1
|
* Simplify EActivity.Matthew Barnes2010-10-231-6/+12
| | | | | | | | | | | | | | | | | | | | | | With unintrusive error dialogs gone, we can cut some unnecessary bits out of EActivity. I'm also adding a new enum property called "state", which is one of: E_ACTIVITY_RUNNING E_ACTIVITY_WAITING E_ACTIVITY_CANCELLED E_ACTIVITY_COMPLETED The state of an activity must be explicitly changed. In particular, when the user cancels an activity the state should be set only after confirming the operation has been cancelled and not when cancellation is requested (e.g. after receiving a G_IO_ERROR_CANCELLED, not when the GCancellable emits "cancelled"). EActivityBar and EActivityProxy widgets have been updated to make this distinction clearer in the UI. E_ACTIVITY_WAITING will be used when activities have to be queued and dispatched in sequence, which I haven't written yet.
* Collect mail enum types in e-mail-enums.h.Matthew Barnes2010-10-191-1/+1
| | | | | | | | | And generate GTypes for each of them in e-mail-enumtypes.[ch]. Also, the glib-gen.mak script forced me to add a <mail/e-mail.h> top-level header, which really isn't a bad idea anyway. TODO: We should do this for calendar and addressbook too.
* Give MailSession a permanent home.Matthew Barnes2010-10-131-8/+43
| | | | | | | | | | | Global variables in shared libraries are a bad idea. EMailBackend now owns the MailSession instance, which is actually now EMailSession. Move the blocking utility functions in mail-tools.c to e-mail-session.c and add asynchronous variants. Same approach as Camel. Replace EMailReader.get_shell_backend() with EMailReader.get_backend(), which returns an EMailBackend. Easier access to the EMailSession.
* camel_operation_new() now returns a GCancellable pointer.Matthew Barnes2010-09-291-1/+1
|
* Adapt to Camel API changes.Matthew Barnes2010-09-281-19/+15
|
* Pass GCancellable to Camel.Matthew Barnes2010-09-281-8/+17
|
* Adapt to CamelOperation API changes.Matthew Barnes2010-09-151-8/+6
|
* Coding style cleanups.Matthew Barnes2010-09-131-21/+21
|
* Coding style and whitespace cleanups.Matthew Barnes2010-09-121-1/+1
|
* Migrate from CamelException to GError.Matthew Barnes2010-07-091-11/+11
|
* Camel is now GObject-based.Matthew Barnes2010-04-241-13/+13
|
* [win32] Fix a build breakage by adding a proper define for gmtime_rFridrich Štrba2010-04-151-0/+7
| | | | | instead of the broken one that used to be pulled by including pthread.h
* Adapt to Camel API changes.Matthew Barnes2010-04-041-6/+6
|
* Generate ChangeLog files for tarball releases.Matthew Barnes2010-04-031-22/+0
| | | | Remove old ChangeLog files that predate our switch to git.
* Only #include Camel's top-level header.Matthew Barnes2010-04-032-12/+4
|
* Fix mismatched quotes.Matthew Barnes2010-03-291-2/+2
|
* Bug #601551 - [PST] evolution crashed with SIGSEGVMilan Crha2010-02-251-3/+11
|
* Remove dead assignments found by clang.Matthew Barnes2010-01-161-2/+1
|
* Compiler and linker flag cleanups.Matthew Barnes2009-12-281-1/+2
|
* Bug 601626 - pst-import missing link to libeutilTravis Reitter2009-11-121-0/+1
|
* Use EVOLUTION_CALENDAR_CFLAGS instead of EVOLUTION_MAIL_CFLAGSTor Lillqvist2009-11-111-1/+1
| | | | | The code uses ical stuff and the libical CFLAGS are present in EVOLUTION_CALENDAR_CFLAGS but not EVOLUTION_MAIL_CFLAGS.
* Bug 599245 - Use bitwise AND instead of logical AND for checking flagsThomas Andersen2009-10-221-2/+2
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-011-7/+10
|
* Trim unused or unnecessary bits from the import framework.Matthew Barnes2009-09-261-0/+1
|
* Goodbye libgnome and libgnomeui!!Matthew Barnes2009-09-191-0/+2
|
* 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.
* Build with -Wl,--no-undefined and fix linker errors.Matthew Barnes2009-08-281-1/+4
|
* Fix compiler warnings and deprecated GTK+ API usage.Matthew Barnes2009-08-161-9/+11
|
* Get the pst-import plugin working.Matthew Barnes2009-08-121-3/+3
|
* Fix distcheck errors.Matthew Barnes2009-08-111-1/+1
|
* Merge commit 'EVOLUTION_2_27_5' into kill-bonoboMatthew Barnes2009-07-281-175/+153
|\
| * Update NEWS + coding style cleanups.Matthew Barnes2009-07-271-5/+5
| |
| * BUG #578945 - Adapt to changes in libpst 0.6.41Bharath Acharya2009-07-271-176/+154
| | | | | | | | The PST Importer is now compatible with libpst 0.6.41
| * More whitespace cleanup.Matthew Barnes2009-07-191-4/+4
| |
| * Fix excessive whitespace.Matthew Barnes2009-07-131-2/+0
| |
* | More whitespace cleanup.Matthew Barnes2009-07-191-4/+4
| |
* | Fix excessive whitespace.Matthew Barnes2009-07-141-2/+0
| |
* | Merge branch 'master' into kill-bonoboMatthew Barnes2009-07-011-0/+9
|\|
| * Use AM_CPPFLAGS instead of INCLUDE in all Makefile.am.Matthew Barnes2009-07-011-1/+1
| |
| * Fix build issue for pst-import pluginBharath Acharya2009-06-221-0/+1
| |
| * More code cleanup.Matthew Barnes2009-06-021-2/+2
| |
| * Whitespace cleanup.Matthew Barnes2009-05-291-2/+2
| |
| * Prefer GLib basic types over C types.Matthew Barnes2009-05-291-46/+46
| |
| * Remove trailing whitespace, again.Matthew Barnes2009-05-291-120/+120
| |
* | Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-011-1/+1
| |
* | More code cleanup.Matthew Barnes2009-06-021-2/+2
| |
* | Whitespace cleanup.Matthew Barnes2009-05-291-2/+2
| |
* | Prefer GLib basic types over C types.Matthew Barnes2009-05-271-46/+46
| |
* | Merge branch 'master' into kill-bonoboMatthew Barnes2009-05-271-120/+120
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: a11y/widgets/ea-combo-button.c a11y/widgets/ea-combo-button.h addressbook/gui/component/addressbook-component.c addressbook/gui/component/addressbook-component.h addressbook/gui/component/addressbook-view.c addressbook/gui/component/addressbook-view.h addressbook/gui/component/component-factory.c addressbook/gui/widgets/e-addressbook-view.c addressbook/gui/widgets/eab-contact-display.c addressbook/gui/widgets/eab-gui-util.h addressbook/gui/widgets/eab-menu.c addressbook/gui/widgets/eab-menu.h addressbook/gui/widgets/eab-popup-control.c addressbook/gui/widgets/eab-popup-control.h addressbook/gui/widgets/eab-popup.c addressbook/gui/widgets/eab-popup.h calendar/gui/cal-search-bar.c calendar/gui/calendar-commands.c calendar/gui/calendar-component.c calendar/gui/comp-editor-factory.c calendar/gui/comp-editor-factory.h calendar/gui/control-factory.c calendar/gui/dialogs/comp-editor.c calendar/gui/e-cal-component-memo-preview.c calendar/gui/e-cal-component-memo-preview.h calendar/gui/e-calendar-table.c calendar/gui/e-memo-table.c calendar/gui/e-memos.c calendar/gui/e-tasks.c calendar/gui/gnome-cal.c calendar/gui/gnome-cal.h calendar/gui/itip-bonobo-control.c calendar/gui/itip-bonobo-control.h calendar/gui/main.c calendar/gui/memos-component.c calendar/gui/memos-control.c calendar/gui/memos-control.h calendar/gui/migration.c calendar/gui/migration.h calendar/gui/tasks-component.c calendar/gui/tasks-control.c calendar/importers/main.c composer/Makefile.am composer/e-composer-header-table.c composer/e-composer-header.c composer/e-composer-header.h composer/e-composer-name-header.c composer/e-composer-private.c composer/e-composer-text-header.c composer/e-msg-composer.c composer/e-msg-composer.h e-util/e-corba-utils.h e-util/e-logger.c e-util/e-logger.h e-util/e-util-labels.c e-util/e-util-labels.h em-format/em-format.c mail/Makefile.am mail/e-mail-shell-migrate.c mail/em-account-editor.c mail/em-account-editor.h mail/em-composer-prefs.c mail/em-composer-utils.c mail/em-composer-utils.h mail/em-folder-browser.c mail/em-folder-tree-model.c mail/em-folder-tree.c mail/em-folder-tree.h mail/em-folder-utils.c mail/em-folder-utils.h mail/em-folder-view.c mail/em-format-html-display.c mail/em-format-html.c mail/em-mailer-prefs.c mail/em-mailer-prefs.h mail/em-message-browser.c mail/em-message-browser.h mail/em-network-prefs.h mail/em-popup.c mail/em-utils.c mail/importers/Makefile.am mail/mail-component-factory.c mail/mail-component.c mail/mail-config-factory.c mail/mail-config-factory.h mail/mail-config.c mail/mail-dialogs.glade mail/mail-types.h plugins/calendar-weather/calendar-weather.c plugins/mail-account-disable/mail-account-disable.c plugins/select-one-source/select-one-source.c po/POTFILES.in shell/e-component-registry.c shell/e-component-registry.h shell/e-component-view.c shell/e-component-view.h shell/e-corba-config-page.c shell/e-corba-config-page.h shell/e-shell-constants.h shell/e-shell-settings-dialog.c shell/e-shell-settings-dialog.h shell/e-shell-window-commands.c shell/e-shell-window.c shell/e-shell.h shell/e-sidebar.c shell/e-sidebar.h shell/e-user-creatable-items-handler.c shell/e-user-creatable-items-handler.h shell/es-menu.c shell/es-menu.h shell/evolution-component.h shell/evolution-config-control.c shell/evolution-config-control.h shell/evolution-listener.c shell/evolution-listener.h shell/evolution-shell-component-utils.c shell/evolution-shell-component-utils.h shell/importer/evolution-importer-client.c shell/importer/evolution-importer-client.h shell/importer/evolution-importer-listener.c shell/importer/evolution-importer-listener.h shell/importer/evolution-importer.c shell/importer/evolution-importer.h shell/importer/evolution-intelligent-importer.c shell/importer/evolution-intelligent-importer.h shell/importer/intelligent.c shell/main.c shell/test/evolution-test-component.c shell/test/evolution-test-component.h widgets/menus/gal-view-instance.c widgets/menus/gal-view-menus.c widgets/menus/gal-view-menus.h widgets/misc/Makefile.am widgets/misc/e-activity-handler.c widgets/misc/e-activity-handler.h widgets/misc/e-charset-picker.c widgets/misc/e-combo-button.c widgets/misc/e-combo-button.h widgets/misc/e-config-page.h widgets/misc/e-dropdown-button.c widgets/misc/e-dropdown-button.h widgets/misc/e-filter-bar.c widgets/misc/e-info-label.c widgets/misc/e-info-label.h widgets/misc/e-multi-config-dialog.c widgets/misc/e-multi-config-dialog.h widgets/misc/e-search-bar.c widgets/misc/e-search-bar.h widgets/misc/e-task-bar.c widgets/misc/e-task-bar.h widgets/misc/e-task-widget.c widgets/misc/e-task-widget.h widgets/misc/test-dropdown-button.c widgets/misc/test-error.c widgets/misc/test-info-label.c widgets/table/e-table-example-1.c
| * | Remove trailing whitespace, again.Matthew Barnes2009-05-271-120/+120
| |/
| * Use Behdad's brilliant git.mk to generate .gitignore files.Matthew Barnes2009-05-021-0/+2
| |
| * On Windows use -no-undefined and link with all required libraries. (JustTor Lillqvist2009-01-293-4/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2009-01-28 Tor Lillqvist <tml@novell.com> * Makefile.am: On Windows use -no-undefined and link with all required libraries. (Just throw in a bunch of libraries without cherry-picking. Having "superfluous" ones just slows down the linking a bit, but doesn't hurt at run-time.) Use LIBPST_CFLAGS. * pst-importer.c: Include <libpst/define.h> before the other libpst headers. Otherwise we get compilation errors on Windows, sigh. svn path=/trunk/; revision=37156
| * ** Fix for bug #208426Bharath Acharya2009-01-154-0/+1821
| | | | | | | | | | 2009-01-15 Bharath Acharya <abharath@novell.com> ** Fix for bug #208426 * configure.in: Added support for importing .pst files into Evolution. svn path=/trunk/; revision=37078
* Use -no-undefined on Linux tooMilan Crha2009-05-201-9/+0
| | | | | There still left two things opened, search for KILL-BONOBO to find them. One is in calendar's Makefile.am, one in composer.
* Use Behdad's brilliant git.mk to generate .gitignore files.Matthew Barnes2009-05-041-0/+2
|
* Merge revisions 37108:37199 from trunk.Matthew Barnes2009-02-013-4/+28
| | | | svn path=/branches/kill-bonobo/; revision=37200
* Merge revisions 37075:37107 from trunk.Matthew Barnes2009-01-214-0/+1821
svn path=/branches/kill-bonobo/; revision=37112