summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream
AgeCommit message (Collapse)Author
2015-09-15Add test case for reported and itemsRobert Robinson
Previous stanza test cases didn't have test cases for reported and item field types in forms. This fixes that issue. Modified stanzabase to use an ordered dict so that can guarentee the that 'items' in a form are added after reported. Also updated the set of interfaces that are stored in Form to be a ordered set. Used the order set implementation from: https://code.activestate.com/recipes/576694/ The OrderedSet implementation is licensed under the MIT license and is developed by the same developer of the ordereddict.
2015-07-03Added **kwargs to ClientXMPP, BaseXMPP and XMLStream so that certfile, ↵Sangeeth Saravanaraj
keyfile and ca_certs can be initialized.
2015-06-05Fixed typo.Sangeeth Saravanaraj
2015-04-11Merge pull request #313 from mayflower/developMike Taylor
Proposing #310 again in fixed version
2015-04-11Merge pull request #329 from FlySnake/send_queue_overflowMike Taylor
In queues added option to remove first element on addind new if queue is full
2015-04-11Merge pull request #328 from FlySnake/developMike Taylor
On initial connect use delay if connection failed
2015-03-10ssl-version not passed to wrap_socket, fixedmulog1990
2014-11-27In queues added option to remove first element on addind new if queue isOleg Antonyan
full
2014-11-23On initial connect use delay if connection failedOleg Antonyan
2014-08-23cleanup semicolons, whitespace and mutable default argumentsRobin Gloster
2014-08-21Fix some more Unicode in **kwargs issues in Py2.6Lance Stout
2014-08-18Revert "cleanup semicolons, whitespace and mutable default arguments"Robin Gloster
This reverts commit 7265682a4d57d88956cb54f98f7a470465bbf417.
2014-08-18cleanup semicolons, whitespace and mutable default argumentsRobin Gloster
2014-08-17only schedule whitespace keepalive if enabledRobin Gloster
2014-08-17serialize JID to allow json serializingRobin Gloster
2014-06-09Fix things again, this time for python3Lance Stout
2014-06-08Make ssl args work in Python <=2.6.4Lance Stout
2014-06-08Bring back use of dnspython for A/AAAA resolution.Lance Stout
This is behind a use_dnspython flag, however, so it can be disabled as desired.
2014-05-16Fixes log.debug message in _connect_proxymofrank
2014-02-03Merge branch 'develop' of github.com:fritzy/SleekXMPP into developLance Stout
2014-02-03Fix verifying 'from' for IQ results.Lance Stout
Closes issue #278
2014-01-21Thread counting fixAnton Ryzhov
2014-01-15Merge pull request #270 from optiflows/fix_hostsLance Stout
Don't use dnspython for A and AAAA (but keep it for SRV).
2014-01-13Allow setting custom cipher suites in Py2.7+Lance Stout
2013-12-22Undo event name fix, due to breakage in Py2.xLance Stout
2013-12-19Use strings for ElementTree.iterparse events namesFlorent Le Coz
Because if cElementTree is not available on the system, ElementTree is used instead, and that version doesn't accept bytes, resulting in an exception. See http://bugs.python.org/issue9257#msg152864
2013-12-09Don't use dnspython for A and AAAA (but keep it for SRV).Guilhem Lettron
dnspython don't perform a full resolv. For example it don't manage /etc/hosts on linux.
2013-09-17Make the ssl version log usableLance Stout
2013-09-12ElementTree._escape_cdata isn't reliable across Python versions.Lance Stout
It also does not work as desired. Revert "Merge pull request #254 from barreverte/develop" This reverts commit 23750357e21ce1e22445b2e702bdd4efb77f2369, reversing changes made to 07284f380fa0a893a5ef56774fcef71a47851668.
2013-07-31escape: use xml.etree.ElementTree._escape_attrib to avoid duplicationJean-Philippe Caruana
2013-07-31escape: imports at the topJean-Philippe Caruana
2013-07-30tostring.escape : optimizationJean-Philippe Caruana
use of xml.etree.ElementTree._escape_attrib and xml.etree.ElementTree._escape_cdata
2013-07-29Don't resolve AAAA records if there is no dnspython nor IPv6 supportAlexander Shorin
If system doesn't has IPv6 support or dnspython package, socket.getaddrinfo with AF_INET6 flag return weird IP info for requested host, making SleekXMPP crush with more weird error.
2013-07-18DRYed up the OSError/socket.gaierror handler.Jake Basile
2013-07-18Caught OSError when querying AAAA records.Jake Basile
2013-07-01Blocking queue getAnton Ryzhov
2013-06-23Fix import errorLance Stout
2013-06-20Merge pull request #244 from anton-ryzhov/speedupLance Stout
Speedup main threads loops
2013-06-20Fixed scheduler wait loopAnton Ryzhov
Do fastloop wait until task run time
2013-06-20Use timeout constants instead of magic numbers in scheduler and event loopAnton Ryzhov
Set default wait timeout as max() of previous values
2013-06-20Some optimizations in schedulerAnton Ryzhov
2013-06-20Skip EINTR errors on raw socketsAnton Ryzhov
2013-04-27Try preventing strptime thread safety problems.Lance Stout
Fixes #231
2013-04-23Carry scheduled kwargs all the wayLance Stout
2013-04-01Make XMLMasks match properly for components.Lance Stout
2013-03-28Event index documentation updatedAnton Ryzhov
2013-03-28XMLStream `proxy_error` event duplicated with `connection_failed`Anton Ryzhov
SASL `no_auth` event duplicated with `failed_auth`
2013-03-28Log events triggeringAnton Ryzhov
2013-02-25Merge branch 'develop'Lance Stout
2013-02-22Don't use internally deprecated methodsAnton Ryzhov