Changeset 8359
- Timestamp:
- 12/10/07 03:19:56 (1 year ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (4 diffs)
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activesupport/CHANGELOG (modified) (2 diffs)
- trunk/railties/CHANGELOG (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r8357 r8359 172 172 * Optimized named routes respect AbstractRequest.relative_url_root. #9612 [danielmorrison, Jeremy Kemper] 173 173 174 * Introduce ActionController::Base.rescue_from to declare exception-handling methods. Cleaner style than the case-heavy rescue_action_in_public. #9449 [ norbert]174 * Introduce ActionController::Base.rescue_from to declare exception-handling methods. Cleaner style than the case-heavy rescue_action_in_public. #9449 [Norbert Crombach] 175 175 176 176 * Rename some RequestForgeryProtection methods. The class method is now #protect_from_forgery, and the default parameter is now 'authenticity_token'. [Rick] … … 308 308 * Allow you to delete cookies with options. Closes #3685 [Josh Peek, Chris Wanstrath] 309 309 310 * Allow you to render views with periods in the name. Closes #8076 [ norbert]310 * Allow you to render views with periods in the name. Closes #8076 [Norbert Crombach] 311 311 312 312 render :partial => 'show.html.erb' … … 376 376 * Wordsmith resources documentation. #8484 [marclove] 377 377 378 * Fix syntax error in code example for routing documentation. #8377. [ norbert]378 * Fix syntax error in code example for routing documentation. #8377. [Norbert Crombach] 379 379 380 380 * Routing: respond with 405 Method Not Allowed status when the route path matches but the HTTP method does not. #6953 [Josh Peek, defeated, Dan Kubb, Coda Hale] … … 492 492 * Enhance documentation and add examples for url_for. [jeremymcanally] 493 493 494 * Fix documentation typo in routes. [ norbert, pam]494 * Fix documentation typo in routes. [Norbert Crombach, pam] 495 495 496 496 * Sweep flash when filter chain is halted. [Caio Chassot <lists@v2studio.com>] trunk/activerecord/CHANGELOG
r8357 r8359 10 10 * Fixed that the Query Cache should just be ignored if the database is misconfigured (so that the "About your applications environment" works even before the database has been created) [DHH] 11 11 12 * Fixed that the truncation of strings longer than 50 chars should use inspect so newlines etc are escaped #10385 [norbert] 12 * Fixed that the truncation of strings longer than 50 chars should use inspect 13 so newlines etc are escaped #10385 [Norbert Crombach] 13 14 14 15 * Fixed that habtm associations should be able to set :select as part of their definition and have that honored [DHH] trunk/activesupport/CHANGELOG
r8357 r8359 100 100 * Hash#to_xml doesn't double-unescape. #8806 [Ezran] 101 101 102 * Added Array#rand #9170 [ norbert]. Examples:102 * Added Array#rand #9170 [Norbert Crombach]. Examples: 103 103 104 104 [].rand # => nil … … 116 116 * Add support for []= on ActiveSupport::Multibyte::Chars. Closes #9142. [ewan, manfred] 117 117 118 * Added Array#extract_options! to encapsulate the pattern of getting an options hash out of a variable number of parameters #8759 [norbert].118 * Added Array#extract_options! to encapsulate the pattern of getting an options hash out of a variable number of parameters. #8759 [Norbert Crombach] 119 119 120 120 * Let alias_attribute work with attributes with initial capital letters (legacy columns etc). Closes #8596 [mpalmer] trunk/railties/CHANGELOG
r8357 r8359 164 164 * Scaffold generator tests. #8443 [pelle] 165 165 166 * Generated scaffold functional tests use assert_difference. #8421 [ norbert]166 * Generated scaffold functional tests use assert_difference. #8421 [Norbert Crombach] 167 167 168 168 * Update to Prototype 1.5.1. [Sam Stephenson]