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
...
*
Don't generate strings to log unless they'll actually get logged.
Jeremy Kemper
2007-10-06
1
-1
/
+1
*
Move ActionController::Routing.optimise_named_routes to ActionController::Bas...
Rick Olson
2007-10-03
1
-1
/
+6
*
Ruby 1.9 compat, consistent load paths
Jeremy Kemper
2007-10-02
1
-9
/
+9
*
Allow ability to disable request forgery protection, disable it in test mode ...
Rick Olson
2007-09-28
1
-1
/
+4
*
Fixed spelling errors (closes #9706) [tarmo/rmm5t]
David Heinemeier Hansson
2007-09-28
1
-2
/
+2
*
Rename some RequestForgeryProtection methods. The class method is now #prote...
Rick Olson
2007-09-23
1
-1
/
+1
*
Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha...
Rick Olson
2007-09-23
1
-0
/
+4
*
Added that render :json will automatically call .to_json unless its being pas...
David Heinemeier Hansson
2007-09-20
1
-0
/
+1
*
Deprecation: removed Reloadable.
Jeremy Kemper
2007-09-14
1
-2
/
+1
*
Random hits from the style nazi
David Heinemeier Hansson
2007-09-09
1
-8
/
+32
*
Removed the deprecated ActionController#Base.template_root/= methods (use Act...
David Heinemeier Hansson
2007-09-09
1
-12
/
+1
*
Remove deprecated named routes [pixeltrix]
Tobias Lütke
2007-09-06
1
-2
/
+6
*
Remove deprecated functionality from actionpack. Closes #8958 [lifofifo]
Michael Koziarski
2007-09-03
1
-116
/
+56
*
Improve url_for documentation for ActionController::Base and UrlRewriter. Cl...
Michael Koziarski
2007-08-17
1
-9
/
+13
*
Make sure missing template exceptions actually say which template they were l...
Michael Koziarski
2007-07-11
1
-2
/
+3
*
Docfix (closes #8518)
David Heinemeier Hansson
2007-06-23
1
-0
/
+4
*
Don't prepare response when rendering a component. Closes #8493.
Jeremy Kemper
2007-05-27
1
-1
/
+1
*
Routing: respond with 405 Method Not Allowed status when the route path match...
Jeremy Kemper
2007-05-26
1
-0
/
+18
*
Extend the view instance directly instead of mucking with anonymous subclasses.
Jeremy Kemper
2007-05-23
1
-10
/
+2
*
Don't play with fire (anonymous class and returning block).
Jeremy Kemper
2007-05-23
1
-5
/
+6
*
Fix filtered parameter logging with nil parameter values. Closes #8422.
Jeremy Kemper
2007-05-21
1
-1
/
+2
*
Parse url-encoded and multipart requests ourselves instead of delegating to CGI.
Jeremy Kemper
2007-05-18
1
-1
/
+3
*
Oops.
Jeremy Kemper
2007-05-18
1
-0
/
+4
*
Clean up the simply_helpful merge.
Jeremy Kemper
2007-05-18
1
-2
/
+1
*
Added url_for usage on render :location, which allows for record identificati...
David Heinemeier Hansson
2007-05-17
1
-1
/
+1
*
Add some performance enhancements to ActionView.
Rick Olson
2007-05-15
1
-2
/
+2
*
Added record identifications to FormHelper#form_for and PrototypeHelper#remot...
David Heinemeier Hansson
2007-05-14
1
-0
/
+2
*
Removed deprecated parameters_for_method_reference concept (legacy from befor...
David Heinemeier Hansson
2007-05-12
1
-10
/
+4
*
Added that render :xml will try to call to_xml if it can [DHH]
David Heinemeier Hansson
2007-04-24
1
-1
/
+1
*
Added :location option to render so that the common pattern of rendering a re...
David Heinemeier Hansson
2007-04-24
1
-8
/
+7
*
Stringify rendered text unless it's a Proc object for streaming.
Jeremy Kemper
2007-04-24
1
-1
/
+1
*
Ensure that render_text only adds string content to the body of the response ...
David Heinemeier Hansson
2007-04-21
1
-2
/
+2
*
The default respond_to blocks don't set a specific extension anymore, so that...
Rick Olson
2007-04-12
1
-1
/
+1
*
Change ActionView template defaults. Look for templates using the request fo...
Rick Olson
2007-04-02
1
-1
/
+1
*
Revert [6430] since the test is faulty. References #7837, closes #7842.
Jeremy Kemper
2007-03-16
1
-1
/
+1
*
Undeprecate redirect_to with Hash argument and additional url_for parameters....
Jeremy Kemper
2007-03-16
1
-1
/
+1
*
Deprecation: remove deprecated url_for(:symbol, *args) and redirect_to(:symbo...
Jeremy Kemper
2007-03-13
1
-12
/
+4
*
Deprecation: privatize deprecated render_partial and render_partial_collectio...
Jeremy Kemper
2007-03-13
1
-5
/
+2
*
Deprecation: remove deprecated instance variables.
Jeremy Kemper
2007-03-13
1
-19
/
+0
*
Added user/password options for url_for to add http authentication in a URL [...
David Heinemeier Hansson
2007-03-03
1
-3
/
+6
*
session_enabled? works with session :off. Closes #6680.
Jeremy Kemper
2007-02-27
1
-1
/
+1
*
Added .erb and .builder as preferred aliases to the now deprecated .rhtml and...
David Heinemeier Hansson
2007-02-20
1
-9
/
+9
*
Move etagging down to response, so renders with layouts dont screw it up [DHH]
David Heinemeier Hansson
2007-02-19
1
-14
/
+3
*
Added caching option to AssetTagHelper#stylesheet_link_tag and AssetTagHelper...
David Heinemeier Hansson
2007-02-18
1
-1
/
+1
*
Allow people to set their own etags, if they want more control over the proce...
David Heinemeier Hansson
2007-02-18
1
-2
/
+2
*
Etagging ignores appended and block responses.
Jeremy Kemper
2007-02-18
1
-9
/
+11
*
Added that rendering will automatically insert the etag header on 200 OK resp...
David Heinemeier Hansson
2007-02-17
1
-0
/
+18
*
Fix issue with deprecation messing up #template_root= usage. Add #prepend_vi...
Rick Olson
2007-02-04
1
-3
/
+19
*
Allow Controllers to have multiple view_paths instead of a single template_ro...
Rick Olson
2007-02-04
1
-14
/
+44
*
Allow exempt_from_layout :rhtml. References #6742, closes #7026.
Jeremy Kemper
2007-01-14
1
-4
/
+3
[prev]
[next]