diff options
author | Not Zed <NotZed@Ximian.com> | 2004-11-18 12:04:10 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-11-18 12:04:10 +0800 |
commit | bb519b37e9591732372e32fe6a3182b1f45df390 (patch) | |
tree | 5cf95f9f5efa217a40166be9d1b02128218e0600 /doc | |
parent | cc8aa371f56e4fa5f07142954bd350d0b33b6d51 (diff) | |
download | gsoc2013-evolution-bb519b37e9591732372e32fe6a3182b1f45df390.tar.gz gsoc2013-evolution-bb519b37e9591732372e32fe6a3182b1f45df390.tar.zst gsoc2013-evolution-bb519b37e9591732372e32fe6a3182b1f45df390.zip |
define load-on-startup parameter.
2004-11-18 Not Zed <NotZed@Ximian.com>
* evolution-plugin-manual.xml: define load-on-startup parameter.
svn path=/trunk/; revision=27940
Diffstat (limited to 'doc')
-rw-r--r-- | doc/devel/ChangeLog | 4 | ||||
-rw-r--r-- | doc/devel/evolution-plugin-manual.xml | 14 |
2 files changed, 18 insertions, 0 deletions
diff --git a/doc/devel/ChangeLog b/doc/devel/ChangeLog index 7355ba8e85..0b137d8036 100644 --- a/doc/devel/ChangeLog +++ b/doc/devel/ChangeLog @@ -1,3 +1,7 @@ +2004-11-18 Not Zed <NotZed@Ximian.com> + + * evolution-plugin-manual.xml: define load-on-startup parameter. + 2004-11-03 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added author section to eplugin diff --git a/doc/devel/evolution-plugin-manual.xml b/doc/devel/evolution-plugin-manual.xml index 9b37dc5f2d..f281bb173f 100644 --- a/doc/devel/evolution-plugin-manual.xml +++ b/doc/devel/evolution-plugin-manual.xml @@ -550,6 +550,7 @@ ... type="shlib" location="/full/path/name.so" + load-on-startup ? ... <hook class="..."> ... @@ -573,6 +574,19 @@ </simpara> </listitem> </varlistentry> + <varlistentry> + <term><parameter>load-on-startup</parameter></term> + <listitem> + <simpara> + If provided, indicates that the plugin should be loaded and + enabled when the application is first started. Normally the + plugin is only loaded when necessary, i.e. when a callback is + first invoked. Only use this option if you have defined an + <function>e_plugin_lib_enable</function> callback in your + module, and only if absolutely necessary. + </simpara> + </listitem> + </varlistentry> </variablelist> </sect2> |