aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/paths.rb
Commit message (Collapse)AuthorAgeFilesLines
* Port fast reloadable templates from rails-dev-boost.thedarkone2009-02-121-8/+15
|
* Improve view rendering performance in development mode and reinstate ↵Andrew White2009-02-091-9/+8
| | | | | | template recompiling in production [#1909 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Render implicit html template when xhr request now supports localization ↵José Valim2009-02-071-0/+2
| | | | | | [#1886 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Use Path rather than EagerPath when cache_classes == false so other view ↵Andrew White2009-02-051-1/+5
| | | | | | paths are properly recompiled in development mode [#1764 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Restore implicit rendering for XHR requests that want a HTML template [#1590 ↵Joshua Peek2009-01-271-0/+3
| | | | state:resolved]
* Add localized templatesJoshua Peek2009-01-251-1/+5
| | | | | | | | # Default locale app/views/messages/index.html.erb # I18n.locale is set to :da (Danish) app/views/messages/index.da.html.erb
* Clean up view path cruft and split path implementations into Template::Path ↵Joshua Peek2008-12-291-106/+1
| | | | and Template::EagerPath
* Ensure the template format is always passed to the template finder. Now we ↵Joshua Peek2008-12-211-28/+13
| | | | can cleanup some nasty stuff.
* Fixed template lookups from outside the rails root [#1557 state:resolved]Joshua Peek2008-12-111-0/+4
|
* Silence server backtrace in rescue templates and log files. Also remove some ↵Joshua Peek2008-12-051-1/+9
| | | | noise from missing template errors.
* fixed template recompile issue with previous commit and add some better ↵Joshua Peek2008-11-281-1/+1
| | | | tests so we can make sure it doesn't happen again
* Reinstate "Super lazy load view paths in development mode (no indexing or ↵Joshua Peek2008-11-281-17/+50
| | | | caching at all). Switch layout finders to use view path api to take advantage of cache." as it killed dev mode reloading."
* Revert "Super lazy load view paths in development mode (no indexing or ↵David Heinemeier Hansson2008-11-271-50/+17
| | | | | | caching at all). Switch layout finders to use view path api to take advantage of cache." as it killed dev mode reloading. This reverts commit 4d910b033379727e5e7355590c50c72fc75e56db.
* Super lazy load view paths in development mode (no indexing or caching at ↵Joshua Peek2008-11-261-17/+50
| | | | all). Switch layout finders to use view path api to take advantage of cache.
* Partial revert of 2681685 premature TypeArray abstractionJoshua Peek2008-08-211-1/+25
|
* Consistently use the framework's configured logger and avoid reverting to ↵Joshua Peek2008-08-181-1/+1
| | | | RAILS_DEFAULT_LOGGER unless necessary.
* Ensure mailer view path is loaded when it's assigned. Path#[] raises if it ↵Jeremy Kemper2008-07-311-0/+2
| | | | isn't loaded.
* Load view path cache after plugins and gems.Joshua Peek2008-07-231-3/+15
|
* Extract ActiveSupport::TypedArray class to ensure an array is all of the ↵Joshua Peek2008-07-221-25/+6
| | | | same type [#673 state:resolved]
* Ensure ActionView::PathSet::Path is not initialized with a precompiled pathJoshua Peek2008-07-191-0/+2
|
* Removed config.action_view.cache_template_loading, use config.cache_classes ↵Joshua Peek2008-07-151-4/+12
| | | | instead
* Set config.action_view.warn_cache_misses = true to receive a warning if you ↵Joshua Peek2008-07-121-1/+12
| | | | perform an action that results in an expensive disk operation that could be cached
* Refactor template preloading. New abstractions include Renderable mixins and ↵Joshua Peek2008-07-121-0/+85
a refactored Template class.