aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2006-03-13 15:54:33 +0000
committerNicholas Seckar <nseckar@gmail.com>2006-03-13 15:54:33 +0000
commit8ff44631939fd9220f03f9b18a687cbd040220e3 (patch)
treea429e1a94d8e6d102e9d45b62fc2b330478371b9 /actionpack/CHANGELOG
parent97dd9a91c249ec8717cb07e1f6a08b58f3544a5d (diff)
downloadrails-8ff44631939fd9220f03f9b18a687cbd040220e3.tar.gz
rails-8ff44631939fd9220f03f9b18a687cbd040220e3.tar.bz2
rails-8ff44631939fd9220f03f9b18a687cbd040220e3.zip
Simplify controller_path
Cache File.directory? calls to avoid filesystem calls when using layouts git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3861 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index aa1ddd1a08..8beff49f54 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Avoid hitting the filesystem when using layouts by using a File.directory? cache. [Stefan Kaes, Nicholas Seckar]
+
+* Simplify ActionController::Base#controller_path [Nicholas Seckar]
+
* Added simple alert() notifications for RJS exceptions when config.action_view.debug_rjs = true. [Sam Stephenson]
* Added :content_type option to render, so you can change the content type on the fly [DHH]. Example: render :action => "atom.rxml", :content_type => "application/atom+xml"