Esempio n. 1
0
  def afterfirstactive(self, _=None):
    """
    do something on connect
    """
    AardwolfBasePlugin.afterfirstactive(self)

    self.checkdaily()
Esempio n. 2
0
 def afterfirstactive(self, _=None):
   """
   do something on connect
   """
   AardwolfBasePlugin.afterfirstactive(self)
   for container in self.containers:
     self.containers[container].refresh()
Esempio n. 3
0
    def afterfirstactive(self, _=None):
        """
    do something on connect
    """
        AardwolfBasePlugin.afterfirstactive(self)

        self.checkdaily()
Esempio n. 4
0
 def afterfirstactive(self, _=None):
     """
 do something on connect
 """
     AardwolfBasePlugin.afterfirstactive(self)
     for container in self.containers:
         self.containers[container].refresh()
Esempio n. 5
0
 def afterfirstactive(self, _=None):
   """
   set the title when we first connect
   """
   AardwolfBasePlugin.afterfirstactive(self)
   if self.api.get('setting.gets')('lasttitle'):
     title = self.api.get('setting.gets')('lasttitle')
     self.api.get('send.execute')('title %s' % title)
Esempio n. 6
0
 def afterfirstactive(self, _=None):
     """
 set the title when we first connect
 """
     AardwolfBasePlugin.afterfirstactive(self)
     if self.api.get('setting.gets')('lasttitle'):
         title = self.api.get('setting.gets')('lasttitle')
         self.api.get('send.execute')('title %s' % title)
Esempio n. 7
0
    def afterfirstactive(self, _=None):
        """
    do something on connect
    """
        AardwolfBasePlugin.afterfirstactive(self)

        self.api.get('send.msg')('requesting room')
        self.api.get('GMCP.sendpacket')('request room')
Esempio n. 8
0
  def afterfirstactive(self, _=None):
    """
    do something on connect
    """
    AardwolfBasePlugin.afterfirstactive(self)

    self.api.get('send.msg')('requesting room')
    self.api.get('GMCP.sendpacket')('request room')
Esempio n. 9
0
 def afterfirstactive(self, args=None):
   """
   refresh flags
   """
   AardwolfBasePlugin.afterfirstactive(self)
   self.refreshflags()
Esempio n. 10
0
 def afterfirstactive(self, _=None):
     """
 do something on connect
 """
     AardwolfBasePlugin.afterfirstactive(self)
     self.cmdqueue.addtoqueue('cpcheck', '')
Esempio n. 11
0
 def afterfirstactive(self, _=None):
   """
   do something on connect
   """
   AardwolfBasePlugin.afterfirstactive(self)
   self.refreshflags()
Esempio n. 12
0
 def afterfirstactive(self, _=None):
   """
   do something on connect
   """
   AardwolfBasePlugin.afterfirstactive(self)
   self.api('cmdq.addtoqueue')('cpcheck', '')