1
0
Derivar 0

Add long message splitting in crosslink

Este cometimento está contido em:
Maurizio Porrato 2010-09-04 16:48:19 +02:00
ascendente 546c723995
cometimento 79a7fd832d
1 ficheiros modificados com 5 adições e 2 eliminações

Ver ficheiro

@ -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)