]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/commitdiff
* replace references to old website to references to new site
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Thu, 14 Feb 2008 08:23:10 +0000 (09:23 +0100)
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Thu, 14 Feb 2008 08:23:10 +0000 (09:23 +0100)
REQUIREMENTS
Rakefile
data/rbot/plugins/alias.rb
lib/rbot/core/utils/httputil.rb
lib/rbot/ircbot.rb
lib/rbot/plugins/dice.rb

index d9adaeaf4d83be2e218cb0826eb939ebe8b3b724..cc12c4bca376ee282765c4053c1e6c385c859820 100644 (file)
@@ -88,4 +88,4 @@ where you installed Ruby (typically C:\Ruby\)
 Further instructions
 ====================
 
-For further instructions, check http://linuxbrit.co.uk/rbot/wiki/InstallGuide
+For further instructions, check http://ruby-rbot.org/rbot-trac/wiki/InstallGuide
index 7a6bd81ea6b9eddf05554a796bd317f8408bc33f..f0a42717df5d410712f9120bd0d4affd182bc2ba 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -26,7 +26,7 @@ spec = Gem::Specification.new do |s|
 
   s.author = 'Tom Gilbert'
   s.email = 'tom@linuxbrit.co.uk'
-  s.homepage = 'http://linuxbrit.co.uk/rbot/'
+  s.homepage = 'http://ruby-rbot.org'
   s.rubyforge_project = 'rbot'
 end
 
index a587736ccff862eaeb21873b532ac35ed2c7e952..bafd85288cda35e721261e5cd7fea6bfcf5ae07d 100644 (file)
 # exisitng rbot command and that is run.
 #
 # == Example Session
-#   < alias googlerbot *terms => google site:linuxbrit.co.uk/rbot/ <terms>
+#   < alias googlerbot *terms => google site:ruby-rbot.org <terms>
 #   > okay
 #   < googlerbot plugins
-#   > Results for site:linuxbrit.co.uk/rbot/ plugins: ....
+#   > Results for site:ruby-rbot.org plugins: ....
 #
 # == Security
 # By default, only the owner can define and remove aliases, while everyone else can
@@ -171,7 +171,7 @@ class AliasPlugin < Plugin
         end.join ' | '
       end
     when 'create'
-      _('"alias <text> => <command>" => add text as an alias of command. Text can contain placeholders marked with : or * for :words and *multiword arguments. The command can contain placeholders enclosed with < > which will be substituded with argument values. For example: alias googlerbot *terms => google site:linuxbrit.co.uk/rbot/ <terms>')
+      _('"alias <text> => <command>" => add text as an alias of command. Text can contain placeholders marked with : or * for :words and *multiword arguments. The command can contain placeholders enclosed with < > which will be substituded with argument values. For example: alias googlerbot *terms => google site:ruby-rbot.org <terms>')
     when 'commands'
       _('alias list => list defined aliases | alias whatis <alias> => show definition of the alias | alias remove <alias> => remove defined alias | see the "create" topic about adding aliases')
     end
index 2c83cebb4f80a017bdae007a8cb6edb11bf174b5..3d4133e0a80a2b52ebd0878072272d9db94717e6 100644 (file)
@@ -283,7 +283,7 @@ class HttpUtil
       'Accept-Charset' => 'utf-8;q=1.0, *;q=0.8',
       'Accept-Encoding' => 'gzip;q=1, deflate;q=1, identity;q=0.8, *;q=0.2',
       'User-Agent' =>
-        "rbot http util #{$version} (http://linuxbrit.co.uk/rbot/)"
+        "rbot http util #{$version} (#{Irc::Bot::SOURCE_URL})"
     }
     debug "starting http cache cleanup timer"
     @timer = @bot.timer.add(300) {
index 5cb9e4f3a04a699fc17adc39665c24625caea717..42e3c9b6e801d7d9d805fc313aa610b9a513dc27 100644 (file)
@@ -124,7 +124,7 @@ module Irc
 # handles them or passes them to plugins, and contains core functionality.
 class Bot
   COPYRIGHT_NOTICE = "(c) Tom Gilbert and the rbot development team"
-  SOURCE_URL = "http://linuxbrit.co.uk/rbot"
+  SOURCE_URL = "http://ruby-rbot.org"
   # the bot's Auth data
   attr_reader :auth
 
index 928da894f7532ae5307e5276de48fc853dd985ca..a09d2b1a0e68bd1455bbdde9b72adb4940d71004 100644 (file)
@@ -5,7 +5,7 @@
 # Version: 0.3.2
 # Date: Sat 6 Apr 2002
 #
-# You can get rbot from: http://www.linuxbrit.co.uk/rbot/
+# You can get rbot from: http://ruby-rbot.org
 #
 # Changelog
 # 0.1 - Initial release