Add long message splitting in crosslink

This commit is contained in:
Maurizio Porrato 2010-09-04 16:48:19 +02:00
vanhempi 546c723995
commit 79a7fd832d
1 muutettua tiedostoa jossa 5 lisäystä ja 2 poistoa

Näytä tiedosto

@ -61,8 +61,11 @@ class FRNCrosslinkClient(FRNClient):
ss,
c['on'],
))
reply = '<br/>'.join(cl)
self.sendTextMessage(client, reply)
sm = [cl[i*15:(i+1)*15]
for i in range((len(cl)+14)/15)]
for m in sm:
reply = '<br>'.join(m)
self.sendTextMessage(client, reply)
def decodeTX(self, my_id):
log.msg("Got TX ack for %s" % self.user.ON)