SleekXMPP/sleekxmpp/plugins/xep_0085
Lance Stout 77251452c1 Updated the XEP-0085 plugin.
Can now be used as so:

>>> msg['chat_state']
''
>>> msg
<message />

>>> msg['chat_state'] = 'paused'
>>> msg
<message>
  <paused xmlns="http://jabber.org/protocol/chatstates" />
</message>

>>> msg['chat_state']
'paused'

>>> del msg['chat_state']
>>> msg
<message />
2011-02-24 12:10:29 -05:00
..
__init__.py Updated the XEP-0085 plugin. 2011-02-24 12:10:29 -05:00
chat_states.py Updated the XEP-0085 plugin. 2011-02-24 12:10:29 -05:00
stanza.py Updated the XEP-0085 plugin. 2011-02-24 12:10:29 -05:00