aboutsummaryrefslogtreecommitdiffstats
path: root/modules/plugin-python
Commit message (Collapse)AuthorAgeFilesLines
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-2/+5
|
* Simplify library dependency flags.Matthew Barnes2011-10-051-2/+2
| | | | | | | | | 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.
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-3/+5
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-272-0/+6
|
* Coding style and whitespace cleanup.Matthew Barnes2011-03-061-1/+2
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-251-5/+1
|
* More whitespace cleanup.Matthew Barnes2011-01-311-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-1/+1
|
* Bug #608766 - Replace pthread with GLib's GThreadMilan Crha2010-04-151-1/+1
|
* Fix a potential uninitialized argument in e-plugin-python.c.Matthew Barnes2010-01-161-4/+6
| | | | | | | | | | | if (PyCallable_Check (priv->pClass)) pInstance = PyObject_CallObject (priv->pClass, NULL); pValue = PyObject_CallMethod (pInstance, (gchar *) name, NULL); 'pInstance' may be uninitialzed in call to PyObject_CallMethod(). Found by the Clang Static Analyzer.
* BugĀ 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-171-1/+1
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-012-7/+9
|
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-308-0/+442
- 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.