Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-08 | Add a format() method to XMPPError which returns a readable string. | Emmanuel Gil Peyrot | |
2015-08-08 | Fix docstring of unsubscribe method in the PubSub plugin. | Emmanuel Gil Peyrot | |
2015-08-08 | Stop disco_browser and pubsub_client examples once they are finished. | Emmanuel Gil Peyrot | |
2015-08-08 | Strip strings after pygments, so we don’t include an needless newline. | Emmanuel Gil Peyrot | |
2015-08-08 | Add missing files to the MANIFEST | mathieui | |
2015-08-08 | Update READMEslix-1.0 | mathieui | |
2015-08-08 | slixmpp v1.0 | mathieui | |
2015-08-08 | Fix the test suite | mathieui | |
(mock transport class missing .close()) | |||
2015-08-08 | Reset the connect future after a disconnect | mathieui | |
2015-08-08 | Remove a useless line of code from “your first XMPP bot” example | Florent Le Coz | |
2015-08-08 | Properly answer an error instead of tracebacking on unknown command execution. | Emmanuel Gil Peyrot | |
2015-07-21 | Add a waiting time before reconnecting automatically | mathieui | |
Punishing a server for being down by sending more traffic is not a nice thing to do. Taking 100% of the CPU is not nice either. | |||
2015-07-21 | Fix components | mathieui | |
(use_tls is useless since slixmpp will always try to use starttls whenever possible) | |||
2015-06-22 | Merge branch 'jid' of http://git.linkmauve.fr/slixmpp | mathieui | |
2015-06-22 | Update the INSTALL file, and add a point about Cython. | Emmanuel Gil Peyrot | |
2015-06-22 | Store None instead of '' for unset parts of a JID. | Emmanuel Gil Peyrot | |
2015-06-21 | Add a wrapper to get_info/get_items functions | mathieui | |
(and fix caps in the process) | |||
2015-06-20 | Rework slixmpp.jid’s JID classes to make them more efficient. | Emmanuel Gil Peyrot | |
2015-06-20 | Add a Cython version of slixmpp.stringprep, using libidn. | Emmanuel Gil Peyrot | |
This makes the validation of a JID a *lot* faster. | |||
2015-06-20 | Move stringprep and idna support in a different module than slixmpp.jid. | Emmanuel Gil Peyrot | |
2015-06-20 | Remove JID cache, to better test for performance. | Emmanuel Gil Peyrot | |
2015-06-20 | Fix test_jid to not use deprecated ways to create JID objects, and add it a ↵ | Emmanuel Gil Peyrot | |
few more tests. | |||
2015-06-14 | XEP-0030: return the iq.send() future when sending a disco#info or disco#items. | Emmanuel Gil Peyrot | |
2015-06-12 | Properly consider malformed IPv6 domains as invalid. | Emmanuel Gil Peyrot | |
2015-05-12 | Allow the use of a custom loop instead of asyncio.get_event_loop() | mathieui | |
2015-05-08 | Advertize the disco#info feature in our disco#info | mathieui | |
Actually a MUST in XEP-0030 | |||
2015-05-06 | Make syntax highlighting for XML lazy, to only call pygments when debug logs ↵ | Emmanuel Gil Peyrot | |
are enabled. Makes poezio about 11% faster when sending/receiving messages. | |||
2015-04-21 | Fix some disco tests | mathieui | |
The targeted JID was a bare JID, which is wrong since the XEP specifies that such disco requests are handled by the server. | |||
2015-04-19 | Merge branch 'ibb' of http://linkmauve.fr/git/slixmpp | mathieui | |
2015-04-19 | XEP-0047: fix examples. | Emmanuel Gil Peyrot | |
2015-04-19 | XEP-0047: use coroutines for send(), sendall() and the new sendfile(). | Emmanuel Gil Peyrot | |
2015-04-19 | XEP-0047: prevent any unneededly large or useless bytes slice. | Emmanuel Gil Peyrot | |
2015-04-19 | XEP-0047: use asyncio’s Queue implementation, to prevent any possibility ↵ | Emmanuel Gil Peyrot | |
of deadlock. | |||
2015-04-14 | XEP-0047: make open_stream() return a future that will be set to the stream ↵ | Emmanuel Gil Peyrot | |
object. | |||
2015-04-14 | XEP-0047: replace threading events with simple booleans. | Emmanuel Gil Peyrot | |
2015-04-14 | XEP-0047: allow only one window over the stream. | Emmanuel Gil Peyrot | |
2015-04-14 | XEP-0047: announce the correct stanza type if message is selected. | Emmanuel Gil Peyrot | |
2015-04-14 | XEP-0047: return the correct error type on not-acceptable (example 5). | Emmanuel Gil Peyrot | |
2015-04-14 | XEP-0047: don’t answer with an unauthorized error when block-size is too big. | Emmanuel Gil Peyrot | |
2015-04-14 | XEP-0047: remove now-useless threading locks. | Emmanuel Gil Peyrot | |
2015-04-14 | XEP-0047: prevent tracebacks in stanza reading. | Emmanuel Gil Peyrot | |
2015-04-13 | basexmpp: Add a message_error event | mathieui | |
The "message" event only receives messages with a body, and error messages don’t necessarily have it. Removing the body requirement from the "message" event could lean to unhandled conditions in existing code. | |||
2015-04-04 | Use a full JID for testing. | Emmanuel Gil Peyrot | |
2015-04-04 | Iq.send: set the timeout even when no timeout_callback is set | Emmanuel Gil Peyrot | |
2015-04-04 | XMLStream: add a forever parameter to process(), defaulting to True, to ↵ | Emmanuel Gil Peyrot | |
select whether we want to stop the event loop after a disconnection | |||
2015-03-02 | XMLStream: factorize the highlight function so it can be used in tests as well | Emmanuel Gil Peyrot | |
2015-02-28 | Set XMLStream.socket after the SSL connection is made too | mathieui | |
Fixes SCRAM-SHA-1-PLUS. | |||
2015-02-28 | XEP-0325: Don’t use threading | mathieui | |
2015-02-28 | Revert or edit most previous XEP plugin changes | mathieui | |
In a single commit, because it isn’t that interesting to detail each change. List of reverts: Revert "XEP-0030: allow get_info and get_items to return a coroutine" This reverts commit 506ca6991790cffb90c5b6e3b765237ccc136e1a. Revert "XEP-0060: wrap all iq-sending functions with coroutine_wrapper" This reverts commit e85fa4203e0ee7108d8d37f73913c21628e3d6fc. Revert "XEP-0163: wrap publish() with coroutine_wrapper" This reverts commit 69da1c1d7cf7a1c0dbbeeb83f528b4e5f5b5be0c. Revert "XEP-0084: wrap functions with coroutine_wrapper" This reverts commit ea5615f236bd80fb4217398977833ca790cbef71. Partially revert 3d243f7 (XEP-0054) - continue wrapping functions but with future_wrapper Partially revert 115fe95 (xep-0153) - use callbacks rather than coroutine callbacks, and propagate iqtimeouts in set_avatar. Revert "XEP-0049: wrap functions with coroutine_wrapper" This reverts commit e68135f59f9a224688679eb91e8063041d6f000b. Revert "XEP-0077: wrap functions with coroutine_wrapper" This reverts commit 1e4944d47e8296fdaa792a8b3fc87ea99acc217c. Partially revert cd7ff685 (XEP-0199) - remove the iq.send wrapping but keep ping() as a coroutine Revert "XEP-0257: wrap functions with coroutine_wrapper" This reverts commit 4da870fd191697d010e677eee32ef86439967353. Revert "XEP-0092: wrap get_version() with coroutine_wrapper" This reverts commit 6e35948276c36ea2696f0de64dc179a1073ee3a6. Revert "XEP-0191: wrap functions with coroutine_wrapper" This reverts commit 6e8235544cc1bdefea75a8d93e5e3a48a13552ba. Revert "XEP-0280: wrap functions with coroutine_wrapper" This reverts commit f795ac02e322445be13077463638924d1f22d313. Revert "XEP-0012: wrap get_last_activity() with coroutine_wrapper" This reverts commit 2ee05d9616d2959d19a7a87d21c58e6aae1db56e. Revert "XEP-0202: wrap get_entity_time() with coroutine_wrapper" This reverts commit 6fb3ecd414f24374f17811d7ad2fd01e4924e311. Revert "XEP-0231: wrap get_bob() with coroutine_wrapper" This reverts commit 17464b10a42d9b3c4daba763e06e53c429478abd. Revert "XEP-0258: wrap get_catalog() with coroutine_wrapper" This reverts commit 18a4978456a33e6ea38de1e07b1aa43bcc10d45f. Revert "XEP-0050: wrap send_command() and get_commands() with coroutine_wrapper" This reverts commit e034b31d6bc34f43578456e9c6527bc56dff78e3. Revert "XEP-0279: wrap check_ip() with coroutine_wrapper" This reverts commit e112e864756f1222a044ee28e3c13c5925618b0c. | |||
2015-02-28 | Fix examples relying on the changed API | mathieui | |