Ejemplo n.º 1
0
    def deactivate(self):
        """
		On deactivation check that the 'activated' flag was on then
		tell everything's ok to the test procedure.
		"""
        IPlugin.deactivate(self)
        print("Deactivated Version 1.0!")
Ejemplo n.º 2
0
	def __init__(self):
		"""
		init
		"""
		# initialise parent class
		IPlugin.__init__(self)
		print("Version 1.2")
Ejemplo n.º 3
0
	def deactivate(self):
		"""
		On deactivation check that the 'activated' flag was on then
		tell everything's ok to the test procedure.
		"""
		IPlugin.deactivate(self)
		print("Deactivated Version 1.2!")
Ejemplo n.º 4
0
	def activate(self):
		"""
		On activation tell that this has been successfull.
		"""
		# get the automatic procedure from IPlugin
		IPlugin.activate(self)
		return
Ejemplo n.º 5
0
    def __init__(self):
        """
		init
		"""
        # initialise parent class
        IPlugin.__init__(self)
        print("Version 1.2")
Ejemplo n.º 6
0
	def activate(self):
		"""
		On activation tell that this has been successfull.
		"""
		# get the automatic procedure from IPlugin
		IPlugin.activate(self)
		return
Ejemplo n.º 7
0
    def __init__(self):
        """
		init
		"""
        # initialise parent class
        IPlugin.__init__(self)
        print("Version 1.0")
        self.util = CrazyUtil(self)
Ejemplo n.º 8
0
    def activate(self):
        """
		On activation tell that this has been successfull.
		"""
        # get the automatic procedure from IPlugin
        IPlugin.activate(self)
        print("Activated Version 1.2a1!")
        return
Ejemplo n.º 9
0
	def activate(self):
		"""
		On activation tell that this has been successfull.
		"""
		# get the automatic procedure from IPlugin
		IPlugin.activate(self)
		print("Activated Version 1.2a1!")
		return
Ejemplo n.º 10
0
	def __init__(self):
		"""
		init
		"""
		# initialise parent class
		IPlugin.__init__(self)
		print("Version 1.0")
		self.util = CrazyUtil(self)
Ejemplo n.º 11
0
    def activate(self):
        """
		On activation tell that this has been successfull.
		"""
        # get the automatic procedure from IPlugin
        IPlugin.activate(self)
        print("Activated Version 1.0!")
        print("CrazyUtil = %s" % self.util)
        return
Ejemplo n.º 12
0
	def activate(self):
		"""
		On activation tell that this has been successfull.
		"""
		# get the automatic procedure from IPlugin
		IPlugin.activate(self)
		print("Activated Version 1.0!")
		print("CrazyUtil = %s" % self.util)
		return