summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-31Bump version to 1.1.11sleek-1.1.111.1.11Lance Stout
2012-10-31Relax timing issues in Iq timeout callback test.Lance Stout
2012-10-31update JID_CACHE logic again.Joe Hildebrand
2012-10-31Allow IQ timeouts to be asynchronous, by passing a timeout_callback ↵Joe Hildebrand
parameter to send(). An example modification of disco is included. If this approach is approved, I'll go through and update the other plugins.
2012-10-31Turns out not all data is UTF-8, so don't try to decode it.Lance Stout
Fixes issue #204
2012-10-24added setdefaultencoding method so reload(sys) not neededPaul Molodowitch
reload(sys) could cause problem in user code - ie, sys.stdout, excepthook, and displayhook would be reset, etc
2012-10-24Lock the bound JID in the JID cache.Lance Stout
2012-10-24Update JID cache to do extra memoization and locking.Lance Stout
Passing cache_lock=True to JID() will insert the JID into the cache and prevent it from being dropped from the cache.
2012-10-24Enable gevent support.Lance Stout
Closes issues #166 and #167 Thanks to @pvicent, @chason, and @gabriel-samfira
2012-10-22Fix JID cache (wrong in-progress version comitted earlier)Lance Stout
2012-10-22Respond to probes when the subscription is 'from', not 'to'.Lance Stout
2012-10-22Optimize generating JIDs with some caching.Lance Stout
2012-10-19Add support for XEP-0257: Client Certificate Management for SASL EXTERNALLance Stout
2012-10-19Allow passing form instructions as a list of strings.Lance Stout
2012-10-18Always cache published vcardLance Stout
2012-10-18Recognize plugin stanzas when they're appended.Lance Stout
2012-10-15Prevent xmlns="" in stream output.Lance Stout
This was causing problems for HTML-IM because the HTML is parsed without a namespaced context. While xmlns="" technically can be valid, it's usually wrong, so this will work for now until the HTML-IM parsing is fixed.
2012-10-15Simplify xep-0084 avatar metadata publishing.Lance Stout
2012-10-15Fix vcard-temp stanzas to include organization data.Lance Stout
2012-10-15Auto-subscribe to whitelisted JIDs if auto_subscribe is trueLance Stout
2012-10-15Merge branch 'stream_features'Lance Stout
2012-10-10Remove unneeded ssl_support checks.Lance Stout
2012-10-10Correct handling deleting plugins when xml:lang is active.Lance Stout
2012-10-10Update carbons plugin to use latest spec.Lance Stout
2012-10-05Fix XEP-0078 error handlingLance Stout
2012-10-05Fix empty namespaces in XEP-0045 plugin.Lance Stout
2012-10-02Unclobber connected event handler names.Lance Stout
Fixes issue #199
2012-10-01Add stream_negotiated event.Lance Stout
Fires after all stream features have been processed.
2012-10-01Update legacy auth to be used outside of stream features.Lance Stout
Also, add detection of legacy XMPP version.
2012-09-30Expand warning for missing ASN1 parser to include pyasn1_modulesLance Stout
2012-09-26Add support for XEP-0091: Legacy Delayed DeliveryLance Stout
2012-09-26Add support for XEP-0013: Flexible Offline Message RetrievalLance Stout
2012-09-26Allow disco queries to got to server when no JID is specified and marked not ↵Lance Stout
local.
2012-09-25Fix RSM testsLance Stout
2012-09-25Add support for XEP-0313: Message Archive ManagementLance Stout
NOTE: XEP-0313 is still very experimental, and there will likely be API changes in the future.
2012-09-25Add Collector stanza handler class.Lance Stout
This style of handler is necessary for capturing result sets from queries that use multiple messages to send the results instead of in a single result stanza. Notably, XEP-0313 (MAM).
2012-09-25Update RSM iterator to specify where to look to count result sizes.Lance Stout
2012-09-25Add XEP-0308 Last Message Correction supportLance Stout
2012-09-25Fix copyright yearLance Stout
2012-09-25Add options to auto add ID values to message and presence stanzas.Lance Stout
2012-09-25Fix handling forwarded stanzas to do proper lookups and deletions.Lance Stout
2012-09-25Add support for XEP-0280 Message CarbonsLance Stout
2012-09-24Add XEP-0297: Stanza Forwarding supportLance Stout
2012-09-24Fix deleting non-existent stanza plugins.Lance Stout
2012-09-24Simplify stringifying XMLLance Stout
2012-09-18Remove race condition when aborting while connecting/reconnecting.Lance Stout
2012-09-13Don't break checking certs for localhost.Lance Stout
2012-09-11Add support for XEP-0049: Private XML StorageLance Stout
2012-09-11Add support for Google's X-OAUTH2 SASL mechanismLance Stout
2012-09-11Don't perform caps lookup if the disco info is already known.Lance Stout