Limnoria/plugins/ShrinkUrl
Valentin Lorentz db7ef3f025 all: Add generic 'The Limnoria Contributors' to copyright notices.
No need to bother with details (that are all outdated / out of sync
anyway), just look up the git history.
2021-08-01 21:54:49 +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 all: Add generic 'The Limnoria Contributors' to copyright notices. 2021-08-01 21:54:49 +02:00
config.py all: Add generic 'The Limnoria Contributors' to copyright notices. 2021-08-01 21:54:49 +02:00
messages.pot ShrinkUrl: Remove xrl.us 2015-01-24 19:33:33 +01:00
plugin.py all: Add generic 'The Limnoria Contributors' to copyright notices. 2021-08-01 21:54:49 +02:00
test.py all: Add generic 'The Limnoria Contributors' to copyright notices. 2021-08-01 21:54:49 +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.