aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-12-10 03:19:56 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-12-10 03:19:56 +0000
commit80cf698b7bff854a7f27d254f78e46af1819e647 (patch)
treead33af3a58e91820fb12ad1afda2a222d8c544f0
parent9ccbb1356327f658b3012cf2967e6b03ae0ac1ee (diff)
downloadrails-80cf698b7bff854a7f27d254f78e46af1819e647.tar.gz
rails-80cf698b7bff854a7f27d254f78e46af1819e647.tar.bz2
rails-80cf698b7bff854a7f27d254f78e46af1819e647.zip
More changelog updates
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8359 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--actionpack/CHANGELOG8
-rw-r--r--activerecord/CHANGELOG3
-rw-r--r--activesupport/CHANGELOG4
-rw-r--r--railties/CHANGELOG2
4 files changed, 9 insertions, 8 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 95d57a02ab..c596950894 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -171,7 +171,7 @@
* Optimized named routes respect AbstractRequest.relative_url_root. #9612 [danielmorrison, Jeremy Kemper]
-* Introduce ActionController::Base.rescue_from to declare exception-handling methods. Cleaner style than the case-heavy rescue_action_in_public. #9449 [norbert]
+* Introduce ActionController::Base.rescue_from to declare exception-handling methods. Cleaner style than the case-heavy rescue_action_in_public. #9449 [Norbert Crombach]
* Rename some RequestForgeryProtection methods. The class method is now #protect_from_forgery, and the default parameter is now 'authenticity_token'. [Rick]
@@ -307,7 +307,7 @@
* Allow you to delete cookies with options. Closes #3685 [Josh Peek, Chris Wanstrath]
-* Allow you to render views with periods in the name. Closes #8076 [norbert]
+* Allow you to render views with periods in the name. Closes #8076 [Norbert Crombach]
render :partial => 'show.html.erb'
@@ -375,7 +375,7 @@
* Wordsmith resources documentation. #8484 [marclove]
-* Fix syntax error in code example for routing documentation. #8377. [norbert]
+* Fix syntax error in code example for routing documentation. #8377. [Norbert Crombach]
* 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]
@@ -491,7 +491,7 @@
* Enhance documentation and add examples for url_for. [jeremymcanally]
-* Fix documentation typo in routes. [norbert, pam]
+* Fix documentation typo in routes. [Norbert Crombach, pam]
* Sweep flash when filter chain is halted. [Caio Chassot <lists@v2studio.com>]
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 43142b9626..b3a5ee0249 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -9,7 +9,8 @@
* 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]
-* Fixed that the truncation of strings longer than 50 chars should use inspect so newlines etc are escaped #10385 [norbert]
+* Fixed that the truncation of strings longer than 50 chars should use inspect
+so newlines etc are escaped #10385 [Norbert Crombach]
* Fixed that habtm associations should be able to set :select as part of their definition and have that honored [DHH]
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 3a52c4e909..4a23f775fd 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -99,7 +99,7 @@
* Hash#to_xml doesn't double-unescape. #8806 [Ezran]
-* Added Array#rand #9170 [norbert]. Examples:
+* Added Array#rand #9170 [Norbert Crombach]. Examples:
[].rand # => nil
['a'].rand # => 'a'
@@ -115,7 +115,7 @@
* Add support for []= on ActiveSupport::Multibyte::Chars. Closes #9142. [ewan, manfred]
-* Added Array#extract_options! to encapsulate the pattern of getting an options hash out of a variable number of parameters #8759 [norbert].
+* Added Array#extract_options! to encapsulate the pattern of getting an options hash out of a variable number of parameters. #8759 [Norbert Crombach]
* Let alias_attribute work with attributes with initial capital letters (legacy columns etc). Closes #8596 [mpalmer]
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index d3f82f4762..d4dfabdc40 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -163,7 +163,7 @@ databases on localhost. #9753 [Trevor Wennblom]
* Scaffold generator tests. #8443 [pelle]
-* Generated scaffold functional tests use assert_difference. #8421 [norbert]
+* Generated scaffold functional tests use assert_difference. #8421 [Norbert Crombach]
* Update to Prototype 1.5.1. [Sam Stephenson]