[tuxdroid-svn] r4966 - in software_suite_v3/software/plugin/plugin-system/trunk/plugin-system: exe
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-07-01 11:18:13
|
Author: jerome
Date: 2009-07-01 13:17:13 +0200 (Wed, 01 Jul 2009)
New Revision: 4966
Modified:
software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py
software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/resources/plugin.xml
Log:
* Commands are now in lower case, if not, 'run' command is started by default.
Modified: software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py
===================================================================
--- software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py 2009-07-01 10:57:09 UTC (rev 4965)
+++ software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py 2009-07-01 11:17:13 UTC (rev 4966)
@@ -213,7 +213,7 @@
if self.getCommand() == "run":
self.throwTrace("run command retrieved")
self.run(False)
- elif self.getCommand() == "daemonStart":
+ elif self.getCommand() == "daemon_start":
self.throwTrace("runDaemon command retrieved")
self.runDaemon()
Modified: software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/resources/plugin.xml
===================================================================
--- software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/resources/plugin.xml 2009-07-01 10:57:09 UTC (rev 4965)
+++ software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/resources/plugin.xml 2009-07-01 11:17:13 UTC (rev 4966)
@@ -49,7 +49,7 @@
name="run"
description="Give system informations." />
<command
- name="daemonStart"
+ name="daemon_start"
description="Start system daemon"
daemon="true"
notifier="true"
@@ -59,7 +59,7 @@
<task
name="Activation"
description="Activate the system CPU and Memory threshold notifier"
- command="daemonStart"
+ command="daemon_start"
type="once delayed"
activated="false"
|