From 3a14d78daaaaf8f925dee99bd1ce1027b213ca87 Mon Sep 17 00:00:00 2001 From: neersighted Date: Mon, 19 Mar 2012 23:58:04 -0700 Subject: [PATCH] updated links --- DOCUMENTATION | 2 +- bot.py | 2 +- cloudbot | 2 +- core/config.py | 4 ++-- plugins/ctcp.py | 2 +- plugins/misc.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/DOCUMENTATION b/DOCUMENTATION index 1675060..a5daa54 100755 --- a/DOCUMENTATION +++ b/DOCUMENTATION @@ -1 +1 @@ -Please see the wiki @ http://git.io/cloudbotwiki \ No newline at end of file +Please see the wiki @ http://git.io/cloudbotircwiki \ No newline at end of file diff --git a/bot.py b/bot.py index 45fac16..2a6fb10 100755 --- a/bot.py +++ b/bot.py @@ -13,7 +13,7 @@ os.chdir(sys.path[0] or '.') # do stuff relative to the install directory class Bot(object): pass -print 'Welcome to Cloudbot - Version DEV - http://git.io/cloudbot' +print 'Welcome to Cloudbot - Version DEV - http://git.io/cloudbotirc' bot = Bot() diff --git a/cloudbot b/cloudbot index 3d7ac49..b422659 100755 --- a/cloudbot +++ b/cloudbot @@ -5,7 +5,7 @@ echo " / ____/ /___ __ ______/ / __ )____ / /_" echo " / / / / __ \/ / / / __ / __ / __ \/ __/" echo "/ /___/ / /_/ / /_/ / /_/ / /_/ / /_/ / /_ " echo "\____/_/\____/\__,_/\__,_/_____/\____/\__/ " -echo " http://git.io/cloudbot by ClouDev " +echo " http://git.io/cloudbotirc by ClouDev " echo "" locatefiles() { botfile="/bot.py" diff --git a/core/config.py b/core/config.py index 5c39127..0401d3a 100755 --- a/core/config.py +++ b/core/config.py @@ -17,7 +17,7 @@ if not os.path.exists('config'): "server": "irc.esper.net", "nick": "MyNewCloudBot", "user": "cloudbot", - "realname": "CloudBot - http://git.io/cloudbot", + "realname": "CloudBot - http://git.io/cloudbotirc", "nickserv_password": "", "channels": ["#cloudbot"], "invitejoin": true, @@ -61,7 +61,7 @@ if not os.path.exists('config'): }''') + '\n') print "Config generated!" print "Please edit the config now!" - print "For help, see http://git.io/cloudbotwiki" + print "For help, see http://git.io/cloudbotircwiki" print "Thank you for using CloudBot!" sys.exit() diff --git a/plugins/ctcp.py b/plugins/ctcp.py index 083f294..800115b 100755 --- a/plugins/ctcp.py +++ b/plugins/ctcp.py @@ -4,7 +4,7 @@ from util import hook # CTCP responses @hook.regex(r'^\x01VERSION\x01$') def ctcpversion(inp, notice=None): - notice('\x01VERSION: CloudBot - http://git.io/cloudbot') + notice('\x01VERSION: CloudBot - http://git.io/cloudbotirc') @hook.regex(r'^\x01PING\x01$') diff --git a/plugins/misc.py b/plugins/misc.py index 4a82252..de62cb8 100755 --- a/plugins/misc.py +++ b/plugins/misc.py @@ -51,7 +51,7 @@ def onjoin(paraml, conn=None, bot=None): time.sleep(1) # HTTP Useragent - http.ua_cloudbot = 'CloudBot - http://git.io/cloudbot' + http.ua_cloudbot = 'CloudBot - http://git.io/cloudbotirc' # Stay-alive code stayalive = conn.conf.get('stayalive')