diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-03-13 02:16:27 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-03-13 02:16:27 +0000 |
commit | 9c0fe36d461264552198cdde493e91bd7c26c57c (patch) | |
tree | c5281ee395773b2f8555cba94ae0baaf44fade8d | |
parent | 07d8f46b85b08187cabd477cc3ca37f2c818e9aa (diff) | |
download | rails-9c0fe36d461264552198cdde493e91bd7c26c57c.tar.gz rails-9c0fe36d461264552198cdde493e91bd7c26c57c.tar.bz2 rails-9c0fe36d461264552198cdde493e91bd7c26c57c.zip |
Credit Dan by name rather than nick.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6397 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | actionpack/CHANGELOG | 4 | ||||
-rw-r--r-- | activerecord/CHANGELOG | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 2ea1b4da27..8bbbbdf8fd 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,6 +1,6 @@ *SVN* -* Consistent public/protected/private visibility for chained methods. #7813 [dcmanges] +* Consistent public/protected/private visibility for chained methods. #7813 [Dan Manges] * Prefer MIME constants to strings. #7707 [Dan Kubb] @@ -157,7 +157,7 @@ superclass' view_paths. [Rick] * Allow inGroupsOf and eachSlice to be called through rjs. #7046 [Cody Fauser] -* Allow exempt_from_layout :rhtml. #6742, #7026 [dcmanges, Squeegy] +* Allow exempt_from_layout :rhtml. #6742, #7026 [Dan Manges, Squeegy] * Recognize the .txt extension as Mime::TEXT [Rick] diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 11b965ad6b..c9785c3172 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,6 +1,6 @@ *SVN* -* Consistent public/protected/private visibility for chained methods. #7813 [dcmanges] +* Consistent public/protected/private visibility for chained methods. #7813 [Dan Manges] * Oracle: fix quoted primary keys and datetime overflow. #7798 [Michael Schoen] @@ -76,7 +76,7 @@ during calendar reform. #7649, #7724 [fedot, Geoff Buesing] * [DOC] clear up some ambiguity with the way has_and_belongs_to_many creates the default join table name. #7072 [jeremymcanally] -* change_column accepts :default => nil. Skip column options for primary keys. #6956, #7048 [dcmanges, Jeremy Kemper] +* change_column accepts :default => nil. Skip column options for primary keys. #6956, #7048 [Dan Manges, Jeremy Kemper] * MySQL, PostgreSQL: change_column_default quotes the default value and doesn't lose column type information. #3987, #6664 [Jonathan Viney, manfred, altano@bigfoot.com] @@ -92,7 +92,7 @@ during calendar reform. #7649, #7724 [fedot, Geoff Buesing] * PostgreSQL, Oracle: correctly perform eager finds with :limit and :order. #4668, #7021 [eventualbuddha, Michael Schoen] -* Pass a range in :conditions to use the SQL BETWEEN operator. #6974 [dcmanges] +* Pass a range in :conditions to use the SQL BETWEEN operator. #6974 [Dan Manges] Student.find(:all, :conditions => { :grade => 9..12 }) * Fix the Oracle adapter for serialized attributes stored in CLOBs. Closes #6825 [mschoen, tdfowler] |