diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-03 17:14:02 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-03 17:14:02 +0100 |
commit | a6b5a69612f4dd744be20c326152a9d892150f98 (patch) | |
tree | f3a221e2c8e1b805b5b83c0136978b9fb36eae59 /docs/plugins | |
parent | little cleanup, improved handling of custom exceptions via api (diff) | |
download | pyload-a6b5a69612f4dd744be20c326152a9d892150f98.tar.xz |
seperate api into several components
Diffstat (limited to 'docs/plugins')
-rw-r--r-- | docs/plugins/base_plugin.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/plugins/base_plugin.rst b/docs/plugins/base_plugin.rst index f6813cf40..3e1d5f952 100644 --- a/docs/plugins/base_plugin.rst +++ b/docs/plugins/base_plugin.rst @@ -18,7 +18,7 @@ An overview of acceptable values can be found in :class:`Base <module.plugins.Ba Unneeded attributes can be left out, except ``__version__``. Nevertheless please fill out most information as you can, when you want to submit your plugin to the public repository. -Additionally :class:`Crypter <module.plugins.Crypter.Crypter>` and :class:`Crypter <module.plugins.Hoster.Hoster>` +Additionally :class:`Crypter <module.plugins.Crypter.Crypter>` and :class:`Hoster <module.plugins.Hoster.Hoster>` needs to have a specific regexp [2]_ ``__pattern__``. This will be matched against input url's and if a suited plugin is found it is selected to handle the url. @@ -37,7 +37,7 @@ How a basic hoster plugin header could look like:: __description__ = _("Short description of the plugin") __long_description = _("""An even longer description is not needed for hoster plugins, - but the hook plugin should have it, so the users know what they are doing.""") + but an addon plugin should have it, so the users know what it is doing.""") In future examples the meta data will be left out, but remember it's required in every plugin! |