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

Changeset 768

Show
Ignore:
Timestamp:
02/23/05 15:13:03 (4 years ago)
Author:
david
Message:

Moved TimeZone to Active Support

Files:

Legend:

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

    r766 r768  
    55* Fixed that send_file/data can work even if render* has been called before in action processing to render the content of a file to be send for example #601 
    66 
    7 * Added FormOptionsHelper#time_zone_select and FormOptionsHelper#time_zone_options_for_select to work with the new value object TimeZone in Active Record #688 [Jamis Buck] 
     7* Added FormOptionsHelper#time_zone_select and FormOptionsHelper#time_zone_options_for_select to work with the new value object TimeZone in Active Support #688 [Jamis Buck] 
    88 
    99* Added FormHelper#file_field and FormTagHelper#file_field_tag for creating file upload fields 
  • trunk/activerecord/CHANGELOG

    r762 r768  
    2020 
    2121  The OCI8 driver can be retrieved from http://rubyforge.org/projects/ruby-oci8/ 
    22  
    23 * Added TimeZone as the first of a number of value objects that Active Record will start shipping to provide incentatives to use rich value objects using composed_of #688 [Jamis Buck] 
    2422 
    2523* Added option :schema_order to the PostgreSQL adapter to support the use of multiple schemas per database #697 [YuriSchimke] 
  • trunk/activerecord/lib/active_record.rb

    r761 r768  
    4848require 'active_record/acts/tree' 
    4949require 'active_record/locking' 
    50 require 'active_record/values/time_zone' 
    5150 
    5251ActiveRecord::Base.class_eval do 
  • trunk/activesupport/CHANGELOG

    r738 r768  
     1* Added TimeZone as the first of a number of value objects that among others Active Record can use rich value objects using composed_of #688 [Jamis Buck] 
     2 
    13* Added Date::Conversions for getting dates in different convenient string representations and other objects 
    24 
  • trunk/activesupport/lib/active_support.rb

    r627 r768  
    2828require 'active_support/misc' 
    2929require 'active_support/dependencies' 
     30 
     31require 'active_support/values/time_zone'