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/noroot.xml | |
parent | 0a8d3b8add548efbc44a67c3eb1223ff94aaffc5 (diff) | |
download | portato-d1a5c99708fa5e2fc0387e31ccb57f004d74f2fc.tar.gz portato-d1a5c99708fa5e2fc0387e31ccb57f004d74f2fc.tar.bz2 portato-d1a5c99708fa5e2fc0387e31ccb57f004d74f2fc.zip |
new Plugin Scheme
Diffstat (limited to 'plugins/noroot.xml')
-rw-r--r-- | plugins/noroot.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/noroot.xml b/plugins/noroot.xml index 7e744ef..850a039 100644 --- a/plugins/noroot.xml +++ b/plugins/noroot.xml @@ -1,12 +1,12 @@ -<?xml version="1.0" encoding="UTF-8" ?> -<plugin - author="René 'Necoro' Neumann" - name="No Root"> +<?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>No Root</name> <import>portato.plugins.noroot</import> - <hook - hook = "am_i_root" - call = "i_am_root"> - <connect type="override" /> - </hook> + <hooks> + <hook type = "am_i_root" call = "i_am_root"> + <connect type="override" /> + </hook> + </hooks> </plugin> |