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
AgeCommit message (Collapse)Author
2020-03-20Logging: Add context to logging outputlovetox
2020-03-19PubSub: Don't expect IQ payload on publishlovetox
2020-03-16Register: Rename variableslovetox
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-07Add new modules and example clientlovetox
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-01-26OMEMO: Make return value consistent for request_devicelist()Philipp Hörist
Always return a list instead of in some cases None Fixes #96
2019-12-21Add HTTP Upload (XEP-0363) supportPhilipp Hörist
2019-12-11OMEMO: Correctly parse empty devicelist nodesPhilipp Hörist
Fixes #94
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-22Add In-Band Registration (XEP-0077) supportPhilipp Hörist
2019-11-04Refactor XHTML codePhilipp Hörist
- setXHTML expects now a body Node - getXHTML returns the html Node - Add XHTMLData struct
2019-11-04Revert "Refactor XHTML event code"Philipp Hörist
This reverts commit 05e74605cf99c5955b3e09bd2b2c51c071416952
2019-11-03Refactor XHTML event codePhilipp Hörist
- Move xhtml data into additional_data - Remove xhtml event attribute - Allows now to store both message and xhtml data in the database - Always store xhtml data
2019-11-02Receipts: Use a copy of JID for building the receiptPhilipp Hörist
2019-10-20Receipts: Refactor helper method for building receiptsPhilipp Hörist
- Add helper isMucPM - Move receipt build code into receipts module - Improve receipt build code
2019-10-20MUC: Set muc_private_message attribute also for error messagesPhilipp Hörist
2019-10-14Attention: Don't parse legacy delay tagsPhilipp Hörist
2019-10-14Add Chat State Notifications (XEP-0085) supportPhilipp Hörist
2019-10-14Add Security Labels (XEP-0258) supportPhilipp Hörist
2019-10-14Add xhtml message attributePhilipp Hörist
2019-10-13Add forms message attributePhilipp Hörist
2019-10-13Add Attention (XEP-0224) supportPhilipp Hörist
2019-10-13Add Correction (XEP-0308) supportPhilipp Hörist
2019-10-13Add OOB (XEP-0066) supportPhilipp Hörist
2019-10-12Add Receipts (XEP-0184) supportPhilipp Hörist
2019-10-11Muclumbus: Catch additional exception on http resultPhilipp Hörist
2019-10-06Message Properties: Expose from and to attributePhilipp Hörist
2019-10-05Determine remote jid correctly in all casesPhilipp Hörist
2019-10-04Carbons: Use namedtuple for carbon dataPhilipp Hörist
2019-10-02ChatMarkers: Fix parsing errorsPhilipp Hörist
2019-10-02Add Chat Markers (XEP-0333) supportPhilipp Hörist
2019-09-29Add Bookmarks 2 (XEP-0402) supportPhilipp Hörist
2019-09-22AdHoc: Dont report empty command list as stanza-malformedPhilipp Hörist
2019-09-05HTTPAuth: Parse attrs correctlyPhilipp Hörist
Fixes #84
2019-08-29Cast exceptions to strPhilipp Hörist
2019-08-29Annotations: Dont raise error on empty storagePhilipp Hörist
2019-08-28MUC: Improve voice requestPhilipp Hörist
- Validate JID on incoming voice requests - Add more data to VoiceRequest - Add approve_voice_request()
2019-08-19Bookmarks: Handle deleted and retracted eventsPhilipp Hörist
2019-08-17Use error_factory() everywherePhilipp Hörist
2019-08-16DiscoInfo: Add timestamp attributePhilipp Hörist
2019-08-15DiscoInfo: Add stanza attributePhilipp Hörist
Make stanza object available in DiscoInfo and derive some propertys from it
2019-08-05Message: Only set stanza_id data if it is validPhilipp Hörist