Limnoria/plugins/LogToIrc
Valentin Lorentz 833af36b08 all plugins: auto-generate READMEs
Starting with this commit, there should be no "original" text
in READMEs.
Instead, the entire text should be in docstrings, and READMEs
should be automatically generated from these docstrings.

Motivation:

* The same help is available both via IRC and in the README
  (although the README can be more detailed, as only the first
  paragraph will be shown on IRC)
* This will allow auto-generating plugin help on docs.limnoria.net
  using the same content as the README, as it's sourced from the
  docstrings

Additionally, this converts all READMEs from Markdown to ReST,
because the documentation already uses ReST, and other docstrings
in the codebase are in ReST for this reason.
2021-04-05 17:42:31 +02:00
..
README.rst all plugins: auto-generate READMEs 2021-04-05 17:42:31 +02:00
__init__.py LogToIrc: Run 2to3 2021-03-11 00:40:43 +01:00
config.py LogToIrc: Make variables channel- and network-specific when relevant 2021-03-11 20:20:53 +01:00
handler.py LogToIrc: Make variables channel- and network-specific when relevant 2021-03-11 20:20:53 +01:00
plugin.py LogToIrc: Update __init__/die signatures. 2021-03-11 00:40:43 +01:00
test.py LogToIrc: Split into modules, like modern plugins 2021-03-11 00:40:43 +01:00

README.rst

Documentation for the LogToIrc plugin for Supybot

Purpose

Allows for sending the bot's logging output to channels or users.

Configuration

supybot.plugins.LogToIrc.channelModesRequired

This config variable defaults to "s", is network-specific, and is not channel-specific.

Determines what channel modes a channel will be required to have for the bot to log to the channel. If this string is empty, no modes will be checked.

supybot.plugins.LogToIrc.color

This config variable defaults to "False", is network-specific, and is channel-specific.

Determines whether the bot's logs to IRC will be colorized with mIRC colors.

supybot.plugins.LogToIrc.level

This config variable defaults to "WARNING", is network-specific, and is channel-specific.

Determines what the minimum priority level logged will be to IRC. See supybot.log.level for possible values. DEBUG is disabled due to the large quantity of output.

supybot.plugins.LogToIrc.networks

This config variable defaults to " ", is not network-specific, and is not channel-specific.

Determines what networks the bot should log to. If no networks are set, the bot will log on one network (whichever happens to be around at the time it feels like logging).

supybot.plugins.LogToIrc.notice

This config variable defaults to "False", is network-specific, and is channel-specific.

Determines whether the bot's logs to IRC will be sent via NOTICE instead of PRIVMSG. Channels will always be PRIVMSGed, regardless of this variable; NOTICEs will only be used if this variable is True and the target is a nick, not a channel.

supybot.plugins.LogToIrc.public

This config variable defaults to "True", is not network-specific, and is not channel-specific.

Determines whether this plugin is publicly visible.

supybot.plugins.LogToIrc.targets

This config variable defaults to " ", is network-specific, and is not channel-specific.

Determines which channels/nicks the bot should log to. If no channels/nicks are set, this plugin will effectively be turned off.

supybot.plugins.LogToIrc.userCapabilityRequired

This config variable defaults to "owner", is not network-specific, and is not channel-specific.

Determines what capability is required for the bot to log to in private messages to the user. If this is empty, there will be no capability that's checked.