diff --git a/AQI/__init__.py b/AQI/__init__.py index 9858aba..a177f2b 100644 --- a/AQI/__init__.py +++ b/AQI/__init__.py @@ -40,8 +40,8 @@ from supybot import world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.authors.unknown +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/DDG/__init__.py b/DDG/__init__.py index 651fd48..d69e7d5 100644 --- a/DDG/__init__.py +++ b/DDG/__init__.py @@ -39,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/FML/__init__.py b/FML/__init__.py index d3e1243..eb65828 100644 --- a/FML/__init__.py +++ b/FML/__init__.py @@ -39,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/GitLab/__init__.py b/GitLab/__init__.py index bc1c610..174328b 100644 --- a/GitLab/__init__.py +++ b/GitLab/__init__.py @@ -38,6 +38,8 @@ import supybot.world as world __version__ = "" __author__ = supybot.Author('Moritz Lipp', 'mlq', 'mail@mlq.me') +__maintainer__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) __contributors__ = {} diff --git a/LastFM/__init__.py b/LastFM/__init__.py index 47366a7..ae0fef3 100644 --- a/LastFM/__init__.py +++ b/LastFM/__init__.py @@ -43,6 +43,9 @@ __version__ = "2019.07.09+git" # Replace this with an appropriate author or supybot.Author instance. __author__ = supybot.Author("Kevin Funk", "KRF", "krf@electrostorm.net") +__maintainer__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) + # This is a dictionary mapping supybot.Author instances to lists of # contributions. __contributors__ = { diff --git a/MCInfo/__init__.py b/MCInfo/__init__.py index 25cc1ca..715640b 100644 --- a/MCInfo/__init__.py +++ b/MCInfo/__init__.py @@ -39,8 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/NoTrigger/__init__.py b/NoTrigger/__init__.py index f6f2fd9..fd1403b 100644 --- a/NoTrigger/__init__.py +++ b/NoTrigger/__init__.py @@ -29,8 +29,7 @@ ### """ -Add a description of the plugin (to be presented to the user inside the wizard) -here. This should describe *what* the plugin does. +NoTrigger: mangle the bot's text to prevent triggering other bots """ import supybot @@ -40,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/NuWeather/__init__.py b/NuWeather/__init__.py index d6c770b..667eb6e 100644 --- a/NuWeather/__init__.py +++ b/NuWeather/__init__.py @@ -44,8 +44,8 @@ from supybot import world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/OperUp/__init__.py b/OperUp/__init__.py index a18b2fb..1a3bc57 100644 --- a/OperUp/__init__.py +++ b/OperUp/__init__.py @@ -1,5 +1,5 @@ ### -# Copyright (c) 2014, James Lu (GLolol) +# Copyright (c) 2014, James Lu # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -29,8 +29,7 @@ ### """ -Add a description of the plugin (to be presented to the user inside the wizard) -here. This should describe *what* the plugin does. +Allows the bot to oper up on connect. """ import supybot @@ -40,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/PkgInfo/__init__.py b/PkgInfo/__init__.py index f6f2fd9..bb7872e 100644 --- a/PkgInfo/__init__.py +++ b/PkgInfo/__init__.py @@ -29,8 +29,7 @@ ### """ -Add a description of the plugin (to be presented to the user inside the wizard) -here. This should describe *what* the plugin does. +Fetch package repository data for various *nix distributions. """ import supybot @@ -40,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/Qalculate/__init__.py b/Qalculate/__init__.py index c37eda2..cd2937b 100644 --- a/Qalculate/__init__.py +++ b/Qalculate/__init__.py @@ -28,7 +28,8 @@ from supybot import world # Use this for the version of this plugin. __version__ = "" -__author__ = supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/Quakenet/__init__.py b/Quakenet/__init__.py index 6ce8f7a..b6c9479 100644 --- a/Quakenet/__init__.py +++ b/Quakenet/__init__.py @@ -39,8 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.authors.unknown +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/RelayNext/__init__.py b/RelayNext/__init__.py index 5a13ae1..c9b9561 100644 --- a/RelayNext/__init__.py +++ b/RelayNext/__init__.py @@ -39,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/Restart/__init__.py b/Restart/__init__.py index fd7218d..2d4c750 100644 --- a/Restart/__init__.py +++ b/Restart/__init__.py @@ -36,7 +36,8 @@ import supybot import supybot.world as world __version__ = "2019.07.09+git" -__author__ = supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) __contributors__ = {} __url__ = 'https://github.com/jlu5/SupyPlugins/' diff --git a/RhymeZone/__init__.py b/RhymeZone/__init__.py index 6a58515..7d5cad5 100644 --- a/RhymeZone/__init__.py +++ b/RhymeZone/__init__.py @@ -35,12 +35,10 @@ RhymeZone: Fetches rhymes from http://rhymezone.com/. import supybot import supybot.world as world -# Use this for the version of this plugin. You may wish to put a CVS keyword -# in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/SedRegex/__init__.py b/SedRegex/__init__.py index c3ffce4..e4decbf 100644 --- a/SedRegex/__init__.py +++ b/SedRegex/__init__.py @@ -43,6 +43,9 @@ __contributors__ = {supybot.Author("James Lu", "GLolol", "glolol@overdrivenetwor supybot.Author('nyuszika7h', 'nyuszika7h', 'nyuszika7h@openmailbox.org'): ["_unpack_sed method within plugin.py"] } +__maintainer__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) + __url__ = 'https://github.com/jlu5/SupyPlugins' from . import config diff --git a/SupyMisc/__init__.py b/SupyMisc/__init__.py index f6f2fd9..1004216 100644 --- a/SupyMisc/__init__.py +++ b/SupyMisc/__init__.py @@ -29,8 +29,7 @@ ### """ -Add a description of the plugin (to be presented to the user inside the wizard) -here. This should describe *what* the plugin does. +SupyMisc: assorted commands that don't seem to fit anywhere else """ import supybot @@ -40,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/SysDNS/__init__.py b/SysDNS/__init__.py index f6f2fd9..4b94176 100644 --- a/SysDNS/__init__.py +++ b/SysDNS/__init__.py @@ -29,8 +29,7 @@ ### """ -Add a description of the plugin (to be presented to the user inside the wizard) -here. This should describe *what* the plugin does. +SysDNS: perform DNS lookups using the 'host' command on the host machine """ import supybot @@ -40,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/TranslateParty/__init__.py b/TranslateParty/__init__.py index a160976..5ad6dd3 100644 --- a/TranslateParty/__init__.py +++ b/TranslateParty/__init__.py @@ -29,8 +29,7 @@ ### """ -Add a description of the plugin (to be presented to the user inside the wizard) -here. This should describe *what* the plugin does. +Translate text through multiple rounds of Google Translate for amusing results. """ import supybot @@ -40,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/Voteserv/__init__.py b/Voteserv/__init__.py index f6f2fd9..e9b5682 100644 --- a/Voteserv/__init__.py +++ b/Voteserv/__init__.py @@ -29,8 +29,7 @@ ### """ -Add a description of the plugin (to be presented to the user inside the wizard) -here. This should describe *what* the plugin does. +A simple plugin to track polls. """ import supybot @@ -40,9 +39,8 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.Author('James Lu', 'GLolol', - 'james@overdrivenetworks.com') +__author__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/Wikifetch/__init__.py b/Wikifetch/__init__.py index 149faec..83f0ccf 100644 --- a/Wikifetch/__init__.py +++ b/Wikifetch/__init__.py @@ -40,20 +40,17 @@ import supybot.world as world # in here if you're keeping the plugin in CVS or some similar system. __version__ = "2019.07.09+git" -# XXX Replace this with an appropriate author or supybot.Author instance. __author__ = supybot.Author('quantumlemur', 'quantumlemur', 'quantumlemur@users.sourceforge.net') +__maintainer__ = getattr(supybot.authors, 'jlu', + supybot.Author('James Lu', 'GLolol', 'james@overdrivenetworks.com')) # This is a dictionary mapping supybot.Author instances to lists of # contributions. -if not hasattr(supybot.authors, 'progval'): - supybot.authors.progval = supybot.Author('Valentin Lorentz', 'ProgVal', - 'progval@gmail.com') __contributors__ = {supybot.authors.progval: ['enhance configurability', 'many bug fixes', 'internationalization'], - supybot.Author('James Lu', 'GLolol', 'glolol@overdrivenetworks.com'): - ['formatting updates', + __maintainer__: ['formatting updates', 'multiple wiki support']} __url__ = 'https://github.com/jlu5/SupyPlugins'