Add long message splitting in crosslink

This commit is contained in:
Maurizio Porrato 2010-09-04 16:48:19 +02:00
父節點 546c723995
當前提交 79a7fd832d
共有 1 個檔案被更改,包括 5 行新增2 行删除

查看文件

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