diff --git a/README b/README index 23607adc6..3a750b86e 100644 --- a/README +++ b/README @@ -14,7 +14,7 @@ irc.freenode.net or irc.oftc.net (we have a Supybot there relaying, so either network works) and ask questions. We'll be happy to help wherever we can. And by all means, if you find anything hard to understand or think you know of a better way to do something, -*please* post it on Sourceforge.net so we can improve the bot! +*please* post it on GitHub so we can improve the bot! WINDOWS USERS: -------------- diff --git a/docs/FAQ.rst b/docs/FAQ.rst index 62c07f887..6d08b4318 100644 --- a/docs/FAQ.rst +++ b/docs/FAQ.rst @@ -176,7 +176,7 @@ Why can't Supybot find the plugin I want to load? I've found a bug, what do I do? - Submit your bug on `Sourceforge`_ through our `project page`_. + Submit your bug on `GitHub`_ through our `project page`_. Is Python installed? @@ -196,6 +196,6 @@ Is Python installed? .. _website: http://supybot.com/ .. _blocks: http://freenode.net/faq.shtml#blockingmessages .. _tsocks: http://tsocks.sourceforge.net -.. _Sourceforge: http://sourceforge.net/ -.. _project page: http://sourceforge.net/projects/supybot +.. _GitHub: https://github.com/ +.. _project page: https://github.com/Supybot/Supybot .. _download it: http://python.org/download/ diff --git a/plugins/Ctcp/plugin.py b/plugins/Ctcp/plugin.py index e62404083..6396b06bf 100644 --- a/plugins/Ctcp/plugin.py +++ b/plugins/Ctcp/plugin.py @@ -105,7 +105,7 @@ class Ctcp(callbacks.PluginRegexp): "\x01SOURCE\x01" self.log.info('Received CTCP SOURCE from %s', msg.prefix) self._reply(irc, msg, - 'SOURCE http://www.sourceforge.net/projects/supybot/') + 'SOURCE https://github.com/Supybot/Supybot') def doNotice(self, irc, msg): if ircmsgs.isCtcp(msg): diff --git a/plugins/Misc/plugin.py b/plugins/Misc/plugin.py index 93fb8f645..c4c93e15a 100644 --- a/plugins/Misc/plugin.py +++ b/plugins/Misc/plugin.py @@ -227,7 +227,7 @@ class Misc(callbacks.Plugin): Returns a URL saying where to get Supybot. """ - irc.reply('My source is at http://sourceforge.net/projects/supybot/') + irc.reply('My source is at https://github.com/Supybot/Supybot') source = wrap(source) def more(self, irc, msg, args, nick): diff --git a/plugins/RSS/README.txt b/plugins/RSS/README.txt index 0d1655156..e0d454fc2 100644 --- a/plugins/RSS/README.txt +++ b/plugins/RSS/README.txt @@ -9,7 +9,7 @@ Basic usage ----------- Adding a feed -@rss add supybot http://sourceforge.net/export/rss2_projfiles.php?group_id=58965 +@rss add supybot https://github.com/Supybot/Supybot/commits/master.atom Add announcements for a feed @rss announce add supybot diff --git a/setup.py b/setup.py index 646dcfb18..cd5c34d3b 100644 --- a/setup.py +++ b/setup.py @@ -78,9 +78,9 @@ setup( author='Jeremy Fincher', author_email='jemfinch@supybot.com', maintainer='James McCoy', - maintainer_email='jamessan@users.sourceforge.net', - url='https://sourceforge.net/projects/supybot/', - download_url='https://sourceforge.net/projects/supybot/files/', + maintainer_email='vega.james@gmail.com', + url='https://github.com/Supybot/Supybot', + download_url='https://github.com/Supybot/Supybot/releases', platforms=['linux', 'linux2', 'win32', 'cygwin', 'darwin'], description='A flexible and extensible Python IRC bot and framework.', long_description=normalizeWhitespace("""A robust, full-featured Python IRC diff --git a/src/conf.py b/src/conf.py index 458b9c865..63b8cace6 100644 --- a/src/conf.py +++ b/src/conf.py @@ -525,7 +525,7 @@ registerChannelValue(supybot.replies, 'requiresPrivacy', registerChannelValue(supybot.replies, 'possibleBug', registry.NormalizedString("""This may be a bug. If you think it is, please file a bug report at - .""", + .""", """Determines what message the bot sends when it thinks you've encountered a bug that the developers don't know about.""")) ###