diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-03-31 09:17:33 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-03-31 09:17:33 +0800 |
commit | 3b9ea2d060d2705563950fb063532aff54b1a08c (patch) | |
tree | fa33ff724c4833f9158d9b63397c1500c2a2daea /my-evolution/GNOME_Evolution_Summary.oaf.in | |
parent | b5ee9fc4243e93781e2061f42f1b0af62696b499 (diff) | |
download | gsoc2013-evolution-3b9ea2d060d2705563950fb063532aff54b1a08c.tar gsoc2013-evolution-3b9ea2d060d2705563950fb063532aff54b1a08c.tar.gz gsoc2013-evolution-3b9ea2d060d2705563950fb063532aff54b1a08c.tar.bz2 gsoc2013-evolution-3b9ea2d060d2705563950fb063532aff54b1a08c.tar.lz gsoc2013-evolution-3b9ea2d060d2705563950fb063532aff54b1a08c.tar.xz gsoc2013-evolution-3b9ea2d060d2705563950fb063532aff54b1a08c.tar.zst gsoc2013-evolution-3b9ea2d060d2705563950fb063532aff54b1a08c.zip |
[Some initial broken support for building components as shlib. Mostly
just a playground for testing the idea.]
* Makefile.am: Added support for the ENABLE_SHLIB_COMPONENTS
conditional.
* GNOME_Evolution_Summary.oaf.in.in: New.
* e-summary-mail.c (update_folder_cb): Protect against
summary->mail being NULL.
* component-factory.c: Add a shlib factory.
(create_component): Get a @factory and @data.
(component_factory_init): Actually make it use a
BonoboGenericFactory again.
* configure.in: Add argument `--enable-shlib-components'. New
substitutions OAF_SHLIB_LOCATION, OAF_SHLIB_PREFIX,
OAF_SHLIB_SUFFIX.
svn path=/trunk/; revision=16299
Diffstat (limited to 'my-evolution/GNOME_Evolution_Summary.oaf.in')
-rw-r--r-- | my-evolution/GNOME_Evolution_Summary.oaf.in | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/my-evolution/GNOME_Evolution_Summary.oaf.in b/my-evolution/GNOME_Evolution_Summary.oaf.in index 60a49aa845..d9860c5ba4 100644 --- a/my-evolution/GNOME_Evolution_Summary.oaf.in +++ b/my-evolution/GNOME_Evolution_Summary.oaf.in @@ -1,23 +1,36 @@ <oaf_info> <oaf_server iid="OAFIID:GNOME_Evolution_Summary_ShellComponent" - type="exe" - location="evolution-executive-summary"> + type="factory" + location="OAFIID:GNOME_Evolution_Summary_ShellComponentFactory"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/Evolution/ShellComponent:1.0"/> </oaf_attribute> <oaf_attribute name="description" type="string" - _value="Evolution component for the executive summary."/> + _value="Evolution Summary component."/> <oaf_attribute name="evolution:shell-component-icon" type="string" value="evolution-today.png"/> </oaf_server> + <oaf_server iid="OAFIID:GNOME_Evolution_Summary_ShellComponentFactory" + type="shlib" + location="libevolution-executive-summary.so"> + + <oaf_attribute name="repo_ids" type="stringv"> + <item value="IDL:GNOME/GenericFactory:1.0"/> + </oaf_attribute> + + <oaf_attribute name="description" type="string" + _value="Factory for the Evolution Summary component."/> + + </oaf_server> + <oaf_server iid="OAFIID:GNOME_Evolution_Summary_ConfigControlFactory" - type="exe" - location="evolution-executive-summary"> + type="shlib" + location="libevolution-executive-summary.so"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/GenericFactory:1.0"/> |