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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove stuff that was deprecated in 2-1-stable
Pratik Naik
2008-10-21
1
-26
/
+0
*
No use case handy for justifying fresh? any more
David Heinemeier Hansson
2008-10-21
1
-5
/
+0
*
Let fresh_when actually do the head(:not_modified). Cleaner and we get the fi...
David Heinemeier Hansson
2008-10-21
1
-10
/
+8
*
Merge branch 'master' of git@github.com:rails/rails
David Heinemeier Hansson
2008-10-21
1
-1
/
+2
|
\
|
*
Ensure ActionView::Helpers::AssetTagHelper::AssetTag::Cache is cleared before...
Tim Harper
2008-10-20
1
-1
/
+2
*
|
Added stale?/fresh? and fresh_when methods to provide a layer of abstraction ...
David Heinemeier Hansson
2008-10-21
2
-19
/
+65
|
/
*
Sanitize the URLs passed to redirect_to to prevent a potential response split...
Michael Koziarski
2008-10-19
1
-2
/
+2
*
Make sure named routes with parameters can be used in tests before a request ...
Eloy Duran
2008-10-13
1
-0
/
+3
*
Allow use of :path_prefix and :name_prefix outside of namespaced routes. [#11...
Tom Stuart
2008-10-08
1
-3
/
+1
*
Make sure last_modified! works with <= rather than just equality.
Michael Koziarski
2008-10-07
1
-1
/
+3
*
Merge docrails
Pratik Naik
2008-10-05
1
-4
/
+12
*
Add tests for ActiveSupport::Rescuable. Use ActiveSupport::Rescuable in Actio...
Pratik Naik
2008-10-04
1
-99
/
+3
*
Ensure rescue_from handlers are respected inside tests. [#835 state:resolved]
Pratik Naik
2008-10-04
2
-19
/
+19
*
Return processing lock to dispatcher, the finer grained lock was incompatible...
Aliaksey Kandratsenka
2008-10-04
2
-9
/
+14
*
call clear_active_connections! in :after_dispatch to give pooled connections ...
Aliaksey Kandratsenka
2008-10-04
2
-1
/
+17
*
Call controller_path instance method so it can be easily overridden [#1141 st...
David Masover
2008-09-30
1
-2
/
+2
*
Fix etag! and last_modified! to work as advertised.
Michael Koziarski
2008-09-30
1
-2
/
+4
*
Remove unneeded interning.
Michael Koziarski
2008-09-30
1
-3
/
+2
*
Use ActiveSupport::SecureRandom instead of the strange fallback code.
Michael Koziarski
2008-09-24
1
-22
/
+2
*
Added support for http_only cookies in cookie_store Added unit tests for secu...
Pelle Braendgaard
2008-09-17
4
-3
/
+10
*
Merge docrails
Pratik Naik
2008-09-13
1
-14
/
+14
*
Added ActionController::Translation module delegating to I18n #translate/#t a...
Sven Fuchs
2008-09-10
1
-0
/
+13
*
Only separate loggings with a comma when there are actually two statements
David Heinemeier Hansson
2008-09-09
1
-1
/
+2
*
Revert "Revert "Add layout functionality to mailers.""
David Heinemeier Hansson
2008-09-09
1
-1
/
+5
*
Revert "Add layout functionality to mailers."
David Heinemeier Hansson
2008-09-09
1
-5
/
+1
*
Check for uninitialized instance variables
Jeremy Kemper
2008-09-08
1
-1
/
+1
*
Remove recognized_optimized method before redefining it
Jeremy Kemper
2008-09-08
1
-2
/
+15
*
Use defined? check since @view_paths may be uninitialized
Jeremy Kemper
2008-09-08
1
-1
/
+5
*
Ensure routing optimizations are cleared when new routes are added [#981 stat...
Matt Jones
2008-09-07
2
-2
/
+11
*
Use a more sensible resolution on the new millisecond benchmarks
David Heinemeier Hansson
2008-09-05
1
-5
/
+5
*
Changed all benchmarking reports to be in milliseconds
David Heinemeier Hansson
2008-09-05
1
-24
/
+36
*
Merge docrails
Pratik Naik
2008-09-03
4
-64
/
+69
*
Some performance goodness for inheritable attributes.
Clemens Kofler
2008-09-03
2
-8
/
+8
*
Some performance goodness for routing.
Clemens Kofler
2008-09-03
1
-3
/
+3
*
Don't set Content-Length on 304 responses
Jonathan del Strother
2008-09-02
1
-1
/
+1
*
Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, ...
Jeremy Kemper
2008-08-31
13
-34
/
+34
*
Add layout functionality to mailers.
Pratik Naik
2008-08-31
1
-1
/
+5
*
Fixes optimised named routes generating question mark followed by nothing whe...
Luke Melia
2008-08-31
1
-2
/
+3
*
Moved layout exemption logic into the view
Joshua Peek
2008-08-31
2
-19
/
+7
*
Prefix ActionView::Base private methods with an underscore
Joshua Peek
2008-08-31
2
-2
/
+2
*
Fix AM tests and add tests for rendering logging
Pratik Naik
2008-08-31
1
-0
/
+2
*
Add lost log messages about template rendering
Pratik Naik
2008-08-31
1
-1
/
+0
*
Move layout rendering logic to ActionView::Base
Pratik Naik
2008-08-31
3
-53
/
+29
*
Move copying ivar logic from ActionController::Base to ActionView::Base
Pratik Naik
2008-08-31
4
-37
/
+13
*
Remove unused use_full_path argument
Pratik Naik
2008-08-31
1
-5
/
+5
*
Dont pass controller partial layout option to view
Pratik Naik
2008-08-30
2
-2
/
+2
*
Remove double layout check
Pratik Naik
2008-08-30
1
-6
/
+1
*
Add support for shallow nesting of routes. [#838 state:resolved]
Pratik Naik
2008-08-30
1
-12
/
+61
*
Make assert_select_rjs code more readable, make use of unused constants and u...
miloops
2008-08-29
1
-52
/
+26
*
Improve assert_select_rjs failure messages for show, hide, toggle, and remove
Tim Haines
2008-08-29
1
-1
/
+7
[next]