Exemplo n.º 1
0
 def endofnames(self, server, nick, channel, msg):
     namelist = self.channelnames[channel]
     pl = PesterList(namelist)
     del self.channelnames[channel]
     self.parent.namesReceived.emit(channel, pl)
     if channel == "#pesterchum" and (not hasattr(self, "joined") or not self.joined):
         self.joined = True
         self.parent.mainwindow.randhandler.setRunning(self.parent.mainwindow.randhandler.randNick in namelist)
         chums = self.mainwindow.chumList.chums
         self.isOn(*chums)
Exemplo n.º 2
0
 def endofnames(self, server, nick, channel, msg):
     namelist = self.channelnames[channel]
     pl = PesterList(namelist)
     del self.channelnames[channel]
     self.parent.namesReceived.emit(channel, pl)
     if channel == "#pesterchum" and (not hasattr(self, "joined") or not self.joined):
         self.joined = True
         self.parent.mainwindow.randhandler.setRunning(self.parent.mainwindow.randhandler.randNick in namelist)
         chums = self.mainwindow.chumList.chums
         lesschums = []
         for c in chums:
             chandle = c.handle
             if chandle in namelist:
                 lesschums.append(c)
         self.getMood(*lesschums)
Exemplo n.º 3
0
 def listend(self, server, handle, msg):
     pl = PesterList(self.channel_list)
     logging.info("---> recv \"CHANNELS END\"")
     self.parent.channelListReceived.emit(pl)
     self.channel_list = []