summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-08-22Fix the order in which <identity/> and <feature/> tags are sent on disco#infoFlorent Le Coz
The identities should all be at the start, and features at the end, so we just prepend the identity on add_identity, and append features on add_feature
2015-08-08Fix the pubsub_client example.Emmanuel Gil Peyrot
2015-08-08Add a format() method to XMPPError which returns a readable string.Emmanuel Gil Peyrot
2015-08-08Fix docstring of unsubscribe method in the PubSub plugin.Emmanuel Gil Peyrot
2015-08-08Stop disco_browser and pubsub_client examples once they are finished.Emmanuel Gil Peyrot
2015-08-08Strip strings after pygments, so we don’t include an needless newline.Emmanuel Gil Peyrot
2015-08-08Add missing files to the MANIFESTmathieui
2015-08-08Update READMEslix-1.0mathieui
2015-08-08slixmpp v1.0mathieui
2015-08-08Fix the test suitemathieui
(mock transport class missing .close())
2015-08-08Reset the connect future after a disconnectmathieui
2015-08-08Remove a useless line of code from “your first XMPP bot” exampleFlorent Le Coz
2015-08-08Properly answer an error instead of tracebacking on unknown command execution.Emmanuel Gil Peyrot
2015-07-21Add a waiting time before reconnecting automaticallymathieui
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-21Fix componentsmathieui
(use_tls is useless since slixmpp will always try to use starttls whenever possible)
2015-06-22Merge branch 'jid' of http://git.linkmauve.fr/slixmppmathieui
2015-06-22Update the INSTALL file, and add a point about Cython.Emmanuel Gil Peyrot
2015-06-22Store None instead of '' for unset parts of a JID.Emmanuel Gil Peyrot
2015-06-21Add a wrapper to get_info/get_items functionsmathieui
(and fix caps in the process)
2015-06-20Rework slixmpp.jid’s JID classes to make them more efficient.Emmanuel Gil Peyrot
2015-06-20Add a Cython version of slixmpp.stringprep, using libidn.Emmanuel Gil Peyrot
This makes the validation of a JID a *lot* faster.
2015-06-20Move stringprep and idna support in a different module than slixmpp.jid.Emmanuel Gil Peyrot
2015-06-20Remove JID cache, to better test for performance.Emmanuel Gil Peyrot
2015-06-20Fix test_jid to not use deprecated ways to create JID objects, and add it a ↵Emmanuel Gil Peyrot
few more tests.
2015-06-14XEP-0030: return the iq.send() future when sending a disco#info or disco#items.Emmanuel Gil Peyrot
2015-06-12Properly consider malformed IPv6 domains as invalid.Emmanuel Gil Peyrot
2015-05-12Allow the use of a custom loop instead of asyncio.get_event_loop()mathieui
2015-05-08Advertize the disco#info feature in our disco#infomathieui
Actually a MUST in XEP-0030
2015-05-06Make 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-21Fix some disco testsmathieui
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-19Merge branch 'ibb' of http://linkmauve.fr/git/slixmppmathieui
2015-04-19XEP-0047: fix examples.Emmanuel Gil Peyrot
2015-04-19XEP-0047: use coroutines for send(), sendall() and the new sendfile().Emmanuel Gil Peyrot
2015-04-19XEP-0047: prevent any unneededly large or useless bytes slice.Emmanuel Gil Peyrot
2015-04-19XEP-0047: use asyncio’s Queue implementation, to prevent any possibility ↵Emmanuel Gil Peyrot
of deadlock.
2015-04-14XEP-0047: make open_stream() return a future that will be set to the stream ↵Emmanuel Gil Peyrot
object.
2015-04-14XEP-0047: replace threading events with simple booleans.Emmanuel Gil Peyrot
2015-04-14XEP-0047: allow only one window over the stream.Emmanuel Gil Peyrot
2015-04-14XEP-0047: announce the correct stanza type if message is selected.Emmanuel Gil Peyrot
2015-04-14XEP-0047: return the correct error type on not-acceptable (example 5).Emmanuel Gil Peyrot
2015-04-14XEP-0047: don’t answer with an unauthorized error when block-size is too big.Emmanuel Gil Peyrot
2015-04-14XEP-0047: remove now-useless threading locks.Emmanuel Gil Peyrot
2015-04-14XEP-0047: prevent tracebacks in stanza reading.Emmanuel Gil Peyrot
2015-04-13basexmpp: Add a message_error eventmathieui
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-04Use a full JID for testing.Emmanuel Gil Peyrot
2015-04-04Iq.send: set the timeout even when no timeout_callback is setEmmanuel Gil Peyrot
2015-04-04XMLStream: 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-02XMLStream: factorize the highlight function so it can be used in tests as wellEmmanuel Gil Peyrot
2015-02-28Set XMLStream.socket after the SSL connection is made toomathieui
Fixes SCRAM-SHA-1-PLUS.
2015-02-28XEP-0325: Don’t use threadingmathieui