X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Ffactoids.rb;h=452efb98fef3fb8b7ff3eb2a3a69fc27f56d3383;hb=b955d424d89655a04ba5f06d3cfee482ae33e713;hp=689b6d78e688d23e5a428f07ae5bdc860a96119e;hpb=91a9024e21ec8b429605a036b5c9193442a580e3;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/factoids.rb b/data/rbot/plugins/factoids.rb index 689b6d78..452efb98 100644 --- a/data/rbot/plugins/factoids.rb +++ b/data/rbot/plugins/factoids.rb @@ -65,7 +65,7 @@ class FactoidsPlugin < Plugin def index(f) fact = f.to_s return if fact.empty? - self.map { |f| f[:fact] }.index(fact) + self.map { |fs| fs[:fact] }.index(fact) end def delete(f) @@ -260,7 +260,14 @@ class FactoidsPlugin < Plugin end def help(plugin, topic="") - _("factoids plugin: learn that , forget that , facts about ") + case plugin + when 'learn' + _("learn that => learn a factoid") + when 'forget' + _("forget fact <#num> => forget factoid number #num ; forget about => forget a factoid") + else + _("factoids plugin: learn that , forget that , facts about ") + end end def learn(m, params) @@ -341,7 +348,7 @@ class FactoidsPlugin < Plugin if params[:words].nil_or_empty? and params[:rx].nil_or_empty? m.reply _("I know %{total} facts" % { :total => total }) else - if params[:words].empty? + unless params.key? :words and not params[:words].empty? rx = Regexp.new(params[:rx].to_s, true) else rx = words2rx(params[:words]) @@ -349,7 +356,11 @@ class FactoidsPlugin < Plugin known = @factoids.grep(rx) reply = [] if known.empty? - reply << _("I know nothing about %{words}" % params) + if params.key? :words + reply << _("I know nothing about %{words}" % params) + else params.key? :rx + reply << _("I know nothing matching %{rx}" % params) + end else max_facts = @bot.config['factoids.search_results'] len = known.length @@ -379,7 +390,12 @@ class FactoidsPlugin < Plugin return if @triggers.empty? query = $1.strip.downcase if @triggers.include?(query) - facts(m, :words => query.split) + words = query.split + words.instance_variable_set(:@string_value, query) + def words.to_s + @string_value + end + facts(m, :words => words) end else return if m.address? # we don't learn stuff directed at us which is not an explicit learn command