Add long message splitting in crosslink

このコミットが含まれているのは:
Maurizio Porrato 2010-09-04 16:48:19 +02:00
コミット 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)