Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-12-13 | Use OrderedDicts instead of regular dictionaries when returning values from ↵ | Lance Stout | |
forms. | |||
2011-12-13 | Ensure that item fields have the proper type. | Lance Stout | |
The item fields were not setting their type based on the reported field's type attribute, so values were not being encoded properly. Fixes issue #121 | |||
2011-12-12 | Allow disco info/items handlers to return full Iq stanzas. | Lance Stout | |
Only allowing handlers to return a DiscoInfo/DiscoItem stanza works for the majority of cases, but does not allow for the addition of an RSM stanza, or other extensions. An Iq stanza returned by a handler must already be configured as a reply. | |||
2011-12-12 | Pass the Iq stanza to disco item handlers. | Lance Stout | |
2011-12-09 | Use UTC for xep_0082.date. | Lance Stout | |
2011-12-04 | Ensure that adhoc command clients have form plugin registered. | Lance Stout | |
The form plugin was being registered on first use for providers, but not for clients receiving the form. NOTE: Use of non-form payloads will have this issue - adhoc command clients will need to have an expectation beforehand of what the command payload will be to properly load stanza plugins. | |||
2011-11-19 | Tidy up logging calls. | Lance Stout | |
2011-11-20 | This change stops sleekxmpp from spending huge amounts of time unnecessarily ↵ | Vijay Pandurangan | |
computing logging data that may never be used. This is a HUGE performance improvement; in some of my test runs, unnecessary string creation was accounting for > 60% of all CPU time. Note that using % in a string will _always_ perform the sting substitutions, because the strings are constructed before the function is called. So log.debug('%s' % expensiveoperation()) will take about the same CPU time whether or not the logging level is DEBUG or INFO. if you use , no substitutions are performed unless the string is actually logged | |||
2011-10-11 | Update the docs for XEP-0060 publish method. | Lance Stout | |
2011-10-10 | Fix MUC methods to optionally specify the sending JID. | Lance Stout | |
Should fix issue #107 | |||
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 | 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-02 | Make get_node_config block by default. | Lance Stout | |
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 | 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-08-31 | XEP-0060 v1.13 dictates publishing/retracting one item at a time. | Lance Stout | |
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 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-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 | |
2011-08-30 | Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop | Nathan Fritz | |
2011-08-30 | added publish-options element | Nathan Fritz | |
2011-08-30 | Get/set pubsub subscription options. | Lance Stout | |
2011-08-30 | Test and fix XEP-0060 delete_node() | Lance Stout | |
2011-08-30 | Fix typo | Lance Stout | |
2011-08-29 | Finish up all major actions in the current XEP-0060. | Lance Stout | |
Still need tests and docs. | |||
2011-08-29 | Stub out missing functionality for pubsub | Lance Stout | |