# File lib/plugins/filter.rb, line 49
  def self.find_filter_candidates(a, b, filters)
    if a.empty?
      filters.to_a
    else
      filters.grep(/^#{Regexp.quote a}/i)
    end.
    map {|u| b % u }
  end