aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template.rb
Commit message (Collapse)AuthorAgeFilesLines
* Port fast reloadable templates from rails-dev-boost.thedarkone2009-02-121-50/+38
|
* Fix some edge cases when the same template is called with different local ↵Andrew White2009-02-101-12/+11
| | | | | | assigns Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Improve view rendering performance in development mode and reinstate ↵Andrew White2009-02-091-38/+42
| | | | | | template recompiling in production [#1909 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* ~ backup files don't clobber original templates [#1818 state:resolved]Joshua Peek2009-02-071-14/+14
|
* Added support to dashed locales in templates localization [#1888 state:resolved]José Valim2009-02-061-1/+1
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Template#mime_type should not use Mime::Type when Action Controller is not ↵Pratik Naik2009-02-021-1/+1
| | | | included
* Fix for failing ActionMailer multipart testsJoshua Peek2009-01-261-2/+2
|
* Add localized templatesJoshua Peek2009-01-251-14/+42
| | | | | | | | # Default locale app/views/messages/index.html.erb # I18n.locale is set to :da (Danish) app/views/messages/index.da.html.erb
* Fix performance regressionJeremy Kemper2009-01-161-1/+1
|
* Clean up view path cruft and split path implementations into Template::Path ↵Joshua Peek2008-12-291-4/+81
| | | | and Template::EagerPath
* Ensure the template format is always passed to the template finder. Now we ↵Joshua Peek2008-12-211-0/+28
| | | | can cleanup some nasty stuff.
* Revert "Auto-load template handlers based on unmatched extensions [#1540 ↵Pratik Naik2008-12-191-3/+7
| | | | | | | | | | state:resolved]" This reverts commit e8c1915416579a3840573ca2c80822d96cb31823. Reasons : - ActionPack tests run very slow - Gem.searcher hanging for long time when extension is nil
* Auto-load template handlers based on unmatched extensions [#1540 state:resolved]Nathan Weizenbaum2008-12-151-7/+3
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Fixed template lookups from outside the rails root [#1557 state:resolved]Joshua Peek2008-12-111-1/+1
|
* Register bogus template handlers for ActionMailer test fixturesJoshua Peek2008-12-031-1/+1
|
* Validate template extensions [#1187 state:resolved]Joshua Peek2008-12-031-8/+6
|
* fixed template recompile issue with previous commit and add some better ↵Joshua Peek2008-11-281-0/+18
| | | | tests so we can make sure it doesn't happen again
* prefer autoloading Mime::TypeJoshua Peek2008-11-241-2/+0
|
* Fixed missing template paths on exception [#1082 state:resolved]Claudio Poli2008-09-201-4/+9
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Require missing libraries and check for defined ActionController constant so ↵Joshua Peek2008-08-261-0/+2
| | | | ActionView can be used standalone
* Tidy up ActionMailer rendering logic to take advantage of view path cache ↵Joshua Peek2008-08-061-1/+9
| | | | instead of using file system lookups
* Just file?Joshua Peek2008-07-231-1/+1
|
* Memoize ActionView::Base pick_template and find_partial_path for rendering ↵Joshua Peek2008-07-221-1/+1
| | | | duration
* Set the response content type to that of found template if not explicitly ↵Tom Ward2008-07-181-0/+5
| | | | | | set elsewhere [#444 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Changed ActiveSupport::Memoizable API to extend since it mainly adds the ↵Joshua Peek2008-07-181-1/+1
| | | | memoize class method
* memorize typoJoshua Peek2008-07-141-6/+6
|
* Include Memoizable in ActionView::TemplateJoshua Peek2008-07-141-25/+15
|
* Eager load Partial variable_name and counter_name. Tidy up ↵Joshua Peek2008-07-141-15/+9
| | | | render_partial_collection.
* Refactor template preloading. New abstractions include Renderable mixins and ↵Joshua Peek2008-07-121-54/+84
| | | | a refactored Template class.
* Added local assign keys to compiled method name so two threads evaluating ↵Joshua Peek2008-07-061-1/+1
| | | | the same template with different locals don't step on top of each other
* Lookup compiled methods in CompiledTemplates instance methods set instead of ↵Joshua Peek2008-07-051-2/+2
| | | | using a "methods_names" hash
* Moved complied method name logic into RenderableJoshua Peek2008-07-051-1/+8
|
* Renamed Renderer to RenderableJoshua Peek2008-07-051-1/+1
|
* Revert "Moved TemplateHandlers to Base"Joshua Peek2008-07-031-6/+2
| | | | | | | | | This reverts commit 42d215a925a228778e43f7040f03ad8f3eb5341c. Conflicts: actionpack/lib/action_view/inline_template.rb actionpack/lib/action_view/template.rb
* Extracted Template rendering logic into Renderer moduleJoshua Peek2008-07-031-27/+6
|
* Moved TemplateHandlers to BaseJoshua Peek2008-07-031-2/+5
|
* Deprecate :use_full_path render option. The supplying the option no longer ↵Joshua Peek2008-07-021-18/+21
| | | | has an effect.
* Replaced TemplateFinder abstraction with ViewLoadPathsJoshua Peek2008-06-171-19/+25
|
* Moved template handler registration into a mix-in module.Joshua Peek2008-06-111-65/+26
|
* Make sure cache_template_loading works and don't use to_prepare callbackPratik Naik2008-06-111-0/+1
|
* Removed TemplateFinder.update_extension_cache_for since view path cache will ↵Joshua Peek2008-06-091-1/+0
| | | | be updated on boot.
* Merge docrails.Pratik Naik2008-05-251-2/+2
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Capture view errors in ActionView::Template.Nathan Weizenbaum2008-05-021-0/+12
| | | | | | | This means that errors raised by partials are caught by ActionView::PartialTemplate, which in turn means they have the proper filename and line number information. Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Move missing template logic to ActionViewPratik Naik2008-04-191-6/+10
|
* Introduce ActionView::InlineTemplate classPratik Naik2008-04-191-13/+9
|
* Moved template handlers related code from ActionView::Base to ↵Pratik Naik2008-03-051-1/+39
| | | | | | ActionView::Template git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8981 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Refactor partial rendering into a PartialTemplate class. [Pratik]Michael Koziarski2008-03-031-5/+17
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8976 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Introduce a Template class to ActionView. Closes #11024 [lifofifo]Michael Koziarski2008-02-061-0/+65
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8805 5ecf4fe2-1ee6-0310-87b1-e25e094e27de