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_controller
/
base.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Added documentation for overwrite_params #2146 [Michael Shuerig]
David Heinemeier Hansson
2005-09-09
1
-0
/
+9
*
Fixed that render :partial would fail when :object was a Hash (due to backwar...
David Heinemeier Hansson
2005-09-09
1
-1
/
+1
*
An explicit include ClassInheritableAttributes is no longer needed #1948 [Cal...
David Heinemeier Hansson
2005-09-08
1
-2
/
+0
*
Avoid extending view instance with helper modules each request. Closes #1979
Nicholas Seckar
2005-09-08
1
-5
/
+16
*
ActionController documentation update #2051 [fbeausoleil@ftml.net]
Jamis Buck
2005-09-01
1
-3
/
+5
*
Use string key to set action_name for controllers. Closes #1968
Nicholas Seckar
2005-08-30
1
-1
/
+1
*
Removed unused statement
David Heinemeier Hansson
2005-07-26
1
-1
/
+0
*
Fixed snag in status reporting
David Heinemeier Hansson
2005-07-26
1
-1
/
+1
*
Only log status if there is one different from 200 set
David Heinemeier Hansson
2005-07-26
1
-1
/
+1
*
Add a catch-all eraser
David Heinemeier Hansson
2005-07-25
1
-2
/
+7
*
Improved performance of test app req/sec with ~10% refactoring the render met...
David Heinemeier Hansson
2005-07-24
1
-61
/
+87
*
Improved performance with 5-30% through a series of Action Pack optimizations...
David Heinemeier Hansson
2005-07-23
1
-7
/
+20
*
Added test for template to layout variable transfer
David Heinemeier Hansson
2005-07-23
1
-2
/
+2
*
Doc fixes #1775, #1776 [jon@instance-design.co.uk]
David Heinemeier Hansson
2005-07-22
1
-1
/
+1
*
Improved rendering speed on complicated templates by up to 25% #1234 [Stephan...
David Heinemeier Hansson
2005-07-21
1
-0
/
+1
*
Added Base#expires_in(seconds)/Base#expires_now to control HTTP content cache...
David Heinemeier Hansson
2005-07-17
1
-0
/
+23
*
Worked around a Safari bug where it wouldn't pass headers through if the resp...
David Heinemeier Hansson
2005-07-12
1
-2
/
+3
*
Fixed documentation for :action/:template confusion #1643
David Heinemeier Hansson
2005-07-11
1
-7
/
+7
*
Better documentation for Calling multiple redirects or renders #1687 [courtenay]
David Heinemeier Hansson
2005-07-10
1
-4
/
+7
*
Improved error message for DoubleRenderError
Jamis Buck
2005-07-09
1
-2
/
+7
*
Partly tuned docs for release (AP)
David Heinemeier Hansson
2005-07-06
1
-31
/
+137
*
Changed logging of SQL statements to use the DEBUG level instead of INFO. Add...
David Heinemeier Hansson
2005-07-05
1
-0
/
+4
*
r2829@asus: jeremy | 2005-07-04 23:31:55 -0700
Jeremy Kemper
2005-07-05
1
-3
/
+3
*
r2828@asus: jeremy | 2005-07-04 22:02:44 -0700
Jeremy Kemper
2005-07-05
1
-6
/
+10
*
r2827@asus: jeremy | 2005-07-04 21:30:06 -0700
Jeremy Kemper
2005-07-05
1
-5
/
+4
*
Added ActionController::Base.enable_upload_progress for people who want to pl...
David Heinemeier Hansson
2005-07-02
1
-0
/
+6
*
Make render(:inline) use locals #1556 [Michael Shuerig]
David Heinemeier Hansson
2005-07-01
1
-1
/
+8
*
Added support for upload progress indicators in Apache and lighttpd 1.4.x (wo...
David Heinemeier Hansson
2005-06-28
1
-1
/
+13
*
Improved performance of Routes generation by a factor of 5 #1434 [Nicholas Se...
David Heinemeier Hansson
2005-06-24
1
-1
/
+2
*
Added ActionController::Base.allow_concurrency to control whether the applica...
David Heinemeier Hansson
2005-06-23
1
-0
/
+6
*
render(:action) and render() are the only two render calls to use a layout by...
Jamis Buck
2005-06-01
1
-1
/
+1
*
render(:partial => "...") uses an empty hash for the local assigns #1365. ren...
Jamis Buck
2005-05-30
1
-2
/
+7
*
Set redirected_to proper
David Heinemeier Hansson
2005-05-22
1
-3
/
+4
*
Cure some ills discovered with the refactoring
David Heinemeier Hansson
2005-05-22
1
-2
/
+3
*
Deprecated all render_* methods in favor of consolidating all rendering behav...
David Heinemeier Hansson
2005-05-22
1
-231
/
+30
*
Deprecated redirect_to_path and redirect_to_url in favor of letting redirect_...
David Heinemeier Hansson
2005-05-22
1
-19
/
+84
*
Added DoubleRenderError exception that'll be raised if render* is called twic...
David Heinemeier Hansson
2005-05-21
1
-2
/
+10
*
Fixed use of an integer as return code for renders, so render_text "hello wor...
David Heinemeier Hansson
2005-05-21
1
-1
/
+1
*
Changed RAILS_ASSET_HOST to become ActionController::Base.asset_host
David Heinemeier Hansson
2005-05-06
1
-0
/
+6
*
Doc fix #1200
David Heinemeier Hansson
2005-04-30
1
-1
/
+1
*
Fixed render_partial_collection to output an empty string instead of nil when...
David Heinemeier Hansson
2005-04-30
1
-1
/
+1
*
Added that render_partial called from a controller will use the action name a...
David Heinemeier Hansson
2005-04-17
1
-1
/
+9
*
Changed render_partial to take local assigns as the second parameter instead ...
David Heinemeier Hansson
2005-04-16
1
-5
/
+5
*
Fixed that the content-type for some browsers could include an additional \r ...
David Heinemeier Hansson
2005-04-10
1
-1
/
+1
*
Added trailing_slash option to url_for, so you can generate urls ending in a ...
David Heinemeier Hansson
2005-03-26
1
-0
/
+2
*
Added documentation on models in sessions #929 [c.r.mcgrath@gmail.com]
David Heinemeier Hansson
2005-03-26
1
-0
/
+7
*
Added a bit more to the session documentation on how to clear sessions
David Heinemeier Hansson
2005-03-20
1
-2
/
+5
*
Added render_partial/render_partial_collection from controllers for easier Aj...
David Heinemeier Hansson
2005-03-09
1
-0
/
+10
*
Fixed rails_generator to be usable without RubyGems #686 [Cristi BALAN]. Move...
David Heinemeier Hansson
2005-03-06
1
-3
/
+0
*
Updated documentation
David Heinemeier Hansson
2005-02-24
1
-26
/
+24
[next]