コード例 #1
0
ファイル: CrazyPlugin.py プロジェクト: zendbit/peppy
    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!")
コード例 #2
0
ファイル: VersionedPlugin12.py プロジェクト: betsegaw/peppy
	def __init__(self):
		"""
		init
		"""
		# initialise parent class
		IPlugin.__init__(self)
		print("Version 1.2")
コード例 #3
0
ファイル: VersionedPlugin12.py プロジェクト: betsegaw/peppy
	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!")
コード例 #4
0
ファイル: VersionedPlugin111.py プロジェクト: zendbit/peppy
	def activate(self):
		"""
		On activation tell that this has been successfull.
		"""
		# get the automatic procedure from IPlugin
		IPlugin.activate(self)
		return
コード例 #5
0
ファイル: VersionedPlugin12.py プロジェクト: zendbit/peppy
    def __init__(self):
        """
		init
		"""
        # initialise parent class
        IPlugin.__init__(self)
        print("Version 1.2")
コード例 #6
0
ファイル: VersionedPlugin11.py プロジェクト: betsegaw/peppy
	def activate(self):
		"""
		On activation tell that this has been successfull.
		"""
		# get the automatic procedure from IPlugin
		IPlugin.activate(self)
		return
コード例 #7
0
ファイル: CrazyPlugin.py プロジェクト: zendbit/peppy
    def __init__(self):
        """
		init
		"""
        # initialise parent class
        IPlugin.__init__(self)
        print("Version 1.0")
        self.util = CrazyUtil(self)
コード例 #8
0
ファイル: VersionedPlugin12a1.py プロジェクト: zendbit/peppy
    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
コード例 #9
0
ファイル: VersionedPlugin12a1.py プロジェクト: betsegaw/peppy
	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
コード例 #10
0
ファイル: CrazyPlugin.py プロジェクト: betsegaw/peppy
	def __init__(self):
		"""
		init
		"""
		# initialise parent class
		IPlugin.__init__(self)
		print("Version 1.0")
		self.util = CrazyUtil(self)
コード例 #11
0
ファイル: CrazyPlugin.py プロジェクト: zendbit/peppy
    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
コード例 #12
0
ファイル: CrazyPlugin.py プロジェクト: betsegaw/peppy
	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