aboutsummaryrefslogtreecommitdiffstats
path: root/modules/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Add an EOfflineAlert module.Matthew Barnes2010-10-191-0/+1
| | | | | | | | | This module posts an alert to the first EShellWindow when starting offline, and also posts an alert when the network connection drops. We get frequent questions on the mailing list from users not realizing Evolution is starting in offline mode, so this is meant to help address that confusion.
* Convert plugin-manager to an EExtension.Matthew Barnes2010-09-131-0/+1
| | | | How ironic.
* Add composer-autosave to SUBDIRS.Matthew Barnes2010-09-041-0/+1
|
* Convert "startup-wizard" to an EExtension.Matthew Barnes2010-06-031-0/+1
| | | | | | | | | | | | | | Convert the "startup-wizard" EPlugin to an EExtension, and fix up the importing UI a bit (but it still needs a lot more love). Importing progress is now shown directly in the GtkAssistant window. Define a new EConfigItem type (E_CONFIG_PAGE_PROGRESS) for creating progress pages in a GtkAssistant. Also, change EMAccountEditor semantics slightly: you now have to call e_config_create_window() manually after creating a new EMAccountEditor instance. This allows extra EConfigItems (specifications for the window content) to be added manually before the window is created.
* Merge branch 'express2'Matthew Barnes2010-05-271-4/+4
|\
| * Merge gnome-2-30 into express2 to get bugfixesFederico Mena Quintero2010-04-101-1/+6
| |\ | | | | | | | | | | | | | | | Note that express2 got some documentation for EExtensible and friends, and that documentation is not in gnome-2-30 yet. We need to cherry-pick those commits into gnome-2-30 and elsewhere.
| | * [win32] Implement network status detectionFridrich Strba2010-04-081-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The implementation is done using System Event Notification Service by implementing ConnectionMade ConnectionMadeNoQOCInfo and ConnectionLost methods of ISensNetwork interface. Make the subscription to the network status notification receive the event only if the ownerof the subscription is logged on to the same computer as the publisher. This makes this module work on Windows Vista and Windows 7 with normal user account. Don't try to build Windows SENS when not building for Windows. Extract the relevant COM structs and typedefs from mingw-w64 headers to allow to build the module with mingw.org toolchain and fix build breakages with Microsoft compilers.
| | * Convert NetworkManager integration to an EShell extension.Matthew Barnes2010-04-081-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | This demonstrates how to extend EShell without having to modify and recompile e-shell.c. If NetworkManager integration is enabled, the extension is loaded automatically when the EShell is created. The same pattern can be applied to integrate other network monitoring software like ConnMan or Microsoft's Wireless Zero Configuration.
| * | Add ConnMan support (words fail me ...)Michael Meeks2010-04-071-0/+5
| | | | | | | | | | | | | | | | | | | | | Conflicts: configure.ac modules/Makefile.am
| * | Convert NetworkManager integration to an EShell extension.Matthew Barnes2010-04-071-1/+12
| |/ | | | | | | | | | | | | | | | | This demonstrates how to extend EShell without having to modify and recompile e-shell.c. If NetworkManager integration is enabled, the extension is loaded automatically when the EShell is created. The same pattern can be applied to integrate other network monitoring software like ConnMan or Microsoft's Wireless Zero Configuration.
* | Convert "default-mailer" plugin to an extension.Matthew Barnes2010-05-131-0/+1
| |
* | Add ConnMan support (words fail me ...)Michael Meeks2010-03-261-1/+6
| |
* | [win32] Implement network status detectionFridrich Strba2010-03-241-1/+6
| | | | | | | | | | | | | | | | The implementation is done using System Event Notification Service by implementing ConnectionMade ConnectionMadeNoQOCInfo and ConnectionLost methods of ISensNetwork interface. Introduces C++ dependency for Windows port only
* | Convert NetworkManager integration to an EShell extension.Matthew Barnes2010-03-201-1/+12
|/ | | | | | | | | This demonstrates how to extend EShell without having to modify and recompile e-shell.c. If NetworkManager integration is enabled, the extension is loaded automatically when the EShell is created. The same pattern can be applied to integrate other network monitoring software like ConnMan or Microsoft's Wireless Zero Configuration.
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-301-1/+9
| | | | | | | | | | | | | - 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.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+3
- 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.