Changeset 755
- Timestamp:
- 08/03/08 08:14:34 (4 months ago)
- Files:
-
- oss/jlib/examples/basic/client.py (modified) (3 diffs)
- oss/jlib/jlib/core/pubsub.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
oss/jlib/examples/basic/client.py
r754 r755 37 37 38 38 self.logger = jlibLogger() 39 #self.logger.setComponent(jlibLoggerComponent())39 self.logger.setComponent(jlibLoggerComponent()) 40 40 QtCore.QObject.connect(self.actionShowLog, QtCore.SIGNAL("toggled(bool)"), 41 41 self.changeLogAreaView) 42 #QtCore.QObject.connect(self.logger, QtCore.SIGNAL("logData(PyQt_PyObject)"),43 #self.logData)42 QtCore.QObject.connect(self.logger, QtCore.SIGNAL("logData(PyQt_PyObject)"), 43 self.logData) 44 44 45 45 self.toolBox.setItemText(0, "Contacts") … … 75 75 self.connection.emit(QtCore.SIGNAL("activateChat()")) 76 76 self.connection.emit(QtCore.SIGNAL("activatePubSub(PyQt_PyObject)"), unicode(self.options.pubsub)) 77 #self.connection.emit(QtCore.SIGNAL("registerLinkages(PyQt_PyObject)"), self.logger)77 self.connection.emit(QtCore.SIGNAL("registerLinkages(PyQt_PyObject)"), self.logger) 78 78 self.connection.emit(QtCore.SIGNAL("registerLinkages(PyQt_PyObject)"), self.contactUi.contact) 79 79 self.connection.emit(QtCore.SIGNAL("registerLinkages(PyQt_PyObject)"), self.contactUi.presence) … … 123 123 QtCore.QObject.connect(disco, QtCore.SIGNAL("receivedSubscriptions(PyQt_PyObject)"), 124 124 self.setSubscriptionsModel) 125 #disco.emit(QtCore.SIGNAL("discoverSubscriptions()"))125 disco.emit(QtCore.SIGNAL("discoverSubscriptions()")) 126 126 if self.options.rootnode: 127 127 disco.emit(QtCore.SIGNAL("discoverNodeInformation(PyQt_PyObject)"), oss/jlib/jlib/core/pubsub.py
r754 r755 99 99 "subscriptions.result": "", 100 100 "subscriptions.error": "", 101 101 102 "affiliations.result": "", 103 102 104 "information.result": "", 103 105 "information.error": "", 106 104 107 "features.result": "", 108 105 109 "items.result": "", 106 110 "items.error" : "",}
