summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0078/legacyauth.py
AgeCommit message (Collapse)Author
2014-07-17Rename to slixmppFlorent Le Coz
2013-02-18Fixed resource generation via uuidAnton Ryzhov
2012-10-24Lock the bound JID in the JID cache.Lance Stout
2012-10-05Fix XEP-0078 error handlingLance Stout
2012-10-01Update legacy auth to be used outside of stream features.Lance Stout
Also, add detection of legacy XMPP version.
2012-07-26Enhance plugin config with attribute accessors.Lance Stout
This makes updating the config after plugin initialization much easier.
2012-07-10Update plugins to use session_bind handler for disco, and use plugin_endLance Stout
2012-03-12Move XEP-0078 to new system.Lance Stout
2012-02-18Fix instances of using undefined variables.Lance Stout
2011-11-19Tidy up logging calls.Lance Stout
2011-11-20This change stops sleekxmpp from spending huge amounts of time unnecessarily ↵Vijay Pandurangan
computing logging data that may never be used. This is a HUGE performance improvement; in some of my test runs, unnecessary string creation was accounting for > 60% of all CPU time. Note that using % in a string will _always_ perform the sting substitutions, because the strings are constructed before the function is called. So log.debug('%s' % expensiveoperation()) will take about the same CPU time whether or not the logging level is DEBUG or INFO. if you use , no substitutions are performed unless the string is actually logged
2011-08-17Update plugins that use Iq stanzas to work with new exceptions.Lance Stout
2011-08-06Fix XEP-0078 using the new stream feature workflow.Lance Stout
Honestly, this is mainly just a demo/proof of concept that we can handle dependencies and ordering issues with stream features. DON'T use XEP-0078 if you are able to use the normal SASL method, which should be the case unless you are dealing with a very old XMPP server implementation.