diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/_static/haiku.css | 21 | ||||
-rw-r--r-- | docs/_templates/layout.html | 1 | ||||
-rw-r--r-- | docs/api/xmlstream/tostring.rst | 2 | ||||
-rw-r--r-- | docs/differences.rst | 5 | ||||
-rw-r--r-- | docs/index.rst | 2 |
5 files changed, 5 insertions, 26 deletions
diff --git a/docs/_static/haiku.css b/docs/_static/haiku.css index 3d8ee6a7..a76f55de 100644 --- a/docs/_static/haiku.css +++ b/docs/_static/haiku.css @@ -408,24 +408,3 @@ div.viewcode-block:target { margin: -1px -12px; padding: 0 12px; } - -#from_andyet { - -webkit-box-shadow: #CCC 0px 0px 3px; - background: rgba(255, 255, 255, 1); - bottom: 0px; - right: 17px; - padding: 3px 10px; - position: fixed; -} - -#from_andyet h2 { - background-image: url("images/from_&yet.png"); - background-repeat: no-repeat; - height: 29px; - line-height: 0; - text-indent: -9999em; - width: 79px; - margin-top: 0; - margin: 0px; - padding: 0px; -} diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html index de6f7244..0a97cb70 100644 --- a/docs/_templates/layout.html +++ b/docs/_templates/layout.html @@ -65,6 +65,5 @@ <div class="bottomnav"> {{ nav() }} </div> - <a id="from_andyet" href="http://andyet.net"><h2>From &yet</h2></a> {% endblock %} diff --git a/docs/api/xmlstream/tostring.rst b/docs/api/xmlstream/tostring.rst index 68abbdb6..107e97b0 100644 --- a/docs/api/xmlstream/tostring.rst +++ b/docs/api/xmlstream/tostring.rst @@ -13,7 +13,7 @@ hides namespaces when able and does not introduce excessive namespace prefixes:: >>> from slixmpp.xmlstream.tostring import tostring - >>> from xml.etree import cElementTree as ET + >>> from xml.etree import ElementTree as ET >>> xml = ET.fromstring('<foo xmlns="bar"><baz /></foo>') >>> ET.tostring(xml) '<ns0:foo xmlns:ns0="bar"><ns0:baz /></foo>' diff --git a/docs/differences.rst b/docs/differences.rst index 8a86427b..7c781571 100644 --- a/docs/differences.rst +++ b/docs/differences.rst @@ -3,8 +3,9 @@ Differences from SleekXMPP ========================== -**Python 3.5+ only** - slixmpp will only work on python 3.5 and above. +**Python 3.7+ only** + slixmpp will work on python 3.7 and above. It may work with previous + versions but we provide no guarantees. **Stanza copies** The same stanza object is given through all the handlers; a handler that diff --git a/docs/index.rst b/docs/index.rst index 2f556d83..a18c77a7 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -21,7 +21,7 @@ Slixmpp which goal is to use asyncio instead of threads to handle networking. See :ref:`differences`. -Slixmpp is an :ref:`MIT licensed <license>` XMPP library for Python 3.5+, +Slixmpp is an :ref:`MIT licensed <license>` XMPP library for Python 3.7+, Slixmpp's design goals and philosphy are: |