slixmpp/sleekxmpp/xmlstream
Lance Stout f824950552 Enable using xml:lang with normal interfaces.
Using the special language value '*' will return a dictionary of all
such elements keyed by language.

    >>> msg = Message()
    >>> msg['body'] = 'Hi!'
    >>> msg['body|sv'] = 'Hej!'
    >>> print(msg)
    '<message xmlns="jabber:client">
      <body>Hi!</body>
      <body xml:lang="sv">Hej!</body>
    </message>'
    >>> print(msg['body|*'])
    OrderedDict(
        ('', 'Hi!'),
        ('sv', 'Hej!'))

Remaining items:

- Stanza path matching does not support language specifiers for normal
  interfaces, only for plugins.
2012-06-18 22:00:33 -07:00
..
handler
matcher
__init__.py
cert.py Add better certificate handling. 2012-05-22 03:56:06 -07:00
filesocket.py
jid.py
resolver.py Windows doesn't support inet_pton. 2012-05-06 12:17:50 -07:00
scheduler.py
stanzabase.py Enable using xml:lang with normal interfaces. 2012-06-18 22:00:33 -07:00
tostring.py Add initial support for xml:lang for streams and stanza plugins. 2012-06-18 22:00:33 -07:00
xmlstream.py Add initial support for xml:lang for streams and stanza plugins. 2012-06-18 22:00:33 -07:00