Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-01 | Remove all trailing semicolons. | Emmanuel Gil Peyrot | |
2014-09-01 | Remove all trailing whitespaces. | Emmanuel Gil Peyrot | |
2014-09-01 | Always use OrderedDict from collections, and remove its implementation in ↵ | Emmanuel Gil Peyrot | |
slixmpp.thirdparty. | |||
2014-09-01 | Move examples from the deprecated optparse to argparse, and remove the ↵ | Emmanuel Gil Peyrot | |
redundant -v option. | |||
2014-09-01 | Import getpass from getpass, instead of using getpass.getpass everytime. | Emmanuel Gil Peyrot | |
2014-09-01 | Remove (usually) useless comments in examples about OpenFire and how to ↵ | Emmanuel Gil Peyrot | |
verify a certificate. | |||
2014-09-01 | Reintroduce XMLStream.process, making it run the asyncio event loop. | Emmanuel Gil Peyrot | |
2014-09-01 | Remove threaded from examples’ add_event_handler. | Emmanuel Gil Peyrot | |
2014-09-01 | Remove raw_input usage and other python2 support in examples | Emmanuel Gil Peyrot | |
2014-09-01 | Set the shebang to python3 everywhere. | Emmanuel Gil Peyrot | |
2014-09-01 | Add pygments support to debug output. | Emmanuel Gil Peyrot | |
2014-09-01 | Remove sys.version_info checks for python2 and clean some imports. | Emmanuel Gil Peyrot | |
2014-08-30 | Extend AtomEntry capabilities | Matthieu Rakotojaona | |
2014-08-24 | Merge pull request #315 from louiz/develop | Lance Stout | |
Fix saslprep on the username | |||
2014-08-25 | Fix saslprep on the username | Florent Le Coz | |
Two issues fixed here: - ints are not comparable with bytes, so char was never == to b',', which renders the whole function pointless - The bytes were converted back to “characters” by using chr(), which doesn’t make sense if the username contains characters that fit on more than one bytes. This would trigger an “invalid username” error from the server when using a non-ascii JID. | |||
2014-08-25 | Fix saslprep for non-ascii usernames | Florent Le Coz | |
2014-08-23 | fix args, kwargs which were broken with #310. this is essentially the same ↵ | Robin Gloster | |
but working | |||
2014-08-23 | cleanup semicolons, whitespace and mutable default arguments | Robin Gloster | |
2014-08-21 | Fix some more Unicode in **kwargs issues in Py2.6 | Lance Stout | |
2014-08-18 | Merge pull request #311 from Mayflower/develop | Lance Stout | |
Revert "cleanup semicolons, whitespace and mutable default arguments" | |||
2014-08-18 | Revert "cleanup semicolons, whitespace and mutable default arguments" | Robin Gloster | |
This reverts commit 7265682a4d57d88956cb54f98f7a470465bbf417. | |||
2014-08-17 | Merge pull request #309 from Mayflower/whitespace_keepalive | Lance Stout | |
only schedule whitespace keepalive if enabled | |||
2014-08-17 | Merge pull request #308 from Mayflower/develop | Lance Stout | |
Serialize JID to allow json serializing | |||
2014-08-17 | Merge pull request #310 from Mayflower/cleanup | Lance Stout | |
Cleanup | |||
2014-08-18 | fix mutable default arguments :boom: | Robin Gloster | |
2014-08-18 | cleanup semicolons, whitespace and mutable default arguments | Robin Gloster | |
2014-08-18 | cleanup semicolons, whitespace and mutable default arguments | Robin Gloster | |
2014-08-18 | fix mutable default arguments :boom: | Robin Gloster | |
2014-08-17 | only schedule whitespace keepalive if enabled | Robin Gloster | |
2014-08-17 | only schedule whitespace keepalive if enabled | Robin Gloster | |
2014-08-17 | serialize JID to allow json serializing | Robin Gloster | |
2014-08-16 | Remove deprecated xmlstream/jid.py | Florent Le Coz | |
2014-08-15 | Remove google modules from setup.py file | Vincent Canfield | |
2014-08-11 | Merge pull request #305 from trinque/develop | Lance Stout | |
Added wait param to XEP_0009 RemoteSession.close | |||
2014-08-10 | Added wait param to XEP_0009 RemoteSession.close | Michael Trinque | |
This parameter is False by default to preserve existing behavior. | |||
2014-08-01 | Fix some more blocking iq | Florent Le Coz | |
2014-08-01 | Add the 'connecting' event | Florent Le Coz | |
2014-08-01 | Improve the events triggered on failed authentication | Florent Le Coz | |
Trigger failed_auth as before, once for each failed method Trigger failed_all_auth once all method failed Trigger no_auth only if we couldn’t even try one method | |||
2014-07-30 | Fix the connection (and a few minor things) in xmlstream | Florent Le Coz | |
2014-07-30 | Fix the iq.send() function, and a bunch of places where it is called | Florent Le Coz | |
This is a big-and-dirty commit with a bunch of cleanup, maybe breaking a few things, and not fixing all iq.send() calls yet. | |||
2014-07-24 | Remove all the google stuf | Florent Le Coz | |
2014-07-23 | And that | Florent Le Coz | |
2014-07-23 | Forgot to remove that | Florent Le Coz | |
2014-07-23 | Cleanup how events are run, they are always direct by definition now | Florent Le Coz | |
2014-07-22 | Use ".remove()" instead of "is in" followed by ".pop()" | Emmanuel Gil Peyrot | |
2014-07-22 | An other cleanup of xmlstream.py | Florent Le Coz | |
Remove some useless things (like handling signals, managing the threads, etc), add some comment to recently added/fixed methods… | |||
2014-07-22 | Remove unused RestartStream exception | Florent Le Coz | |
2014-07-21 | Remove the now useless state machine | Florent Le Coz | |
2014-07-21 | Make connect(), abort() and reconnect() work | Florent Le Coz | |
All the auto_reconnect, connect_retry logic and that kind of stuf has been entirely removed. | |||
2014-07-21 | Clean a new bunch of stuf | Florent Le Coz | |