mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-23 19:19:53 +00:00
Update tostring docs, plus more doc cleanup
This commit is contained in:
parent
329b0df3f6
commit
b87c4d786d
9 changed files with 60 additions and 27 deletions
|
@ -1,5 +1,5 @@
|
||||||
========
|
========
|
||||||
basexmpp
|
BaseXMPP
|
||||||
========
|
========
|
||||||
|
|
||||||
.. module:: sleekxmpp.basexmpp
|
.. module:: sleekxmpp.basexmpp
|
||||||
|
|
|
@ -1,17 +1,8 @@
|
||||||
==========
|
==========
|
||||||
clientxmpp
|
ClientXMPP
|
||||||
==========
|
==========
|
||||||
|
|
||||||
.. module:: sleekxmpp.clientxmpp
|
.. module:: sleekxmpp.clientxmpp
|
||||||
|
|
||||||
.. autoclass:: ClientXMPP
|
.. autoclass:: ClientXMPP
|
||||||
|
:members:
|
||||||
.. automethod:: connect
|
|
||||||
|
|
||||||
.. automethod:: register_feature
|
|
||||||
|
|
||||||
.. automethod:: get_roster
|
|
||||||
|
|
||||||
.. automethod:: update_roster
|
|
||||||
|
|
||||||
.. automethod:: del_roster_item
|
|
||||||
|
|
8
docs/api/componentxmpp.rst
Normal file
8
docs/api/componentxmpp.rst
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
=============
|
||||||
|
ComponentXMPP
|
||||||
|
=============
|
||||||
|
|
||||||
|
.. module:: sleekxmpp.componentxmpp
|
||||||
|
|
||||||
|
.. autoclass:: ComponentXMPP
|
||||||
|
:members:
|
|
@ -1,13 +1,13 @@
|
||||||
.. _stanzabase:
|
.. _stanzabase:
|
||||||
|
|
||||||
==========
|
==============
|
||||||
stanzabase
|
Stanza Objects
|
||||||
==========
|
==============
|
||||||
|
|
||||||
.. module:: sleekxmpp.xmlstream.stanzabase
|
.. module:: sleekxmpp.xmlstream.stanzabase
|
||||||
|
|
||||||
The :mod:`sleekmxpp.xmlstream.stanzabase` module provides a wrapper for the
|
The :mod:`~sleekmxpp.xmlstream.stanzabase` module provides a wrapper for the
|
||||||
standard :mod:`xml.etree.cElementTree` module that makes working with XML
|
standard :mod:`~xml.etree.ElementTree` module that makes working with XML
|
||||||
less painful. Instead of having to manually move up and down an element
|
less painful. Instead of having to manually move up and down an element
|
||||||
tree and insert subelements and attributes, you can interact with an object
|
tree and insert subelements and attributes, you can interact with an object
|
||||||
that behaves like a normal dictionary or JSON object, which silently maps
|
that behaves like a normal dictionary or JSON object, which silently maps
|
||||||
|
@ -52,7 +52,7 @@ elements of the original XML chunk.
|
||||||
.. seealso::
|
.. seealso::
|
||||||
:ref:`create-stanza-interfaces`.
|
:ref:`create-stanza-interfaces`.
|
||||||
|
|
||||||
Because the :mod:`sleekxmpp.xmlstream.stanzabase` module was developed
|
Because the :mod:`~sleekxmpp.xmlstream.stanzabase` module was developed
|
||||||
as part of an `XMPP <http://xmpp.org>`_ library, these chunks of XML are
|
as part of an `XMPP <http://xmpp.org>`_ library, these chunks of XML are
|
||||||
referred to as :term:`stanzas <stanza>`, and in SleekXMPP we refer to a
|
referred to as :term:`stanzas <stanza>`, and in SleekXMPP we refer to a
|
||||||
subclass of :class:`ElementBase` which defines the interfaces needed for
|
subclass of :class:`ElementBase` which defines the interfaces needed for
|
||||||
|
|
|
@ -1,17 +1,46 @@
|
||||||
========
|
|
||||||
tostring
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: sleekxmpp.xmlstream.tostring
|
.. module:: sleekxmpp.xmlstream.tostring
|
||||||
|
|
||||||
.. _tostring:
|
.. _tostring:
|
||||||
|
|
||||||
XML Serialization
|
XML Serialization
|
||||||
-----------------
|
=================
|
||||||
|
|
||||||
|
Since the XML layer of SleekXMPP is based on :mod:`~xml.etree.ElementTree`,
|
||||||
|
why not just use the built-in :func:`~xml.etree.ElementTree.tostring`
|
||||||
|
method? The answer is that using that method produces ugly results when
|
||||||
|
using namespaces. The :func:`tostring()` method used here intelligently
|
||||||
|
hides namespaces when able and does not introduce excessive namespace
|
||||||
|
prefixes::
|
||||||
|
|
||||||
|
>>> from sleekxmpp.xmlstream.tostring import tostring
|
||||||
|
>>> from xml.etree import cElementTree as ET
|
||||||
|
>>> xml = ET.fromstring('<foo xmlns="bar"><baz /></foo>')
|
||||||
|
>>> ET.tostring(xml)
|
||||||
|
'<ns0:foo xmlns:ns0="bar"><ns0:baz /></foo>'
|
||||||
|
>>> tostring(xml)
|
||||||
|
'<foo xmlns="bar"><baz /></foo>'
|
||||||
|
|
||||||
|
As a side effect of this namespace hiding, using :func:`tostring()` may
|
||||||
|
produce unexpected results depending on how the :func:`tostring()` method
|
||||||
|
is invoked. For example, when sending XML on the wire, the main XMPP
|
||||||
|
stanzas with their namespace of ``jabber:client`` will not include the
|
||||||
|
namespace because that is already declared by the stream header. But, if
|
||||||
|
you create a :class:`~sleekxmpp.stanza.message.Message` instance and dump
|
||||||
|
it to the terminal, the ``jabber:client`` namespace will appear.
|
||||||
|
|
||||||
.. autofunction:: tostring
|
.. autofunction:: tostring
|
||||||
|
|
||||||
Escaping Special Characters
|
Escaping Special Characters
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
In order to prevent errors when sending arbitrary text as the textual
|
||||||
|
content of an XML element, certain characters must be escaped. These
|
||||||
|
are: ``&``, ``<``, ``>``, ``"``, and ``'``. The default escaping
|
||||||
|
mechanism is to replace those characters with their equivalent escape
|
||||||
|
entities: ``&``, ``<``, ``>``, ``'``, and ``"``.
|
||||||
|
|
||||||
|
In the future, the use of CDATA sections may be allowed to reduce the
|
||||||
|
size of escaped text or for when other XMPP processing agents do not
|
||||||
|
undertand these entities.
|
||||||
|
|
||||||
.. autofunction:: xml_escape
|
.. autofunction:: xml_escape
|
||||||
|
|
|
@ -218,3 +218,5 @@ man_pages = [
|
||||||
('index', 'sleekxmpp', u'SleekXMPP Documentation',
|
('index', 'sleekxmpp', u'SleekXMPP Documentation',
|
||||||
[u'Nathan Fritz, Lance Stout'], 1)
|
[u'Nathan Fritz, Lance Stout'], 1)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
intersphinx_mapping = {'python': ('http://docs.python.org/3.2', 'python-objects.inv')}
|
||||||
|
|
|
@ -110,8 +110,10 @@ API Reference
|
||||||
|
|
||||||
event_index
|
event_index
|
||||||
api/clientxmpp
|
api/clientxmpp
|
||||||
|
api/componentxmpp
|
||||||
api/basexmpp
|
api/basexmpp
|
||||||
api/xmlstream/index
|
api/xmlstream/stanzabase
|
||||||
|
api/xmlstream/tostring
|
||||||
|
|
||||||
Additional Info
|
Additional Info
|
||||||
---------------
|
---------------
|
||||||
|
|
BIN
docs/python-objects.inv
Normal file
BIN
docs/python-objects.inv
Normal file
Binary file not shown.
|
@ -27,9 +27,7 @@ def tostring(xml=None, xmlns='', stanza_ns='', stream=None,
|
||||||
elements that use those namespaces will not include the xmlns attribute
|
elements that use those namespaces will not include the xmlns attribute
|
||||||
in the output.
|
in the output.
|
||||||
|
|
||||||
:param XML xml: The XML object to serialize. If the value is ``None``,
|
:param XML xml: The XML object to serialize.
|
||||||
then the XML object contained in this stanza
|
|
||||||
object will be used.
|
|
||||||
:param string xmlns: Optional namespace of an element wrapping the XML
|
:param string xmlns: Optional namespace of an element wrapping the XML
|
||||||
object.
|
object.
|
||||||
:param string stanza_ns: The namespace of the stanza object that contains
|
:param string stanza_ns: The namespace of the stanza object that contains
|
||||||
|
@ -40,6 +38,8 @@ def tostring(xml=None, xmlns='', stanza_ns='', stream=None,
|
||||||
:param bool top_level: Indicates that the element is the outermost
|
:param bool top_level: Indicates that the element is the outermost
|
||||||
element.
|
element.
|
||||||
|
|
||||||
|
|
||||||
|
:type xml: :py:class:`~xml.etree.ElementTree.Element`
|
||||||
:type stream: :class:`~sleekxmpp.xmlstream.xmlstream.XMLStream`
|
:type stream: :class:`~sleekxmpp.xmlstream.xmlstream.XMLStream`
|
||||||
|
|
||||||
:rtype: Unicode string
|
:rtype: Unicode string
|
||||||
|
@ -114,6 +114,7 @@ def xml_escape(text):
|
||||||
"""Convert special characters in XML to escape sequences.
|
"""Convert special characters in XML to escape sequences.
|
||||||
|
|
||||||
:param string text: The XML text to convert.
|
:param string text: The XML text to convert.
|
||||||
|
:rtype: Unicode string
|
||||||
"""
|
"""
|
||||||
if sys.version_info < (3, 0):
|
if sys.version_info < (3, 0):
|
||||||
if type(text) != types.UnicodeType:
|
if type(text) != types.UnicodeType:
|
||||||
|
|
Loading…
Reference in a new issue