Content-Type of Cached Files with Period in Name

Monkey patch to prevent ActionCache from overriding
the correct content-type header, when serving cached
pages with a "." in the name. (Thanks to Jason Blevins)

Also sync with latest SVG-Edit.
This commit is contained in:
Jacques Distler 2010-04-18 12:55:02 -05:00
parent 324cc12320
commit 79a2299363
9 changed files with 2414 additions and 46 deletions

View file

@ -286,3 +286,17 @@ end
class Hash
alias_method(:key, :index) unless method_defined?(:key)
end
# Monkey patch, to ensure ActionCache doesn't muck with the content-type header.
module ActionController #:nodoc:
module Caching
module Actions
class ActionCacheFilter
private
def set_content_type!(controller, extension)
return
end
end
end
end
end