mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Tagged the 0.9.1 release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@204 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
0f3c6b179c
commit
974ed23034
1 changed files with 2 additions and 2 deletions
|
@ -431,7 +431,7 @@ module ActionController #:nodoc:
|
||||||
# http://www.mnot.net/cache_docs/ for an overview of web caching and
|
# http://www.mnot.net/cache_docs/ for an overview of web caching and
|
||||||
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9
|
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9
|
||||||
# for the Cache-Control header spec.
|
# for the Cache-Control header spec.
|
||||||
def send_file(path, options = {})
|
def send_file(path, options = {}) #:doc:
|
||||||
raise MissingFile unless File.file?(path) and File.readable?(path)
|
raise MissingFile unless File.file?(path) and File.readable?(path)
|
||||||
|
|
||||||
options[:length] ||= File.size(path)
|
options[:length] ||= File.size(path)
|
||||||
|
@ -483,7 +483,7 @@ module ActionController #:nodoc:
|
||||||
# send_data image.data, :type => image.content_type, :disposition => 'inline'
|
# send_data image.data, :type => image.content_type, :disposition => 'inline'
|
||||||
#
|
#
|
||||||
# See +send_file+ for more information on HTTP Content-* headers and caching.
|
# See +send_file+ for more information on HTTP Content-* headers and caching.
|
||||||
def send_data(data, options = {})
|
def send_data(data, options = {}) #:doc:
|
||||||
logger.info "Sending data #{options[:filename]}" unless logger.nil?
|
logger.info "Sending data #{options[:filename]}" unless logger.nil?
|
||||||
send_file_headers! options.merge(:length => data.size)
|
send_file_headers! options.merge(:length => data.size)
|
||||||
render_text data
|
render_text data
|
||||||
|
|
Loading…
Reference in a new issue