# File escape.rb, line 460
  def http_parameter_value(str)
    if http_token?(str)
      MIMEParameter.new(str)
    else
      http_quoted_string(str)
    end
  end