def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__process = None
     self.__isWinOs = None
     self.__path = None
     self.__configFileName = 'ias.properties'
 def __init__(self):
     Plugin.__init__(self)
     self.__shell = None
     self.bin_path = None
     self.__crgMap = None
     self.applicationOsh = None
     self.cmdlets_prefix = ""
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__process = None
     self.__isWinOs = None
     self.__cmd = None
     self.__listenerStatus = None
 def __init__(self):
     Plugin.__init__(self)
     self.__shell = None
     self.ftCli_bin_path = None
     self.fsSeparator = None
     self.ftCli_executePath = None
     self.ftCli_name = None
     self.domainName = None
 def __init__(self):
     Plugin.__init__(self)
     self.__shell = None
     self.__process = None
     self.__processInfo = None
     self.__isWinOs = None
     self.__listenerStatus = None
     self.__isRACWin = False
Exemplo n.º 6
0
    def __init__(self, *args, **kwargs):
        Plugin.__init__(self, *args, **kwargs)

        self.url = ('http://hd{}.freebox.fr/pub/'
                    'remote_control?code={}&key={{}}').format(
            self.conf('boxnumber'),
            self.conf('remotecode')
        )
Exemplo n.º 7
0
 def reload(self, name='all'):
     '''Reloads the specified plugin. Example: !reload dice'''
     try:
         if name == 'all':
             for module in Plugin.library:
                 Plugin.reload(module)
         else:
             Plugin.reload(name)
     except KeyError:
         return 'No such plugin is currently loaded. Try !load {0}'.format(name)
Exemplo n.º 8
0
 def __init__(self, *args, **kwargs):
     Plugin.__init__(self, *args, **kwargs)
     lircrc = tempfile.NamedTemporaryFile('w', delete=False)
     self.lircrc = lircrc.name
     for key, value in self.allconf():
         lircrc.write(
             'begin\n'
             '  prog = mediacontroller\n'
             '  button = {}\n'
             '  config = {}\n'
             'end\n'.format(key, value)
         )
     lircrc.close()
Exemplo n.º 9
0
 def __init__(self):
     Plugin.__init__(self)
     self.version = None
     self.supportRouting = None
     self.msgStorageLimit = None
     self.jStorageLimit = None
     self.applicationOsh = None
     self.client = None
     self.context = None
     self.domainParamsList = None
     self.msmqParamsList = None
     self.domainFqdn = None
     self.installationType = None
     self.isTriggersEnabled = None
     self.msmqInstallParams = None
Exemplo n.º 10
0
 def __init__(self):
     Plugin.__init__(self)
     self._siaProcess = None
Exemplo n.º 11
0
    def startFactory(self):
        for plugin in settings.PLUGINS:
            Plugin.load(plugin)

        protocol.ClientFactory.startFactory(self)
 def __init__(self):
     Plugin.__init__(self)
     self.__processes = {}
     self.__cookies = None
Exemplo n.º 13
0
 def __init__(self, *args, **kwargs):
     Plugin.__init__(self, *args, **kwargs)
     self.lirc_irsend = self.conf('irsend')
     self.lirc_device = self.conf('device')
     self.lirc_remotename = self.conf('remotename')
     self.__read_status()
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__path = None
     self.__allowedProcesses = ["msg_server.exe", "sapgui.exe", "mmanager.exe", "saplogon.exe"]
Exemplo n.º 15
0
 def load(self, name):
     '''Loads the specified plugin. Example: !load dice'''
     try:
         Plugin.load(name)
     except ImportError:
         return 'No such plugin.'
Exemplo n.º 16
0
 def __init__(self):
     Plugin.__init__(self)
     self.shell = None
Exemplo n.º 17
0
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__allowedProcesses = ['siebsvc.exe', 'siebmtsh.exe', 'siebproc.exe', 'siebsess.exe', 'siebsh.exe']
Exemplo n.º 18
0
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__process = None
     self.__applicationOsh = None
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__process = None
     self.__isWinOs = None
     self.__cmd = None
Exemplo n.º 20
0
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__path = None
     self.__allowedProcesses = ['squid.exe']
Exemplo n.º 21
0
 def __init__(self):
     Plugin.__init__(self)
     self._nsOptions = None
 def __init__(self):
     Plugin.__init__(self)
     self.applicationOsh = None
Exemplo n.º 23
0
 def __init__(self):
     BasePlugin.__init__(self)
Exemplo n.º 24
0
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__path = None
Exemplo n.º 25
0
 def __init__(self):
     Plugin.__init__(self)
     self.shell = None
Exemplo n.º 26
0
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__allowedProcesses = ['siebsvc.exe', 'siebmtsh.exe', 'siebproc.exe', 'siebsess.exe', 'siebsh.exe']
Exemplo n.º 27
0
 def __init__(self):
     Plugin.__init__(self, "image")
Exemplo n.º 28
0
 def __init__(self):
     Plugin.__init__(self, "table")
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__path = None
     self.__allowedProcesses = ['vstskmgr.exe']
Exemplo n.º 30
0
 def __init__(self, *args, **kwargs):
     Plugin.__init__(self, *args, **kwargs)
Exemplo n.º 31
0
 def unload(self, name):
     '''Unloads the specified plugin. Example: !unload dice'''
     Plugin.unload(name)
Exemplo n.º 32
0
 def __init__(self):
     Plugin.__init__(self)
     self.urlAndRegExp = {}
     self.setVersionDescription = 1
Exemplo n.º 33
0
 def __init__(self):
     Plugin.__init__(self)
     self.client = None
Exemplo n.º 34
0
 def __init__(self):
     Plugin.__init__(self)
     self.__framework = None
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__cmd = None
     self.__applicationOsh = None
Exemplo n.º 36
0
 def __init__(self):
     BasePlugin.__init__(self)
     self._hdbDaemonProcess = None
Exemplo n.º 37
0
 def __init__(self):
     Plugin.__init__(self)
     self.registryKeyAndValue = {}
Exemplo n.º 38
0
 def __init__(self):
     BasePlugin.__init__(self)
     self.__shell = None
     self.ftCli = None
Exemplo n.º 39
0
 def __init__(self):
     Plugin.__init__(self)
     self.allowedProcesses = []
Exemplo n.º 40
0
 def __init__(self):
     Plugin.__init__(self)
     self.client = None
Exemplo n.º 41
0
 def __init__(self):
     Plugin.__init__(self)
     self.processPath = None
     self.allowedProcesses = []
     self.useAllProcesses = 0
Exemplo n.º 42
0
 def __init__(self):
     Plugin.__init__(self)
     self.command = "reg"
Exemplo n.º 43
0
 def __init__(self):
     Plugin.__init__(self, "exec")
Exemplo n.º 44
0
 def __init__(self):
     BasePlugin.__init__(self)
     self._hdbDaemonProcess = None
Exemplo n.º 45
0
 def __init__(self):
     Plugin.__init__(self)
Exemplo n.º 46
0
 def __init__(self, *args, **kwargs):
     Plugin.__init__(self, *args, **kwargs)
     self._main_process = None
     self._db2_home_path = None
     self._db2_version = None
Exemplo n.º 47
0
 def __init__(self):
     Plugin.__init__(self)
Exemplo n.º 48
0
 def __init__(self):
     Plugin.__init__(self)
     self.pattern = r'com\.ibm\.ws\.runtime\.WsServer\s+"?[^"|\s]*"?\s+([^\s]*)\s+([^\s]*)\s+([^\s]*)\s*'