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
예제 #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')
        )
예제 #7
0
파일: core.py 프로젝트: DrMegahertz/pycri
 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)
예제 #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()
예제 #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
예제 #10
0
 def __init__(self):
     Plugin.__init__(self)
     self._siaProcess = None
예제 #11
0
파일: ircbot.py 프로젝트: DrMegahertz/pycri
    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
예제 #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"]
예제 #15
0
파일: core.py 프로젝트: DrMegahertz/pycri
 def load(self, name):
     '''Loads the specified plugin. Example: !load dice'''
     try:
         Plugin.load(name)
     except ImportError:
         return 'No such plugin.'
예제 #16
0
 def __init__(self):
     Plugin.__init__(self)
     self.shell = None
예제 #17
0
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__allowedProcesses = ['siebsvc.exe', 'siebmtsh.exe', 'siebproc.exe', 'siebsess.exe', 'siebsh.exe']
예제 #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
예제 #20
0
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__path = None
     self.__allowedProcesses = ['squid.exe']
예제 #21
0
 def __init__(self):
     Plugin.__init__(self)
     self._nsOptions = None
 def __init__(self):
     Plugin.__init__(self)
     self.applicationOsh = None
예제 #23
0
 def __init__(self):
     BasePlugin.__init__(self)
예제 #24
0
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__path = None
예제 #25
0
 def __init__(self):
     Plugin.__init__(self)
     self.shell = None
예제 #26
0
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__allowedProcesses = ['siebsvc.exe', 'siebmtsh.exe', 'siebproc.exe', 'siebsess.exe', 'siebsh.exe']
예제 #27
0
 def __init__(self):
     Plugin.__init__(self, "image")
예제 #28
0
파일: table.py 프로젝트: ryansturmer/jot
 def __init__(self):
     Plugin.__init__(self, "table")
 def __init__(self):
     Plugin.__init__(self)
     self.__client = None
     self.__path = None
     self.__allowedProcesses = ['vstskmgr.exe']
예제 #30
0
 def __init__(self, *args, **kwargs):
     Plugin.__init__(self, *args, **kwargs)
예제 #31
0
파일: core.py 프로젝트: DrMegahertz/pycri
 def unload(self, name):
     '''Unloads the specified plugin. Example: !unload dice'''
     Plugin.unload(name)
예제 #32
0
 def __init__(self):
     Plugin.__init__(self)
     self.urlAndRegExp = {}
     self.setVersionDescription = 1
예제 #33
0
 def __init__(self):
     Plugin.__init__(self)
     self.client = None
예제 #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
예제 #36
0
 def __init__(self):
     BasePlugin.__init__(self)
     self._hdbDaemonProcess = None
예제 #37
0
 def __init__(self):
     Plugin.__init__(self)
     self.registryKeyAndValue = {}
예제 #38
0
 def __init__(self):
     BasePlugin.__init__(self)
     self.__shell = None
     self.ftCli = None
예제 #39
0
 def __init__(self):
     Plugin.__init__(self)
     self.allowedProcesses = []
예제 #40
0
 def __init__(self):
     Plugin.__init__(self)
     self.client = None
예제 #41
0
 def __init__(self):
     Plugin.__init__(self)
     self.processPath = None
     self.allowedProcesses = []
     self.useAllProcesses = 0
예제 #42
0
 def __init__(self):
     Plugin.__init__(self)
     self.command = "reg"
예제 #43
0
 def __init__(self):
     Plugin.__init__(self, "exec")
예제 #44
0
 def __init__(self):
     BasePlugin.__init__(self)
     self._hdbDaemonProcess = None
예제 #45
0
 def __init__(self):
     Plugin.__init__(self)
예제 #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
예제 #47
0
 def __init__(self):
     Plugin.__init__(self)
예제 #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*'