X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Frbot%2Fcore%2Funicode.rb;h=ece8e64409c62598013a7f7493f89caf30d260f4;hb=bf9734ff89a238c5a63015b68eabd8d0ef9d1308;hp=a24a19984206ed4d54ebe06be421d56b47c50f40;hpb=5f25e65756ff3428226559e301e9074a4b660e69;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/lib/rbot/core/unicode.rb b/lib/rbot/core/unicode.rb index a24a1998..ece8e644 100644 --- a/lib/rbot/core/unicode.rb +++ b/lib/rbot/core/unicode.rb @@ -4,14 +4,15 @@ # :title: Unicode plugin # # Author:: jsn (Dmitry Kim) -# 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 # encoding. The plugin takes care of translation to/from utf-8 on server IO, # if necessary (translation charsets are configurable). +# TODO autoconfigure using server-provided allowed charset when these are +# available, see also comment in irc.rb + require 'iconv' class UnicodePlugin < CoreBotModule @@ -23,6 +24,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 +66,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 +82,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']