aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
Commit message (Expand)AuthorAgeFilesLines
* Fix incorrect closing CDATA delimiter. Add tests for CDATA nodes.Jeffrey Hardy2008-10-231-1/+1
* Fix that HTML::Node.parse would blow up on unclosed CDATA sections.Jeffrey Hardy2008-10-231-1/+8
* Dont try to auto-set the etag based on the body if any freshness headers have...David Heinemeier Hansson2008-10-212-12/+27
* Remove stuff that was deprecated in 2-1-stablePratik Naik2008-10-211-26/+0
* No use case handy for justifying fresh? any moreDavid Heinemeier Hansson2008-10-211-5/+0
* Let fresh_when actually do the head(:not_modified). Cleaner and we get the fi...David Heinemeier Hansson2008-10-211-10/+8
* Merge branch 'master' of git@github.com:rails/railsDavid Heinemeier Hansson2008-10-211-1/+2
|\
| * Ensure ActionView::Helpers::AssetTagHelper::AssetTag::Cache is cleared before...Tim Harper2008-10-201-1/+2
* | Added stale?/fresh? and fresh_when methods to provide a layer of abstraction ...David Heinemeier Hansson2008-10-212-19/+65
|/
* Sanitize the URLs passed to redirect_to to prevent a potential response split...Michael Koziarski2008-10-191-2/+2
* Make sure named routes with parameters can be used in tests before a request ...Eloy Duran2008-10-131-0/+3
* Allow use of :path_prefix and :name_prefix outside of namespaced routes. [#11...Tom Stuart2008-10-081-3/+1
* Make sure last_modified! works with <= rather than just equality.Michael Koziarski2008-10-071-1/+3
* Merge docrailsPratik Naik2008-10-051-4/+12
* Add tests for ActiveSupport::Rescuable. Use ActiveSupport::Rescuable in Actio...Pratik Naik2008-10-041-99/+3
* Ensure rescue_from handlers are respected inside tests. [#835 state:resolved]Pratik Naik2008-10-042-19/+19
* Return processing lock to dispatcher, the finer grained lock was incompatible...Aliaksey Kandratsenka2008-10-042-9/+14
* call clear_active_connections! in :after_dispatch to give pooled connections ...Aliaksey Kandratsenka2008-10-042-1/+17
* Call controller_path instance method so it can be easily overridden [#1141 st...David Masover2008-09-301-2/+2
* Fix etag! and last_modified! to work as advertised.Michael Koziarski2008-09-301-2/+4
* Remove unneeded interning.Michael Koziarski2008-09-301-3/+2
* Use ActiveSupport::SecureRandom instead of the strange fallback code.Michael Koziarski2008-09-241-22/+2
* Added support for http_only cookies in cookie_store Added unit tests for secu...Pelle Braendgaard2008-09-174-3/+10
* Merge docrailsPratik Naik2008-09-131-14/+14
* Added ActionController::Translation module delegating to I18n #translate/#t a...Sven Fuchs2008-09-101-0/+13
* Only separate loggings with a comma when there are actually two statementsDavid Heinemeier Hansson2008-09-091-1/+2
* Revert "Revert "Add layout functionality to mailers.""David Heinemeier Hansson2008-09-091-1/+5
* Revert "Add layout functionality to mailers."David Heinemeier Hansson2008-09-091-5/+1
* Check for uninitialized instance variablesJeremy Kemper2008-09-081-1/+1
* Remove recognized_optimized method before redefining itJeremy Kemper2008-09-081-2/+15
* Use defined? check since @view_paths may be uninitializedJeremy Kemper2008-09-081-1/+5
* Ensure routing optimizations are cleared when new routes are added [#981 stat...Matt Jones2008-09-072-2/+11
* Use a more sensible resolution on the new millisecond benchmarksDavid Heinemeier Hansson2008-09-051-5/+5
* Changed all benchmarking reports to be in millisecondsDavid Heinemeier Hansson2008-09-051-24/+36
* Merge docrailsPratik Naik2008-09-034-64/+69
* Some performance goodness for inheritable attributes.Clemens Kofler2008-09-032-8/+8
* Some performance goodness for routing.Clemens Kofler2008-09-031-3/+3
* Don't set Content-Length on 304 responsesJonathan del Strother2008-09-021-1/+1
* Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, ...Jeremy Kemper2008-08-3113-34/+34
* Add layout functionality to mailers.Pratik Naik2008-08-311-1/+5
* Fixes optimised named routes generating question mark followed by nothing whe...Luke Melia2008-08-311-2/+3
* Moved layout exemption logic into the viewJoshua Peek2008-08-312-19/+7
* Prefix ActionView::Base private methods with an underscoreJoshua Peek2008-08-312-2/+2
* Fix AM tests and add tests for rendering loggingPratik Naik2008-08-311-0/+2
* Add lost log messages about template renderingPratik Naik2008-08-311-1/+0
* Move layout rendering logic to ActionView::BasePratik Naik2008-08-313-53/+29
* Move copying ivar logic from ActionController::Base to ActionView::BasePratik Naik2008-08-314-37/+13
* Remove unused use_full_path argumentPratik Naik2008-08-311-5/+5
* Dont pass controller partial layout option to viewPratik Naik2008-08-302-2/+2
* Remove double layout checkPratik Naik2008-08-301-6/+1