Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-06 | Fix XEP-0115 with the new API registry. | Lance Stout | |
2012-04-06 | Begin experiment with a centralized API callback registry. | Lance Stout | |
The API registry generalizes the node handler system from the xep_0030 plugin so that other plugins can use it. | |||
2012-04-06 | Add default mapping of localhost to ::1 and 127.0.0.1 | Lance Stout | |
2012-04-03 | Fix MUC invite events so that they actually work. | Lance Stout | |
2012-04-03 | Fix memory leak with adhoc command sessions. | Lance Stout | |
Fixes issue #155 | |||
2012-04-01 | Display IPv6 literal addresses in brackets. | Lance Stout | |
2012-03-30 | Improve connection handling by not delaying until all DNS records are tried. | Lance Stout | |
2012-03-30 | Add better DNS resolver wrapper. | Lance Stout | |
2012-03-30 | Fix typo | Lance Stout | |
2012-03-28 | Tidy up the state machine and use a threading condition instead of an event. | Lance Stout | |
Fixes issue #154 | |||
2012-03-28 | Fix sending data after </stream> | Lance Stout | |
Clearing the session_started_event before sending </stream> will pause the send loop so that we don't continue sending data after the </stream>. | |||
2012-03-27 | Reset stream management state on session_end. | Lance Stout | |
2012-03-27 | Improve handling disconnections. | Lance Stout | |
- Add option for disconnecting without sending </stream>: self.disconnect(send_close=False) - Optionally distinguish between session_end and disconnected based on if </stream> was sent. self.end_session_on_disconnect = False | |||
2012-03-27 | Add support for a new type of stanza interface: bool | Lance Stout | |
The set of bool_interfaces provides default behaviour for checking/setting the presence of empty subelements. The prime example of this would be: bool_interfaces = set(['required']) This would mean that ``stanza['required']`` would return ``True`` for: <stanza> <required /> </stanza> and ``False`` for: <stanza /> Likewise, assigning ``stanza['required'] = True`` would add an empty ``<required />`` element, and setting it to ``False`` would remove such an element if it exists. | |||
2012-03-27 | Simplify sending whitespace keepalives. | Lance Stout | |
Now that we have the send lock, we can use now=True. | |||
2012-03-27 | Make the XEP-0198 ack debug message less confusing. | Lance Stout | |
2012-03-21 | Correct handling of acks for XEP-0198 under heavy load. | Lance Stout | |
2012-03-21 | Respect reattempt=False setting when reconnecting. | Lance Stout | |
2012-03-20 | Correct connect() documentation, don't delay attempts if reattempt=False. | Lance Stout | |
See issue #152 | |||
2012-03-19 | Fix unicode issues in test cases for Py3+ introduced by issue #150. | Lance Stout | |
2012-03-19 | Merge pull request #150 from correl/rpc_value_fixes | Lance Stout | |
Updated XEP-0009 to handle unicode strings | |||
2012-03-18 | Add initial support for XEP-0198 for stream management. | Lance Stout | |
2012-03-18 | Add out_sync filter category. | Lance Stout | |
Added option to XMLStream.send() to skip applying filters. Filters in the out_sync group are synced with placing stanza content either on the wire directly or into the send queue. Because of this, out_sync filters should not block. | |||
2012-03-16 | Fix requesting receipts on a message that has not been bound to a stream. | Lance Stout | |
2012-03-16 | Re-add support for special case of 'presence' expiry value. | Lance Stout | |
2012-03-16 | Update subscription event expiry value to use time objects. | Lance Stout | |
2012-03-16 | Add events for configuration and subscription notifications. | Lance Stout | |
New events: pubsub_config pubsub_subscription | |||
2012-03-16 | Fix error when assigning form values that include booleans. | Lance Stout | |
2012-03-16 | Fix requiring receipt request messages to have ID values. | Lance Stout | |
2012-03-16 | Expand support for XEP-0184. | Lance Stout | |
New stanza interfaces: Adding a message receipt request: msg['request_receipt'] = True Adding a message receipt: msg['receipt'] = '123-24234' Retrieving the acked message ID: ack_id = msg['receipt'] print(ack_id) '123-24234' New configuration options: auto_ack: If True, auto reply to messages that request receipts. Defaults to True auto_request: If True, auto add receipt requests to appropriate outgoing messages. Defaults to False | |||
2012-03-13 | Explicitly set the desired SASL mech to ANONYMOUS if no username is provided. | Lance Stout | |
2012-03-13 | Correct handling SASL auth failures when forcing the use of a specific ↵ | Lance Stout | |
mechanism. | |||
2012-03-12 | Move feature_rosterver to new system. | Lance Stout | |
2012-03-12 | Move feature_starttls to new system. | Lance Stout | |
2012-03-12 | Move feature_session to new system. | Lance Stout | |
2012-03-12 | Move feature_mechanisms to new system. | Lance Stout | |
2012-03-12 | Move feature_bind to new system. | Lance Stout | |
2012-03-12 | Move XEP-0172 to new system. | Lance Stout | |
2012-03-12 | Move XEP-0118 to the new system. | Lance Stout | |
2012-03-12 | Move XEP-0108 to new system. | Lance Stout | |
2012-03-12 | Move XEP-0107 to new system. | Lance Stout | |
2012-03-12 | Move XEP-0080 to the new system. | Lance Stout | |
2012-03-12 | Move XEP-0163 to new system. | Lance Stout | |
Also includes new register_pep() method for doing the necessary stanza and disco registration, plus pubsub node event mapping. | |||
2012-03-12 | Cleanup plugin import logic. | Lance Stout | |
Checking for a 'xep' or 'rfc' attribute is more reliable for detecting an old style plugin than 'name'. | |||
2012-03-12 | Enable using post_init() to resolve circular dependencies. | Lance Stout | |
We really shouldn't have any. However, we may later introduce one with XEP-0030 and XEP-0059. | |||
2012-03-12 | Move XEP-0115 to the new system. | Lance Stout | |
2012-03-12 | Remove extra logging statement, add backward compatible references. | Lance Stout | |
2012-03-12 | Handle loading plugins on demand. | Lance Stout | |
Plugins that are referenced as dependencies, but have not been registered now will be imported. Newer plugins should register themselves automatically, but older style plugins will be explicitly registered after import. | |||
2012-03-12 | Update the list of all stream feature plugins. | Lance Stout | |
2012-03-12 | Ensure the adhoc command items node exists. | Lance Stout | |
If the plugin is loaded and no commands are defined, we can at least return a proper empty response instead of an item-not-found error. |