diff options
author | necoro <> | 2007-07-20 07:19:27 +0000 |
---|---|---|
committer | necoro <> | 2007-07-20 07:19:27 +0000 |
commit | d1a5c99708fa5e2fc0387e31ccb57f004d74f2fc (patch) | |
tree | 0441e1cec9d2881f939a017ba3e9ba2da9a2797e /plugins/etc_proposals.xml | |
parent | 0a8d3b8add548efbc44a67c3eb1223ff94aaffc5 (diff) | |
download | portato-d1a5c99708fa5e2fc0387e31ccb57f004d74f2fc.tar.gz portato-d1a5c99708fa5e2fc0387e31ccb57f004d74f2fc.tar.bz2 portato-d1a5c99708fa5e2fc0387e31ccb57f004d74f2fc.zip |
new Plugin Scheme
Diffstat (limited to 'plugins/etc_proposals.xml')
-rw-r--r-- | plugins/etc_proposals.xml | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/plugins/etc_proposals.xml b/plugins/etc_proposals.xml index 8686072..410ce4b 100644 --- a/plugins/etc_proposals.xml +++ b/plugins/etc_proposals.xml @@ -1,17 +1,19 @@ -<?xml version="1.0" encoding="UTF-8" ?> -<plugin - author="René 'Necoro' Neumann" - name="Etc-proposals plugin"> +<?xml version="1.0" encoding="UTF-8" ?> +<plugin xmlns="http://portato.sourceforge.net/plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://portato.sourceforge.net/plugin http://portato.sourceforge.net/plugin.xsd"> + + <author>René 'Necoro' Neumann</author> + <name>Etc-proposals plugin</name> + <import>portato.plugins.etc_proposals</import> - <hook - hook = "after_emerge" - call = "etc_prop"> - <connect type="after" /> - </hook> + <hooks> + <hook type = "after_emerge" call = "etc_prop"> + <connect type="after" /> + </hook> + </hooks> + + <menu> + <item call="etc_prop_menu">Et_c-Proposals</item> + </menu> - <menu - label= "Et_c-Proposals" - call = "etc_prop_menu" - /> </plugin> |