diff options
author | Necoro <> | 2008-01-14 22:49:50 +0000 |
---|---|---|
committer | Necoro <> | 2008-01-14 22:49:50 +0000 |
commit | 9fbebc55eae3efabaeeab9d2d25a3952eccba51f (patch) | |
tree | c8f5b921cad2d39100eb1cf42f6a8b0e8a4ef738 /plugins/old | |
parent | f9b5364f7e3c0443e06976edf3987b412e15bea9 (diff) | |
download | portato-9fbebc55eae3efabaeeab9d2d25a3952eccba51f.tar.gz portato-9fbebc55eae3efabaeeab9d2d25a3952eccba51f.tar.bz2 portato-9fbebc55eae3efabaeeab9d2d25a3952eccba51f.zip |
r634@Devoty: necoro | 2008-01-14 23:48:24 +0100
Removed the broken plugins until they get replaced
Diffstat (limited to 'plugins/old')
-rw-r--r-- | plugins/old/resume_loop.xml | 19 | ||||
-rw-r--r-- | plugins/old/shutdown.xml | 16 |
2 files changed, 35 insertions, 0 deletions
diff --git a/plugins/old/resume_loop.xml b/plugins/old/resume_loop.xml new file mode 100644 index 0000000..124d61d --- /dev/null +++ b/plugins/old/resume_loop.xml @@ -0,0 +1,19 @@ +<?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>Emerge Resume Loop</name> + <import>portato.plugins.resume_loop</import> + + <hooks> + <hook type="emerge" call="set_data" /> + + <hook type="after_emerge" call="resume_loop"> + <connect type="before">*</connect> + </hook> + </hooks> + + <options> + <option>disabled</option> + </options> + +</plugin> diff --git a/plugins/old/shutdown.xml b/plugins/old/shutdown.xml new file mode 100644 index 0000000..75323b1 --- /dev/null +++ b/plugins/old/shutdown.xml @@ -0,0 +1,16 @@ +<?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>Shutdown</name> + <import>portato.plugins.shutdown</import> + + <hooks> + <hook type = "after_emerge" call = "shutdown"> + <connect type="after">*</connect> + </hook> + </hooks> + + <options> + <option>disabled</option> + </options> +</plugin> |