Prepare for mime type reordering depending on the branch [DHH]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3850 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 09cec782
......@@ -3,6 +3,12 @@ class Type
def self.lookup(string)
LOOKUP[string]
end
def self.parse(accept_header)
accept_header.split(",").collect! do |mime_type|
Mime::Type.lookup(mime_type.split(";").first.strip)
end
end
def initialize(string, symbol = nil, synonyms = [])
@symbol, @synonyms = symbol, synonyms
......@@ -33,7 +39,7 @@ def ==(mime_type)
ALL = Type.new "*/*", :all
HTML = Type.new "text/html", :html, %w( application/xhtml+xml )
JS = Type.new "text/javascript", :js, %w( application/javascript application/x-javascript )
XML = Type.new "application/xml", :xml, %w( text/xml application/x-xml )
XML = Type.new "application/xml", :xml, %w( application/x-xml )
RSS = Type.new "application/rss+xml", :rss
ATOM = Type.new "application/atom+xml", :atom
YAML = Type.new "application/x-yaml", :yaml
......
......@@ -70,9 +70,7 @@ def accepts
@accepts = if @env['HTTP_ACCEPT'].to_s.strip.blank?
[ content_type, Mime::ALL ]
else
@env['HTTP_ACCEPT'].split(",").collect! do |mime_type|
Mime::Type.lookup(mime_type.split(";").first.strip)
end
Mime::Type.parse(@env['HTTP_ACCEPT'])
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册