Beispiel #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!")
Beispiel #2
0
	def __init__(self):
		"""
		init
		"""
		# initialise parent class
		IPlugin.__init__(self)
		print("Version 1.2")
Beispiel #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!")
Beispiel #4
0
	def activate(self):
		"""
		On activation tell that this has been successfull.
		"""
		# get the automatic procedure from IPlugin
		IPlugin.activate(self)
		return
Beispiel #5
0
    def __init__(self):
        """
		init
		"""
        # initialise parent class
        IPlugin.__init__(self)
        print("Version 1.2")
Beispiel #6
0
	def activate(self):
		"""
		On activation tell that this has been successfull.
		"""
		# get the automatic procedure from IPlugin
		IPlugin.activate(self)
		return
Beispiel #7
0
    def __init__(self):
        """
		init
		"""
        # initialise parent class
        IPlugin.__init__(self)
        print("Version 1.0")
        self.util = CrazyUtil(self)
Beispiel #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
Beispiel #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
Beispiel #10
0
	def __init__(self):
		"""
		init
		"""
		# initialise parent class
		IPlugin.__init__(self)
		print("Version 1.0")
		self.util = CrazyUtil(self)
Beispiel #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
Beispiel #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