aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/pst-import/pst-importer.c
Commit message (Collapse)AuthorAgeFilesLines
* 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-021-8/+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.
* 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
|
* Only #include Camel's top-level header.Matthew Barnes2010-04-031-10/+0
|
* 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
|
* Bug 599245 - Use bitwise AND instead of logical AND for checking flagsThomas Andersen2009-10-221-2/+2
|
* Trim unused or unnecessary bits from the import framework.Matthew Barnes2009-09-261-0/+1
|
* 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 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
|
* 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 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
| |
* | More whitespace cleanup.Matthew Barnes2009-07-191-4/+4
| |
* | Fix excessive whitespace.Matthew Barnes2009-07-141-2/+0
| |
* | 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
| |
* | Remove trailing whitespace, again.Matthew Barnes2009-05-271-120/+120
|/
* On Windows use -no-undefined and link with all required libraries. (JustTor Lillqvist2009-01-291-1/+1
| | | | | | | | | | | | | | | | | | 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-151-0/+1765
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