]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - lib/rbot/core/unicode.rb
ircbot/rfc2812/message: Add banlist message handling
[user/henk/code/ruby/rbot.git] / lib / rbot / core / unicode.rb
index a24a19984206ed4d54ebe06be421d56b47c50f40..9d42ec2422fe7e913596c4671f3c4b303dd9dd85 100644 (file)
@@ -4,8 +4,6 @@
 # :title: Unicode plugin
 #
 # Author:: jsn (Dmitry Kim) <dmitry dot kim at gmail dot org>
-# Copyright:: (C) 2007 Dmitry Kim
-# License:: public domain
 #
 # This plugin adds unicode-awareness to rbot. When it's loaded, all the
 # character strings inside of rbot are assumed to be in proper utf-8
@@ -23,6 +21,7 @@ class UnicodePlugin < CoreBotModule
     Config.register Config::ArrayValue.new(
     'encoding.charsets', :default => ['utf-8', 'cp1252', 'iso-8859-15'],
     :desc => "Ordered list of iconv(3) charsets the bot should try",
+    :validate_item => Proc.new { |x| !!(Iconv.new('utf-8', x) rescue nil) },
     :on_change => Proc.new { |bot, v| reconfigure_filter(bot) })
 
     class UnicodeFilter
@@ -64,14 +63,14 @@ class UnicodePlugin < CoreBotModule
 
     def initialize(*a)
         super
-        @old_kcode = $KCODE
+        @@old_kcode = $KCODE
         self.class.reconfigure_filter(@bot)
     end
 
     def cleanup
         debug "cleaning up encodings"
         @bot.socket.filter = nil
-        $KCODE = @old_kcode
+        $KCODE = @@old_kcode
         super
     end
 
@@ -80,7 +79,7 @@ class UnicodePlugin < CoreBotModule
         enable = bot.config['encoding.enable']
         if not enable
             bot.socket.filter = nil
-            $KCODE = @old_kcode
+            $KCODE = @@old_kcode
             return
         end
         charsets = bot.config['encoding.charsets']