Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Restore implicit rendering for XHR requests that want a HTML template [#1590 ↵ | Joshua Peek | 2009-01-27 | 1 | -0/+3 |
| | | | | state:resolved] | ||||
* | Add localized templates | Joshua Peek | 2009-01-25 | 1 | -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 Peek | 2008-12-29 | 1 | -106/+1 |
| | | | | and Template::EagerPath | ||||
* | Ensure the template format is always passed to the template finder. Now we ↵ | Joshua Peek | 2008-12-21 | 1 | -28/+13 |
| | | | | can cleanup some nasty stuff. | ||||
* | Fixed template lookups from outside the rails root [#1557 state:resolved] | Joshua Peek | 2008-12-11 | 1 | -0/+4 |
| | |||||
* | Silence server backtrace in rescue templates and log files. Also remove some ↵ | Joshua Peek | 2008-12-05 | 1 | -1/+9 |
| | | | | noise from missing template errors. | ||||
* | fixed template recompile issue with previous commit and add some better ↵ | Joshua Peek | 2008-11-28 | 1 | -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 Peek | 2008-11-28 | 1 | -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 Hansson | 2008-11-27 | 1 | -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 Peek | 2008-11-26 | 1 | -17/+50 |
| | | | | all). Switch layout finders to use view path api to take advantage of cache. | ||||
* | Partial revert of 2681685 premature TypeArray abstraction | Joshua Peek | 2008-08-21 | 1 | -1/+25 |
| | |||||
* | Consistently use the framework's configured logger and avoid reverting to ↵ | Joshua Peek | 2008-08-18 | 1 | -1/+1 |
| | | | | RAILS_DEFAULT_LOGGER unless necessary. | ||||
* | Ensure mailer view path is loaded when it's assigned. Path#[] raises if it ↵ | Jeremy Kemper | 2008-07-31 | 1 | -0/+2 |
| | | | | isn't loaded. | ||||
* | Load view path cache after plugins and gems. | Joshua Peek | 2008-07-23 | 1 | -3/+15 |
| | |||||
* | Extract ActiveSupport::TypedArray class to ensure an array is all of the ↵ | Joshua Peek | 2008-07-22 | 1 | -25/+6 |
| | | | | same type [#673 state:resolved] | ||||
* | Ensure ActionView::PathSet::Path is not initialized with a precompiled path | Joshua Peek | 2008-07-19 | 1 | -0/+2 |
| | |||||
* | Removed config.action_view.cache_template_loading, use config.cache_classes ↵ | Joshua Peek | 2008-07-15 | 1 | -4/+12 |
| | | | | instead | ||||
* | Set config.action_view.warn_cache_misses = true to receive a warning if you ↵ | Joshua Peek | 2008-07-12 | 1 | -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 Peek | 2008-07-12 | 1 | -0/+85 |
a refactored Template class. |