mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add dummy ActionView::Base.cache_template_loading accessor -- will be made functional again in short time
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2066 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
4e4a35aed9
commit
a8b9fc9f2a
2 changed files with 5 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Added ActionView::Base.cache_template_loading back.
|
||||
|
||||
* Rewrote compiled templates to decrease code complexity. Removed template load caching in favour of compiled caching. Fixed template error messages. [Nicholas Seckar]
|
||||
|
||||
* Fix Routing to handle :some_param => nil better. [Nicholas Seckar, Luminas]
|
||||
|
|
|
@ -129,6 +129,9 @@ module ActionView #:nodoc:
|
|||
@@erb_trim_mode = '-'
|
||||
cattr_accessor :erb_trim_mode
|
||||
|
||||
@@cache_template_loading = false # Unused at the moment
|
||||
cattr_accessor :cache_template_loading
|
||||
|
||||
@@template_handlers = {}
|
||||
|
||||
@@compiled_templates = CompiledTemplates.new
|
||||
|
|
Loading…
Reference in a new issue