Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-10 | Fix MUC methods to optionally specify the sending JID. | Lance Stout | |
Should fix issue #107 | |||
2011-10-08 | Break reference cycle to fix potential memory leaks for callback handlers. | Lance Stout | |
2011-10-07 | Fix typos in the roster update method. | Lance Stout | |
2011-10-05 | XEP-0009 will likely be updated to use <base64 /> instead of <Base64 /> | Lance Stout | |
Both are supported when reading, but <base64 /> will be used for output. | |||
2011-10-04 | Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop | Lance Stout | |
2011-10-04 | Fix missing import statement. | Lance Stout | |
Fixes issue #105 | |||
2011-10-03 | Merge pull request #104 from correl/develop | Lance Stout | |
Make RPC events threaded | |||
2011-10-03 | Make RPC events threaded | Correl Roush | |
Allows, for example, an RPC service to make remote RPC calls with its own connection without blocking its own thread waiting for the result. | |||
2011-09-28 | Allow SASL mechanism to be set when creating a ClientXMPP instance. | Lance Stout | |
Instead of using: ClientXMPP(jid, password, plugin_config={ 'feature_mechanisms': {'use_mech': 'SOME-MECH'}}) You can use: ClientXMPP(jid, password, sasl_mech='SOME-MECH') If you need to change the mechanism after instantiation, use: xmpp['feature_mechanisms'].sasl.mech = 'SCRAM-MD5' | |||
2011-09-28 | Expand live stream testing capabilities. | Lance Stout | |
2011-09-23 | Fix del_event_handler for Python3 (different semantics for filter()). | Lance Stout | |
Fixes issue #103 | |||
2011-09-22 | Fix regression for handling the case where the server terminates the stream. | Lance Stout | |
The processing loop was continuing to call __read_xml after </stream> was received, which caused SyntaxErrors (can't find starting element). This should fix issue #102 | |||
2011-09-19 | SyntaxError requires a restart | Nathan Fritz | |
2011-09-02 | Make get_node_config block by default. | Lance Stout | |
2011-09-01 | Tweak setup.py, and bump dev version to RC3. | Lance Stout | |
2011-09-01 | Add whitespace keepalive option.sleek-1.0-RC21.0-RC2 | Lance Stout | |
May be disabled by setting: self.whitespace_keepalive = False The keepalive interval can be adjusted using: self.whitespace_keepalive_interval = 300 The default interval is 5min. | |||
2011-09-01 | remove ping schedule on disconnect | Nathan Fritz | |
2011-09-01 | Mark pubsub state stanzas as non-standard. | Lance Stout | |
2011-09-01 | Add tests for pubsub error stanzas | Lance Stout | |
2011-09-01 | More stanza cleanup for pubsub. | Lance Stout | |
2011-09-01 | Some more minor cleanup. | Lance Stout | |
2011-09-01 | Clean up pubsub#event stanzas. | Lance Stout | |
2011-09-01 | Clean up pubsub#owner stanzas. | Lance Stout | |
2011-09-01 | Add support for notify attribute when retracting an item. | Lance Stout | |
2011-09-01 | Add ability to get global/node default subscription options. | Lance Stout | |
2011-09-01 | Clean up pubsub stanzas. | Lance Stout | |
2011-09-01 | Owners can modify subscriptions/affiliations. With tests. | Lance Stout | |
94% coverage for the main pubsub plugin! (91% including stanzas) | |||
2011-09-01 | Users can retrieve their affiliations now, with tests. | Lance Stout | |
2011-09-01 | Add ability for a user to get retrieve subscriptions, with tests. | Lance Stout | |
2011-09-01 | Add tests for pubsub subscription options. | Lance Stout | |
2011-09-01 | Add tests for retrieving pubsub items. | Lance Stout | |
2011-09-01 | Fix memory reference bugs. | Lance Stout | |
2011-08-31 | XEP-0060 v1.13 dictates publishing/retracting one item at a time. | Lance Stout | |
2011-08-31 | Simplify pubsub tests. | Lance Stout | |
We don't really care about empty responses, so let's use block=False. | |||
2011-08-31 | Add test for purging a pubsub node. | Lance Stout | |
2011-08-31 | Retract stanzas are behaving oddly when using stanza values. | Lance Stout | |
2011-08-31 | Test publishing multiple items, and with options. | Lance Stout | |
2011-08-31 | Test publishng an item with options. | Lance Stout | |
2011-08-31 | Test publishing a single item. | Lance Stout | |
2011-08-31 | More pubsub unit tests! | Lance Stout | |
2011-08-31 | Fix pubsub get_items. | Lance Stout | |
- item_ids checked for None - pubsub node is set | |||
2011-08-31 | Fix requesting pubsub node configuration, and add tests. | Lance Stout | |
- <default /> doesn't have a type attribute in the XEP - <configure /> isn't used anymore for requesting default configuration | |||
2011-08-31 | Added pubsub error stanza. | Lance Stout | |
iq['error']['pubsub']['condition'] iq['error']['pubsub']['unsupported'] | |||
2011-08-31 | Create a tox config for automating tests for different Python versions. | Lance Stout | |
To use: sudo pip install tox tox | |||
2011-08-30 | Add tests for pubsub unsubscribe. | Lance Stout | |
2011-08-30 | Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop | Lance Stout | |
2011-08-30 | fixed form accessors in pubsub stanzas | Nathan Fritz | |
2011-08-30 | Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop | Lance Stout | |
2011-08-30 | fixed test further... but now I have an out of order problem | Nathan Fritz | |
2011-08-30 | Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop | Lance Stout | |