Mercurial > libervia-pubsub
diff sat_pubsub/tap.py @ 242:a6170637690d
remote roster partial support
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 27 May 2012 15:36:06 +0200 |
parents | d2bdff8a4b45 |
children | 2a948abb77ed |
line wrap: on
line diff
--- a/sat_pubsub/tap.py Sat May 26 16:09:27 2012 +0200 +++ b/sat_pubsub/tap.py Sun May 27 15:36:06 2012 +0200 @@ -64,6 +64,7 @@ from sat_pubsub import __version__ from sat_pubsub.backend import BackendService +from sat_pubsub.remote_roster import RosterClient class Options(usage.Options): optParameters = [ @@ -142,4 +143,8 @@ ps.setHandlerParent(cs) resource.pubsubService = ps + rc = RosterClient() + rc.setHandlerParent(cs) + bs.roster = rc + return s