Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-19 | Fix incompatibility with clearing an element between ElementTree and ↵ | Lance Stout | |
cElementTree | |||
2012-02-19 | xml.etree.ElementTree raises ExpatError instead of SyntaxError or ParseError. | Lance Stout | |
2012-02-19 | Centralize references to ET to make switching implementations easier. | Lance Stout | |
2012-02-18 | Fix instances of using undefined variables. | Lance Stout | |
2012-02-18 | More pyflakes cleanup. | Lance Stout | |
2012-02-18 | More import cleanup based on pyflakes. | Lance Stout | |
2012-02-18 | Use JID objects when dealing with roster items. | Lance Stout | |
2012-02-17 | More extraneous import cleanup. | Lance Stout | |
2012-02-17 | More import cleanups based on pyflakes results. | Lance Stout | |
2012-02-17 | Fix pyflakes complaints for XEP-0115 plugin. | Lance Stout | |
2012-02-17 | Make last_xml usage a little more explict. | Lance Stout | |
2012-02-17 | Fix undeclared variable usage for reconnect. | Lance Stout | |
2012-02-16 | Fix fixing remove_stanza() | Lance Stout | |
Fixes issue #146 | |||
2012-02-16 | Don't retrieve cert until a connection is made. | Lance Stout | |
2012-02-16 | Fix remove_stanza(). | Lance Stout | |
Fixes issue #146 | |||
2012-02-10 | Don't shutdown completely after handling SyntaxError. | Lance Stout | |
The ``shutdown = True`` line was preventing the stream from reconnecting after handling the error. Fixes issues #101, #145 | |||
2012-02-10 | Fix undefined variable references when DNS timeouts. | Lance Stout | |
2012-02-09 | Use '=' as base64 value for empty string SASL results. | Lance Stout | |
2012-02-10 | Fix IPv6 query logging. | Lance Stout | |
2012-02-09 | Add support for querying and connecting to IPv6 addresses. | Lance Stout | |
Tested using servers provided by Florian Jensen (flosoft.biz) during the 2012 FOSDEM XMPP Summit. Fixes issue #94. | |||
2012-02-04 | Add ssl_cert event (direct). | Lance Stout | |
The payload is a dictionary of parsed cert data, as provided by Python's getpeercert() socket method. It unfortunately does not provide much detail beyond basic info. | |||
2012-02-03 | Add more XEP-0047 tests. | Lance Stout | |
2012-02-03 | Fix XEP-0184 imports | Lance Stout | |
2012-02-03 | Fix infinite callback loop. | Lance Stout | |
2012-02-03 | Don't assume data is ASCII in saslprep. | Lance Stout | |
2012-02-03 | Merge remote-tracking branch 'whooo/master' into develop | Lance Stout | |
2012-02-03 | Added fritzy to the copyright for xep_0184 | Erik Larsson | |
2012-02-02 | Fix data stanza based on test results. | Lance Stout | |
2012-02-02 | Initial, mostly working XEP-0047 plugin. | Lance Stout | |
This is inspired by the version from macdiesel and tomstrummer, but their version was heavily linked with XEP-0096 and focused solely on file transfer. This version is a more generic implementation. | |||
2012-02-02 | Fix typo s/is_set/is_set() | Lance Stout | |
2012-02-02 | Added plugin for XEP-0184 | Erik Larsson | |
2012-01-28 | Make socket_error run as a direct event to ensure that it is handled. | Lance Stout | |
Socket errors that occur before stream processing begins could not be handled as the event loop would not be running yet. Resolves issue #142 | |||
2012-01-25 | Bump version number in develop branch to 1.0.1dev. | Lance Stout | |
2012-01-25 | Merge pull request #138 from rhcarvalho/patch-2 | Lance Stout | |
Set default argument value. | |||
2012-01-23 | Revert the X-GOOGLE-TOKEN mech to not perform HTTP requests. | Lance Stout | |
Added new example for how to retrieve a Google token, following the best case, non-browser, workflow. Other thirdparty auth mechs (Facebook, MSN) follow a similar pattern of using an access token. | |||
2012-01-22 | Fix ValueError when line has more than one '='. | Rodolfo Carvalho | |
2012-01-22 | Set default argument value. | Rodolfo Henrique Carvalho | |
Without this features/feature_mechanisms/mechanisms.py throws an error when calling the method `process' without arguments on this mechanism. | |||
2012-01-21 | Add support for X-GOOGLE-TOKEN. | Lance Stout | |
This is mainly just useful for authenticating without using TLS. If an access token is not provided, an attempt will be made to retrieve one from Google. | |||
2012-01-21 | Require explicitly setting access_token value. | Lance Stout | |
Silently substituting the password field was nice, but for mechs that can use either the password or an access token, it makes things very difficult. This really only affects MSN clients since Facebook clients should already be setting the api key. | |||
2012-01-21 | Handle SASLCancelled and SASLError exceptions. | Lance Stout | |
2012-01-21 | Add missing SASL <abort /> stanza | Lance Stout | |
2012-01-20 | Make things work with Python3's byte semantics. | Lance Stout | |
2012-01-20 | Allow attempting multiple SASL mechs during a single stream. | Lance Stout | |
Instead of disconnecting when the first chosen mech fails, we will try all of them once. | |||
2012-01-20 | Add support for X-FACEBOOK-PLATFORM SASL mechanism. | Lance Stout | |
This requires an extra credential for SASL authentication: xmpp = ClientXMPP('user@chat.facebook.com', '...access_token...') xmpp.credentials['api_key'] = '...api_key...' | |||
2012-01-20 | Add an extra config dict to store SASL credentials. | Lance Stout | |
We'll need extra things beyond just a password, such as api_key. | |||
2012-01-19 | Add basic start for a client side XEP-0077 plugin. | Lance Stout | |
2012-01-18 | Fix detecting end of result set paging. | Lance Stout | |
2012-01-18 | Revert "Remove stream feature handlers on session_start." | Lance Stout | |
This reverts commit 4274f49ada77d709b931f65e34d3a64e75b81638. The SASL mech was choking on this, so let's send it back for some more refining. | |||
2012-01-17 | Fix roster key issue for non-JID keys. | Lance Stout | |
2012-01-17 | Hash JIDs based on full JID string. | Lance Stout | |
This makes JID objects equivalent to strings in dictionaries, etc. >>> j = JID('foo@example.com') >>> s = 'foo@example.com' >>> d = {j: 'yay'} >>> d[j] 'yay' >>> d[s] 'yay' >>> d[s] = 'yay!!' >>> d[j] 'yay!!' |