summaryrefslogtreecommitdiff
path: root/slixmpp/plugins
AgeCommit message (Collapse)Author
2016-10-22Manual cleanup of the remaining set([…]) and set((…)).compilerEmmanuel Gil Peyrot
2016-10-22sed -i 's/set(\[\(.*\)\])$/{\1}/g' **/*.pyEmmanuel Gil Peyrot
2016-10-22sed -i 's/set((\(.*\)))$/{\1}/g' **/*.pyEmmanuel Gil Peyrot
2016-10-22sed -i 's/set((\(.*\),))$/{\1}/g' **/*.pyEmmanuel Gil Peyrot
2016-10-04Fix the gmail_notify pluginmathieui
2016-10-04Fix XEP-0033mathieui
Re-add relevant stanza methods, broken in 7cd1cf32ae69
2016-10-04Add more checks in the XEP-0060 stanza buildingmathieui
Try to not append slixmpp stanzas to ElementTree objects.
2016-10-04Fix XEP-0128mathieui
Broken since 125336aeee6 due to unforeseen consequences of a variable removal.
2016-10-04Fix XEP-0009mathieui
Broken since 3a9b45e4f because of an overzealous cleanup.
2016-09-30Fix uses of super() in the codebasemathieui
Fix #3165, we don’t need to use the long form to get the superobject in our supported python versions.
2016-09-20Fix xep-0050 stanzamathieui
broken in 3a9b45e4f279
2016-09-21XEP-0045: Remove support for old-style {get,set,del}TitleCase methods.Emmanuel Gil Peyrot
2016-09-20ElementBase: Remove deprecated find() and findall() methods.discoEmmanuel Gil Peyrot
2016-09-20XEP-0004: Remove deprecated getXML() and fromXML() methods.Emmanuel Gil Peyrot
2016-09-20Remove locking from static disco.Emmanuel Gil Peyrot
2016-09-20Various XEPs: Remove deprecated aliases.Emmanuel Gil Peyrot
2016-08-26Implement XEP-0333: Chat Markers.Emmanuel Gil Peyrot
2016-08-22Don’t trigger presence events on MUC presencemathieui
Specifically, previously, each MUC would be added as a roster item, and then each join presence would be counted as a resource of that item, triggering 1 to 5 events and more backend logic in slixmpp. As a result, joining big rooms is tremendously slow, (JID() calls, event() calls, __getitem__ calls for nothing), and takes RAM (a quick tracemalloc tells me around 1 MiB for 3500 participants, i.e. 2 big IRC rooms). Those resources may not necessarily be cleaned properly, leading to memory leaks on long-term usage. This is a micro-optimization that adds an attribute to roster items so that MUC room events can be ignored safely while not affecting common roster usage.
2016-08-19Improve XEP-0070 and examplesmathieui
2016-08-19Initial work on XEP_0070, plugin and examplesEmmanuel Gil Peyrot
2016-06-05Implement XEP-0256 (last activity in presence)mathieui
mostly useless, but allows to use LastActivity stanzas inside Presence stanzas as well.
2016-06-05Make XEP-0186 return futures as wellmathieui
Improving the api if the developer wants to wait on them.
2016-06-04Implement XEP-0352 (client state indication)mathieui
2016-06-04Update XEP-0198 for asynciomathieui
2016-06-04Add a xep-0334 pluginmathieui
2016-05-28Fix xep-0199mathieui
The keepalive ping was not working, and and ping() was tracebacking due to a wrong parameter.
2016-01-21Fixed NameError in start_uptimeTsukasa Hiiragi
2015-10-02Merge branch 'develop' of https://github.com/fritzy/SleekXMPP into sleek-mergemathieui
Conflicts: README.rst examples/IoT_TestDevice.py examples/disco_browser.py setup.py sleekxmpp/jid.py sleekxmpp/plugins/google/auth/stanza.py sleekxmpp/plugins/google/gmail/notifications.py sleekxmpp/plugins/google/nosave/stanza.py sleekxmpp/plugins/google/settings/settings.py sleekxmpp/thirdparty/__init__.py sleekxmpp/thirdparty/socks.py sleekxmpp/thirdparty/statemachine.py sleekxmpp/util/__init__.py sleekxmpp/xmlstream/xmlstream.py slixmpp/basexmpp.py slixmpp/plugins/xep_0004/stanza/form.py slixmpp/plugins/xep_0009/rpc.py slixmpp/plugins/xep_0050/adhoc.py slixmpp/plugins/xep_0065/proxy.py slixmpp/plugins/xep_0084/stanza.py slixmpp/plugins/xep_0202/time.py slixmpp/plugins/xep_0323/sensordata.py slixmpp/plugins/xep_0325/control.py slixmpp/plugins/xep_0325/stanza/control.py slixmpp/roster/single.py slixmpp/stanza/atom.py slixmpp/stanza/rootstanza.py slixmpp/test/slixtest.py slixmpp/util/sasl/mechanisms.py slixmpp/version.py slixmpp/xmlstream/stanzabase.py tests/test_stanza_xep_0323.py tests/test_stanza_xep_0325.py tests/test_stream_xep_0323.py tests/test_stream_xep_0325.py
2015-09-05xep_0231: Fix a traceback on result serialization.Emmanuel Gil Peyrot
2015-09-04vcard-temp: add some checks against wrong inputmathieui
2015-09-04Add timeout_callback to a bunch of plugins as a parametermathieui
2015-08-23Merge branch 'socks5' of http://git.linkmauve.fr/slixmppmathieui
2015-08-23xep_0065: Remove an unused variable.Emmanuel Gil Peyrot
2015-08-23xep_0065: Remove the last useless threading locks.Emmanuel Gil Peyrot
2015-08-23Fix the xep_0065 plugin, by rewriting its socks5 implementation.Emmanuel Gil Peyrot
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 docstring of unsubscribe method in the PubSub plugin.Emmanuel Gil Peyrot
2015-08-08Properly answer an error instead of tracebacking on unknown command execution.Emmanuel Gil Peyrot
2015-06-22Merge branch 'jid' of http://git.linkmauve.fr/slixmppmathieui
2015-06-21Add a wrapper to get_info/get_items functionsmathieui
(and fix caps in the process)
2015-06-20Remove JID cache, to better test for performance.Emmanuel Gil Peyrot
2015-06-14XEP-0030: return the iq.send() future when sending a disco#info or disco#items.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-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