Changeset 768
- Timestamp:
- 02/23/05 15:13:03 (4 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/lib/active_record.rb (modified) (1 diff)
- trunk/activerecord/lib/active_record/values (deleted)
- trunk/activesupport/CHANGELOG (modified) (1 diff)
- trunk/activesupport/lib/active_support.rb (modified) (1 diff)
- trunk/activesupport/lib/active_support/values (added)
- trunk/activesupport/lib/active_support/values/time_zone.rb (copied) (copied from trunk/activerecord/lib/active_record/values/time_zone.rb)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r766 r768 5 5 * 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 6 6 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] 8 8 9 9 * Added FormHelper#file_field and FormTagHelper#file_field_tag for creating file upload fields trunk/activerecord/CHANGELOG
r762 r768 20 20 21 21 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]24 22 25 23 * 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 48 48 require 'active_record/acts/tree' 49 49 require 'active_record/locking' 50 require 'active_record/values/time_zone'51 50 52 51 ActiveRecord::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 1 3 * Added Date::Conversions for getting dates in different convenient string representations and other objects 2 4 trunk/activesupport/lib/active_support.rb
r627 r768 28 28 require 'active_support/misc' 29 29 require 'active_support/dependencies' 30 31 require 'active_support/values/time_zone'