aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handlers
Commit message (Expand)AuthorAgeFilesLines
* Merge with docrailsPratik Naik2008-12-071-0/+2
* Set template_format to html inside rjs templates so renders within it default...Joshua Peek2008-12-041-0/+1
* use autoload instead of explicit requires for ActionViewJoshua Peek2008-11-231-39/+0
* Prefix ActionView::Base private methods with an underscoreJoshua Peek2008-08-311-1/+1
* Ruby 1.9: Strip encoding from ERB source since you can not change character e...Joshua Peek2008-07-191-2/+5
* Set the response content type to that of found template if not explicitly set...Tom Ward2008-07-181-2/+1
* Removed lagacy TemplateHandler#render API. Left in a legacy TemplateHandler a...Joshua Peek2008-07-181-20/+0
* Get buffer for fragment cache from template's @output_bufferJoshua Peek2008-07-153-23/+1
* Move dead recompile_template? alsoJeremy Kemper2008-07-141-12/+0
* Remove dead code from mergeJeremy Kemper2008-07-141-30/+0
* Fix bad mergeJeremy Kemper2008-07-141-2/+2
* Use instance_method(...) to check whether the method existsJeremy Kemper2008-07-141-2/+44
* Refactor template preloading. New abstractions include Renderable mixins and ...Joshua Peek2008-07-121-50/+0
* Changed ActionView::TemplateHandler#render API method signature to render(tem...Joshua Peek2008-07-111-2/+2
* Check for response in builder template since ActionMailer does not have oneJoshua Peek2008-07-111-1/+2
* Put a newline rather than a semicolon at the end of RJS source to avoid parse...Jeremy Kemper2008-07-091-1/+1
* Use ActionController::Base.logger to report template compilation errors since...Jeremy Kemper2008-07-091-4/+4
* Added local assign keys to compiled method name so two threads evaluating the...Joshua Peek2008-07-061-24/+1
* Synchronize template compilingJoshua Peek2008-07-061-31/+34
* Lookup compiled methods in CompiledTemplates instance methods set instead of ...Joshua Peek2008-07-051-34/+24
* Do not stat template files in production mode before rendering. You will no l...Joshua Peek2008-07-051-28/+15
* Deprecated TemplateHandler line offsetJoshua Peek2008-07-053-66/+55
* Moved complied method name logic into RenderableJoshua Peek2008-07-051-22/+2
* Don't rely on view instance loggerJoshua Peek2008-07-031-4/+4
* Improve readabilityJeremy Kemper2008-06-241-1/+3
* Check whether blocks are called from erb using a special __in_erb_template va...Jeremy Kemper2008-06-192-2/+9
* Move erb_trim_mode setting to the ERB template handler. Keep a Base.erb_trim_...Jeremy Kemper2008-06-191-1/+6
* Use output_buffer reader and writer methods exclusively instead of hitting th...Jeremy Kemper2008-06-081-1/+1
* Stack @output_buffer for nested renderingJeremy Kemper2008-06-031-2/+2
* Work with @output_buffer instead of _erboutJeremy Kemper2008-06-022-4/+5
* Try replacing _erbout with @output_bufferJeremy Kemper2008-06-021-4/+2
* Pass template object to Handler#compilePratik Naik2008-04-244-4/+4
* Automatically parse posted JSON content for Mime::JSON requests. [rick]Rick Olson2008-04-081-1/+1
* add json_escape ERB util to escape html entities in json strings that are out...Rick Olson2008-04-081-1/+19
* Refactor partial rendering into a PartialTemplate class. [Pratik]Michael Koziarski2008-03-031-0/+4
* Introduce a Template class to ActionView. Closes #11024 [lifofifo]Michael Koziarski2008-02-061-22/+18
* Move the declaration of the compilation related cattr_accessors to compilable...Michael Koziarski2008-01-301-0/+12
* Correct line numbers from template errors. Closes #10937 [Aleksey Kondratenko]Michael Koziarski2008-01-271-1/+1
* Refactor template compilation from AV::Base into the template handlers. Clos...Michael Koziarski2008-01-224-13/+123
* * Pass around handler instances, not their classes [Koz]Michael Koziarski2008-01-113-0/+12
* Move fragment caching from special helper methods to TemplateHandler. Closes ...Jeremy Kemper2008-01-103-0/+23
* The asset_host block takes the controller request as an optional second argum...Jeremy Kemper2008-01-061-0/+9
* Add tests for html_escape, and remove an unneeded backslash (closes #10511) [...David Heinemeier Hansson2007-12-161-1/+1
* More Action View refactoring. Knock :erb default down a notch. Closes #10455.Jeremy Kemper2007-12-102-0/+8
* Refactor Action View template handlers. Closes #10437.Jeremy Kemper2007-12-093-0/+46