private Method

AbstractRequest.content_type_from_legacy_post_data_format_header

There's no documentation for this item.

Source Code

# File action_controller/request.rb, line 355
def content_type_from_legacy_post_data_format_header
  if x_post_format = @env['HTTP_X_POST_DATA_FORMAT']
    case x_post_format.to_s.downcase
      when 'yaml';  'application/x-yaml'
      when 'xml';   'application/xml'
    end
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.