index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
actionpack
/
lib
/
action_view
/
base.rb
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fixed bc5896e, and added test case for the caching bug it originally introduced.
Joshua Peek
2008-07-23
1
-0
/
+3
*
Revert 'bc5896e'
Joshua Peek
2008-07-23
1
-3
/
+0
*
Memoize ActionView::Base pick_template and find_partial_path for rendering du...
Joshua Peek
2008-07-22
1
-2
/
+5
*
Fixed spelling mistake in deprecation warning [#381 state:resolved]
Joshua Peek
2008-07-19
1
-4
/
+6
*
Set the response content type to that of found template if not explicitly set...
Tom Ward
2008-07-18
1
-0
/
+6
*
Removed lagacy TemplateHandler#render API. Left in a legacy TemplateHandler a...
Joshua Peek
2008-07-18
1
-2
/
+2
*
Wrap AssetTagHelper's computed public path cache in a threadsafe store
Joshua Peek
2008-07-17
1
-4
/
+0
*
Merge with docrails.
Pratik Naik
2008-07-16
1
-1
/
+1
*
Removed config.action_view.cache_template_loading, use config.cache_classes i...
Joshua Peek
2008-07-15
1
-3
/
+4
*
Check first render format and extension. Fixes failing ActionMailer test.
Joshua Peek
2008-07-13
1
-1
/
+1
*
Made ActionView::Base#first_render a little more private. And added _last_ren...
Joshua Peek
2008-07-13
1
-3
/
+3
*
Set config.action_view.warn_cache_misses = true to receive a warning if you p...
Joshua Peek
2008-07-12
1
-2
/
+20
*
Refactor template preloading. New abstractions include Renderable mixins and ...
Joshua Peek
2008-07-12
1
-35
/
+44
*
Changed ActionView::TemplateHandler#render API method signature to render(tem...
Joshua Peek
2008-07-11
1
-2
/
+2
*
Disable the Accept header by default
Michael Koziarski
2008-07-07
1
-7
/
+3
*
Lookup compiled methods in CompiledTemplates instance methods set instead of ...
Joshua Peek
2008-07-05
1
-4
/
+0
*
Do not stat template files in production mode before rendering. You will no l...
Joshua Peek
2008-07-05
1
-1
/
+1
*
Removed unused template_args variable
Joshua Peek
2008-07-05
1
-2
/
+0
*
Revert "Moved TemplateHandlers to Base"
Joshua Peek
2008-07-03
1
-1
/
+0
*
Reduce the number of callsites for new TemplateFiles
Joshua Peek
2008-07-03
1
-11
/
+17
*
Use render on InlineTemplate
Joshua Peek
2008-07-03
1
-1
/
+1
*
Moved TemplateHandlers to Base
Joshua Peek
2008-07-03
1
-0
/
+1
*
Move template_format logic out to the request so it's alongside the 'regular'...
Michael Koziarski
2008-07-03
1
-11
/
+1
*
Remove unneeded ObjectWrapper class.
Michael Koziarski
2008-07-03
1
-4
/
+1
*
Deprecate :use_full_path render option. The supplying the option no longer ha...
Joshua Peek
2008-07-02
1
-7
/
+5
*
Add :as option to render a collection of partials with a custom local variabl...
Pratik Naik
2008-07-02
1
-1
/
+1
*
Hide InlineTemplate class from ActionController and use ActionView's render API
Joshua Peek
2008-06-25
1
-6
/
+5
*
Made ActionView::Base#render_file private
Joshua Peek
2008-06-25
1
-20
/
+20
*
Move erb_trim_mode setting to the ERB template handler. Keep a Base.erb_trim_...
Jeremy Kemper
2008-06-19
1
-4
/
+3
*
Replaced TemplateFinder abstraction with ViewLoadPaths
Joshua Peek
2008-06-17
1
-32
/
+73
*
Delegate ActionView::Base#controller_name to controller
Pratik Naik
2008-06-10
1
-1
/
+1
*
Merge branch 'master' into erbout
Jeremy Kemper
2008-06-05
1
-1
/
+2
|
\
|
*
Ensure render :file works inside templates
Pratik Naik
2008-06-05
1
-1
/
+2
*
|
Don't pass block binding to concat
Jeremy Kemper
2008-06-02
1
-1
/
+1
*
|
Work with @output_buffer instead of _erbout
Jeremy Kemper
2008-06-02
1
-4
/
+7
*
|
Try replacing _erbout with @output_buffer
Jeremy Kemper
2008-06-02
1
-4
/
+1
|
/
*
Deprecate ActionView::Base.cache_template_extensions
Pratik Naik
2008-05-17
1
-5
/
+5
*
Merge docrails:
Pratik Naik
2008-05-09
1
-12
/
+12
*
Delegate action_name to controller inside views.
Pratik Naik
2008-05-06
1
-1
/
+1
*
Improve documentation coverage and markup
Xavier Noria
2008-05-02
1
-2
/
+3
*
Improve PartialTemplate tests
Pratik Naik
2008-05-02
1
-3
/
+1
*
Capture view errors in ActionView::Template.
Nathan Weizenbaum
2008-05-02
1
-11
/
+2
*
Delegate ivars to controller instead of copying
Pratik Naik
2008-04-21
1
-5
/
+4
*
Introduce ActionView::TestCase for testing view helpers.
Joshua Peek
2008-04-19
1
-4
/
+6
*
Move missing template logic to ActionView
Pratik Naik
2008-04-19
1
-0
/
+3
*
Introduce ActionView::InlineTemplate class
Pratik Naik
2008-04-19
1
-1
/
+1
*
Moved template handlers related code from ActionView::Base to ActionView::Tem...
Pratik Naik
2008-03-05
1
-38
/
+0
*
Refactor partial rendering into a PartialTemplate class. [Pratik]
Michael Koziarski
2008-03-03
1
-36
/
+12
*
Added that requests with JavaScript as the priority mime type in the accept h...
David Heinemeier Hansson
2008-02-29
1
-2
/
+21
*
Introduce a Template class to ActionView. Closes #11024 [lifofifo]
Michael Koziarski
2008-02-06
1
-51
/
+17
[prev]
[next]