Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8359

Show
Ignore:
Timestamp:
12/10/07 03:19:56 (1 year ago)
Author:
bitsweat
Message:

More changelog updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r8357 r8359  
    172172* Optimized named routes respect AbstractRequest.relative_url_root.  #9612 [danielmorrison, Jeremy Kemper] 
    173173 
    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
    175175 
    176176* Rename some RequestForgeryProtection methods.  The class method is now #protect_from_forgery, and the default parameter is now 'authenticity_token'.  [Rick] 
     
    308308* Allow you to delete cookies with options. Closes #3685 [Josh Peek, Chris Wanstrath] 
    309309 
    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
    311311 
    312312  render :partial => 'show.html.erb' 
     
    376376* Wordsmith resources documentation.  #8484 [marclove] 
    377377 
    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
    379379 
    380380* 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] 
     
    492492* Enhance documentation and add examples for url_for. [jeremymcanally] 
    493493 
    494 * Fix documentation typo in routes. [norbert, pam] 
     494* Fix documentation typo in routes. [Norbert Crombach, pam] 
    495495 
    496496* Sweep flash when filter chain is halted. [Caio Chassot <lists@v2studio.com>] 
  • trunk/activerecord/CHANGELOG

    r8357 r8359  
    1010* 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] 
    1111 
    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 
     13so newlines etc are escaped #10385 [Norbert Crombach] 
    1314 
    1415* 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  
    100100* Hash#to_xml doesn't double-unescape.  #8806 [Ezran] 
    101101 
    102 * Added Array#rand #9170 [norbert]. Examples: 
     102* Added Array#rand #9170 [Norbert Crombach]. Examples: 
    103103 
    104104    [].rand       # => nil 
     
    116116* Add support for []= on ActiveSupport::Multibyte::Chars. Closes #9142. [ewan, manfred] 
    117117 
    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] 
    119119 
    120120* Let alias_attribute work with attributes with initial capital letters (legacy columns etc).  Closes #8596 [mpalmer] 
  • trunk/railties/CHANGELOG

    r8357 r8359  
    164164* Scaffold generator tests.  #8443 [pelle] 
    165165 
    166 * Generated scaffold functional tests use assert_difference.  #8421 [norbert
     166* Generated scaffold functional tests use assert_difference.  #8421 [Norbert Crombach
    167167 
    168168* Update to Prototype 1.5.1.  [Sam Stephenson]