mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-18 14:40:51 +01:00
Moved docstrings in plugin packages to __init__.py instead of plugin.py; no lazy "backwards compatibility" hack.
This commit is contained in:
parent
683c2c1018
commit
2c31235a3e
@ -27,6 +27,11 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
|
"""
|
||||||
|
These are commands useful for administrating the bot; they all require their
|
||||||
|
caller to have the 'admin' capability. This plugin is loaded by default.
|
||||||
|
"""
|
||||||
|
|
||||||
import supybot
|
import supybot
|
||||||
|
|
||||||
__author__ = supybot.authors.jemfinch
|
__author__ = supybot.authors.jemfinch
|
||||||
|
@ -27,11 +27,6 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
"""
|
|
||||||
These are commands useful for administrating the bot; they all require their
|
|
||||||
caller to have the 'admin' capability. This plugin is loaded by default.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import supybot
|
import supybot
|
||||||
|
|
||||||
__author__ = supybot.authors.jemfinch
|
__author__ = supybot.authors.jemfinch
|
||||||
|
@ -27,6 +27,11 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
|
"""
|
||||||
|
Basic channel management commands. Many of these commands require their caller
|
||||||
|
to have the <channel>.op capability. This plugin is loaded by default.
|
||||||
|
"""
|
||||||
|
|
||||||
import supybot
|
import supybot
|
||||||
|
|
||||||
__author__ = supybot.authors.jemfinch
|
__author__ = supybot.authors.jemfinch
|
||||||
|
@ -27,11 +27,6 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
"""
|
|
||||||
Basic channel management commands. Many of these commands require their caller
|
|
||||||
to have the <channel>.op capability. This plugin is loaded by default.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
@ -27,6 +27,10 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
|
"""
|
||||||
|
Handles configuration of the bot while it is running.
|
||||||
|
"""
|
||||||
|
|
||||||
import supybot
|
import supybot
|
||||||
|
|
||||||
__author__ = supybot.authors.jemfinch
|
__author__ = supybot.authors.jemfinch
|
||||||
|
@ -27,10 +27,6 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
"""
|
|
||||||
Handles configuration of the bot while it is running.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import getopt
|
import getopt
|
||||||
import signal
|
import signal
|
||||||
|
@ -27,6 +27,10 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
|
"""
|
||||||
|
Miscellaneous commands.
|
||||||
|
"""
|
||||||
|
|
||||||
import supybot
|
import supybot
|
||||||
|
|
||||||
__author__ = supybot.authors.jemfinch
|
__author__ = supybot.authors.jemfinch
|
||||||
|
@ -27,10 +27,6 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
"""
|
|
||||||
Miscellaneous commands.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import supybot
|
import supybot
|
||||||
|
|
||||||
import supybot.fix as fix
|
import supybot.fix as fix
|
||||||
|
@ -27,6 +27,11 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
|
"""
|
||||||
|
Provides commands useful to the owner of the bot; the commands here require
|
||||||
|
their caller to have the 'owner' capability. This plugin is loaded by default.
|
||||||
|
"""
|
||||||
|
|
||||||
import supybot
|
import supybot
|
||||||
|
|
||||||
__author__ = supybot.authors.jemfinch
|
__author__ = supybot.authors.jemfinch
|
||||||
|
@ -27,11 +27,6 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
"""
|
|
||||||
Provides commands useful to the owner of the bot; the commands here require
|
|
||||||
their caller to have the 'owner' capability. This plugin is loaded by default.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import supybot.fix as fix
|
import supybot.fix as fix
|
||||||
|
|
||||||
import gc
|
import gc
|
||||||
|
@ -27,6 +27,10 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
|
"""
|
||||||
|
Provides commands useful to users in general. This plugin is loaded by default.
|
||||||
|
"""
|
||||||
|
|
||||||
import supybot
|
import supybot
|
||||||
|
|
||||||
__author__ = supybot.authors.jemfinch
|
__author__ = supybot.authors.jemfinch
|
||||||
|
@ -27,10 +27,6 @@
|
|||||||
# POSSIBILITY OF SUCH DAMAGE.
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
###
|
###
|
||||||
|
|
||||||
"""
|
|
||||||
Provides commands useful to users in general. This plugin is loaded by default.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import supybot.fix as fix
|
import supybot.fix as fix
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
Loading…
x
Reference in New Issue
Block a user