mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-16 15:39:21 +01:00
Update capitalization of my Github username
This commit is contained in:
parent
5b9ec4f716
commit
dc79ab193a
@ -991,10 +991,10 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"This may be a bug. If you think it is,\n"
|
"This may be a bug. If you think it is,\n"
|
||||||
" please file a bug report at\n"
|
" please file a bug report at\n"
|
||||||
" <https://github.com/ProgVal/Limnoria/issues>."
|
" <https://github.com/progval/Limnoria/issues>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tämä voi olla bugi. Mikäli uskotaan niin, raportoidaan bugi osoitteessa\n"
|
"Tämä voi olla bugi. Mikäli uskotaan niin, raportoidaan bugi osoitteessa\n"
|
||||||
" <https://github.com/ProgVal/Limnoria/issues>. Bugiraportit kirjoitetaan "
|
" <https://github.com/progval/Limnoria/issues>. Bugiraportit kirjoitetaan "
|
||||||
"englanniksi."
|
"englanniksi."
|
||||||
|
|
||||||
#: src/conf.py:619
|
#: src/conf.py:619
|
||||||
|
@ -1006,10 +1006,10 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"This may be a bug. If you think it is,\n"
|
"This may be a bug. If you think it is,\n"
|
||||||
" please file a bug report at\n"
|
" please file a bug report at\n"
|
||||||
" <https://github.com/ProgVal/Limnoria/issues>."
|
" <https://github.com/progval/Limnoria/issues>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ceci semble être un bug. Si vous pensez que c'en est un, veillez à "
|
"Ceci semble être un bug. Si vous pensez que c'en est un, veillez à "
|
||||||
"envoyer un rapport de bug sur <http://github.com/ProgVal/Limnoria/issues>."
|
"envoyer un rapport de bug sur <http://github.com/progval/Limnoria/issues>."
|
||||||
|
|
||||||
#: src/conf.py:733
|
#: src/conf.py:733
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -742,10 +742,10 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"This may be a bug. If you think it is,\n"
|
"This may be a bug. If you think it is,\n"
|
||||||
" please file a bug report at\n"
|
" please file a bug report at\n"
|
||||||
" <https://github.com/ProgVal/Limnoria/issues>."
|
" <https://github.com/progval/Limnoria/issues>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Questo sembra essere un bug. Se pensi lo sia, invia una segnalazione all'indirizzo\n"
|
"Questo sembra essere un bug. Se pensi lo sia, invia una segnalazione all'indirizzo\n"
|
||||||
" <https://github.com/ProgVal/Limnoria/issues>."
|
" <https://github.com/progval/Limnoria/issues>."
|
||||||
|
|
||||||
#: src/conf.py:566
|
#: src/conf.py:566
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -741,7 +741,7 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"This may be a bug. If you think it is,\n"
|
"This may be a bug. If you think it is,\n"
|
||||||
" please file a bug report at\n"
|
" please file a bug report at\n"
|
||||||
" <https://github.com/ProgVal/Limnoria/issues>."
|
" <https://github.com/progval/Limnoria/issues>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/conf.py:733
|
#: src/conf.py:733
|
||||||
|
@ -119,7 +119,7 @@ class Ctcp(callbacks.PluginRegexp):
|
|||||||
"^\x01SOURCE\x01$"
|
"^\x01SOURCE\x01$"
|
||||||
self.log.info('Received CTCP SOURCE from %s', msg.prefix)
|
self.log.info('Received CTCP SOURCE from %s', msg.prefix)
|
||||||
self._reply(irc, msg,
|
self._reply(irc, msg,
|
||||||
'SOURCE https://github.com/ProgVal/Limnoria')
|
'SOURCE https://github.com/progval/Limnoria')
|
||||||
|
|
||||||
def doNotice(self, irc, msg):
|
def doNotice(self, irc, msg):
|
||||||
if ircmsgs.isCtcp(msg):
|
if ircmsgs.isCtcp(msg):
|
||||||
|
@ -48,7 +48,7 @@ __maintainer__ = supybot.authors.limnoria_core
|
|||||||
__contributors__ = {}
|
__contributors__ = {}
|
||||||
|
|
||||||
# This is a url where the most recent plugin package can be downloaded.
|
# This is a url where the most recent plugin package can be downloaded.
|
||||||
__url__ = 'https://github.com/ProgVal/Limnoria/tree/testing/plugins/DDG'
|
__url__ = 'https://github.com/progval/Limnoria/tree/testing/plugins/DDG'
|
||||||
|
|
||||||
from . import config
|
from . import config
|
||||||
from . import plugin
|
from . import plugin
|
||||||
|
@ -339,7 +339,7 @@ class Misc(callbacks.Plugin):
|
|||||||
Returns the version of the current bot.
|
Returns the version of the current bot.
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
newestUrl = 'https://api.github.com/repos/ProgVal/Limnoria/' + \
|
newestUrl = 'https://api.github.com/repos/progval/Limnoria/' + \
|
||||||
'commits/%s'
|
'commits/%s'
|
||||||
versions = {}
|
versions = {}
|
||||||
for branch in ('master', 'testing'):
|
for branch in ('master', 'testing'):
|
||||||
@ -370,7 +370,7 @@ class Misc(callbacks.Plugin):
|
|||||||
|
|
||||||
Returns a URL saying where to get Limnoria.
|
Returns a URL saying where to get Limnoria.
|
||||||
"""
|
"""
|
||||||
irc.reply(_('My source is at https://github.com/ProgVal/Limnoria'))
|
irc.reply(_('My source is at https://github.com/progval/Limnoria'))
|
||||||
source = wrap(source)
|
source = wrap(source)
|
||||||
|
|
||||||
@internationalizeDocstring
|
@internationalizeDocstring
|
||||||
|
@ -604,7 +604,7 @@ class Owner(callbacks.Plugin):
|
|||||||
old_callback = irc.getCallback(name)
|
old_callback = irc.getCallback(name)
|
||||||
if old_callback:
|
if old_callback:
|
||||||
# Normalize the plugin case to prevent duplicate registration
|
# Normalize the plugin case to prevent duplicate registration
|
||||||
# entries, https://github.com/ProgVal/Limnoria/issues/1295
|
# entries, https://github.com/progval/Limnoria/issues/1295
|
||||||
name = old_callback.name()
|
name = old_callback.name()
|
||||||
conf.registerPlugin(name, False)
|
conf.registerPlugin(name, False)
|
||||||
callbacks = irc.removeCallback(name)
|
callbacks = irc.removeCallback(name)
|
||||||
|
@ -197,8 +197,8 @@ class GithubRepository(GitRepository):
|
|||||||
|
|
||||||
|
|
||||||
repositories = utils.InsensitivePreservingDict({
|
repositories = utils.InsensitivePreservingDict({
|
||||||
'ProgVal': GithubRepository(
|
'progval': GithubRepository(
|
||||||
'ProgVal',
|
'progval',
|
||||||
'Supybot-plugins'
|
'Supybot-plugins'
|
||||||
),
|
),
|
||||||
'quantumlemur': GithubRepository(
|
'quantumlemur': GithubRepository(
|
||||||
@ -348,14 +348,14 @@ class PluginDownloader(callbacks.Plugin):
|
|||||||
< Mikaela> @load PluginDownloader
|
< Mikaela> @load PluginDownloader
|
||||||
< Limnoria> Ok.
|
< Limnoria> Ok.
|
||||||
< Mikaela> @plugindownloader repolist
|
< Mikaela> @plugindownloader repolist
|
||||||
< Limnoria> Antibody, jlu5, Hoaas, Iota, ProgVal, SpiderDave, boombot, code4lib, code4lib-edsu, code4lib-snapshot, doorbot, frumious, jonimoose, mailed-notifier, mtughan-weather, nanotube-bitcoin, nyuszika7h, nyuszika7h-old, pingdom, quantumlemur, resistivecorpse, scrum, skgsergio, stepnem
|
< Limnoria> Antibody, jlu5, Hoaas, Iota, progval, SpiderDave, boombot, code4lib, code4lib-edsu, code4lib-snapshot, doorbot, frumious, jonimoose, mailed-notifier, mtughan-weather, nanotube-bitcoin, nyuszika7h, nyuszika7h-old, pingdom, quantumlemur, resistivecorpse, scrum, skgsergio, stepnem
|
||||||
< Mikaela> @plugindownloader repolist ProgVal
|
< Mikaela> @plugindownloader repolist progval
|
||||||
< Limnoria> AttackProtector, AutoTrans, Biography, Brainfuck, ChannelStatus, Cleverbot, Coffee, Coinpan, Debian, ERepublik, Eureka, Fortune, GUI, GitHub, Glob2Chan, GoodFrench, I18nPlaceholder, IMDb, IgnoreNonVoice, Iwant, Kickme, LimnoriaChan, LinkRelay, ListEmpty, Listener, Markovgen, MegaHAL, MilleBornes, NoLatin1, NoisyKarma, OEIS, PPP, PingTime, Pinglist, RateLimit, Rbls, Redmine, Scheme, Seeks, (1 more message)
|
< Limnoria> AttackProtector, AutoTrans, Biography, Brainfuck, ChannelStatus, Cleverbot, Coffee, Coinpan, Debian, ERepublik, Eureka, Fortune, GUI, GitHub, Glob2Chan, GoodFrench, I18nPlaceholder, IMDb, IgnoreNonVoice, Iwant, Kickme, LimnoriaChan, LinkRelay, ListEmpty, Listener, Markovgen, MegaHAL, MilleBornes, NoLatin1, NoisyKarma, OEIS, PPP, PingTime, Pinglist, RateLimit, Rbls, Redmine, Scheme, Seeks, (1 more message)
|
||||||
< Mikaela> more
|
< Mikaela> more
|
||||||
< Limnoria> SilencePlugin, StdoutCapture, Sudo, SupyML, SupySandbox, TWSS, Trigger, Trivia, Twitter, TwitterStream, Untiny, Variables, WebDoc, WebLogs, WebStats, Website, WikiTrans, Wikipedia, WunderWeather
|
< Limnoria> SilencePlugin, StdoutCapture, Sudo, SupyML, SupySandbox, TWSS, Trigger, Trivia, Twitter, TwitterStream, Untiny, Variables, WebDoc, WebLogs, WebStats, Website, WikiTrans, Wikipedia, WunderWeather
|
||||||
< Mikaela> @plugindownloader info ProgVal Wikipedia
|
< Mikaela> @plugindownloader info progval Wikipedia
|
||||||
< Limnoria> Grabs data from Wikipedia.
|
< Limnoria> Grabs data from Wikipedia.
|
||||||
< Mikaela> @plugindownloader install ProgVal Wikipedia
|
< Mikaela> @plugindownloader install progval Wikipedia
|
||||||
< Limnoria> Ok.
|
< Limnoria> Ok.
|
||||||
< Mikaela> @load Wikipedia
|
< Mikaela> @load Wikipedia
|
||||||
< Limnoria> Ok.
|
< Limnoria> Ok.
|
||||||
|
@ -61,19 +61,19 @@ class PluginDownloaderTestCase(PluginTestCase):
|
|||||||
assert os.path.isfile(pluginsPath + '/%s/config.py' % name)
|
assert os.path.isfile(pluginsPath + '/%s/config.py' % name)
|
||||||
|
|
||||||
def testRepolist(self):
|
def testRepolist(self):
|
||||||
self.assertRegexp('repolist', '(.*, )?ProgVal(, .*)?')
|
self.assertRegexp('repolist', '(.*, )?progval(, .*)?')
|
||||||
self.assertRegexp('repolist', '(.*, )?quantumlemur(, .*)?')
|
self.assertRegexp('repolist', '(.*, )?quantumlemur(, .*)?')
|
||||||
self.assertRegexp('repolist ProgVal', '(.*, )?AttackProtector(, .*)?')
|
self.assertRegexp('repolist progval', '(.*, )?AttackProtector(, .*)?')
|
||||||
|
|
||||||
def testInstallProgVal(self):
|
def testInstallprogval(self):
|
||||||
self.assertError('plugindownloader install ProgVal Darcs')
|
self.assertError('plugindownloader install progval Darcs')
|
||||||
self.assertNotError('plugindownloader install ProgVal AttackProtector')
|
self.assertNotError('plugindownloader install progval AttackProtector')
|
||||||
self.assertError('plugindownloader install ProgVal Darcs')
|
self.assertError('plugindownloader install progval Darcs')
|
||||||
self._testPluginInstalled('AttackProtector')
|
self._testPluginInstalled('AttackProtector')
|
||||||
|
|
||||||
def testShellForbidden(self):
|
def testShellForbidden(self):
|
||||||
with conf.supybot.commands.allowShell.context(False):
|
with conf.supybot.commands.allowShell.context(False):
|
||||||
self.assertRegexp('plugindownloader install ProgVal Darcs',
|
self.assertRegexp('plugindownloader install progval Darcs',
|
||||||
'Error:.*not available.*supybot.commands.allowShell')
|
'Error:.*not available.*supybot.commands.allowShell')
|
||||||
|
|
||||||
def testInstallQuantumlemur(self):
|
def testInstallQuantumlemur(self):
|
||||||
@ -104,7 +104,7 @@ class PluginDownloaderTestCase(PluginTestCase):
|
|||||||
self._testPluginInstalled('DuckDuckGo')
|
self._testPluginInstalled('DuckDuckGo')
|
||||||
|
|
||||||
def testInfo(self):
|
def testInfo(self):
|
||||||
self.assertResponse('plugindownloader info ProgVal Twitter',
|
self.assertResponse('plugindownloader info progval Twitter',
|
||||||
'Advanced Twitter plugin for Supybot, with capabilities '
|
'Advanced Twitter plugin for Supybot, with capabilities '
|
||||||
'handling, and per-channel user account.')
|
'handling, and per-channel user account.')
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ class RSS(callbacks.Plugin):
|
|||||||
^^^^^^^^^^^
|
^^^^^^^^^^^
|
||||||
|
|
||||||
1. Add a feed using
|
1. Add a feed using
|
||||||
``@rss add limnoria https://github.com/ProgVal/Limnoria/tags.atom``.
|
``@rss add limnoria https://github.com/progval/Limnoria/tags.atom``.
|
||||||
|
|
||||||
* This is RSS feed of Limnoria's stable releases.
|
* This is RSS feed of Limnoria's stable releases.
|
||||||
* You can now check the latest news from the feed with ``@limnoria``.
|
* You can now check the latest news from the feed with ``@limnoria``.
|
||||||
|
@ -263,7 +263,7 @@ class RSSTestCase(ChannelPluginTestCase):
|
|||||||
|
|
||||||
@mock_urllib
|
@mock_urllib
|
||||||
def testReloadNoDelay(self, mock):
|
def testReloadNoDelay(self, mock):
|
||||||
# https://github.com/ProgVal/Limnoria/issues/922
|
# https://github.com/progval/Limnoria/issues/922
|
||||||
mock._data = xkcd_old
|
mock._data = xkcd_old
|
||||||
timeFastForward(1.1)
|
timeFastForward(1.1)
|
||||||
try:
|
try:
|
||||||
|
@ -46,7 +46,7 @@ __contributors__ = {supybot.authors.jlu:
|
|||||||
}
|
}
|
||||||
__maintainer__ = supybot.authors.limnoria_core
|
__maintainer__ = supybot.authors.limnoria_core
|
||||||
|
|
||||||
__url__ = 'https://github.com/ProgVal/Limnoria/tree/master/plugins/SedRegex'
|
__url__ = 'https://github.com/progval/Limnoria/tree/master/plugins/SedRegex'
|
||||||
|
|
||||||
from . import config
|
from . import config
|
||||||
from . import plugin
|
from . import plugin
|
||||||
|
@ -180,7 +180,7 @@ class Web(callbacks.PluginRegexp):
|
|||||||
parser.feed(text)
|
parser.feed(text)
|
||||||
except UnicodeDecodeError:
|
except UnicodeDecodeError:
|
||||||
# Workaround for Python 2
|
# Workaround for Python 2
|
||||||
# https://github.com/ProgVal/Limnoria/issues/1359
|
# https://github.com/progval/Limnoria/issues/1359
|
||||||
parser = Title()
|
parser = Title()
|
||||||
parser.feed(text.encode('utf8'))
|
parser.feed(text.encode('utf8'))
|
||||||
parser.close()
|
parser.close()
|
||||||
|
@ -425,7 +425,7 @@ class ChannelIdDatabasePlugin(callbacks.Plugin):
|
|||||||
if not ircdb.checkCapability(msg.prefix, 'trusted'):
|
if not ircdb.checkCapability(msg.prefix, 'trusted'):
|
||||||
# Limited --regexp to trusted users, because specially
|
# Limited --regexp to trusted users, because specially
|
||||||
# crafted regexps can freeze the bot. See
|
# crafted regexps can freeze the bot. See
|
||||||
# https://github.com/ProgVal/Limnoria/issues/855 for details
|
# https://github.com/progval/Limnoria/issues/855 for details
|
||||||
irc.errorNoCapability('trusted')
|
irc.errorNoCapability('trusted')
|
||||||
|
|
||||||
predicates.append(lambda r: regexp_wrapper(r.text, reobj=arg,
|
predicates.append(lambda r: regexp_wrapper(r.text, reobj=arg,
|
||||||
|
2
setup.py
2
setup.py
@ -163,7 +163,7 @@ setup(
|
|||||||
provides=['supybot'],
|
provides=['supybot'],
|
||||||
version=version,
|
version=version,
|
||||||
author='Valentin Lorentz',
|
author='Valentin Lorentz',
|
||||||
url='https://github.com/ProgVal/Limnoria',
|
url='https://github.com/progval/Limnoria',
|
||||||
author_email='progval+limnoria@progval.net',
|
author_email='progval+limnoria@progval.net',
|
||||||
download_url='https://pypi.python.org/pypi/limnoria',
|
download_url='https://pypi.python.org/pypi/limnoria',
|
||||||
description='A modified version of Supybot (an IRC bot and framework)',
|
description='A modified version of Supybot (an IRC bot and framework)',
|
||||||
|
@ -78,7 +78,7 @@ class authors(object): # This is basically a bag.
|
|||||||
bear = Author('Mike Taylor', 'bear', 'bear@code-bear.com')
|
bear = Author('Mike Taylor', 'bear', 'bear@code-bear.com')
|
||||||
grantbow = Author('Grant Bowman', 'Grantbow', 'grantbow@grantbow.com')
|
grantbow = Author('Grant Bowman', 'Grantbow', 'grantbow@grantbow.com')
|
||||||
stepnem = Author('Štěpán Němec', 'stepnem', 'stepnem@gmail.com')
|
stepnem = Author('Štěpán Němec', 'stepnem', 'stepnem@gmail.com')
|
||||||
progval = Author('Valentin Lorentz', 'ProgVal', 'progval@gmail.com')
|
progval = Author('Valentin Lorentz', 'progval', 'progval@gmail.com')
|
||||||
jlu = Author('James Lu', email='james@overdrivenetworks.com')
|
jlu = Author('James Lu', email='james@overdrivenetworks.com')
|
||||||
unknown = Author('Unknown author', email='unknown@email.invalid')
|
unknown = Author('Unknown author', email='unknown@email.invalid')
|
||||||
|
|
||||||
|
@ -738,7 +738,7 @@ registerChannelValue(supybot.replies, 'requiresPrivacy',
|
|||||||
registerChannelValue(supybot.replies, 'possibleBug',
|
registerChannelValue(supybot.replies, 'possibleBug',
|
||||||
registry.NormalizedString(_("""This may be a bug. If you think it is,
|
registry.NormalizedString(_("""This may be a bug. If you think it is,
|
||||||
please file a bug report at
|
please file a bug report at
|
||||||
<https://github.com/ProgVal/Limnoria/issues>."""),
|
<https://github.com/progval/Limnoria/issues>."""),
|
||||||
_("""Determines what message the bot sends when it thinks you've
|
_("""Determines what message the bot sends when it thinks you've
|
||||||
encountered a bug that the developers don't know about.""")))
|
encountered a bug that the developers don't know about.""")))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user