Moved QueueMessage and subclasses from hooke.ui to the more central hooke.engine.
[hooke.git] / hooke / plugin / debug.py
index cc9101de77081d1978860c9ef56e444675106095..1855450d4d3293ecd6b33d05bba95e48afa7179a 100644 (file)
@@ -2,15 +2,15 @@
 #
 # This file is part of Hooke.
 #
-# Hooke is free software: you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation, either
-# version 3 of the License, or (at your option) any later version.
+# Hooke is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
 #
-# Hooke is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU Lesser General Public License for more details.
+# Hooke is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
+# Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with Hooke.  If not, see
@@ -32,17 +32,16 @@ from ..plugin import Builtin
 class DebugPlugin (Builtin):
     def __init__(self):
         super(DebugPlugin, self).__init__(name='debug')
-        self._commands = [VersionCommand(), DebugCommand()]
-        self._setup_commands()
+        self._commands = [VersionCommand(self), DebugCommand(self)]
 
 
 class VersionCommand (Command):
     """Get the Hooke version, as well as versions for important Python
     packages.  Useful for debugging.
     """
-    def __init__(self):
+    def __init__(self, plugin):
         super(VersionCommand, self).__init__(
-            name='version', help=self.__doc__)
+            name='version', help=self.__doc__, plugin=plugin)
 
     def _run(self, hooke, inqueue, outqueue, params):
         lines = [
@@ -72,7 +71,7 @@ class VersionCommand (Command):
 class DebugCommand (Command):
     """Get Hooke attributes.  Useful for debugging.
     """
-    def __init__(self):
+    def __init__(self, plugin):
         super(DebugCommand, self).__init__(
             name='debug',
             arguments=[
@@ -80,7 +79,7 @@ class DebugCommand (Command):
 Hooke attribute to print.
 """.strip()),
                 ],
-            help=self.__doc__)
+            help=self.__doc__, plugin=plugin)
 
     def _run(self, hooke, inqueue, outqueue, params):
         if params['attribute'] == None: