Changeset 4125
- Timestamp:
- 04/01/06 20:41:53 (2 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/caching.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r4122 r4125 1 1 *SVN* 2 3 * Fixed fragment caching of binary data on Windows #4493 [bellis@deepthought.org] 2 4 3 5 * Applied Prototype $() performance patches (#4465, #4477) and updated script.aculo.us [Sam Stephenson, Thomas Fuchs] trunk/actionpack/lib/action_controller/caching.rb
r3738 r4125 417 417 418 418 def read(name, options = nil) #:nodoc: 419 IO.read(real_file_path(name))rescue nil419 File.open(real_file_path(name), 'rb') { |f| f.read } rescue nil 420 420 end 421 421