diff options
author | Johnny Jacob <jjohnny@src.gnome.org> | 2008-06-12 05:22:15 +0800 |
---|---|---|
committer | Johnny Jacob <jjohnny@src.gnome.org> | 2008-06-12 05:22:15 +0800 |
commit | 49db161be97ce0ff71b8fa9fbdf2a00a45ded788 (patch) | |
tree | 6b6af1c2a7ba9a68c341145572b47644de8c4827 | |
parent | a8288ede3081f5dcad39f9c0fc71cf849045a6ec (diff) | |
download | gsoc2013-evolution-49db161be97ce0ff71b8fa9fbdf2a00a45ded788.tar.gz gsoc2013-evolution-49db161be97ce0ff71b8fa9fbdf2a00a45ded788.tar.zst gsoc2013-evolution-49db161be97ce0ff71b8fa9fbdf2a00a45ded788.zip |
A simple example python plugin - just hook onto events.
svn path=/trunk/; revision=35627
-rw-r--r-- | plugins/python/ChangeLog | 10 | ||||
-rw-r--r-- | plugins/python/example/Makefile.am | 30 | ||||
-rw-r--r-- | plugins/python/example/hello_python.py | 5 | ||||
-rw-r--r-- | plugins/python/example/org-gnome-hello-python-ui.xml | 16 | ||||
-rw-r--r-- | plugins/python/example/org-gnome-hello-python.eplug.xml | 20 |
5 files changed, 81 insertions, 0 deletions
diff --git a/plugins/python/ChangeLog b/plugins/python/ChangeLog index 393e1034b5..43a0bd3482 100644 --- a/plugins/python/ChangeLog +++ b/plugins/python/ChangeLog @@ -1,3 +1,13 @@ +2008-06-12 Johnny Jacob <jjohnny@novell.com> + + * example/org-gnome-hello-python-ui.xml: Added. + + * example/org-gnome-hello-python.eplug.xml: Added. + + * example/Makefile.am : Added. + + * example/hello_python.py: Added. + 2008-06-09 Johnny Jacob <jjohnny@novell.com> * python-plugin-loader.c: Python plugin loader. diff --git a/plugins/python/example/Makefile.am b/plugins/python/example/Makefile.am new file mode 100644 index 0000000000..5defe418c6 --- /dev/null +++ b/plugins/python/example/Makefile.am @@ -0,0 +1,30 @@ +INCLUDES = \ + -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ + -DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" + +@EVO_PLUGIN_RULE@ + +plugin_DATA = \ + hello_python.py \ + org-gnome-hello-python-ui.xml \ + org-gnome-hello-python.eplug + +liborg_gnome_py_plug_test_la_LIBADD= \ + $(NO_UNDEFINED_REQUIRED_LIBS) + +liborg_gnome_py_plug_test_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) + +errordir = $(privdatadir)/errors + +BUILDME = org-gnome-hello-python.eplug \ +$(error_i18n) + +BUILT_SOURCES = \ + $(BUILDME) + +EXTRA_DIST = \ + hello_python.py \ + org-gnome-hello-python-ui.xml \ + org-gnome-hello-python.eplug.xml + +CLEANFILES = $(BUILT_SOURCES) diff --git a/plugins/python/example/hello_python.py b/plugins/python/example/hello_python.py new file mode 100644 index 0000000000..16dc2a12f8 --- /dev/null +++ b/plugins/python/example/hello_python.py @@ -0,0 +1,5 @@ +'''hello_python.py - Python source designed to ''' +'''demonstrate the use of python Eplugins''' + +def say_hello(): + print 'Hello ! From python' diff --git a/plugins/python/example/org-gnome-hello-python-ui.xml b/plugins/python/example/org-gnome-hello-python-ui.xml new file mode 100644 index 0000000000..074960e84d --- /dev/null +++ b/plugins/python/example/org-gnome-hello-python-ui.xml @@ -0,0 +1,16 @@ +<Root> + <commands> + <cmd name="HelloPy" _label="Hello Python" + _tip="Python Plugin Loader tests" + /> + </commands> + + <menu> + <placeholder name="MessagePlaceholder"> + <submenu name="Message"> + <separator f="" name="sep"/> + <menuitem name="HelloPy" verb=""/> + </submenu> + </placeholder> + </menu> +</Root> diff --git a/plugins/python/example/org-gnome-hello-python.eplug.xml b/plugins/python/example/org-gnome-hello-python.eplug.xml new file mode 100644 index 0000000000..8f77d5ba01 --- /dev/null +++ b/plugins/python/example/org-gnome-hello-python.eplug.xml @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<e-plugin-list> + <e-plugin id="org.gnome.evolution.hello_python" type="python" _name="Python Test Plugin" location="@PLUGINDIR@" module_name="hello_python"> + + <author name="Johnny Jacob" email="jjohnny@novell.com"/> + + <_description> + Test Plugin for Python EPlugin loader. + </_description> + + <hook class="org.gnome.evolution.mail.bonobomenu:1.0"> + <menu id="org.gnome.evolution.mail.browser" target="select"> + <!-- the path to the bonobo menu description. Any UI items on Evolution should come here --> + <ui file="@PLUGINDIR@/org-gnome-hello-python-ui.xml"/> + <item type="item" verb="HelloPy" path="/commands/HelloPy" enable="one" activate="say_hello"/> + </menu> + </hook> + + </e-plugin> +</e-plugin-list> |