コード例 #1
0
ファイル: VersionedPlugin10.py プロジェクト: sueastside/yapsy
    def deactivate(self):
        """
		On deactivation check that the 'activated' flag was on then
		tell everything's ok to the test procedure.
		"""
        IPlugin.deactivate(self)
        TEST_MESSAGE("Deactivated Version 1.0!")
コード例 #2
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)
		TEST_MESSAGE("Deactivated Version 1.2a1!")
コード例 #3
0
ファイル: cdmpluginbase.py プロジェクト: topin89/codimension
    def deactivate(self):
        """Deactivates the plugin.

        Also clears references to the IDE settings and global data
        """
        self.ide.deactivate()
        IPlugin.deactivate(self)
コード例 #4
0
 def deactivate(self):
     """
     Just call the parent class's method
     """
     if len(self._supported_dbms)>0:
         get_notification_center().disconnectDBSettingChanged(self.connect_to_db)
     self.option_widgets = {}
     removeLogger(self.plugin_name)
     IPlugin.deactivate(self)
コード例 #5
0
 def deactivate(self):
     IPlugin.deactivate(self)
     return
コード例 #6
0
ファイル: __init__.py プロジェクト: SyndicateSync/yapsy
	def deactivate(self):
		"""
		On deactivation check that the 'activated' flag was on then
		tell everything's ok to the test procedure.
		"""
		IPlugin.deactivate(self)
コード例 #7
0
ファイル: __init__.py プロジェクト: carriercomm/PASTA
 def deactivate(self):
     """Deactivation of the plugin"""
     IPlugin.deactivate(self)
コード例 #8
0
ファイル: ConfigPlugin.py プロジェクト: ysdhaixin/yapsy
	def deactivate(self):
		"""
		Just call the parent class's method
		"""
		IPlugin.deactivate(self)
コード例 #9
0
ファイル: attachments.py プロジェクト: dstar4138/emp_draft
 def deactivate(self):
     IPlugin.deactivate(self)
     self.save()
コード例 #10
0
ファイル: __init__.py プロジェクト: agustinhenze/yapsy.debian
	def deactivate(self):
		"""
		On deactivation check that the 'activated' flag was on then
		tell everything's ok to the test procedure.
		"""
		IPlugin.deactivate(self)
コード例 #11
0
ファイル: rdw_plugin.py プロジェクト: fliphess/rdiffweb
 def deactivate(self):
     logger.debug("deactivate plugin object [%s]",
                  self.__class__.__name__)
     return IPlugin.deactivate(self)
コード例 #12
0
ファイル: categories.py プロジェクト: DeepuDon/mastiff
 def deactivate(self):
     """Deactivate plugin."""
     IPlugin.deactivate(self)
コード例 #13
0
ファイル: __init__.py プロジェクト: zws0932/mastiff
 def deactivate(self):
     """Deactivate plugin."""
     IPlugin.deactivate(self)
コード例 #14
0
ファイル: cdmpluginbase.py プロジェクト: eaglexmw/codimension
 def deactivate( self ):
     """ Deactivates the plugin and clears references to
         the IDE settings and global data """
     self.ide.deactivate()
     IPlugin.deactivate( self )
     return