From 9d7de52c2d0ff73e5b9f3bc942db3ada64abe28b Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Sat, 18 Mar 2006 15:09:27 +0000 Subject: [PATCH] Add Integration::Session.accept for setting the HTTP Accept header to use (defaults to FF 1.5 value) git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3924 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/integration.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/actionpack/lib/action_controller/integration.rb b/actionpack/lib/action_controller/integration.rb index fd9f848f5e..7d4a0f528b 100644 --- a/actionpack/lib/action_controller/integration.rb +++ b/actionpack/lib/action_controller/integration.rb @@ -31,6 +31,9 @@ module ActionController # The remote_addr used in the last request. attr_accessor :remote_addr + # The Accept header to send. + attr_accessor :accept + # A map of the cookies returned by the last response, and which will be # sent with the next request. attr_reader :cookies @@ -66,6 +69,7 @@ module ActionController self.host = "www.example.test" self.remote_addr = "127.0.0.1" + self.accept = "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5" unless @named_routes_configured # install the named routes in this session instance. @@ -209,7 +213,8 @@ module ActionController "CONTENT_TYPE" => "application/x-www-form-urlencoded", "CONTENT_LENGTH" => data ? data.length.to_s : nil, "HTTP_COOKIE" => encode_cookies, - "HTTPS" => https? ? "on" : "off" + "HTTPS" => https? ? "on" : "off", + "HTTP_ACCEPT" => accept ) (headers || {}).each do |key, value|