Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/nbxmpp
AgeCommit message (Collapse)Author
2020-03-19TCP: Don't use deprecated methodlovetox
2020-03-19Resolver: Use INFO log level for resolver errorslovetox
2020-03-19Connection: Use INFO log level for connection errorslovetox
2020-03-19PubSub: Don't expect IQ payload on publishlovetox
2020-03-17TCP: Set timeout when connectinglovetox
Timeout is set to 7 seconds and reset to 0 after connecting was successful
2020-03-17Revert "TCP: Set timeout when connecting"Philipp Hörist
This reverts commit 384b50b087c4e7eb0fbb1ca63ab1537760afbd64
2020-03-17TCP: Set timeout when connectinglovetox
2020-03-16Register: Rename variableslovetox
2020-03-15Client: Fix method calllovetox
2020-03-15NodeBuilder: Don't add empty strings to cdata listlovetox
It seems to serv no purpose and messes up the pretty printing
2020-03-14Client: Silence errors after login-successful signallovetox
2020-03-14SASL: Treat unknown error conditions as not-authorizedlovetox
Recommended by the RFC
2020-03-14Client: Expose more data via propertyslovetox
2020-03-11Fix pylint errorslovetox
- unused-argument - self-assigning-variable
2020-03-11Rename ConnectionType enum valueslovetox
2020-03-11Fix pylint errorslovetox
- unidiomatic-typecheck - bare-except
2020-03-11Fix pylint errorslovetox
- no-else-return - pointless-string-statement - multiple-statements - unused-variable - wrong-import-position
2020-03-11Muclumbus: Call callback also on errorlovetox
The method retuned instead of calling the callback
2020-03-11Remove require_version() checklovetox
We do this already in __init__.py
2020-03-11Fix pylint errorslovetox
- inconsistent-return-statements
2020-03-10Fix pylint errorslovetox
- trailing-newlines - chained-comparison - trailing-whitespace - unnecessary-pass
2020-03-10Fix undefined varlovetox
2020-03-10Fix pylint errorslovetox
2020-03-10Remove unused importslovetox
2020-03-10TCP: Consider failed TLS handshake as connection-failedlovetox
2020-03-10Remove unused importlovetox
2020-03-10Remove trailing whitespacelovetox
2020-03-08TCP: Don't stop read/write on exceptionlovetox
2020-03-07Version 0.9.94lovetox
2020-03-07Fix testslovetox
2020-03-07Add new modules and example clientlovetox
2020-02-29Remove moduleslovetox
2020-02-14Blocking: Don't fail on malformed stanzaPhilipp Hörist
Fixes #99
2020-02-07Bookmarks: Better handle malformed stanzaPhilipp Hörist
Fixes #97
2020-02-02Smacks: Fix parsing error text on failed resumePhilipp Hörist
2020-01-26OMEMO: Make return value consistent for request_devicelist()Philipp Hörist
Always return a list instead of in some cases None Fixes #96
2020-01-23Use consistent callback signature for callbacksPhilipp Hörist
2019-12-21DiscoInfo: Add propertys for http uploadPhilipp Hörist
2019-12-21Add HTTP Upload (XEP-0363) supportPhilipp Hörist
2019-12-15Add missing importsPhilipp Hörist
2019-12-11OMEMO: Correctly parse empty devicelist nodesPhilipp Hörist
Fixes #94
2019-12-09JID: isDomain and isFull propertyPhilipp Hörist
2019-12-07Pubsub: Unify pubsub notification parsingPhilipp Hörist
PubSubEventData: - The data attribute is now always None if there is no data - The empty attribute was removed because the info is available in the data attribute - Pass delete, purge, retract always through to the application
2019-11-27Register: Add change_password()Philipp Hörist
2019-11-25Register: Add request_register_form()Philipp Hörist
2019-11-24BOB: Make parse_bob_data() return None on errorPhilipp Hörist
2019-11-23Version 0.9.93Philipp Hörist
2019-11-23Remove unused session argumentPhilipp Hörist
2019-11-23Refactor IQ callbacksPhilipp Hörist
- Remove SendAndWaitForResponse(), there is no need for a timeout that ends the stream. We have other means of checking if the connection to the server was lost. - Don't wrap ProcessNonBlocking(), a server can send multiple stanzas in one packet, wraping this methods means we process callbacks after processing all stanzas in the packet. Which can lead to processing stanzas not in arrival order. Instead process callbacks inside dispatch().
2019-11-22Add In-Band Registration (XEP-0077) supportPhilipp Hörist