diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api/xmlstream/handler.rst | 24 | ||||
-rw-r--r-- | docs/api/xmlstream/jid.rst (renamed from docs/api/jid.rst) | 0 | ||||
-rw-r--r-- | docs/api/xmlstream/matcher.rst | 41 | ||||
-rw-r--r-- | docs/index.rst | 4 |
4 files changed, 68 insertions, 1 deletions
diff --git a/docs/api/xmlstream/handler.rst b/docs/api/xmlstream/handler.rst new file mode 100644 index 00000000..33c0bf42 --- /dev/null +++ b/docs/api/xmlstream/handler.rst @@ -0,0 +1,24 @@ +Stanza Handlers +=============== + +The Basic Handler +----------------- +.. module:: sleekxmpp.xmlstream.handler.base + +.. autoclass:: BaseHandler + :members: + +Callback +-------- +.. module:: sleekxmpp.xmlstream.handler.callback + +.. autoclass:: Callback + :members: + + +Waiter +------ +.. module:: sleekxmpp.xmlstream.handler.waiter + +.. autoclass:: Waiter + :members: diff --git a/docs/api/jid.rst b/docs/api/xmlstream/jid.rst index 22a2db45..22a2db45 100644 --- a/docs/api/jid.rst +++ b/docs/api/xmlstream/jid.rst diff --git a/docs/api/xmlstream/matcher.rst b/docs/api/xmlstream/matcher.rst new file mode 100644 index 00000000..df3591bc --- /dev/null +++ b/docs/api/xmlstream/matcher.rst @@ -0,0 +1,41 @@ +Stanza Matchers +=============== + +The Basic Matcher +----------------- +.. module:: sleekxmpp.xmlstream.matcher.base + +.. autoclass:: MatcherBase + :members: + + +ID Matching +----------- +.. module:: sleekxmpp.xmlstream.matcher.id + +.. autoclass:: MatcherId + :members: + + +Stanza Path Matching +-------------------- +.. module:: sleekxmpp.xmlstream.matcher.stanzapath + +.. autoclass:: StanzaPath + :members: + + +XPath +----- +.. module:: sleekxmpp.xmlstream.matcher.xpath + +.. autoclass:: MatchXPath + :members: + + +XMLMask +------- +.. module:: sleekxmpp.xmlstream.matcher.xmlmask + +.. autoclass:: MatchXMLMask + :members: diff --git a/docs/index.rst b/docs/index.rst index 76c3741e..5d2577d2 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -112,8 +112,10 @@ API Reference api/clientxmpp api/componentxmpp api/basexmpp - api/jid + api/xmlstream/jid api/xmlstream/stanzabase + api/xmlstream/handler + api/xmlstream/matcher api/xmlstream/tostring api/xmlstream/filesocket |