Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
It does not auto-retrieve and store avatars yet, but everything is there
to do so.
|
|
|
|
Remaining items are suitable default actions for language supporting
interfaces.
|
|
|
|
Some servers end the stream if registration can not be completed
in-band, which means always requesting the form can prevent regular
login.
|
|
New events:
groupchat_config_status
muc::[room JID]::config_status
|
|
Loading plugins from custom modules when passed as a string still works.
|
|
stanza is found.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The API registry generalizes the node handler system from the xep_0030
plugin so that other plugins can use it.
|
|
|
|
Fixes issue #155
|
|
|
|
|
|
|
|
|
|
Updated XEP-0009 to handle unicode strings
|
|
|
|
|
|
|
|
|
|
New events:
pubsub_config
pubsub_subscription
|
|
|
|
|
|
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
|