Limnoria/plugins/ShrinkUrl
Valentin Lorentz 63eb6672ea Revert generic 'The Limnoria Contributors' in copyright notices
This commit reverts db7ef3f025
(though it keeps the year updates)

After discussion with several people, it seems better to mention
copyright owners explicitly. eg. https://reuse.software/faq/#vcs-copyright
explains the issue of using VCSs to track copyright.

As db7ef3f025 only replaced mentions
of my name with 'The Limnoria Contributors', this commit only needs
to undo that + add one person who contributed to setup.py.
2021-10-17 09:57:55 +02:00
..
locales Fix msgfmt warnings. 2020-03-26 22:10:28 +01:00
README.rst all plugins: regenerate READMEs 2021-04-22 00:29:15 +02:00
__init__.py Revert generic 'The Limnoria Contributors' in copyright notices 2021-10-17 09:57:55 +02:00
config.py Revert generic 'The Limnoria Contributors' in copyright notices 2021-10-17 09:57:55 +02:00
messages.pot ShrinkUrl: Remove xrl.us 2015-01-24 19:33:33 +01:00
plugin.py Revert generic 'The Limnoria Contributors' in copyright notices 2021-10-17 09:57:55 +02:00
test.py Revert generic 'The Limnoria Contributors' in copyright notices 2021-10-17 09:57:55 +02:00

README.rst

Documentation for the ShrinkUrl plugin for Supybot

Purpose

Shrinks URLs using various URL shortening services, like tinyurl.

Usage

This plugin features commands to shorten URLs through different services, like tinyurl.

Commands

tiny <url>

Returns a TinyURL.com version of <url>

ur1 <url>

Returns an ur1 version of <url>.

x0 <url>

Returns an x0.no version of <url>.

Configuration

supybot.plugins.ShrinkUrl.bold

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

Determines whether this plugin will bold certain portions of its replies.

supybot.plugins.ShrinkUrl.default

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

Determines what website the bot will use when shrinking a URL. Valid strings: tiny, ur1, and x0.

supybot.plugins.ShrinkUrl.minimumLength

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

The minimum length a URL must be before the bot will shrink it.

supybot.plugins.ShrinkUrl.nonSnarfingRegexp

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

Determines what URLs are to be snarfed; URLs matching the regexp given will not be snarfed. Give the empty string if you have no URLs that you'd like to exclude from being snarfed.

supybot.plugins.ShrinkUrl.outFilter

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

Determines whether the bot will shrink the URLs of outgoing messages if those URLs are longer than supybot.plugins.ShrinkUrl.minimumLength.

supybot.plugins.ShrinkUrl.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.ShrinkUrl.serviceRotation

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

If set to a non-empty value, specifies the list of services to rotate through for the shrinkSnarfer and outFilter.

supybot.plugins.ShrinkUrl.shrinkSnarfer

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

Determines whether the shrink snarfer is enabled. This snarfer will watch for URLs in the channel, and if they're sufficiently long (as determined by supybot.plugins.ShrinkUrl.minimumLength) it will post a smaller URL from the service as denoted in supybot.plugins.ShrinkUrl.default.

supybot.plugins.ShrinkUrl.shrinkSnarfer.showDomain

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

Determines whether the snarfer will show the domain of the URL being snarfed along with the shrunken URL.