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
...
*
Declare file extensions exempt from layouts. Closes #6219.
Jeremy Kemper
2006-09-16
1
-1
/
+15
*
Doc fix (closes #6023)
David Heinemeier Hansson
2006-09-04
1
-1
/
+1
*
Dont raise deprecation warning on render :action => "stuff"
David Heinemeier Hansson
2006-09-04
1
-2
/
+2
*
silence deprecation warnings. cosmetics.
Jeremy Kemper
2006-09-04
1
-82
/
+84
*
pass caller to deprecation warning
Jeremy Kemper
2006-09-04
1
-2
/
+4
*
Added deprecation language for in_place_editor and auto_complete_field that b...
David Heinemeier Hansson
2006-09-03
1
-2
/
+2
*
Deprecated old render parameter calls
David Heinemeier Hansson
2006-09-03
1
-7
/
+16
*
Backout of blowup fix
David Heinemeier Hansson
2006-09-03
1
-15
/
+6
*
More deprecation fun
David Heinemeier Hansson
2006-09-03
1
-9
/
+29
*
respond_to .html now always renders #{action_name}.rhtml so that registered c...
Tobias Lütke
2006-08-30
1
-0
/
+2
*
Invoke method_missing directly for hidden actions. Closes #3030.
Nicholas Seckar
2006-08-13
1
-2
/
+5
*
New dependencies implementation
Nicholas Seckar
2006-08-08
1
-1
/
+1
*
Deprecation: check whether instance variables have been monkeyed with before ...
Jeremy Kemper
2006-08-07
1
-4
/
+12
*
Deprecate direct usage of @params. Update ActionView::Base for instance var d...
Jeremy Kemper
2006-08-07
1
-9
/
+11
*
Deprecation! @session and @flash will be removed after 1.2. Use the session a...
Jeremy Kemper
2006-08-07
1
-27
/
+39
*
Make controller_path available as an instance method. Closes #5724.
Jeremy Kemper
2006-08-05
1
-0
/
+5
*
Added map.resources from the Simply Restful plugin (backwards incompatible wi...
David Heinemeier Hansson
2006-07-31
1
-0
/
+1
*
Update render :partial documentation. Closes #5646.
Jeremy Kemper
2006-07-08
1
-14
/
+18
*
Clarify partial filename constraints. Closes #1161.
Jeremy Kemper
2006-07-07
1
-0
/
+3
*
Doc fix (closes #5429)
David Heinemeier Hansson
2006-07-05
1
-0
/
+7
*
Added support for Mime objects in render :content_type option [DHH]
David Heinemeier Hansson
2006-06-02
1
-1
/
+1
*
New routes implementation. Simpler, faster, easier to understand. The publish...
Jamis Buck
2006-06-01
1
-1
/
+0
*
Change the request.env example in AC::Base docs to a var that exists (REMOTE_...
Jeremy Kemper
2006-05-17
1
-3
/
+3
*
Fix flip flopped logic in docs for url_for's :only_path option. Closes #4998....
Marcel Molina
2006-05-14
1
-1
/
+1
*
Revert unintential change to filter parameters
Marcel Molina
2006-04-29
1
-18
/
+16
*
Update README
Marcel Molina
2006-04-29
1
-16
/
+18
*
ActionController::Base Summary documentation rewrite. Closes #4900. [kevin.cl...
Marcel Molina
2006-04-27
1
-65
/
+45
*
Remove all remaining references to @params in the documentation.
Marcel Molina
2006-04-25
1
-2
/
+2
*
Add documentation for redirect_to :back's RedirectBackError exception.
Marcel Molina
2006-04-25
1
-0
/
+4
*
Added ActionController.filter_parameter_logging that makes it easy to remove ...
David Heinemeier Hansson
2006-04-07
1
-1
/
+48
*
CHANGED DEFAULT: Don't parse YAML input by default, but keep it available as ...
David Heinemeier Hansson
2006-04-04
1
-7
/
+9
*
Fixed docs
David Heinemeier Hansson
2006-03-28
1
-16
/
+15
*
Spell existence properly (closes #4442)
David Heinemeier Hansson
2006-03-27
1
-2
/
+2
*
Enable application/x-yaml processing by default
Jamis Buck
2006-03-25
1
-6
/
+7
*
Updated Kernel#returning for the AP performance patch [DHH]
David Heinemeier Hansson
2006-03-20
1
-1
/
+1
*
fix usage of #returning in ActionController::Base
Rick Olson
2006-03-20
1
-1
/
+1
*
Performance speedup for ActionController (closes #4174) [Stefan Kaes] Include...
David Heinemeier Hansson
2006-03-20
1
-27
/
+21
*
Simplify controller_path
Nicholas Seckar
2006-03-13
1
-7
/
+1
*
Always use application/xml, then the charset is determined by the XML doc
David Heinemeier Hansson
2006-03-13
1
-1
/
+1
*
The mere existance of a rjs file shouldnt cause the layout to disappear. Made...
David Heinemeier Hansson
2006-03-13
1
-1
/
+1
*
The mere existance of a rjs file shouldnt cause the layout to disappear. Made...
David Heinemeier Hansson
2006-03-13
1
-1
/
+3
*
Rendering xml shouldnt happen inside any layout. Added class proxying to RJS,...
David Heinemeier Hansson
2006-03-13
1
-0
/
+4
*
Mime types are separated by a comma, not semicolon, in the Accept header. Als...
David Heinemeier Hansson
2006-03-12
1
-4
/
+4
*
Added better support for using the same actions to output for different sourc...
David Heinemeier Hansson
2006-03-11
1
-2
/
+11
*
XmlSimple _should_ be the default since XmlNode is not compatible with regula...
David Heinemeier Hansson
2006-03-07
1
-9
/
+11
*
Doc fixes
David Heinemeier Hansson
2006-03-05
1
-4
/
+2
*
ActionController::Base.param_parsers now accept symbols. currently supported ...
Tobias Lütke
2006-03-05
1
-8
/
+3
*
Added new infrastructure support for REST webservices.
Tobias Lütke
2006-03-05
1
-2
/
+33
*
Remove ::Controllers related cruft; fix AP tests
Nicholas Seckar
2006-02-26
1
-2
/
+0
*
Ensure backwards compatibility with symbolized action names for render_action...
David Heinemeier Hansson
2006-02-19
1
-1
/
+1
[prev]
[next]