mirror of
https://github.com/Mikaela/Limnoria-doc.git
synced 2024-12-24 12:12:37 +01:00
Document Irc, IrcState, ChannelState, IrcMsg, and Plugin.
This commit is contained in:
parent
b018a9ce1d
commit
e50cfad04d
18
develop/callbacks.rst
Normal file
18
develop/callbacks.rst
Normal file
@ -0,0 +1,18 @@
|
||||
.. _supybot-callbacks:
|
||||
|
||||
*****************
|
||||
supybot.callbacks
|
||||
*****************
|
||||
|
||||
Most used classes
|
||||
=================
|
||||
|
||||
.. _supybot-callbacks-plugin:
|
||||
|
||||
supybot.callbacks-plugin
|
||||
------------------------
|
||||
|
||||
.. autoclass:: supybot.callbacks.Plugin
|
||||
:members:
|
||||
:inherited-members:
|
||||
|
@ -7,7 +7,7 @@ Developping plugins for Limnoria
|
||||
Doc provided with Supybot:
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 0
|
||||
:maxdepth: 2
|
||||
|
||||
../import/PLUGIN_TUTORIAL.rst
|
||||
../import/USING_WRAP.rst
|
||||
@ -20,7 +20,9 @@ Doc provided with Supybot:
|
||||
Other docs:
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 0
|
||||
:maxdepth: 2
|
||||
|
||||
callbacks.rst
|
||||
irclib.rst
|
||||
ircmsgs.rst
|
||||
httpserver.rst
|
||||
|
44
develop/irclib.rst
Normal file
44
develop/irclib.rst
Normal file
@ -0,0 +1,44 @@
|
||||
.. _supybot-irclib:
|
||||
|
||||
**************
|
||||
supybot.irclib
|
||||
**************
|
||||
|
||||
Most used classes
|
||||
=================
|
||||
|
||||
.. _supybot-irclib-irc:
|
||||
|
||||
supybot.irclib.Irc
|
||||
------------------
|
||||
|
||||
It is usually the `irc` object given to plugin commands.
|
||||
|
||||
.. autoclass:: supybot.irclib.Irc
|
||||
:members:
|
||||
:inherited-members:
|
||||
|
||||
|
||||
.. _supybot-irclib-ircstate:
|
||||
|
||||
supybot.irclib.IrcState
|
||||
-----------------------
|
||||
|
||||
Used mainly as the `state` attribute of :py:class:`supybot.irclib.Irc` objects.
|
||||
|
||||
.. autoclass:: supybot.irclib.IrcState
|
||||
:members:
|
||||
:inherited-members:
|
||||
|
||||
|
||||
.. _supybot-irclib-channelstate:
|
||||
|
||||
supybot.irclib.ChannelState
|
||||
---------------------------
|
||||
|
||||
Used mainly as the `channels['#chan']` attribute of
|
||||
:py:class:`supybot.irclib.Irc` objects.
|
||||
|
||||
.. autoclass:: supybot.irclib.ChannelState
|
||||
:members:
|
||||
:inherited-members:
|
8
develop/ircmsgs.rst
Normal file
8
develop/ircmsgs.rst
Normal file
@ -0,0 +1,8 @@
|
||||
.. _supybot-ircmsgs:
|
||||
|
||||
***************
|
||||
supybot.ircmsgs
|
||||
***************
|
||||
|
||||
.. automodule:: supybot.ircmsgs
|
||||
:members:
|
Loading…
Reference in New Issue
Block a user